html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    }
    
    /* header{
    
    width:100%;
    
    background:#081b4b;
    
    position:sticky;
    
    top:0;
    
    z-index:999;
    
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    
    } */
    
    .container{
    
    width:90%;
    
    max-width:1200px;
    
    margin:auto;
    
    display:flex;
    
    align-items:center;
    
    justify-content:space-between;
    
    padding:15px 0;
    
    }
    
    .logo img{
    
    height:70px;
    
    }
    
    nav ul{
    
    display:flex;
    
    list-style:none;
    
    }
    
    nav ul li{
    
    margin-left:35px;
    
    }
    
    nav ul li a{
    
    text-decoration:none;
    
    color:white;
    
    font-weight:500;
    
    transition:.3s;
    
    }
    
    nav ul li a:hover{
    
    color:#D4AF37;
    
    }
    
    .call-btn{
    
    background:#D4AF37;
    
    color:#000;
    
    padding:12px 25px;
    
    border-radius:30px;
    
    text-decoration:none;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .call-btn:hover{
    
    background:#fff;
    
    }

/*===========================
        HERO
===========================*/

.hero{

    display:flex;
    
    align-items:center;
    
    justify-content:space-between;
    
    padding:90px 8%;
    
    min-height:90vh;
    
    background:linear-gradient(135deg,#FFFDF7,#F8F5E9);    
    color:#333;
    
    gap:60px;
    
    }
    .hero{

        padding-top:180px;
        }
    .hero-left{
    
    flex:1;
    
    }
    
    .hero-right{
    
    flex:1;
    
    text-align:center;
    
    }
    
    .hero-right img{
    
    width:100%;
    
    max-width:500px;
    
    animation:float 4s ease-in-out infinite;
    
    }
    
    .hero-tag{
    
    display:inline-block;
    
    background:#D4AF37;
    
    color:black;
    
    padding:10px 20px;
    
    border-radius:30px;
    
    font-weight:600;
    
    margin-bottom:20px;
    
    }
    
    .hero h1{
    
    font-size:58px;
    color:#222;
    line-height:1.2;
    
    margin-bottom:25px;
    
    }
    
    .hero h1 span{
    
    color:#D4AF37;
    
    }
    
    .hero p{
    
    font-size:18px;
    
    line-height:1.8;
    
    margin-bottom:30px;
    
    color:#555;    
    }
    
    .hero-features{
    
    display:grid;
    
    grid-template-columns:repeat(1,1fr);
    
    gap:15px;
    
    margin-bottom:35px;
    
    }
    
    .hero-features div{
    
    font-size:18px;
    
    }
    
    .hero-features i{
    
    color:#D4AF37;
    
    margin-right:10px;
    
    }
/*=========================
        MAP SECTION
=========================*/

.map-section{

    background:#fdf9ef;

    padding:80px 0;

    text-align:center;

}

.map-section h2{

    font-size:40px;

    color:#0b2d6d;

    margin-bottom:10px;

}

.map-section p{

    color:#666;

    margin-bottom:40px;

}

.map-box{

    width:70%;

    height:420px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.15);

    border:5px solid #fff;

}

.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}
    /* ===========================
   WHY CHOOSE US
=========================== */

.why-us{

    padding:80px 20px;
    
    background:#f8f8f8;
    
    }
    
    .section-title{
    
    text-align:center;
    
    margin-bottom:50px;
    
    }
    
    .section-title h2{
    
    font-size:40px;
    
    color:#081b4b;
    
    margin-bottom:15px;
    
    }
    
    .section-title p{
    
    color:#666;
    
    font-size:18px;
    
    }
    
    .why-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    
    gap:30px;
    
    }
    
    .why-card{
    
    background:white;
    
    padding:35px;
    
    border-radius:15px;
    
    text-align:center;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.4s;
    
    }
    
    .why-card:hover{
    
    transform:translateY(-10px);
    
    }
    
    .icon{
    
    font-size:55px;
    
    margin-bottom:20px;
    
    }
    
    .why-card h3{
    
    color:#081b4b;
    
    margin-bottom:15px;
    
    }
    
    .why-card p{
    
    color:#666;
    
    line-height:1.8;
    
    }

    /*===========================
    SERVICES SECTION
===========================*/

.services{

    padding:80px 20px;
    
    background:white;
    
    }
    
    .services-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    
    gap:30px;
    
    }
    
    .service-card{
    
    background:#fff;
    
    padding:35px;
    
    text-align:center;
    
    border-radius:15px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.4s;
    
    border-top:5px solid #D4AF37;
    
    }
    
    .service-card:hover{
    
    transform:translateY(-10px);
    
    }
    
    .service-icon{
    
    font-size:55px;
    
    margin-bottom:20px;
    
    }
    
    .service-card h3{
    
    margin-bottom:15px;
    
    color:#081b4b;
    
    }
    
    .service-card p{
    
    color:#666;
    
    line-height:1.8;
    
    }

    /*===========================
      HOW IT WORKS
===========================*/

.process{

    padding:80px 20px;
    
    background:#f5f7fb;
    
    }
    
    .process-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    
    gap:30px;
    
    }
    
    .process-card{
    
    background:#fff;
    
    padding:35px 25px;
    
    border-radius:15px;
    
    text-align:center;
    
    position:relative;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.3s;
    
    }
    
    .process-card:hover{
    
    transform:translateY(-10px);
    
    }
    
    .step-number{
    
    position:absolute;
    
    top:-15px;
    
    left:50%;
    
    transform:translateX(-50%);
    
    background:#D4AF37;
    
    color:#000;
    
    width:35px;
    
    height:35px;
    
    border-radius:50%;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    font-weight:bold;
    
    }
    
    .process-icon{
    
    font-size:50px;
    
    margin:25px 0 20px;
    
    }
    
    .process-card h3{
    
    margin-bottom:15px;
    
    color:#081b4b;
    
    }
    
    .process-card p{
    
    color:#666;
    
    line-height:1.8;
    
    }

    /*===========================
       STATISTICS
===========================*/

.stats{

    background:#081b4b;
    
    padding:80px 20px;
    
    }
    
    .stats-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    
    gap:30px;
    
    text-align:center;
    
    }
    
    .stat-box{
    
    color:white;
    
    }
    
    .stat-box h2{
    
    font-size:50px;
    
    color:#D4AF37;
    
    margin-bottom:10px;
    
    }
    
    .stat-box p{
    
    font-size:20px;
    
    }

    /*===========================
      TESTIMONIALS
===========================*/

.testimonials{

    padding:80px 20px;
    
    background:#ffffff;
    
    }
    
    .testimonial-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    
    gap:30px;
    
    }
    
    .testimonial-card{
    
    background:#f8f8f8;
    
    padding:35px;
    
    border-radius:15px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.3s;
    
    }
    
    .testimonial-card:hover{
    
    transform:translateY(-10px);
    
    }
    
    .stars{
    
    font-size:24px;
    
    color:#D4AF37;
    
    margin-bottom:20px;
    
    }
    
    .testimonial-card p{
    
    color:#666;
    
    line-height:1.8;
    
    margin-bottom:20px;
    
    }
    
    .testimonial-card h4{
    
    color:#081b4b;
    
    font-size:18px;
    
    }

    /*===========================
      CALL TO ACTION
===========================*/

.cta{

    background:linear-gradient(135deg,#081b4b,#0f2d73);
    
    padding:90px 20px;
    
    text-align:center;
    
    color:white;
    
    }
    
    .cta-content{
    
    max-width:800px;
    
    margin:auto;
    
    }
    
    .cta h2{
    
    font-size:42px;
    
    margin-bottom:20px;
    
    }
    
    .cta p{
    
    font-size:20px;
    
    line-height:1.8;
    
    margin-bottom:40px;
    
    color:#f1f1f1;
    
    }
    
    .cta-buttons{
    
    display:flex;
    
    justify-content:center;
    
    gap:20px;
    
    flex-wrap:wrap;
    
    }
    
    .cta-btn{
    
    background:#D4AF37;
    
    color:#000;
    
    padding:15px 35px;
    
    text-decoration:none;
    
    border-radius:50px;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .cta-btn:hover{
    
    background:white;
    
    transform:translateY(-5px);
    
    }
    
    .whatsapp-btn{
    
    background:#25D366;
    
    color:white;
    
    }
    
    .whatsapp-btn:hover{
    
    background:#1da851;
    
    }
    /* ==========================
   Mobile Menu
========================== */

/* .menu-toggle{

    display:none;
    
    font-size:28px;
    
    background:none;
    
    border:none;
    
    cursor:pointer;
    
    color:#d4af37;
    
    } */


    /* 1. Hide the toggle button by default (Desktop) */
    .menu-toggle {
        display: none;
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
        padding-left: 225px;
        color: #d4af37;
    }

/* 2. Show the navigation by default on Desktop */
nav {
    display: block;
}

/* 3. Mobile adjustments (e.g., below 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the burger icon */
    }

    nav {
        display: none; /* Hide the full menu until toggled */
        /* You might want to add a class like .is-open to show it via JS */
    }
    
    nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
    }
}
.menu-toggle {
    display: block;
  }
   /*=============================
        FOOTER
==============================*/
.footer{

    background:#FFFDF7;
    
    padding: 70px 0% 0px;
    
    border-top:1px solid #e5e5e5;
    
    font-size: 16px;
    
    margin-top:80px;
}
    
    .footer-grid{
    
    display:grid;
    
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    
    gap:50px;
    
    }
    
    .footer h3{
    
    color:#C79A00;
    
    margin-bottom:20px;
    
    }
    
    .footer h4{
    
    color:#C79A00;
    
    margin-bottom:20px;
    
    }
    
    .footer p{
    
    color:#555;
    
    line-height:1.8;
    
    }
    
    .footer ul{
    
    list-style:none;
    
    padding:0;
    
    }
    
    .footer ul li{
    
    margin:12px 0;
    
    color:#555;
    
    }
    
    .footer ul li a{
    
    text-decoration:none;
    
    color:#555;
    
    transition:.3s;
    
    }
    
    .footer ul li a:hover{
    
    color:#C79A00;
    
    }
    
    .footer-bottom{
    
    margin-top:50px;
    
    padding-top:25px;
    
    border-top:1px solid #ddd;
    
    display:flex;
    
    justify-content:space-between;
    
    align-items:center;
    
    flex-wrap:wrap;
    
    }
    
    .footer-buttons{
    
    display:flex;
    
    gap:15px;
    
    }
    
    .call-btn{
    
    background:#D4AF37;
    
    color:#fff;
    
    padding:12px 28px;
    
    border-radius:50px;
    
    text-decoration:none;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .call-btn:hover{
    
    background:#B68C16;
    
    }
    
    .whatsapp-btn{
    
    background:#25D366;
    
    color:white;
    
    padding:12px 28px;
    
    border-radius:50px;
    
    text-decoration:none;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .whatsapp-btn:hover{
    
    background:#1DA851;
    
    }
    
    .footer i{
    
    margin-right:8px;
    
    color:#C79A00;
    
    }

    /*==========================
      TOP MARQUEE
===========================*/

.top-marquee{

    width:100%;
    
    background:linear-gradient(90deg,#99926b,#F4C430,#FFD700);
    
    overflow:hidden;
    
    white-space:nowrap;
    
    position:relative;
    
    top:150px;          /* Adjust according to your header height */
    
    left:0;
    
    z-index:998;
    
    height:85px;
    
    display:flex;
    
    align-items:center;
    
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    
    }
    
    .marquee-content{
    
    display:inline-block;
    
    padding-left:100%;
    
    font-size:40px;
    
    font-weight:700;
    
    color:#1d1d1d;
    
    animation:marqueeMove 22s linear infinite;
    
    }
    
    @keyframes marqueeMove{
    
    0%{
    
    transform:translateX(0);
    
    }
    
    100%{
    
    transform:translateX(-100%);
    
    }
    
    }

    
    @media(max-width:768px){
    
    .container{
    
    flex-direction:row;
    
    }
    
    nav{
    
    display:none;
    
    width:100%;
    
    }
    
    nav.active{
    
    display:block;
    
    }
    
    nav ul{
    
    flex-direction:column;
    
    background:#081b4b;
    
    padding:20px;
    
    margin-top:20px;
    
    }
    
    /* .menu-toggle{
    
    display:block;
    
    } */
    
  
    
    }

    /*===========================
      SCROLL ANIMATION
===========================*/

.hidden{

    opacity:0;
    
    transform:translateY(60px);
    
    transition:all .8s ease;
    
    }
    
    .show{
    
    opacity:1;
    
    transform:translateY(0);
    
    }

    /*===========================
     SCROLL TO TOP
===========================*/

#topBtn{

    position:fixed;
    
    bottom:25px;
    
    right:25px;
    
    width:50px;
    
    height:50px;
    
    border:none;
    
    border-radius:50%;
    
    background:#D4AF37;
    
    color:#000;
    
    font-size:22px;
    
    cursor:pointer;
    
    display:none;
    
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    
    transition:.3s;
    
    }
    
    #topBtn:hover{
    
    background:white;
    
    }

    @keyframes float{

        0%{
        
        transform:translateY(0);
        
        }
        
        50%{
        
        transform:translateY(-15px);
        
        }
        
        100%{
        
        transform:translateY(0);
        
        }
        
        }

        /*==========================
PAGE BANNER
==========================*/

.page-banner{

    background:linear-gradient(135deg,#081b4b,#0f2d73);
    
    padding:100px 20px;
    
    text-align:center;
    
    color:white;
    
    }
    
    .page-banner h1{
    
    font-size:48px;
    
    margin-bottom:20px;
    
    }
    
    .about-page{
    
    padding:80px 10%;
    
    }
    
    .about-content{
    
    display:grid;
    
    gap:40px;
    
    }
    
    .about-content h2{
    
    color:#081b4b;
    
    margin-bottom:20px;
    
    }
    
    .about-content p{
    
    line-height:1.9;
    
    color:#666;
    
    }
    
    .about-content ul{
    
    padding-left:20px;
    
    line-height:2;
    
    }

    /*==========================
      SERVICES PAGE
==========================*/

.services-page{

    padding:80px 8%;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    
    gap:30px;
    
    background:#fff;
    
    }
    
    .service-box{
    
    background:#fff;
    
    padding:35px;
    
    border-radius:15px;
    
    text-align:center;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.3s;
    
    border-top:5px solid #D4AF37;
    
    }
    
    .service-box:hover{
    
    transform:translateY(-10px);
    
    }
    
    .service-box i{
    
    font-size:55px;
    
    color:#D4AF37;
    
    margin-bottom:20px;
    
    }
    
    .service-box h2{
    
    margin-bottom:15px;
    
    color:#081b4b;
    
    font-size:26px;
    
    }
    
    .service-box p{
    
    line-height:1.8;
    
    color:#666;
    
    }
    
    /* WHY CHOOSE SERVICES */
    
    .why-services{
    
    padding:80px 8%;
    
    background:#f8f8f8;
    
    text-align:center;
    
    }
    
    .why-services h2{
    
    font-size:38px;
    
    margin-bottom:50px;
    
    color:#081b4b;
    
    }
    
    .features-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    
    gap:25px;
    
    }
    
    .features-grid div{
    
    background:white;
    
    padding:30px;
    
    border-radius:12px;
    
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    
    }
    
    .features-grid i{
    
    font-size:40px;
    
    color:#D4AF37;
    
    margin-bottom:15px;
    
    }
    
    .features-grid p{
    
    font-size:18px;
    
    font-weight:600;
    
    color:#333;
    
    }

    /*==========================
     CONTACT FORM
==========================*/

.contact-form-section{

    padding:80px 8%;
    
    background:#ffffff;
    
    }
    
    .contact-form-container{
    
    max-width:700px;
    
    margin:auto;
    
    background:#fff;
    
    padding:40px;
    
    border-radius:15px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    }
    
    .form-group{
    
    margin-bottom:20px;
    
    }
    
    .form-group label{
    
    display:block;
    
    font-weight:600;
    
    margin-bottom:8px;
    
    color:#081b4b;
    
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea{
    
    width:100%;
    
    padding:14px;
    
    border:1px solid #ccc;
    
    border-radius:8px;
    
    font-size:16px;
    
    font-family:'Poppins',sans-serif;
    
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus{
    
    outline:none;
    
    border-color:#D4AF37;
    
    box-shadow:0 0 5px rgba(212,175,55,.5);
    
    }
    
    .submit-btn{
    
    background:#D4AF37;
    
    color:#000;
    
    padding:15px 30px;
    
    border:none;
    
    border-radius:40px;
    
    font-size:17px;
    
    font-weight:600;
    
    cursor:pointer;
    
    transition:.3s;
    
    }
    
    .submit-btn:hover{
    
    background:#081b4b;
    
    color:#fff;
    
    }/*==========================
        PRELOADER
==========================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#081b4b;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:opacity .5s ease, visibility .5s ease;

}

.loader{

text-align:center;

}

.loader-circle{

width:80px;

height:80px;

border:6px solid rgba(255,255,255,.25);

border-top:6px solid #D4AF37;

border-radius:50%;

margin:0 auto 25px;

animation:spin 1s linear infinite;

}

.loader h2{

color:#D4AF37;

font-size:32px;

margin-bottom:10px;

}

.loader p{

color:white;

letter-spacing:2px;

}

@keyframes spin{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

/*==========================
        PRELOADER
==========================*/

#preloader{

    position:fixed;
    
    top:0;
    
    left:0;
    
    width:100%;
    
    height:100vh;
    
    background:#081b4b;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    z-index:99999;
    
    transition:opacity .5s ease, visibility .5s ease;
    
    }
    
    .loader{
    
    text-align:center;
    
    }
    
    .loader-circle{
    
    width:80px;
    
    height:80px;
    
    border:6px solid rgba(255,255,255,.25);
    
    border-top:6px solid #D4AF37;
    
    border-radius:50%;
    
    margin:0 auto 25px;
    
    animation:spin 1s linear infinite;
    
    }
    
    .loader h2{
    
    color:#D4AF37;
    
    font-size:32px;
    
    margin-bottom:10px;
    
    }
    
    .loader p{
    
    color:white;
    
    letter-spacing:2px;
    
    }
    
    @keyframes spin{
    
    0%{
    
    transform:rotate(0deg);
    
    }
    
    100%{
    
    transform:rotate(360deg);
    
    }
    
    }

    /*===========================
        GALLERY PAGE
===========================*/

.gallery-page{

    padding:80px 8%;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    
    gap:25px;
    
    background:#f8f8f8;
    
    }
    
    .gallery-item{
    
    position:relative;
    
    overflow:hidden;
    
    border-radius:15px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    
    cursor:pointer;
    
    }
    
    .gallery-item img{
    
    width:100%;
    
    height:280px;
    
    object-fit:cover;
    
    transition:.5s;
    
    display:block;
    
    }
    
    .gallery-item:hover img{
    
    transform:scale(1.1);
    
    }
    
    .gallery-overlay{
    
    position:absolute;
    
    left:0;
    
    bottom:0;
    
    width:100%;
    
    padding:20px;
    
    background:linear-gradient(transparent,rgba(0,0,0,.8));
    
    color:white;
    
    }
    
    .gallery-overlay h3{
    
    margin:0;
    
    font-size:22px;
    
    }

    .floating-btn{
        width:60px;
        height:60px;
        border-radius:50%;
        display:flex;
        justify-content:center;
        align-items:center;
        color:#fff;
        font-size:28px;
        box-shadow:0 10px 25px rgba(0,0,0,.3);
        transition:.3s;
    }
    
    .call-btn{
        background:#d62828;
    }
    
    .whatsapp-btn{
        background:#25D366;
    }
    
    .floating-btn:hover{
        transform:scale(1.15);
    }

    /* ===========================
        HEADER
=========================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    
    background:linear-gradient(135deg,#FFFDF7,#F8F5E9);    
    
    box-shadow:0 2px 15px rgba(0,0,0,.05);
    
    }
    
    .header-container{
    
    max-width:1200px;
    
    margin:auto;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    position:relative;
    
    padding:18px 20px;
    
    }
    
    /* Logo */
    
    .logo-area{
    
    position:absolute;
    
    left:20px;
    
    }
    
    .logo{
    
    width: 68px;;
    
    height:auto;
    
    transition:.3s;
    
    }
    
    .logo:hover{
    
    transform:scale(1.05);
    
    }
    
    /* Navigation */
    
    #navbar{
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    gap:45px;
    
    list-style:none;
    
    margin:0;
    
    padding:0;
    
    }
    
    #navbar li{
    
    list-style:none;
    
    }
    
    #navbar a{
    
    text-decoration:none;
    
    font-size:25px;
    
    font-weight:600;
    
    color:#333;
    
    transition:.3s;
    
    }
    
    #navbar a:hover{
    
    color:#D4AF37;
    
    }
    
    #navbar a.active{
    
    color:#D4AF37;
    
    }
    /*==========================
CONTACT + MAP
==========================*/

.contact-map{

padding:80px 0;

background:#fdf9ef;

}

.contact-map h2{

text-align:center;

font-size:42px;

color:#0d2f73;

margin-bottom:15px;

}

.contact-map> .container>p{

text-align:center;

margin-bottom:50px;

color:#666;

font-size:18px;

}

.contact-map-wrapper{

display:grid;

grid-template-columns:380px 1fr;

gap:40px;

align-items:center;

}

.contact-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.12);

}

.contact-card h3{

margin-bottom:30px;

color:#0d2f73;

}

.contact-item{

display:flex;

align-items:flex-start;

margin-bottom:25px;

}

.contact-item i{

width:55px;

height:55px;

background:#d4af37;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

margin-right:18px;

}

.contact-item strong{

display:block;

font-size:18px;

margin-bottom:5px;

}

.contact-item p{

color:#666;

line-height:1.7;

}

.map-card{

height:520px;

overflow:hidden;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.15);

}

.map-card iframe{

width:100%;

height:100%;

border:0;

}

/*==============================
 Website Container
==============================*/

.container{
    width:100%;
    max-width:1250px;
    margin:0 auto;
    padding:0 25px;
    box-sizing:border-box;
}