* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 8px;
    background-color: #fff;
}


/* === HEADER === */
.logo img {
    width: 140px;
}

.navbar a {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.navbar {
    display: flex;
    gap: 20px;
}

/* Hide the navbar on mobile view */
.menu-toggle {
    display: none;
    font-size: 26px;
    margin-top: 15px;
    background: none;
    border: none;
    color: black;
}

.navbar a {
    text-decoration: none;
    color: #003060;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #F97FAF; /* Change to pink on hover */
}

/* ===  ORDER ===*/

.order_text{
    font-size: 20px;
    color: #003060;
}



/* === PAKAR === */
.testi{
    background-color: #003060;
    color: white;
    margin-top: 10px;
    padding-top: 150px;
    padding-bottom: 60px;
}
.pakar1{
    display: grid;
    grid-template-columns: 30% auto;
}
.pakar1 p{
    text-align: justify;
    font-size: 18px;
    margin-right: 80px;
    margin-bottom: 50px;
}
.mahendra{
    margin-left: 50px;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}

hr{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.pakar2{
    display: grid;
    grid-template-columns: 30% auto;
    margin-top: 50px;
}
.pakar2 p{
    text-align: justify;
    font-size: 18px;
    margin-right: 80px;
}
.zaidan{
    display: block;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* ==== Video Testimonials ====*/
.tes_video_title{
    margin-top: 150px;
    text-align: center;
    font-size: 25px;
}
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 80px;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: white;
}

.video-thumbnail img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
}

.video-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    color: #333;
    background-color: #f9f9f9;
}

.video-thumbnail::after {
    content: '▶';
    font-size: 2.5rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.video-thumbnail:hover {
    transform: scale(1.05); 
}

/* Video Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

#modalVideo {
    margin-top: 15px;
    background: #000;
}


/* === FOOTER ===*/
footer {
    background-color: #003060;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 15px;
}
.social-icons{
    text-align: left;
}
.social-icons a{
    color: white;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover{
    color: #F97FAF; /* Pink on hover */
}


.map-container iframe {
    width: 100%;
    border-radius: 5px;
}

h3 {
    margin-bottom: 15px;
    color: #00C1C1;
}

.footer-ending{
    margin-top: 15px;
    text-align: center;
}


/* MOBILE STYLES (Responsive) */
@media (max-width: 768px) {

    header {
        flex-direction: row;
        align-items: flex-start;
    }

    /* === NAVBAR === */
    .logo img {
        width: 100px;
    }
    .navbar {
        display: none; /* Hide initially on mobile */
        width: 100%; 
        justify-content: center;
        flex-direction: column; /* Stacked by default on mobile */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    /* Show the navbar in a row when toggled */
    .navbar.active {
        display: flex; /* Display flex when active */
        flex-wrap: wrap; /* Allow wrapping of items */
        justify-content: center;
        gap: 10px; /* Adds space between items */
    }

    .navbar a {
        padding: 10px;
        text-align: center;
        color: #003060;
        font-weight: bold;
    }

    .pakar1{
        display: inline-block;
    }
    .pakar1 p{
        text-align: justify;
        font-size: 16px;
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .mahendra{
        display: block;
        width: 220px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .pakar2{
        display: inline-block;
        margin-top: 50px;
    }
    .pakar2 p{
        text-align: justify;
        font-size: 16px;
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .zaidan{
        display: block;
        width: 220px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}