/* Reset */
html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.6;
}

/* Header */
/*==============================
TOP BAR
==============================*/

.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#eff0f2;
    color:#03236f;
    font-weight: bold;      

    height:40px;
    padding:0 5%;

    font-size:13px;

    z-index:1000;
}

header{
    position:fixed;
    top: 15px;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    background:linear-gradient(to right,#00204a,#173d74);
    z-index:999;
}

.logo{
    width:100px;
    height:100px;
    object-fit:contain;
}

.brand{
    display:flex;
    align-items:center;
    gap:22px;
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1;
}

.brand-text h1{
    margin:6px 0 0;
    font-size:28px;
    font-weight:800;
    color:#fff;
    letter-spacing:1px;
}

.brand-text span{
    margin-top:6px;
    font-size:15px;
    font-weight:700;
    color:#ff9d1e;
    letter-spacing:2px;
    text-transform:uppercase;
}
.logo:hover{
    transform:scale(1.05);
}
nav{
    display:flex;
    align-items:center;
    gap:18px;
    margin-left:auto;
}

nav a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:17px;
    font-weight:700;
    letter-spacing:.5px;
    margin:0;
    padding:8px 0;
    white-space:nowrap;
    position:relative;
    transition:.3s;
}
nav a:hover{
    color:#F7941D;
}
nav a.active{

    color:#ff9800;

}

nav a::after{

    content:"";

    position:absolute;

    left: 30px;

    bottom:-8px;

    width:0;

    height:3px;

    background:#ff9800;

    transition:.35s;

}

nav a:hover::after,
nav a.active::after{

    width:100%;

}

/* Hero */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-direction:column;
    padding:250px 8% 120px;
    text-align:left;

background:
linear-gradient(
    to right,
    rgba(7,31,68,0.95) 0%,
    rgba(7,31,68,0.88) 25%,
    rgba(7,31,68,0.70) 45%,
    rgba(7,31,68,0.35) 65%,
    rgba(7,31,68,0.08) 85%,
    rgba(7,31,68,0.00) 100%
),
    url("../images/banner.png");

    background-size:cover;
    background-position: 60% center;

    color:white;
}

.hero h2{
    font-size:68px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    max-width:950px;
    width:100%;
    text-align:left;
    text-shadow:0 5px 20px rgba(0,0,0,.25);
}

.hero p{
    width:100%;
    max-width:700px;
    font-size:21px;
    line-height:1.8;
    color:#ffffff;
    margin:35px 0 15px;
    text-align:left;
}

.hero a{
    display:inline-block;
    align-self:flex-start;
    background:#F7941D;
    color:white;
    padding:18px 48px;
    text-decoration:none;
    border-radius:50px;
    font-size:20px;
    font-weight:800;
    transition:.35s;
    margin-top:20px;
}

.hero a:hover{
    background:#ff8800;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(247,148,29,.35);
}

/* Services */

section{
    padding:80px 8%;
}

section h2{
    text-align:center;
    color:#ffffff;
    text-shadow:0 4px 20px rgba(0,0,0,.45);
    margin-bottom:50px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.services div{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.services div:hover{
    transform:translateY(-10px);
}

/* Footer */

footer{
    background:#0B2C5F;
    color:white;
    text-align:center;
    padding:30px;
}
/* ABOUT SECTION */

.about{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;

    padding:100px 8%;

    background:#ffffff;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:25px;
}

.about-text p{
    max-width:620px;
    font-size:20px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    text-align: justify;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width: 750px;
    max-width:100%;
}
/* SERVICES */

.services{
    padding:100px 8%;
    background:#f8f9fb;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.services h2{
    text-align:center;
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:60px;
    width:100%;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    color:#0B2C5F;
    margin-bottom:20px;
    font-size:28px;
}

.service-card p{
    font-size:18px;
    line-height:1.7;
    color:#555;
}
/* WHY CHOOSE US */

.why-choose{
    padding:100px 8%;
    background:#f8f9fc;
}

.why-choose h2{
    text-align:center;
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:white;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card h3{
    color:#0B2C5F;
    font-size:28px;
    margin-bottom:20px;
}

.why-card p{
    color:#555;
    line-height:1.8;
    font-size:17px;
}
/* PROJECTS */

.projects{
    padding:100px 8%;
    background:white;
    text-align:center;
}

.projects h2{
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:15px;
}

.projects p{
    color:#d8e3f1;
    font-size:18px;
    margin-bottom:60px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    cursor:pointer;
}

.project-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.1) rotate(1deg);
}

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
    color:white;
    padding:40px 20px;
    text-align:left;
}

.overlay h3{
    margin:0;
    font-size:28px;
}
/* ===========================
   Statistics
=========================== */

.stats{
    display:grid;
    grid-template-columns:repeat(2,350px);
    justify-content:center;
    gap:50px;
    padding:80px 8%;
    background:#0B2C5F;
    text-align:center;
}

.stat-card{
    background:white;
    padding:60px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:72px;
    color:#F7941D;
    margin-bottom:10px;
}

.stat-card p{
    font-size:22px;
    font-weight:600;
    color:#333;
}
/* Industries */

.industries{
    padding:90px 8%;
    background:#f7f9fc;
    text-align:center;
}

.industries h2{
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:60px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:white;
    padding:45px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.industry-card h3{
    color:#0B2C5F;
    font-size:28px;
}
/* ==========================
   CALL TO ACTION
========================== */

.cta{
    background:#0B2C5F;
    color:white;
    text-align:center;
    padding:90px 8%;
}

.cta h2{
    font-size:60px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:25px;
}

.cta p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
    color:#d8e3f1;
}

.cta-btn{
    display:inline-block;
    background:#F7941D;
    color:white;
    padding:20px 55px;
    border-radius:50px;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
    transition:.35s;
}

.cta-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(247,148,29,.35);
}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#071f44;

    color:#ffffff;

    padding:70px 8% 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:60px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:25px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.footer p{

    color:#cfd8e3;

    line-height:1.9;

    margin-bottom:12px;

}

.footer a{

    display:block;

    color:#cfd8e3;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer a:hover{

    color:#F7941D;

    padding-left:6px;

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

    margin:45px 0 25px;

}

.footer-bottom{

    text-align:center;

    color:#bfc9d8;

    font-size:15px;

}

.copyright{
    text-align:center;
    color:#b9c7d8;
}
.show{
    opacity:1;
    transform:translateY(0);
}

.show{
    opacity:1;
    transform:translateY(0);
}
nav a{
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#F7941D;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}
.service-card:hover,
.why-card:hover,
.stat-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.service-card i,
.why-card i{
    color:#F7941D;
    font-size:28px;
    margin-bottom:18px;
}

.service-card h3 i,
.why-card h3 i{
    margin-right:10px;
}
.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}/* ==========================
   WHY CHOOSE OTC
========================== */

.why{
    padding:100px 8%;
    background:#f7f9fc;
    text-align:center;
}

.why h2{
    font-size:48px;
    color:#0B2C5F;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:white;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.why-card i{
    font-size:42px;
    color:#F7941D;
    margin-bottom:20px;
}

.why-card h3{
    color:#0B2C5F;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
.hero h2,
.hero p,
.hero a{
    animation:fadeUp 1s ease forwards;
}

.hero p{
    animation-delay:.3s;
}

.hero a{
    animation-delay:.6s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    width:70px;
    height:70px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:36px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.35s;
}

.whatsapp:hover{
    transform:scale(1.15);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}
/* =================================
   MOBILE RESPONSIVE
================================= */

@media (max-width:992px){

    /* HEADER */
    header{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:12px 5%;
        height:auto;
    }

    .brand{
    display:flex;
    align-items:center;
    gap:8px;
}

    .logo{
    width:48px;
    height:auto;
    }

    .brand-text h1{
    font-size:22px;
    margin:0;
    }

    .brand-text span{
    font-size:9px;
    }

    /* HAMBURGER */
    .menu-toggle{
        display:block;
        font-size:28px;
        cursor:pointer;
    }

    /* HIDE DESKTOP MENU */
    nav{
        display:none;
    }

    .quote-btn{
        display:none;
    }

    /* TOP BAR */ 
    .top-bar{ 
    padding:6px 4%; 
    font-size:10px; 
    }

    .top-left, 
    .top-right{ 
    font-size:10px; 
    }

    .top-center{ 
    display:none; 
    }

    /* HERO */
    .hero{
        padding:100px 7% 70px;
        text-align:left;
        align-items:flex-start;
    }

    .hero h2{
        font-size:38px;
        line-height:1.15;
    }

    .hero p{
        font-size:17px;
        line-height:1.6;
        max-width:100%;
    }

    /* ABOUT */
    .about{
        flex-direction:column;
        text-align:center;
    }

    /* GENERAL GRIDS */
    .service-grid,
    .project-grid,
    .industry-grid,
    .why-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    /* CONTACT PAGE */
    .contact-grid{
        grid-template-columns:1fr;
        gap:20px;
        padding:0 5%;
    }

    .contact-grid .service-card{
        min-height:auto;
        padding:25px;
    }

    /* MAP */
    .map-section{
        padding:50px 5%;
    }

    .map-section iframe{
        width:100%;
        height:400px;
        border-radius:12px;
    }

    /* STATS */
    .stats{
        grid-template-columns:1fr;
    }

    /* FOOTER */
    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .footer-top{
        text-align:center;
    }

    .footer-bottom{
        text-align:center;
    }

    /* WHATSAPP */
    .whatsapp{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
    }

}
/*==============================
OUR CLIENTS
==============================*/

.clients{
    padding:80px 10%;
    background:#f8f9fa;
    text-align:center;
}

.clients h2{
    font-size:42px;
    font-weight:800;
    color:#0c2d63;
    margin-bottom:15px;
}

.clients p{
    color:#666;
    font-size:18px;
    margin-bottom:20px;
}

.client-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:10px 90px;

    justify-items:center;
    align-items:center;

    max-width:1200px;
    margin:0 auto;
}

.client-logo{
    width:280px;
    height:140px;

    object-fit:contain;

    display:block;

    transition:0.35s ease;
}
/* CCC */
.logo-ccc{
    width:320px;
}

/* AL MUFTAH */
.logo-almuftah{
    width:260px;
    height:220px;
}

/* DANWAY */
.logo-danway{
    width:300px;
}

/* GSO */
.logo-gsq{
    width:240px;
    height:220px;
}

/* BR */
.logo-br{
    width:220px;
    height:240px;
}

/* QATAR COOL */
.logo-qatarcool{
    width:300px;
}

.client-logo:hover{
    transform:scale(1.08);
}

@media (max-width:768px){

    .client-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:30px;
    }

    .client-grid img{
        width:140px;
    }

} 
/*==============================
TESTIMONIALS
==============================*/

.testimonials{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.testimonials h2{
    font-size:40px;
    color:#0c2d63;
    margin-bottom:15px;
}

.testimonials p{
    color:#666;
    margin-bottom:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#f8f9fa;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card h4{
    color:#f4b400;
    font-size:24px;
    margin-top:20px;
}

.testimonial-card span{
    display:block;
    margin-top:10px;
    color:#0c2d63;
    font-weight:bold;
}

@media(max-width:768px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}
.quote-btn{
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:6px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    white-space:nowrap;
    transition:.3s;
    margin-left:18px;
}

.quote-btn:hover{
    background:#ff9d2d;
    transform:translateY(-3px);
}
/* ==========================================
   MOBILE OPTIMIZATION
========================================== */

@media (max-width:768px){

header{
    padding:12px 20px;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
}

.logo{
    width:48px;
    height:auto;
    margin-bottom:0;
}

nav{
    justify-content:center;
    gap:12px;
    margin-top:10px;
}

nav a{
    font-size:15px;
}

.quote-btn{
    font-size:13px;
    padding:10px 18px;
    margin:15px 0 0;
}

.hero{
    height:auto;
    padding:220px 25px 70px;
    align-items:center;
    text-align:center;
}

.hero h2{
    font-size:38px;
    line-height:1.25;
    margin-bottom:20px;
}

.hero p{
    font-size:17px;
    line-height:1.8;
    max-width:100%;
    text-align:center;
}

.hero a{
    padding:15px 35px;
    font-size:17px;
}

.about{
    flex-direction:column;
    gap:40px;
    padding:70px 25px;
}

.about-text h2{
    font-size:34px;
    text-align:center;
}

.about-text p{
    font-size:17px;
    max-width:100%;
    text-align:justify;
}

.about-image img{
    width:100%;
}

.service-grid,
.project-grid,
.industry-grid,
.why-grid,
.footer-grid,
.testimonial-grid{
    grid-template-columns:1fr;
}

.services h2,
.projects h2,
.why h2,
.industries h2,
.clients h2,
.testimonials h2,
.cta h2{
    font-size:34px;
}

.cta p{
    font-size:17px;
}

.stats{
    grid-template-columns:1fr;
}

.stat-card{
    padding:40px 25px;
}

.stat-card h2{
    font-size:54px;
}

.client-grid{
    grid-template-columns:repeat(2,1fr);
}

.client-grid img{
    width:130px;
}

.whatsapp{
    width:58px;
    height:58px;
    font-size:28px;
    right:18px;
    bottom:18px;
}

.footer{
    text-align:center;
}

.footer h3{
    margin-top:25px;
}

}
/* ===========================
   MOBILE MENU
=========================== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    z-index:10001;
}

nav{

    display:none;

    width:100%;

    flex-direction:column;

    background:#0B2C5F;

    margin-top:20px;

    padding:20px 0;

    border-radius:12px;

}

nav.active{

    display:flex;

}

nav a{

    padding:15px;

    font-size:18px;

    text-align:center;

}

.quote-btn{

    display:none;

}

.logo{

    height:70px;

}

header{

    padding:15px 20px;

}

}
/* ==========================================
   PREMIUM FOOTER V2
========================================== */

/* CTA above footer */
.footer-cta{
    background:linear-gradient(135deg,#0B2C5F,#173D74);
    padding:80px 20px;
    text-align:center;
    color:#fff;
}

.footer-cta h2{
    font-size:46px;
    margin-bottom:20px;
    color:#fff;
}

.footer-cta p{
    max-width:800px;
    margin:0 auto 35px;
    font-size:20px;
    line-height:1.8;
    color:#dbe6f5;
}

.cta-footer-btn{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:.35s;
}

.cta-footer-btn:hover{
    background:#ff9d2d;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(247,148,29,.35);
}

/* Footer */
.footer{
    background:#071F44;
    color:#fff;
    padding:70px 8% 30px;
}

.footer-top{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.footer-logo{
    width:300px;
    margin-bottom:25px;
    transition:.35s;
}

.footer-logo:hover{
    transform:scale(1.05);
}

.footer-top h3{
    font-size:36px;
    font-weight:800;
    letter-spacing:1.5px;
    color:#F7941D;
    margin-bottom:25px;
}

.footer-top p{
    max-width:650px;
    margin:0 auto;
    color:#d8e3f1;
    line-height:1.8;
    font-size:17px;
}

.social-icons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:.35s;
}

.social-icons a:hover{
    background:#F7941D;
    transform:translateY(-6px) scale(1.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.12);
    padding-top:60px;
}

.footer h3{
    color:#fff;
    margin-bottom:25px;
    font-size:24px;
}

.footer a,
.footer p{
    color:#d8e3f1;
    text-decoration:none;
    line-height:2;
    transition:.3s;
}
.footer-grid a{
    display:block;
    margin-bottom:12px;
}

.footer a:hover{
    color:#F7941D;
    padding-left:8px;
}

.footer i{
    color:#F7941D;
    width:24px;
}

.footer hr{
    margin:60px 0 25px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-bottom{
    text-align:center;
    color:#cfd8e3;
    font-size:15px;
}

/* Mobile */
@media(max-width:768px){

.footer-top h3{
    font-size:22px;
}

.footer-top p{
    font-size:16px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-cta h2{
    font-size:34px;
}

.footer-cta p{
    font-size:17px;
}

}
.footer-bottom span{
    display:block;
    margin-top:12px;
    color:#F7941D;
    font-weight:700;
    letter-spacing:1px;
}
.map-section{
    padding:80px 10%;
    background:#fff;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.map-section h2{
    font-size:42px;
    color:#0c2d63;
    font-weight:800;
    margin-bottom:15px;
}

.map-section p{
    font-size:18px;
    color:#666;
    margin-bottom:35px;
}
/* ==========================================
   CONTACT PAGE ONLY
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    width:100%;
}

.contact-grid .service-card{
    min-height:270px;
    width:100%;
}
