/* ==========================================
   GOOGLE FONT
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
    color:#1E293B;
    overflow-x:hidden;
    line-height:1.6;
}

/* ==========================================
   VARIABLES
========================================== */

:root{

    --primary:#0D6EFD;
    --secondary:#00B894;

    --dark:#0F172A;
    --text:#334155;
    --white:#ffffff;

    --light:#F8FAFC;
    --gray:#E2E8F0;

    --border:#E5E7EB;

    --radius-sm:10px;
    --radius-md:18px;
    --radius-lg:28px;

    --shadow-sm:0 4px 12px rgba(0,0,0,.06);

    --shadow-md:0 12px 35px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --transition:.35s ease;
}

/* ==========================================
   COMMON
========================================== */

img {
    max-width: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

section{
    padding:110px 0;
}

.container{
    width:min(90%,1300px);
    margin:auto;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

.section-tag{

    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{

    font-size:52px;
    font-weight:800;
    color:var(--dark);
    line-height:1.15;
    margin:18px 0;
}

.section-description{

    font-size:18px;
    color:var(--text);
    max-width:700px;
}

/* ==========================================
   BUTTONS
========================================== */

.btn{

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

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);
}

.btn-primary{

    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{

    transform:translateY(-4px);
    box-shadow:var(--shadow-lg);
}

.btn-secondary{

    background:#fff;

    border:2px solid var(--primary);

    color:var(--primary);
}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;
}

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

.card{

    background:#fff;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

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

.grid{

    display:grid;
    gap:30px;
}

.grid-2{

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

.grid-3{

    grid-template-columns:repeat(3,1fr);
}

.grid-4{

    grid-template-columns:repeat(4,1fr);
}

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


/* ==========================================
   LOADER
========================================== */

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;
}

/* ==========================================
   BACK TO TOP
========================================== */

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;
}

#backToTop.show{

    opacity:1;

    visibility:visible;
}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;
}

::-webkit-scrollbar-track{

    background:#F1F5F9;
}

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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.35s;
}

.header.scrolled{

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/*=========================================
        NAVBAR
=========================================*/
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

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

    padding:0 50px;

    z-index:1000;

    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:all .35s ease;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
    opacity:1;
}
/*=========================================
        MENU
=========================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:40px;
}

.nav-links a{

    position:relative;

    font-weight:600;

    color:var(--dark);

    transition:.3s;
}

.nav-links a:hover{

    color:var(--primary);
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;
}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;
}

.nav-links a.active{

    color:var(--primary);
}

/*=========================================
        RIGHT
=========================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:20px;
}

.menu-btn{

    display:none;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    box-shadow:var(--shadow-sm);

    cursor:pointer;

    align-items:center;

    justify-content:center;

    font-size:20px;
}



/*=========================================
            HERO
=========================================*/

.hero{

    padding-top:170px;

    padding-bottom:100px;

    background:linear-gradient(
        180deg,
        #F8FBFF,
        #ffffff
    );
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;
}

.hero-tag{

    display:inline-block;

    background:#E8F2FF;

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    color:var(--dark);

    margin-bottom:25px;
}

.hero-content h1 span{

    color:var(--primary);
}

.hero-content p{

    font-size:20px;

    color:var(--text);

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;
}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;
}

.hero-features div{

    font-weight:600;

    color:var(--text);
}

.hero-features i{

    color:var(--secondary);

    margin-right:8px;
}

/* Image */

.hero-image{

    position:relative;
}

.hero-image img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

    opacity: 0;
    transform: scale(.98);
}

/* Floating Cards */

.floating-card{

    position:absolute;

    background:#fff;

    padding:18px 24px;

    border-radius:18px;

    box-shadow:var(--shadow-md);

    text-align:center;
}

.floating-card h3{

    color:var(--primary);

    font-size:28px;

    font-weight:800;
}

.floating-card p{

    color:var(--text);

    font-size:14px;
}

.card-one{
    position:absolute;

    top:40px;

    left:30px;

    z-index:10;
}

.card-two{

    position:absolute;

    right:20px;

    bottom:120px;

    width:180px;

    z-index:10;
}   

.card-three{

    bottom:20px;
    left:40px;
}

/*=========================================
            TRUST SECTION
=========================================*/

.trust{

    background:#fff;

    padding:100px 0;
}

.trust-top{

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:60px;
}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.trust-card{

    background:#fff;

    border:1px solid #eef2f7;

    border-radius:22px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.trust-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.trust-card i{

    width:70px;

    height:70px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin:auto;

    margin-bottom:25px;
}

.trust-card h3{

    font-size:36px;

    color:var(--dark);

    margin-bottom:10px;
}

.trust-card p{

    color:var(--text);

    font-size:16px;
}

/*=========================================
            ABOUT
=========================================*/

.about{

    padding:120px 0;

    background:#F8FAFC;
}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image{
    width:100%;
}

.about-image img{
    display:block !important;
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;

    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

.experience-box{

    position:absolute;

    bottom:30px;

    right:-30px;

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

    text-align:center;
}

.experience-box h2{

    color:var(--primary);

    font-size:42px;

    font-weight:800;
}

.experience-box p{

    color:var(--text);

    font-weight:600;
}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:40px 0;
}

.about-features div{

    font-weight:600;

    color:var(--text);
}

.about-features i{

    color:var(--secondary);

    margin-right:10px;
}

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


./*==============================
        SERVICES
==============================*/

.services{
    background:#f8fafc;
    padding:120px 0;
}

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

.service-card{
    background:#fff;
    border-radius:22px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    min-height:340px;

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

    padding:35px 25px;

    transition:all .35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    border-color:#0D6EFD;
}

.service-content{
    width:100%;
    text-align:center;
}

.service-content i{
    width:85px;
    height:85px;
    margin:0 auto 25px;

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

    border-radius:50%;

    background:linear-gradient(135deg,#0D6EFD,#00B894);

    color:#fff;
    font-size:34px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.service-card:hover i{
    transform:rotate(10deg) scale(1.08);
}

.service-content h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
    line-height:1.4;
}

.service-content p{
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
    margin:0;
}

/* Desktop */

@media(max-width:1200px){
    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Tablet */

@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card{
        min-height:320px;
    }
}

/* Mobile */

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        min-height:auto;
        padding:30px 20px;
    }

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

    .service-content p{
        font-size:14px;
    }
}
/*=========================================
            WHY CHOOSE US
=========================================*/

.why-us{
    padding:120px 0;
    background:#F8FAFC;
}

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

.why-image img{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow-lg);
}

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

.why-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    border:1px solid #eef2f7;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.why-card i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

.why-card h4{
    font-size:20px;
    color:var(--dark);
    margin-bottom:10px;
}

.why-card p{
    color:var(--text);
    font-size:15px;
    line-height:1.6;
}

/*=========================================
            PROCESS
=========================================*/

.process{

    background:#ffffff;

    padding:120px 0;
}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}

.process-card{

    position:relative;

    background:#fff;

    padding:45px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid #edf2f7;

    overflow:hidden;
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

.process-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:60px;

    font-weight:800;

    color:#eef3fb;
}

.process-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-size:34px;
}

.process-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:15px;
}

.process-card p{

    color:var(--text);

    line-height:1.8;
}

/*=========================================
        BEFORE & AFTER
=========================================*/
/* =============================
   BEFORE & AFTER GALLERY
============================= */

.before-after{
    padding:120px 0;
    background:#f8fafc;
}

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

.gallery-card{
    position:relative;
    height:350px;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    background:#e5e7eb;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:all .4s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.gallery-card img{
    width:100% !important;
    height:100% !important;
    display:block !important;
    object-fit:cover;
    object-position:center;
    opacity:1 !important;
    visibility:visible !important;
    transform:scale(1);
    transition:transform .6s ease;
}

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

.gallery-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.20) 55%,
        transparent 100%
    );

    color:#fff;
    pointer-events:none;
}

.gallery-overlay h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    color:#fff;
}

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:max-content;
    padding:8px 18px;
    margin-bottom:12px;

    border-radius:30px;
    font-size:13px;
    font-weight:700;
    color:#fff;
}

.before{
    background:#e74c3c;
}

.after{
    background:#00b894;
}

/* Tablet */

@media(max-width:992px){

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

}

/* Mobile */

@media(max-width:768px){

    .before-after{
        padding:80px 0;
    }

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

    .gallery-card{
        height:320px;
    }

    .gallery-overlay{
        padding:22px;
    }

    .gallery-overlay h3{
        font-size:21px;
    }

}

/*=========================================
            STATISTICS
=========================================*/

.stats{

    padding:120px 0;

    background:linear-gradient(135deg,#0D6EFD,#00B894);
}

.stats-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stat-card{

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

    backdrop-filter:blur(20px);

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

    border-radius:25px;

    padding:50px 30px;

    text-align:center;

    transition:.35s;
}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);
}

.stat-card i{

    font-size:42px;

    color:#fff;

    margin-bottom:25px;
}

.stat-card h2{

    font-size:54px;

    color:#fff;

    font-weight:800;

    margin-bottom:10px;
}

.stat-card p{

    color:#fff;

    font-size:18px;

    font-weight:600;
}

/*=========================================
            PRICING
=========================================*/

.pricing{

    padding:120px 0;

    background:#ffffff;
}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;
}

.pricing-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid #edf2f7;

    overflow:hidden;
}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);
}

.featured{

    border:2px solid var(--primary);

    transform:scale(1.05);
}

.featured:hover{

    transform:scale(1.05) translateY(-12px);
}

.popular{

    position:absolute;

    top:25px;

    right:-40px;

    background:var(--primary);

    color:#fff;

    padding:8px 45px;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);
}

.pricing-card h3{

    font-size:30px;

    margin-bottom:20px;

    color:var(--dark);
}

.price{

    font-size:48px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:35px;
}

.price span{

    display:block;

    font-size:16px;

    color:var(--text);

    font-weight:500;
}

.pricing-card ul{

    margin-bottom:35px;
}

.pricing-card li{

    margin-bottom:16px;

    color:var(--text);

    font-size:17px;
}

.pricing-card li i{

    color:var(--secondary);

    margin-right:10px;
}

.pricing-card .btn{

    width:100%;
}

/*=========================================
            TESTIMONIALS
=========================================*/

.testimonials{

    padding:120px 0;

    background:#F8FAFC;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;
}

.testimonial-card{

    position:relative;

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid #edf2f7;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

.featured-review{

    transform:scale(1.04);

    border:2px solid var(--primary);
}

.featured-review:hover{

    transform:scale(1.04) translateY(-10px);
}

.quote{

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;
}

.stars{

    color:#FFC107;

    margin-bottom:20px;

    font-size:18px;
}

.testimonial-card p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:35px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:65px;
    height:65px;
    min-width:65px;
    min-height:65px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    visibility:visible;
    opacity:1;
    border:3px solid #ffffff;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    background:#f5f5f5;
}

.client-info{
    display:flex;
    flex-direction:column;
}

.client h4{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#1e293b;
}

.client span{
    margin-top:4px;
    font-size:14px;
    color:#64748b;
}

/*=========================================
                TEAM
=========================================*/

.team{

    padding:120px 0;

    background:#ffffff;
}

.team-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;
}

.team-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    text-align:center;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:.35s;
}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);
}

.featured-team{

    border:2px solid var(--primary);

    transform:scale(1.04);
}

.featured-team:hover{

    transform:scale(1.04) translateY(-12px);
}

.team-image{

    width:170px;

    height:170px;

    margin:auto;

    margin-bottom:25px;
}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #F1F5F9;
}

.team-card h3{

    font-size:26px;

    color:var(--dark);

    margin-bottom:8px;
}

.team-card span{

    color:var(--primary);

    font-weight:700;

    display:block;

    margin-bottom:18px;
}

.team-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:25px;
}

.team-social{

    display:flex;

    justify-content:center;

    gap:15px;
}

.team-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F1F5F9;

    color:var(--primary);

    transition:.35s;
}

.team-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);
}

/*=========================================
                FAQ
=========================================*/

.faq{

    padding:120px 0;

    background:#F8FAFC;
}

.faq-container{

    max-width:900px;

    margin:70px auto;
}

.faq-item{

    background:#fff;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    border:1px solid #edf2f7;
}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px;

    cursor:pointer;
}

.faq-question h3{

    font-size:22px;

    color:var(--dark);
}

.faq-question span{

    font-size:32px;

    color:var(--primary);

    font-weight:700;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

    padding:0 28px;
}

.faq-answer p{

    padding-bottom:28px;

    color:var(--text);

    line-height:1.8;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-contact{

    background:#fff;

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:var(--shadow-md);

    max-width:850px;

    margin:auto;
}

.faq-contact h3{

    font-size:36px;

    margin-bottom:15px;

    color:var(--dark);
}

.faq-contact p{

    color:var(--text);

    margin-bottom:30px;
}

/*=========================================
            CONTACT
=========================================*/

.contact{
    padding:120px 0;
    background:#ffffff;
}

.contact-wrapper{
    margin-top:70px;
}

/* 2 CARDS SIDE BY SIDE */

.contact-info{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

/* INFO CARDS */

.info-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    border:1px solid #edf2f7;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(0,0,0,.14);
    border-color:var(--primary);
}

.info-card i{
    width:65px;
    height:65px;
    border-radius:50%;

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

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    font-size:26px;
    margin-bottom:20px;

    box-shadow:0 12px 28px rgba(13,110,253,.22);
}

.info-card h4{
    font-size:22px;
    margin-bottom:10px;
    color:var(--dark);
}

.info-card p{
    color:var(--text);
    font-size:16px;
    line-height:1.7;
    margin:0;
    word-break:break-word;
}

/* GOOGLE MAP FULL WIDTH */

.map{
    grid-column:1 / -1;
    width:100%;
    height:380px;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    margin-top:5px;
}

.map iframe{
    width:100%;
    height:100%;
    display:block;
    border:none;
}

/* TABLET */

@media(max-width:900px){

    .contact-info{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .info-card{
        padding:25px;
    }
}

/* MOBILE */

@media(max-width:650px){

    .contact{
        padding:80px 0;
    }

    .contact-wrapper{
        margin-top:45px;
    }

    .contact-info{
        grid-template-columns:1fr;
    }

    .map{
        grid-column:1;
        height:300px;
    }

    .info-card{
        padding:22px;
    }

    .info-card h4{
        font-size:20px;
    }
}

/*=========================================
        PROGRESS BAR
=========================================*/

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(90deg,#0D6EFD,#00B894);

    z-index:99999;

}

/*=========================================
        ACTIVE NAVIGATION
=========================================*/

.nav-links a.active{

    color:var(--primary);

}

.nav-links a.active::after{

    width:100%;

}

/*=========================================
        BACK TO TOP
=========================================*/

#backToTop{

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*=========================================
        IMAGE LOADING
=========================================*/

img{

    opacity:0;

    transform:scale(.98);

    transition:.5s;

}

img.loaded{

    opacity:1;

    transform:scale(1);

}

#loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.loader-content img {
    width: 170px;
    opacity: 1;
    transform: none;
}

.loader-content p {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 92px;
    z-index: 9990;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 19px;

    color: #ffffff;
    background: #25d366;

    border-radius: 999px;

    font-weight: 800;

    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.32);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #ffffff;

    transform: translateY(-5px);

    box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.whatsapp-float i {
    font-size: 24px;
}

@media (max-width: 576px) {

    .whatsapp-float {
        right: 18px;
        bottom: 80px;

        width: 52px;
        height: 52px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }
}

.hero-content,
.hero-image {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-image {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image > img {
    display: block !important;
    width: 100% !important;
    height: 600px !important;
    object-fit: cover;
    border-radius: 35px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/*=========================================
                FOOTER
=========================================*/

.footer{
    width:100%;
    background:#0f172a;
    padding:25px 0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
    font-size:15px;
    line-height:1.6;
}

.footer-bottom .developer span{
    color:#00b894;
    font-weight:700;
}

.footer-bottom .developer span:hover{
    color:#0d6efd;
}

/* Mobile */

@media(max-width:768px){

    .footer-bottom{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        gap:8px;
    }

}

.info-card p a{
    color:var(--text);
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.info-card p a:hover{
    color:var(--primary);
}