
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #fff;
            color: #1d3557;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
        }





/* =========================
   HAMBURGER ICON
========================= */
.hamburger{
    display:none;
    font-size:28px;
    color:#0A3D91;
    cursor:pointer;
    z-index:10000;
}
/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:240px;
    height:100vh;
    background:#fff;
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
    z-index:99999;
    padding:80px 20px;
    transition:.4s ease;
}

.mobile-menu ul{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.mobile-menu ul li a{
    display:block;
    padding:12px 15px;
    border-radius:10px;
    color:#0A3D91;
    font-weight:600;
    background:#f5f9ff;
}

.mobile-menu ul li a:hover{
    background:#0A3D91;
    color:#fff;
}

/* OPEN STATE */
.mobile-menu.active{
    right:0;
}

.close-menu{
    position:absolute;
    top:20px;
    right:10px;
    font-size:28px;
    color:#0A3D91;
    cursor:pointer;
}

/* =========================
   RESPONSIVE FIX
========================= */

@media(max-width:1100px){

    nav{
        display:none;
    }

    .btn{
        display:none;
    }

    .hamburger{
        display:block;
    }
}
       /*=====================================
        TOP HEADER
=====================================*/

.top-strip{

    position:relative;

    background:linear-gradient(90deg,#042A69 0%,#0A3D91 50%,#1565C0 100%);

    color:#fff;

    height:48px;

    display:flex;

    align-items:center;

    overflow:hidden;

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.12);

}

.top-strip::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:1px;

    background:rgba(255,255,255,.15);

}

.top-container{

    width:92%;

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:220px 1fr 150px;

    align-items:center;

    gap:25px;

}

/*=====================================
        LEFT
=====================================*/

.top-left{

    display:flex;

    align-items:center;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-size:14px;

    font-weight:500;

    transition:.35s;

}

.top-left i{

    width:30px;

    height:30px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

    transition:.35s;

}

.top-left:hover i{

    background:#fff;

    color:#1565C0;

}

.top-left:hover span{

    color:#FFD54F;

}

/*=====================================
        MARQUEE
=====================================*/

.top-marquee{

    overflow:hidden;

    white-space:nowrap;

    position:relative;

}

.marquee-content{

    display:flex;

    width:max-content;

    animation:marqueeMove 28s linear infinite;

}

.marquee-content span{

    padding-right:120px;

    font-size:13px;

    font-weight:500;

    letter-spacing:.5px;

    color:#fff;

}

.top-marquee:hover .marquee-content{

    animation-play-state:paused;

}

@keyframes marqueeMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*=====================================
        SOCIAL ICONS
=====================================*/

.top-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:10px;

}

.top-right a{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.35s;

}

.top-right a:hover{

    background:#fff;

    color:#1565C0;

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

/*=====================================
        TABLET
=====================================*/

@media(max-width:992px){

.top-strip{

height:auto;

padding:12px 0;

}

.top-container{

grid-template-columns:1fr;

gap:12px;

}

.top-left{

justify-content:center;

}

.top-right{

justify-content:center;

}

.top-marquee{

width:100%;

}

}

/*=====================================
        MOBILE
=====================================*/

@media(max-width:576px){

.top-strip{

padding:10px 0;

}

.top-left span{

font-size:12px;

}

.top-left i{

width:26px;

height:26px;

font-size:11px;

}

.top-marquee{

display:none;

}

.top-right a{

width:30px;

height:30px;

font-size:13px;

}

}

      
/*==================================
            HEADER
==================================*/

.header{

    position:sticky;

    top:0;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.services-container{

    width:92%;

    max-width:1400px;

    margin:auto;

    height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;
        position:relative;


}

/*=========================
        LOGO
=========================*/

.logo img{

    height:72px;

    transition:.35s;
    border-radius:20px;

}

.logo img:hover{

    transform:scale(1.05);

}

/*=========================
      NAVIGATION BOX
=========================*/

nav{

    background:#fff;

    padding:8px;

    border-radius:60px;

    box-shadow:0 12px 35px rgba(21,101,192,.10);

    border:1px solid #edf2f7;

}

nav ul{

    display:flex;

    align-items:center;

    gap:8px;

    list-style:none;

}

nav ul li{

    position:relative;

}

nav ul li a{

    display:block;

    padding:14px 24px;

    color:#0A3D91;

    font-size:15px;

    font-weight:600;

    border-radius:40px;

    transition:.35s;

}

/* Active */

nav ul li a.active{

    background:linear-gradient(135deg,#1565C0,#0A3D91);

    color:#fff;

    box-shadow:0 10px 25px rgba(21,101,192,.30);

}

/* Hover */

nav ul li a:hover{

    background:#F2F7FF;

    color:#1565C0;

}

/*=========================
      BUTTON
=========================*/

.btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:50px;

    background:linear-gradient(135deg,#1565C0,#0A3D91);

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(21,101,192,.25);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(21,101,192,.35);

}

.btn i{

    font-size:18px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:1100px){

nav{

display:none;

}

.btn{

display:none;

}

.container{

height:80px;

}

.logo img{

height:60px;

}

}
    
    
    
    
    
/*=========================
    BANNER SLIDER
=========================*/

.banner-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:500px;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#fff;
    transform:scale(1.2);
}

/* Tablet */

@media(max-width:992px){

    .slider{
        height:500px;
    }

}

/* Mobile */

@media(max-width:768px){

    .slider{
        height:250px;
    }

}



       /* =========================
   ABOUT SECTION BASE
========================= */
.about-section{
    position:relative;
    padding:20px 8%;
    overflow:hidden;
    color:#fff;
    font-family:'Poppins',sans-serif;
    background:url("assets/img/about1.png") center center/cover no-repeat;
    animation:bgZoom 20s ease-in-out infinite alternate;
}
@keyframes bgZoom{
    0%{background-size:100%;}
    100%{background-size:110%;}
}
.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(2,6,23,0.92),
        rgba(15,23,42,0.85)
    );
    z-index:1;
}
.about-container,
.bg-shapes{
    position:relative;
    z-index:2;
}

/* Floating background shapes */
.bg-shapes span{
    position:absolute;
    border-radius:50%;
    filter: blur(80px);
    opacity:0.4;
    animation: floatMove 10s infinite alternate;
}

.bg-shapes span:nth-child(1){
    width:250px;height:250px;
    background:#4f46e5;
    top:-50px;left:-50px;
}

.bg-shapes span:nth-child(2){
    width:300px;height:300px;
    background:#06b6d4;
    bottom:-80px;right:-60px;
    animation-delay:2s;
}

.bg-shapes span:nth-child(3){
    width:200px;height:200px;
    background:#f97316;
    top:40%;left:60%;
    animation-delay:4s;
}

@keyframes floatMove{
    0%{transform:translateY(0px) scale(1);}
    100%{transform:translateY(-30px) scale(1.1);}
}

/* =========================
   LAYOUT
========================= */
.about-container{
    display:flex;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.about-left, .about-right{
    flex:1;
}

/* =========================
   IMAGE BOX
========================= */
.image-box{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    transform:translateY(0);
    animation: floatImage 6s ease-in-out infinite;
}

.image-box img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:0.5s;
}

.image-box:hover img{
    transform:scale(1.05);
}

@keyframes floatImage{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

/* Experience badge */
.experience-badge{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:15px 20px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.2);
}

.experience-badge h2{
    font-size:28px;
    color:#38bdf8;
}

/* =========================
   TEXT AREA
========================= */
.section-tag{
    color:#38bdf8;
    font-weight:600;
    letter-spacing:2px;
}

.about-right h2{
    font-size:42px;
    margin:15px 0;
    line-height:1.2;
}

.about-right h2 span{
    color:#38bdf8;
}

.about-text{
    opacity:0.8;
    line-height:1.7;
    margin-bottom:30px;
}

/* =========================
   SERVICE CARDS
========================= */
.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.service-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:20px;
    border-radius:15px;
    text-align:center;
    transition:0.4s;
    backdrop-filter:blur(10px);
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform:skewX(-20deg);
}
.service-card:hover::before{
    animation:shine 1.2s ease;
}

@keyframes shine{
    0%{left:-100%;}
    100%{left:200%;}
}

.service-card i{
    font-size:22px;
    color:#38bdf8;
    margin-bottom:10px;
}

.service-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.15);
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* =========================
   BADGES
========================= */
.trust-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.badge{
    padding:8px 12px;
    border-radius:20px;
    background:rgba(255,255,255,0.1);
    font-size:13px;
    border:1px solid rgba(255,255,255,0.15);
}

/* =========================
   BUTTONS
========================= */
.about-cta{
    display:flex;
    gap:15px;
}

.btn-primary, .btn-outline{
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    transition:0.4s;
    font-weight:500;
}

.btn-primary{
    background:linear-gradient(135deg,#38bdf8,#4f46e5);
    color:#fff;
    box-shadow:0 10px 20px rgba(56,189,248,0.3);
}

.btn-primary:hover{
    transform:scale(1.05);
}

.btn-outline{
    border:1px solid #38bdf8;
    color:#38bdf8;
}

.btn-outline:hover{
    background:#38bdf8;
    color:#000;
}

/* =========================
   SIMPLE REVEAL ANIMATION
========================= */
.about-left, .about-right{
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:991px){

.about-section{
    padding:80px 20px;
}

.about-container{
    flex-direction:column;
    gap:40px;
}

.about-left,
.about-right{
    width:100%;
    flex:0 0 100%;
}

.about-right{
    text-align:center;
}

.about-right h2{
    font-size:34px;
}

.about-cta{
    justify-content:center;
}

.trust-badges{
    justify-content:center;
}

}

@media (max-width:767px){

.about-section{
    padding:60px 15px;
}

.about-right h2{
    font-size:28px;
    line-height:1.3;
}

.about-text{
    font-size:15px;
}

.service-grid{
    grid-template-columns:1fr;
}

.service-card{
    padding:18px;
}

.about-cta{
    flex-direction:column;
}

.btn-primary,
.btn-outline{
    width:100%;
    text-align:center;
}

.experience-badge{
    left:12px;
    right:12px;
    bottom:12px;
    padding:12px;
}

.experience-badge h2{
    font-size:24px;
}

.badge{
    font-size:12px;
}
}






/*=========================================
GALLERY SECTION
=========================================*/

.gallery-section{
  
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f5f9ff 45%,#edf5ff 100%);
}

/* Soft Grid Pattern */

.gallery-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(21,101,192,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,101,192,.05) 1px, transparent 1px);
    background-size:60px 60px;
    opacity:.7;
    pointer-events:none;
}

/* Top Wave */

.gallery-section::after{
    content:"";
    position:absolute;
    left:-10%;
    top:-180px;
    width:120%;
    height:350px;
    background:radial-gradient(circle at center,
        rgba(21,101,192,.12),
        transparent 70%);
    pointer-events:none;
}

/* Content Above Pattern */

.gallery-container{

    position:relative;

    z-index:2;

    width:90%;
    max-width:1300px;

    margin:auto;

}

/* Floating Blur Shapes */

.pattern-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(8px);
    animation:floatCircle 10s ease-in-out infinite;
}


/* Left */

.pattern1{
    width:240px;
    height:240px;
    background:rgba(21,101,192,.08);
    top:80px;
    left:-90px;
}

/* Right */

.pattern2{
    width:320px;
    height:320px;
    background:rgba(0,174,239,.08);
    bottom:40px;
    right:-130px;
    animation-delay:2s;
}
/* Small Accent Circle */

.gallery-section .pattern3{
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,255,255,.8);
    box-shadow:0 0 60px rgba(21,101,192,.08);
    top:45%;
    right:18%;
    animation:floatCircle 8s ease-in-out infinite;
}


.gallery-container{
    position:relative;
    z-index:5;
    width:90%;
    max-width:1300px;
    margin:auto;
}

@keyframes floatCircle{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0px);
    }

}
/*=========================================
SECTION TITLE
=========================================*/

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#1565C0;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    color:#0B1F3A;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    color:#6B7280;
    line-height:1.8;
    font-size:16px;
}

/*=========================================
GRID
=========================================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/*=========================================
CARD
=========================================*/

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.35s;
}

.gallery-card img{
    width:100%;
    height:280px;
    display:block;
    object-fit:cover;
    transition:.6s ease;
}

/*=========================================
OVERLAY
=========================================*/

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    flex-direction:column;
    padding:25px;
    background:linear-gradient(to top,
        rgba(21,101,192,.95),
        rgba(21,101,192,.15));
    opacity:0;
    transition:.4s;
}

.gallery-overlay h4{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin:0;
    transform:translateY(20px);
    transition:.4s;
}

/*=========================================
HOVER
=========================================*/

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.gallery-card:hover img{
    transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-overlay h4{
    transform:translateY(0);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

    .gallery-section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .gallery-card img{
        height:240px;
    }

}

@media(max-width:768px){

    .gallery-section{
        padding:60px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .gallery-card img{
        height:220px;
    }

    .gallery-overlay{
        opacity:1;
        background:linear-gradient(to top,
            rgba(21,101,192,.9),
            rgba(21,101,192,0));
    }

    .gallery-overlay h4{
        font-size:20px;
        transform:none;
    }

}






/*=====================================
PREMIUM TESTIMONIAL SECTION
=====================================*/

.testimonial-section{
    padding:20px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#eef6ff 100%);
    overflow:hidden;
    position:relative;
}
.testimonial-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(21,101,192,.05);

    border-radius:50%;

    top:-220px;
    right:-180px;

}
.testimonial-container{

    width:92%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;

}

/*=========================
MARQUEE
=========================*/

.testimonial-marquee{
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    align-items:stretch;
    gap:22px;
    width:max-content;
    animation:testimonialScroll 30s linear infinite;
}

.testimonial-marquee:hover .testimonial-track{
    animation-play-state:paused;
}

/*=========================
CARD
=========================*/

.testimonial-card{

    width:310px;

    flex-shrink:0;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    border-radius:22px;

    padding:28px;

    border:1px solid rgba(21,101,192,.08);

    box-shadow:
    0 15px 40px rgba(15,23,42,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 55px rgba(21,101,192,.18);

}

/* Blue top bar */
.testimonial-card::before{

    content:"";

    position:absolute;

    width:170px;
    height:170px;

    background:linear-gradient(
    135deg,
    rgba(21,101,192,.08),
    transparent);

    border-radius:50%;

    top:-80px;
    right:-70px;

}

/*=========================
QUOTE ICON
=========================*/


.quote-icon{

    width:52px;
    height:52px;

    border-radius:15px;

    background:linear-gradient(
    135deg,
    #1565C0,
    #0B4A94);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;

    margin-bottom:18px;

    box-shadow:0 12px 25px rgba(21,101,192,.25);

}

/*=========================
STARS
=========================*/

.stars{

    margin-bottom:18px;

}

.stars i{

    color:#FDBA12;

    font-size:15px;

    margin-right:3px;

}

/*=========================
MESSAGE
=========================*/

.testimonial-card p{

    color:#5B6472;

    font-size:14px;

    line-height:1.8;

    margin-bottom:24px;

    min-height:95px;

}

/*=========================
CLIENT
=========================*/


.client{

    display:flex;

    align-items:center;

    gap:14px;

    border-top:1px solid #EEF2F7;

    padding-top:18px;

}


.client img{

    width:60px;
    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #1565C0;

    box-shadow:0 8px 18px rgba(21,101,192,.18);

}

.client h4{

    margin:0;

    color:#0F172A;

    font-size:17px;

    font-weight:700;

}
.client span{

    display:block;

    margin-top:4px;

    color:#64748B;

    font-size:13px;

}


/*=========================
ANIMATION
=========================*/


@keyframes testimonialScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:768px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-card{

        width:270px;

        padding:18px;

    }

    .testimonial-card p{

        height:auto;

    }

    .client img{

        width:48px;
        height:48px;

    }

    .client h4{

        font-size:15px;

    }

}






/*=========================
 About Us Page:   GROWTH SECTION
=========================*/

.growth-section{
    padding:50px 0;
    background:#fff;
}

.section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#EAF3FF;
    color:#1565C0;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:44px;
    color:#041C4A;
    margin-bottom:18px;
}

.section-title p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}

.growth-wrapper{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.growth-line{
    position:absolute;
    top:48px;
    left:5%;
    width:90%;
    height:4px;
    background:#d7e9ff;
    z-index:0;
}

.growth-step{
    width:20%;
    text-align:center;
    position:relative;
    z-index:2;
}

.growth-circle{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    font-weight:700;
    border:8px solid #fff;
    box-shadow:0 15px 35px rgba(21,101,192,.25);
    transition:.35s;
}

.growth-step:hover .growth-circle{
    transform:translateY(-8px);
}

.growth-step h3{
    margin-top:25px;
    margin-bottom:12px;
    color:#041C4A;
    font-size:22px;
}

.growth-step p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    padding:0 10px;
}

/*====================================
        TABLET
====================================*/

@media(max-width:991px){

.growth-section{
    padding:70px 20px;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:34px;
}

.growth-wrapper{
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.growth-line{
    display:none;
}

.growth-step{
    width:calc(50% - 20px);
}

.growth-circle{
    width:85px;
    height:85px;
    font-size:26px;
}

.growth-step h3{
    font-size:20px;
}

}

/*====================================
        MOBILE
====================================*/

@media(max-width:767px){

.growth-section{
    padding:60px 0;
}

.section-title{
    width:90%;
    margin:0 auto 40px;
}

.section-title span{
    font-size:12px;
    padding:7px 16px;
}

.section-title h2{
    font-size:28px;
    line-height:1.3;
}

.section-title p{
    font-size:15px;
    line-height:1.7;
}

.growth-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.growth-line{
    display:none;
}

.growth-step{
    width:100%;
    text-align:center;
}

.growth-circle{
    width:80px;
    height:80px;
    font-size:24px;
    border-width:6px;
    margin:0 auto 18px;
}

.growth-step h3{
    margin-top:0;
    margin-bottom:10px;
    font-size:20px;
}

.growth-step p{
    padding:0 10px;
    font-size:15px;
    line-height:1.7;
}

}



/*====================================
        SMALL MOBILE
====================================*/

@media(max-width:480px){

.section-title h2{
    font-size:24px;
}

.section-title p{
    font-size:14px;
}

.growth-circle{
    width:60px;
    height:60px;
    font-size:20px;
}

.growth-step{
    padding:20px 15px;
}

.growth-step h3{
    font-size:18px;
}

}










  /*=====================================
    Services Page :     SERVICES HERO
======================================*/

.services-hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    background:url("assets/img/services-banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,28,74,.92) 0%,
        rgba(10,61,145,.82) 45%,
        rgba(21,101,192,.45) 100%
    );
}

.services-hero .services-hero-container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1300px;
    margin:auto;
}

.services-hero-content{
    max-width:650px;
    color:#fff;
}

/*========================
    Breadcrumb
=========================*/

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
    font-size:15px;
}

.breadcrumb a,
.breadcrumb span{
    color:#fff;
    text-decoration:none;
}

/*========================
        Heading
=========================*/

.services-hero h1{
       font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    /* margin-bottom: 25px;*/
}

.hero-line{
    width:90px;
    height:4px;
    border-radius:30px;
    background:#fff;
    margin-bottom:25px;
}

.services-hero p{
     /* font-size: 18px; */
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

/*========================
        Buttons
=========================*/

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
     background:linear-gradient(135deg,#38bdf8,#4f46e5);
    color:#fff;
    box-shadow:0 10px 20px rgba(56,189,248,0.3);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0A3D91;
}

/*========================
      Floating Cards
=========================*/

.hero-cards{
    position:absolute;
    right:0;
    bottom:40px;
    display:flex;
    gap:20px;
}

.hero-card{
    width:180px;
    padding:28px 20px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.35s;
}

.hero-card:hover{
    transform:translateY(-8px);
}

.hero-card h2{
    font-size:42px;
    color:#1565C0;
    margin-bottom:10px;
}

.hero-card span{
    color:#666;
    font-size:15px;
}

/*=====================================
          LARGE TABLET
======================================*/

@media (max-width:1200px){

.services-hero{
    min-height:auto;
    padding:120px 0 80px;
}

.services-hero h1{
    font-size:52px;
}

.hero-cards{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:60px;
    justify-content:center;
    flex-wrap:wrap;
}

}

/*=====================================
            TABLET
======================================*/

@media (max-width:992px){

.services-hero{
    text-align:center;
}

.services-hero-content{
    max-width:100%;
}

.breadcrumb{
    justify-content:center;
}

.hero-line{
    margin:25px auto;
}

.hero-buttons{
    justify-content:center;
}

.services-hero h1{
    font-size:44px;
}

.services-hero p{
    font-size:17px;
}

.hero-card{
    width:170px;
}

}

/*=====================================
            MOBILE
======================================*/

@media (max-width:768px){

.services-hero{
    padding:90px 0 70px;
}

.services-hero h1{
    font-size:34px;
    line-height:1.3;
}

.services-hero p{
    font-size:15px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.btn-primary,
.btn-outline{
    width:100%;
    max-width:280px;
}

.hero-cards{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
    margin-top:40px;
}

.hero-card{
    width:100%;
}

}

/*=====================================
        SMALL MOBILE
======================================*/

@media (max-width:480px){

.services-hero{
    padding:80px 0 60px;
}

.breadcrumb{
    font-size:13px;
}

.services-hero h1{
    font-size:28px;
}

.hero-line{
    width:70px;
}

.services-hero p{
    font-size:14px;
}

.hero-card{
    padding:22px 15px;
}

.hero-card h2{
    font-size:34px;
}

.hero-card span{
    font-size:14px;
}

.btn-primary,
.btn-outline{
    padding:14px 20px;
    font-size:15px;
}

}






/*=====================================
        SERVICES SECTION
======================================*/

.services-section{
    padding:50px 0;
    background:#f8fbff;
}

.services-section .services-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*=========================
        Section Title
=========================*/

.section-title{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.subtitle{
    display:inline-block;
    color:#1565C0;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:28px;
    color:#041C4A;
    line-height:1.3;
    margin-bottom:20px;
    font-weight:700;
}

.section-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*=========================
        Grid
=========================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:2rem;
}

/*=========================
        Card
=========================*/

.service-card-hero{
    background:#fff;
    border-radius:22px;
    padding:15px 25px;
    border:1px solid #edf2f7;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s ease;
   
    overflow:hidden;
}

.service-card-hero::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1565C0,#0A3D91);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card-hero:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(21,101,192,.15);
}

.service-card-hero:hover::before{
    transform:scaleX(1);
}

/*=========================
        Icon
=========================*/

.icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.35s;
}

.service-card-hero:hover .icon{
    transform:rotate(-8deg) scale(1.08);
}

/*=========================
        Content
=========================*/

.service-card-hero h3{
    font-size:24px;
    color:#041C4A;
   
    line-height:1.3;
}

.service-card-hero p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    
}

/*=========================
        List
=========================*/

.service-card-hero ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.service-card-hero ul li{
    position:relative;
    padding-left:25px;
    margin-bottom:12px;
    color:#555;
    font-size:15px;
}

.service-card-hero ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#1565C0;
    font-weight:bold;
}

/*=========================
        Button
=========================*/

.service-card-hero a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#1565C0;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-card-hero a i{
    transition:.3s;
}

.service-card-hero:hover a{
    color:#0A3D91;
}

.service-card-hero:hover a i{
    transform:translateX(6px);
}

/*=====================================
        LARGE TABLET
======================================*/

@media (max-width:1200px){

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:42px;
}

}

/*=====================================
            TABLET
======================================*/

@media (max-width:768px){

.services-section{
    padding:80px 0;
}

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:15px;
}

.services-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.service-card-hero{
    padding:30px 25px;
}

.icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.service-card-hero h3{
    font-size:22px;
}

}

/*=====================================
        MOBILE
======================================*/

@media (max-width:576px){

.services-section{
    padding:60px 0;
}

.section-title{
    margin-bottom:35px;
}

.subtitle{
    font-size:13px;
    letter-spacing:1.5px;
}

.section-title h2{
    font-size:28px;
    line-height:1.4;
}

.section-title h2 br{
    display:none;
}

.section-title p{
    font-size:14px;
    line-height:1.7;
}

.service-card-hero{
    padding:25px 20px;
    border-radius:18px;
}

.icon{
    width:65px;
    height:65px;
    font-size:24px;
    margin-bottom:20px;
}

.service-card-hero h3{
    font-size:20px;
}

.service-card-hero p,
.service-card-hero ul li{
    font-size:14px;
}

.service-card-hero a{
    font-size:15px;
}

}



/*=====================================
        WHY CHOOSE US
======================================*/

.why-us{
    padding:100px 0;
    background:#fff;
}

.why-us .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*=========================
        Image
=========================*/

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    display:block;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* Experience Box */

.experience-box{
    position:absolute;
    right:-25px;
    bottom:30px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 20px 40px rgba(21,101,192,.35);
}

.experience-box h2{
    font-size:48px;
    margin-bottom:5px;
    font-weight:700;
}

.experience-box span{
    font-size:15px;
    line-height:1.5;
    width:120px;
}

/*=========================
        Content
=========================*/

.subtitle{
    display:inline-block;
    color:#1565C0;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.why-content h2{
    font-size:46px;
    line-height:1.3;
    color:#041C4A;
    margin-bottom:20px;
}

.why-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/*=========================
        Features
=========================*/

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-box{
    display:flex;
    gap:18px;
    padding:22px;
    background:#f8fbff;
    border:1px solid #edf2f7;
    border-radius:18px;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(21,101,192,.12);
}

.feature-box i{
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:24px;
    flex-shrink:0;
}

.feature-box h4{
    color:#041C4A;
    font-size:19px;
    margin-bottom:8px;
}

.feature-box p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

/*=====================================
        LARGE TABLET
======================================*/

@media(max-width:1200px){

.why-grid{
    gap:50px;
}

.why-content h2{
    font-size:40px;
}

}

/*=====================================
            TABLET
======================================*/

@media(max-width:992px){

.why-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.why-content{
    text-align:center;
}

.why-content p{
    max-width:700px;
    margin:0 auto 35px;
}

.why-features{
    grid-template-columns:repeat(2,1fr);
}

.experience-box{
    right:20px;
}

}

/*=====================================
            MOBILE
======================================*/

@media(max-width:768px){

.why-us{
    padding:70px 0;
}

.why-grid{
    gap:40px;
}

.why-content h2{
    font-size:32px;
}

.why-content p{
    font-size:15px;
}

.why-features{
    grid-template-columns:1fr;
    gap:18px;
}

.experience-box{
    position:relative;
    right:auto;
    bottom:auto;
    margin:-60px auto 0;
    width:150px;
    height:150px;
}

.experience-box h2{
    font-size:38px;
}

.experience-box span{
    font-size:13px;
}
    .hero-card {
        padding: 3px 2px;
        height: 8rem;
    }
        .services-hero {
        padding: 80px 0 60px;
        height: 35rem;
    }

.feature-box{
    padding:20px;
}

.feature-box i{
    width:58px;
    height:58px;
    font-size:22px;
}

.feature-box h4{
    font-size:18px;
}

}

/*=====================================
        SMALL MOBILE
======================================*/

@media(max-width:480px){

.why-us{
    padding:60px 0;
}

.subtitle{
    font-size:13px;
}

.why-content h2{
    font-size:27px;
}
    .hero-card {
        padding: 3px 2px;
        height: 8rem;
        margin-left:1rem;
    }
        .services-hero {
        padding: 80px 0 60px;
        height: 35rem;
    }
.why-content p{
    font-size:14px;
}

.feature-box{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.feature-box i{
    margin-bottom:10px;
}

.experience-box{
    width:130px;
    height:130px;
}

.experience-box h2{
    font-size:32px;
}

.experience-box span{
    width:90px;
    font-size:12px;
}

}





















 /*====================================
    Industries Page :    INDUSTRIES SECTION
====================================*/

.industries-section{
    padding:50px 0;
    background:#f8fbff;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading span{
    display:inline-block;
    color:#1565C0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:46px;
    color:#041C4A;
    line-height:1.3;
    margin-bottom:20px;
}

.section-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:2rem;
}

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #e8eef6;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(21,101,192,.15);
}

.industry-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:18px;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    transition:.35s;
}

.industry-card:hover .industry-icon{
    transform:rotate(-8deg) scale(1.08);
}

.industry-card h3{
    font-size:24px;
    color:#041C4A;
    margin-bottom:15px;
}

.industry-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

/*================ Tablet ================*/

@media(max-width:992px){

.industries-section{
    padding:80px 0;
}

.section-heading{
    margin-bottom:45px;
}

.section-heading h2{
    font-size:36px;
}

.section-heading p{
    font-size:16px;
}

.industry-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

}

/*================ Mobile ================*/

@media(max-width:768px){

.industries-section{
    padding:60px 0;
}

.container{
    width:92%;
}

.section-heading{
    margin-bottom:35px;
}

.section-heading span{
    font-size:12px;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:28px;
    line-height:1.4;
}

.section-heading p{
    font-size:15px;
    line-height:1.7;
}

.industry-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.industry-card{
    padding:30px 20px;
}

.industry-icon{
    width:70px;
    height:70px;
    font-size:28px;
    margin-bottom:20px;
}

.industry-card h3{
    font-size:21px;
}

.industry-card p{
    font-size:14px;
}

}

/*============= Small Mobile =============*/

@media(max-width:480px){

.industries-section{
    padding:50px 0;
}

.section-heading h2{
    font-size:24px;
}

.section-heading p{
    font-size:14px;
}

.industry-card{
    padding:25px 18px;
    border-radius:16px;
}

.industry-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.industry-card h3{
    font-size:20px;
}

}























   /*=====================================
     Testimonial Page :            PREMIUM TESTIMONIAL SECTION
=====================================*/
















 /*=====================================
   Contact Page :  CONTACT SECTION (FIXED + SAFE)
=====================================*/

.contact-section{
    padding:60px 0 60px;
    background:#f8fbff;
}

/* Title */
.section-title{
    text-align:center;
    max-width:720px;
    margin:0 auto 70px;
}

.section-title span{
    color:#1565C0;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    color:#041C4A;
    margin:20px 0;
}

.section-title p{
    color:#666;
    line-height:1.8;
}



.success{
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
    border:1px solid #c3e6cb;
}

.error{
    background:#f8d7da;
    color:#721c24;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
    border:1px solid #f5c6cb;
}
/* =========================
   MAIN WRAPPER FIX
========================= */

.contact-wrapper{
   
    display: flex;
    flex-direction: column;
    /* grid-template-columns: minmax(320px, 420px) 1fr; */
    gap: 50px;
    justify-content: center;
    align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info{
        display: flex;
    /* flex-direction: column; */
    gap: 25px;
    justify-content: center;
}

.info-box{
    background:#fff;
    padding:28px;
    border-radius:20px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.35s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.info-box h3{
    color:#041C4A;
    margin-bottom:10px;
    font-size:22px;
}

.info-box p{
    color:#666;
    line-height:1.8;
}

/* =========================
   FORM FIX (IMPORTANT)
========================= */

.contact-form{
       background: #fff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
    width: 70%;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

/* ❌ removed margin-bottom bug */
.contact-form input,
.contact-form textarea{
       width: 100%;
    padding: 8px 10px;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    outline: none;
    font-size: 15px;
    transition: .3s;
    margin:0.3rem;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#1565C0;
}

.contact-form textarea{
    resize:none;
}

/* =========================
   BUTTON
========================= */

.contact-form button{
    background:linear-gradient(135deg,#1565C0,#0A3D91);
    color:#fff;
    border:none;
    padding:12px 15px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    margin-top:10px;
}

.contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(21,101,192,.25);
}


/*=====================================
        GOOGLE MAP
=====================================*/

.map-section{
    margin: 70px;
    margin-top:70px;
}

.map-title{
    text-align:center;
    margin-bottom:35px;
}

.map-title h2{
    font-size:36px;
    color:#041C4A;
    margin-bottom:10px;
}

.map-title p{
    color:#666;
}

.map-container{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    border:5px solid #fff;
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

@media(max-width:768px){

    .map-title h2{
        font-size:28px;
    }

    .map-container iframe{
        height:300px;
    }

}
/* =========================
   RESPONSIVE FIX (CRITICAL)
========================= */

@media(max-width:992px){
    .contact-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }
}

@media(max-width:768px){
    .contact-section{
        padding:80px 0 140px;
    }

    .section-title h2{
        font-size:34px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:30px;
    }
}


/*==============================
        RESPONSIVE
===============================*/

@media (max-width:1200px){

    .contact-info{
        flex-wrap:wrap;
        justify-content:center;
    }

    .info-box{
        width:45%;
    }

    .contact-form{
        width:90%;
    }

    .map-section{
        margin:50px 30px 0;
    }

}


@media (max-width:992px){

    .contact-section{
        padding:50px 20px;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:38px;
    }

    .contact-wrapper{
        gap:40px;
    }

    .contact-info{
        flex-wrap:wrap;
        gap:20px;
    }

    .info-box{
        width:calc(50% - 10px);
    }

    .contact-form{
        width:100%;
        padding:30px;
    }

    .map-section{
        margin:50px 0 0;
    }

}


@media (max-width:768px){

    .contact-section{
        padding:40px 15px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:15px;
    }

    .contact-info{
        flex-direction:column;
    }

    .info-box{
        width:100%;
        padding:22px;
    }

    .info-icon{
        width:60px;
        height:60px;
        font-size:22px;
    }

    .info-box h3{
        font-size:20px;
    }

    .contact-form{
        width:100%;
        padding:25px 20px;
        border-radius:18px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:15px;
        margin-bottom:15px;
    }

    .contact-form input,
    .contact-form textarea{
        margin:0;
        padding:14px 16px;
        font-size:15px;
    }

    .contact-form button{
        width:100%;
        padding:15px;
    }

    .map-title h2{
        font-size:28px;
    }

    .map-container{
        border-radius:18px;
    }

    .map-container iframe{
        height:300px;
    }

}


@media (max-width:480px){

    .contact-section{
        padding:35px 12px;
    }

    .section-title h2{
        font-size:26px;
    }

    .section-title p{
        font-size:14px;
        line-height:1.7;
    }

    .info-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:20px;
    }

    .info-icon{
        margin-bottom:10px;
    }

    .info-box h3{
        font-size:18px;
    }

    .info-box p{
        font-size:14px;
    }

    .contact-form{
        padding:18px;
    }

    .contact-form input,
    .contact-form textarea{
        font-size:14px;
    }

    .map-title h2{
        font-size:24px;
    }

    .map-title p{
        font-size:14px;
    }

    .map-container iframe{
        height:250px;
    }

}