/* ==========================================
   LEADS REALTY
   CORPORATE BLUE THEME
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#2563EB;
    --primary-dark:#1D4ED8;
    --secondary:#0F172A;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --text:#475569;

    --shadow:0 10px 30px rgba(0,0,0,.10);

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.8;
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    position:fixed;
    top:0;
    width:100%;

    background:linear-gradient(
        90deg,
        #0B3D91,
        #123A6D
    );

    padding:10px 0;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.navbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.navbar-brand{

    display:flex;
    align-items:center;
    padding:0;
    margin:0;

}

.navbar-brand img{

    width:110px;
    height:56px;

    object-fit:contain;

    background:#fff;

    padding:5px 10px;

    border-radius:12px;

    transition:.3s;

}

.navbar-brand img:hover{

    transform:scale(1.05);

}

.navbar-nav{

    display:flex;
    gap:40px;

}

.nav-link{

    color:#fff !important;

    font-weight:600;

    transition:.3s;

}

.nav-link:hover,
.nav-link.active{

    color:#F4B400 !important;

}

/* ==========================================
   HERO
========================================== */

.hero-section{

    position:relative;

    min-height:100vh;

    padding-top:80px;

    display:flex;

    align-items:center;

    padding-left:8%;

    background:

    linear-gradient(

        rgba(0,0,0,.45),

        rgba(0,0,0,.45)

    ),

    url(images/background/bg.png);

    background-size:cover;

    background-position:center;

}

.hero-content{

    max-width:850px;

    color:#fff;

}

.hero-content h1{

    font-size:clamp(3.5rem,6vw,5.5rem);

    line-height:1.1;

    font-weight:800;

    margin-bottom:20px;

}

.hero-content p{

    font-size:1.35rem;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    background:navy;

    color:#fff;

    padding:18px 40px;

    border-radius:6px;

    font-size:1.05rem;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#b8860b;

}
/* ==========================================
   GENERAL SECTION
========================================== */

section{
    padding:100px 0;
}

/* Section Title */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    position:relative;
    display:inline-block;

    font-size:3rem;
    font-weight:800;
    color:var(--secondary);

    margin-bottom:20px;
}

.section-title h2::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:-15px;

    transform:translateX(-50%);

    width:90px;
    height:4px;

    background:var(--primary);

    border-radius:50px;
}
@media (max-width:768px){

    section{
        padding:80px 0;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:2.2rem;
    }

    .section-title h2::after{
        width:70px;
    }

}
/* ==========================================
   ABOUT SECTION
========================================== */

.about-section{
    padding:100px 0;
    background:#F8FAFC;
}

/* Company Profile */

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
    margin-bottom:60px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-content h3{
    font-size:2.5rem;
    font-weight:700;
    color:#0B3D91;
    margin-bottom:25px;
}

.about-content p{
    font-size:1.05rem;
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

/* Information Cards */

.about-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.info-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    min-height:330px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Card Icons */

.about-icon{
    width:85px;
    height:85px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    border-radius:50%;

    background:#0B3D91;

    color:#fff;

    font-size:34px;

    box-shadow:0 12px 30px rgba(11,61,145,.25);

    transition:.35s ease;
}

.info-card:hover .about-icon{
    transform:scale(1.08);
    background:#174EA6;
}

/* Card Text */

.info-card h4{
    font-size:1.6rem;
    font-weight:700;
    color:#0B3D91;
    margin-bottom:18px;
}

.info-card p{
    color:#555;
    font-size:1rem;
    line-height:1.8;
}

/* Legalities Button */

.legal-btn{
    display:inline-block;
    margin-top:20px;

    padding:12px 28px;

    background:#0B3D91;
    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.legal-btn:hover{
    background:#F4B400;
    color:#fff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .about-content h3{
        font-size:2rem;
    }

}

@media (max-width:576px){

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-content h3{
        font-size:1.8rem;
    }

    .info-card{
        min-height:auto;
    }

}

/* ==========================================
   CONTACT SECTION
========================================== */

#contact{
    background:#fff;
}

/* Contact Form */

form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.form-control{
    padding:14px;
    border:1px solid #CBD5E1;
    border-radius:12px;
    transition:.3s ease;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
    outline:none;
}

textarea{
    resize:none;
    min-height:150px;
}

/* Submit Button */

form .btn{
    padding:12px 30px;
    border:none;
    border-radius:50px;

    background:var(--primary);
    color:#fff;

    font-weight:600;

    transition:.3s ease;
}

form .btn:hover{
    background:var(--primary-dark);
}

/* Contact Information */

#contact h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:20px;
}

/* Google Map */

iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:20px;
    margin-top:20px;
    box-shadow:var(--shadow);
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{
    background:var(--primary);
    border:none;
    border-radius:8px;

    padding:12px 28px;

    font-weight:600;

    transition:.3s ease;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-primary:focus{
    box-shadow:none;
}

.btn-primary:active{
    transform:translateY(0);
}
//* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.fade-up{
    animation:fadeUp .9s ease forwards;
}

.fade-left{
    animation:fadeLeft .9s ease forwards;
}

.fade-right{
    animation:fadeRight .9s ease forwards;
}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F1F5F9;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        #0B3D91,
        #174EA6
    );

    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(
        180deg,
        #174EA6,
        #2563EB
    );
}
/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#02153D;
    padding:60px 0 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.2fr .8fr 1fr;
    gap:40px;
    align-items:start;
}

/* Logo */

.footer-logo img{
    max-width:280px;
    width:100%;
}

.footer-logo p{
    margin-top:15px;
    color:#fff;
    font-size:15px;
    line-height:1.8;
}

/* Footer Headings */

.footer-column h4{
    color:#3B82F6;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

/* Quick Links */

.footer-column ul{
    padding:0;
}

.footer-column li{
    margin-bottom:12px;
}

.footer-column a{
    color:#fff;
    font-size:17px;
    transition:.3s ease;
}

.footer-column a:hover{
    color:#3B82F6;
    padding-left:8px;
}

/* Social Cards */

.social-card{

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 18px;

    margin-bottom:15px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s ease;

}

.social-card:hover{

    transform:translateX(8px);

    background:rgba(59,130,246,.20);

}

.social-card i:first-child{

    width:25px;

    font-size:20px;

}

.social-card span{

    flex:1;

    font-size:16px;

}

.arrow{

    font-size:14px;

}

/* Footer Bottom */

.footer-bottom{

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#CBD5E1;

    font-size:14px;

}

/* Social Colors */

.fa-facebook-f{color:#1877F2;}

.fa-instagram{

background:linear-gradient(
45deg,
#F09433,
#E6683C,
#DC2743,
#CC2366,
#BC1888
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.fa-tiktok{

color:#25F4EE;

}

.fa-youtube{

color:#FF0000;

}

.fa-envelope{

color:#4285F4;

}

.social-card:hover i:first-child{

transform:scale(1.15);

transition:.3s;

}
/* ==========================================
   LOADER
========================================== */

#loader{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#02153D;

    z-index:99999;

    transition:opacity .6s ease, visibility .6s ease;
}

.loader-content{
    text-align:center;
}

.loader-content img{
    width:120px;
    margin-bottom:20px;
    animation:floatLogo 2s ease-in-out infinite;
}

.loader-content h2{
    color:#fff;
    font-size:2rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

/* Loading Bar */

.loading-bar{
    width:250px;
    height:6px;
    margin:0 auto;

    background:rgba(255,255,255,.2);

    border-radius:30px;
    overflow:hidden;
}

.loading-bar span{
    display:block;
    width:0;
    height:100%;

    background:#3B82F6;

    animation:loading 2s linear forwards;
}

/* Loader Animations */

@keyframes loading{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}

@keyframes floatLogo{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}
/* ==========================================
   SOCIAL ICON COLORS
========================================== */

.social-card i:first-child{
    transition:transform .3s ease;
}

/* Facebook */
.social-card .fa-facebook-f{
    color:#1877F2;
}

/* Instagram */
.social-card .fa-instagram{
    background:linear-gradient(
        45deg,
        #F09433,
        #E6683C,
        #DC2743,
        #CC2366,
        #BC1888
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TikTok */
.social-card .fa-tiktok{
    color:#25F4EE;
}

/* YouTube */
.social-card .fa-youtube{
    color:#FF0000;
}

/* Email */
.social-card .fa-envelope{
    color:#4285F4;
}

/* Hover Animation */
.social-card:hover i:first-child{
    transform:scale(1.15);
}
.social-card:hover{
    transform:translateX(8px);
    background:rgba(59,130,246,.20);

    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/* ==========================================
   OUR SERVICES
========================================== */
.services-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:stretch;
    max-width:1200px;
    margin:60px auto 0;
}
.services-image{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.services-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.services-image p{
    margin-top:15px;
    text-align:center;
    font-style:italic;
    color:#666;
    font-size:.95rem;
}

.services-caption{
    text-align:center;
    margin-top:18px;
    font-size:1rem;
    color:#555;
    font-style:italic;
}

.services-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:420px; /* Same height as image */
}

.services-card ul{
    list-style:disc;
    padding-left:28px;
    margin-bottom:35px;
}

.services-card li{
    font-size:1.25rem;
    margin-bottom:22px;
    color:#222;
    line-height:1.5;
}
.services-card .btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:60px;
    text-align:center;
    font-size:20px;
    font-weight:600;
}

.inquire-btn{
    display:inline-block;
    margin-top:20px;
    background:#0B3D91;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    text-align:center;
}

.inquire-btn:hover{
    background:#174EA6;
}

@media(max-width:992px){

    .services-layout{
        grid-template-columns:1fr;
    }

    .services-image{
        order:1;
    }

    .services-card{
        order:2;
    }

}

.services-section{

    padding:100px 0;

    background:#F8FAFC;

}

.services-box{

    max-width:700px;

    margin:50px auto 0;

    padding:45px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    text-align:left;

}

.services-box ul{

    margin:0;

    padding-left:22px;

}

.services-box li{

    margin-bottom:18px;

    font-size:1.15rem;

    color:#334155;

    line-height:1.8;

}

.services-btn{

    display:inline-block;

    margin-top:30px;

    padding:15px 40px;

    background:#1E4F97;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.services-btn:hover{

    background:#0B3D91;

    color:#fff;

    transform:translateY(-2px);

}
.services-image img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    border-radius:15px;
}

/* Mobile */

@media (max-width:768px){


.services-layout{

    display:flex;
    flex-direction:column;
    gap:25px;

}


.services-image{

    max-width:300px;
    margin:0 auto 25px;

}

.services-image img{

    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:15px;

}


.image-overlay{

    padding:15px;

}

.image-overlay h3{

    font-size:18px;
    line-height:1.3;

}

.services-card{

    width:100%;
    padding:25px;

}

.services-card ul{

    padding-left:20px;

}

.services-card li{

    font-size:18px;
    margin-bottom:15px;

}

.services-card .btn{

    width:100%;
    text-align:center;

}

}

}
.services-list{
    max-width:700px;
    margin:60px auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.services-list h3{
    color:#0B3D91;
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
}

.services-list ul{
    list-style:disc;
    padding-left:30px;
    margin-bottom:35px;
}

.services-list li{
    font-size:22px;
    color:#333;
    margin-bottom:18px;
    line-height:1.6;
}

.inquire-btn{
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.inquire-btn:hover{
    background:#174EA6;
}
.csr-wrapper{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:50px;

align-items:center;

margin-top:60px;

}

.csr-slider{

position:relative;

}

.csr-slide{

display:none;

}

.csr-slide.active{

display:block;

}

.csr-slide img{

width:100%;

height:470px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

box-shadow:0 15px 35px rgba(0,0,0,.12);

transition:.4s;

}

.csr-slide img:hover{

transform:scale(1.02);

}

.csr-info h3{
    font-size:2rem;        /* ≈32px */
    font-weight:700;
    color:#0B3D91;
    line-height:1.3;
    margin-bottom:18px;
}
.csr-info p{
    font-size:19px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.csr-btn{

display:inline-block;

padding:16px 35px;

background:#0B3D91;

color:#fff;

text-decoration:none;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.csr-btn:hover{

background:#174ea6;

}

/* MOBILE */

@media(max-width:992px){

.csr-wrapper{

grid-template-columns:1fr;

}

.csr-slide img{

height:320px;

}

.csr-info{

text-align:center;

}

}
.csr-modal{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.75);

justify-content:center;

align-items:center;

z-index:9999;

}

.modal-box{

background:#fff;

padding:30px;

border-radius:18px;

width:90%;

max-width:800px;

position:relative;

text-align:center;

}

.modal-box img{

width:100%;

border-radius:12px;

margin-bottom:20px;

}

.close{

position:absolute;

right:20px;

top:15px;

font-size:35px;

cursor:pointer;

font-weight:bold;

}
.csr-slider{
    position:relative;
    overflow:hidden;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(11,61,145,.85);
    color:#fff;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
    z-index:100;
    display:flex;
    justify-content:center;
    align-items:center;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover,
.next:hover{
    background:#174EA6;
    transform:translateY(-50%) scale(1.08);
}
/*====================================
CSR PAGE
====================================*/

.csr-page{

    padding:100px 0;

    background:#f8fafc;

}

.csr-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:60px;

}

.csr-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.csr-card:hover{

    transform:translateY(-8px);

}

.csr-card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.csr-content{

    padding:30px;

}

.csr-content h3{

    color:#0B3D91;

    font-size:30px;

    margin-bottom:10px;

}

.csr-content span{

    display:block;

    color:#1E4F97;

    font-weight:600;

    margin-bottom:18px;

}

.csr-content p{

    color:#555;

    line-height:1.8;

}

.csr-button{

    text-align:center;

    margin-top:60px;

}

.facebook-btn{

    display:inline-block;

    background:#0B3D91;

    color:#fff;

    text-decoration:none;

    padding:15px 40px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.facebook-btn:hover{

    background:#174EA6;

}


/* MOBILE */

@media(max-width:992px){

    .csr-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .csr-page{

        padding:70px 0;

    }

    .csr-content{

        padding:22px;

    }

    .csr-content h3{

        font: size 15px;

    }

    .csr-card img{

        height:260px;

    }

}
@media (max-width:768px){

    .csr-info{
        margin-top:25px;
        text-align:left;
    }

    .csr-info p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:20px;
    }

    .csr-btn{
        width:100%;
        text-align:center;
        font-size:16px;
        padding:14px 20px;
    }

}
@media (max-width:768px){

    .csr-info h3{
        font-size:22px;
        line-height:1.4;
        margin-bottom:12px;
    }

}
/* ==========================================
   JOIN US
========================================== */

.join-us{
    padding:100px 0;
    background:#F8FAFC;
}

.join-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;

    width:min(1200px,90%);
    margin:0 auto;
}
.join-tag{
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
}

.join-left h2{
    font-size:3rem;
    font-weight:800;
    color:#081321;
    margin-bottom:20px;
}

.join-left h2 span{
    color:#0B3D91;
}

.join-left p{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.join-benefits{
    list-style:none;
    padding:0;
}

.join-benefits li{
    margin-bottom:18px;
    font-size:1.1rem;
    display:flex;
    align-items:center;
    gap:12px;
    color:#333;
}

.join-benefits i{
    color:#0B3D91;
}

.apply-card{
    background:#0B3D91;
    color:#fff;
    border-radius:20px;
    padding:45px;
    text-align:center;
    box-shadow:0 20px 40px rgba(11,61,145,.20);
}

.apply-icon{
    width:90px;
    height:90px;
    background:#fff;
    color:#0B3D91;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    margin:0 auto 25px;
}

.apply-card h3{
    font-size:2rem;
    margin-bottom:15px;
    font-weight:700;
}

.apply-card p{
    color:#E5E7EB;
    line-height:1.8;
    margin-bottom:30px;
}

.apply-btn{
    display:inline-block;
    width:100%;
    background:#fff;
    color:#0B3D91;
    padding:16px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.apply-btn:hover{
    background:#F4B400;
    color:#fff;
}

.apply-btn i{
    margin-right:10px;
}

.apply-card small{
    display:block;
    margin-top:20px;
    color:#CBD5E1;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.join-wrapper{
    grid-template-columns:1fr;
}

.apply-card{
    margin-top:20px;
}

}

@media(max-width:768px){

.join-us{
    padding:80px 20px;
}

.join-left h2{
    font-size:2.3rem;
}

.join-benefits li{
    font-size:1rem;
}

.apply-card{
    padding:35px 25px;
}

.apply-btn{
    font-size:.95rem;
}

}


/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .services-wrapper{
        grid-template-columns:1fr;
    }

    .services-left{
        position:static;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .services{
        padding:80px 20px;
    }

    .services-left{
        padding:30px;
    }

    .services-left h2{
        font-size:2rem;
    }

    .services-left h1{
        font-size:2.5rem;
    }

    .service-box{
        gap:15px;
        padding:20px;
    }

    .number{
        min-width:45px;
        font-size:2rem;
    }

    .service-info h3{
        font-size:1.3rem;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .services{
        padding:70px 15px;
    }

    .services-left h1{
        font-size:2rem;
    }

    .services-left h2{
        font-size:1.6rem;
    }

    .service-box{
        flex-direction:column;
        gap:10px;
    }

    .number{
        min-width:auto;
    }

}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

.services-wrapper{

    grid-template-columns:1fr;

    gap:35px;

}

.services-left{

    position:relative;

    top:0;

}

.service-box{

    height:auto;

    min-height:120px;

}

}
/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

.services{

    padding:70px 20px;

}

.services-wrapper{

    display:flex;

    flex-direction:column;

}

.services-left{

    padding:30px;

}

.services-left h2{

    font-size:34px;

}

.services-left h1{

    font-size:46px;

}

.services-left img{

    margin-top:25px;

}

.service-box{

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

    padding:20px;

    height:auto;

}

.number{

    font-size:34px;

}

.service-info h3{

    font-size:20px;

}

.service-details{

    opacity:1;

    visibility:visible;

    transform:none;

    max-height:none;

    margin-top:12px;

}

.service-details ul{

    padding-left:20px;

}

/* ==========================================
   LOCATIONS
========================================== */

.locations{
    padding:100px 8%;
    background:#F8FAFC;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:50px;
}

.location-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.location-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.location-card h3{
    color:#0B3D91;
    font-size:1.8rem;
    font-weight:700;
    text-align:center;
    margin:30px 20px 10px;
}

.location-card p{
    text-align:center;
    color:#666;
    padding:0 25px;
    margin-bottom:20px;
    line-height:1.7;
}

.map{
    width:100%;
    overflow:hidden;
}

.map iframe{
    width:100%;
    height:320px;
    border:0;
    display:block;
}

.map-btn{
    display:block;
    width:calc(100% - 40px);
    margin:25px auto 30px;
    padding:15px;
    border-radius:10px;
    background:#0B3D91;
    color:#fff;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.map-btn:hover{
    background:#174EA6;
    color:#fff;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Desktop */
@media (max-width:1200px){

}

/* Tablet */

@media (max-width:992px){

.about-grid{
grid-template-columns:1fr;
}

.about-cards{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}

/* Mobile */

@media (max-width:768px){

.hero-content{
text-align:center;
}

.hero-content h1{
font-size:3rem;
}

.hero-content p{
font-size:1.05rem;
}

.team-grid{
grid-template-columns:1fr;
}

.about-cards{
grid-template-columns:1fr;
}

.services-wrapper{
grid-template-columns:1fr;
}

.location-grid{
grid-template-columns:1fr;
}

.join-grid{
grid-template-columns:1fr;
}

.footer-container{
grid-template-columns:1fr;
gap:30px;
}

}

/* Small Mobile */

@media (max-width:576px){

.hero-content h1{
font-size:2.4rem;
}

.section-title h2{
font-size:2rem;
}

.logo{
height:45px;
}

}
/* ==========================================
   RESPONSIVE
========================================== */

/* Large Desktop */

@media (min-width:1400px){

    .container{
        max-width:1320px;
    }

    .hero-content h1{
        font-size:4.5rem;
    }

}

/* Tablet */

@media (max-width:992px){

    .hero-content h1{
        font-size:3.5rem;
    }

    .section-title h2{
        font-size:2.5rem;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* Mobile */

@media (max-width:768px){

    section{
        padding:80px 0;
    }

    .logo{
        height:55px;
    }

    .hero-section{
        padding:100px 20px 60px;
    }

    .hero-content{
        text-align:center;
        padding:20px;
    }

    .hero-content h1{
        font-size:3rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:1rem;
    }

    #about img{
        margin-bottom:20px;
    }

    .card{
        margin-bottom:20px;
    }

    .card img{
        height:220px;
    }

    .contact-info{
        margin-top:30px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .footer-logo img{
        max-width:120px;
        margin:0 auto 15px;
    }

    .social-card{
        justify-content:center;
    }

    .navbar-collapse{
        background:#02153D;
        margin-top:10px;
        padding:15px;
        border-radius:12px;
    }

    .navbar-nav{
        gap:10px;
    }

    .nav-link{
        padding:12px;
        border-radius:8px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .btn,
    .btn-lg{
        width:100%;
    }

    .card img{
        height:180px;
    }

    .footer-bottom{
        font-size:.85rem;
    }

}
/* ===================================
   MOBILE SERVICES FIX
=================================== */

@media (max-width:768px){

.services-wrapper{
    grid-template-columns:1fr;
}

.services-left{
    position:static;
    margin-bottom:30px;
}

.service-box{
    display:block;
    padding:30px 25px;
    text-align:center;
}

.number{
    display:block;
    font-size:60px;
    margin-bottom:15px;
}

.service-info h3{
    font-size:32px;
    margin-bottom:20px;
    min-height:auto;
}

.service-details{
    max-height:none !important;
    opacity:1 !important;
    overflow:visible;
    margin-top:15px;
}

.service-details ul{
    padding:0;
    list-style:none;
}

.service-details li{
    margin:12px 0;
    font-size:18px;
}

.service-details p{
    font-size:18px;
    line-height:1.8;
}

.service-box:hover{
    transform:none;
}

}
/* ==========================================
   LOCATIONS RESPONSIVE
========================================== */

@media(max-width:992px){

.location-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.locations{
    padding:80px 20px;
}

.location-card h3{
    font-size:1.5rem;
}

.location-card p{
    font-size:1rem;
}

.map iframe{
    height:250px;
}

}