
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root{

--primary:#0F766E;
--secondary:#14B8A6;
--accent:#F97316;
--dark:#0F172A;
--text:#475569;
--light:#F8FAFC;
--white:#ffffff;
--border:#E2E8F0;

--shadow:0 15px 40px rgba(0,0,0,.08);

--radius:18px;

--transition:.35s ease;

}


.footer-disclaimer p {
    font-size: 20px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Outfit',sans-serif;
background:var(--light);
color:var(--text);
line-height:1.7;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
transition:var(--transition);

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);
margin:auto;

}

.section-padding{

padding:100px 0;

}

.section-heading{

text-align:center;
margin-bottom:70px;

}

.section-subtitle{

display:inline-block;

color:var(--accent);

font-weight:700;

letter-spacing:1px;

margin-bottom:15px;

text-transform:uppercase;

}

.section-heading h2{

font-size:48px;

color:var(--dark);

margin-bottom:18px;

}

.section-heading p{

max-width:700px;

margin:auto;

}

/*=====================================
TOP BAR
======================================*/

.topbar{

background:var(--dark);

color:#fff;

font-size:15px;

padding:10px 0;

}

.topbar .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.topbar a{

color:#fff;

}

/*=====================================
HEADER
======================================*/

header{

position:sticky;

top:0;

z-index:999;

background:#fff;

box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.nav-container{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo-icon{

width:58px;

height:58px;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:24px;

}

.logo h2{

font-size:28px;

color:var(--dark);

}

.logo span{

font-size:14px;

color:var(--text);

}

.nav-links{

display:flex;

gap:35px;

}

.nav-links a{

color:var(--dark);

font-weight:500;

position:relative;

}

.nav-links a:hover{

color:var(--primary);

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

height:2px;

width:0;

background:var(--primary);

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}








.support-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition: opacity 0.3s ease,
                visibility 0.3s ease;
}

/* Hide Popup */
.support-popup-overlay.popup-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Popup Box */
.support-popup {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 55px 38px 46px;

    text-align: center;

    background: #f8f8f8;
    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);

    animation: popupShow 0.4s ease;
}

/* Popup Animation */
@keyframes popupShow {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.popup-close {
    position: absolute;

    top: 15px;
    right: 22px;

    width: 35px;
    height: 35px;

    border: none;
    background: transparent;

    color: #7b7f83;

    font-size: 34px;
    font-weight: 400;
    line-height: 30px;

    cursor: pointer;

    transition: 0.2s ease;
}

.popup-close:hover {
    color: #650d08;
    transform: rotate(90deg);
}

/* Heading */
.support-popup h2 {
    margin: 5px 0 28px;

    color: #363a3e;

    font-size: 36px;
    font-weight: 500;

    line-height: 1.2;
}

/* Description */
.support-popup p {
    margin: 0 0 32px;

    color: #646a70;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.55;
}

/* Call Button */
.support-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 315px;

    min-height: 66px;

    padding: 0 20px;

    box-sizing: border-box;

    background: #680d08;

    color: #ffffff;

    border-radius: 11px;

    text-decoration: none;

    font-size: 23px;
    font-weight: 700;

    transition: 0.25s ease;
}

.support-call-btn:hover {
    background: #4f0905;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(104, 13, 8, 0.3);
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .support-popup-overlay {
        padding: 15px;
    }

    .support-popup {
        padding: 50px 20px 35px;

        border-radius: 16px;
    }

    .support-popup h2 {
        margin-bottom: 22px;

        font-size: 29px;
    }

    .support-popup p {
        margin-bottom: 28px;

        font-size: 17px;
    }

    .support-call-btn {
        max-width: 100%;

        min-height: 60px;

        font-size: 19px;
    }

    .popup-close {
        top: 12px;
        right: 12px;
    }
}






/*=====================================
BUTTONS
======================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

box-shadow:0 15px 35px rgba(20,184,166,.25);

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:50px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:600;

margin-left:15px;

}

.btn-secondary:hover{

background:var(--primary);

color:#fff;

}

/*=====================================
HAMBURGER
======================================*/

.hamburger{

display:none;

cursor:pointer;

}

.hamburger span{

display:block;

width:30px;

height:3px;

background:var(--dark);

margin:6px 0;

transition:.3s;

}

.mobile-menu{

position:fixed;

top:90px;

left:-100%;

width:280px;

height:calc(100vh - 90px);

background:#fff;

padding:35px;

display:flex;

flex-direction:column;

gap:25px;

transition:.4s;

box-shadow:0 10px 40px rgba(0,0,0,.1);

z-index:998;

}

.mobile-menu.active{

left:0;

}

.mobile-btn{

padding:14px;

background:var(--primary);

color:#fff;

text-align:center;

border-radius:10px;

}

/*=====================================
HERO
======================================*/

.hero{

position:relative;

overflow:hidden;

padding:110px 0;

background:
linear-gradient(180deg,#F8FAFC,#ECFEFF);

}

.hero-wrapper{

display:grid;

grid-template-columns:repeat(2,1fr);

align-items:center;

gap:80px;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

background:#D1FAE5;

color:var(--primary);

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:64px;

line-height:1.1;

color:var(--dark);

margin-bottom:25px;

}

.hero p{

font-size:18px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

align-items:center;

margin-bottom:45px;

}

.hero-features{

display:flex;

gap:30px;

flex-wrap:wrap;

}

.hero-features div{

display:flex;

align-items:center;

gap:10px;

font-weight:600;

}

.hero-features i{

color:var(--secondary);

}

/*=====================================
HERO IMAGE
======================================*/

.hero-image{

position:relative;

}

.hero-image img{

border-radius:30px;

box-shadow:var(--shadow);

}

.floating-card{

position:absolute;

background:#fff;

padding:18px;

border-radius:16px;

display:flex;

align-items:center;

gap:15px;

box-shadow:var(--shadow);

animation:float 4s ease-in-out infinite;

}

.floating-card i{

font-size:28px;

color:var(--primary);

}

.card-one{

left:-40px;

top:50px;

}

.card-two{

right:-40px;

bottom:60px;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/*=====================================
HERO BLOBS
======================================*/

.hero-shape{

position:absolute;

border-radius:50%;

filter:blur(100px);

opacity:.4;

}

.shape-one{

width:350px;

height:350px;

background:#5EEAD4;

top:-120px;

left:-100px;

}

.shape-two{

width:300px;

height:300px;

background:#FDBA74;

bottom:-100px;

right:-80px;

}

/*=====================================
STATS
======================================*/

.stats{

margin-top:-60px;

position:relative;

z-index:2;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:42px;

color:var(--primary);

margin-bottom:10px;

}

/*=====================================
            ABOUT
======================================*/

.about{
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:80px;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

.experience-box{
    position:absolute;
    right:-30px;
    bottom:30px;
    width:180px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:var(--shadow);
}

.experience-box h2{
    font-size:46px;
    color:var(--primary);
    margin-bottom:8px;
}

.about-content h2{
    font-size:46px;
    color:var(--dark);
    margin:20px 0;
}

.about-content p{
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.feature-item i{
    color:var(--secondary);
    font-size:20px;
}

/*=====================================
        SUPPORT CATEGORIES
======================================*/

.categories{
    background:#F8FAFC;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.08);
}

.category-card i{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
    margin:0 auto 25px;
}

.category-card h3{
    color:var(--dark);
    margin-bottom:15px;
    font-size:24px;
}

.category-card p{
    font-size:16px;
}

/*=====================================
            SERVICES
======================================*/

.services{
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px 35px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--accent));

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.service-card i{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:#ECFEFF;

    color:var(--primary);

    font-size:32px;

    margin-bottom:30px;

}

.service-card h3{

    color:var(--dark);

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

}

.service-card a:hover{

    color:var(--accent);

}

/*=====================================
        SERVICE HOVER EFFECT
======================================*/

.service-card:hover i{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    transition:.35s;

}

/*=====================================
    SECTION SPACING
======================================*/

.about,
.categories,
.services{

    position:relative;

    overflow:hidden;

}

/* Decorative circles */

.about::before,
.services::after{

    content:"";

    position:absolute;

    border-radius:50%;

    opacity:.05;

}

.about::before{

    width:280px;

    height:280px;

    background:var(--secondary);

    top:-120px;

    left:-120px;

}

.services::after{

    width:350px;

    height:350px;

    background:var(--accent);

    right:-180px;

    bottom:-180px;

}

/*=====================================
        WHY CHOOSE US
======================================*/

.why-us{
    background:var(--light);
}

.why-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    align-items:center;
}

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.why-content h2{
    font-size:46px;
    color:var(--dark);
    margin:20px 0;
}

.why-content p{
    margin-bottom:35px;
}

.why-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-list div{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px 20px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.35s;
    font-weight:600;
}

.why-list div:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.why-list i{
    width:40px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
}

/*=====================================
        PROCESS SECTION
======================================*/

.process{
    background:#fff;
    position:relative;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;
    position:relative;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.process-card .number{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    font-weight:700;
}

.process-card h3{
    font-size:26px;
    color:var(--dark);
    margin-bottom:18px;
}

.process-card p{
    font-size:16px;
}

/*=====================================
        COUNTER SECTION
======================================*/

.counter-section{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.18);
}

.counter-box i{
    font-size:46px;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:54px;
    margin-bottom:10px;
    font-weight:700;
}

.counter-box p{
    font-size:18px;
    opacity:.95;
}

/*=====================================
        FLOATING DECORATIONS
======================================*/

.counter-section{
    position:relative;
    overflow:hidden;
}

.counter-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    left:-120px;
    top:-120px;
}

.counter-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

/*=====================================
        SECTION ANIMATIONS
======================================*/

.service-card,
.category-card,
.process-card,
.counter-box,
.why-list div{
    transition:all .35s ease;
}

.service-card:hover,
.category-card:hover,
.process-card:hover,
.counter-box:hover,
.why-list div:hover{
    cursor:pointer;
}

/*=====================================
        HOVER SHADOW
======================================*/

.process-card:hover,
.category-card:hover,
.service-card:hover{
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

/*=====================================
        TESTIMONIALS
======================================*/

.testimonials{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    text-align:center;
    transition:.35s;
    border:1px solid var(--border);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    margin-bottom:25px;
    border:5px solid #ECFEFF;
}

.testimonial-card p{
    font-size:16px;
    font-style:italic;
    color:var(--text);
    margin-bottom:25px;
    line-height:1.8;
}

.testimonial-card h4{
    color:var(--dark);
    margin-bottom:6px;
    font-size:22px;
}

.testimonial-card span{
    color:var(--primary);
    font-size:15px;
    font-weight:600;
}

/*=====================================
            BLOG SECTION
======================================*/

.blogs{
    background:#F8FAFC;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.08);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.blog-card:hover img{
    transform:scale(1.05);
}

.blog-content{
    padding:30px;
}

.blog-content span{
    display:inline-block;
    background:#ECFEFF;
    color:var(--primary);
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-content h3{
    color:var(--dark);
    font-size:25px;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-content p{
    margin-bottom:25px;
}

.blog-content a{
    color:var(--primary);
    font-weight:600;
}

.blog-content a:hover{
    color:var(--accent);
}

/*=====================================
        CTA SECTION
======================================*/

.cta{
    padding:100px 0;
}

.cta-wrapper{

    background:
    linear-gradient(rgba(15,118,110,.88),
    rgba(20,184,166,.88)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;

    border-radius:30px;

    padding:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    color:#fff;

}

.cta-wrapper span{

    display:inline-block;

    text-transform:uppercase;

    letter-spacing:1px;

    font-weight:600;

    margin-bottom:15px;

}

.cta-wrapper h2{

    font-size:48px;

    margin-bottom:20px;

    line-height:1.2;

}

.cta-wrapper p{

    max-width:650px;

    opacity:.95;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

    box-shadow:none;

    white-space:nowrap;

}

.cta .btn-primary:hover{

    background:var(--accent);

    color:#fff;

}

/*=====================================
        DECORATIVE SHAPES
======================================*/

.testimonials::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(20,184,166,.06);

    border-radius:50%;

    top:-80px;

    left:-80px;

}

/* .blogs::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(249,115,22,.05);

    border-radius:50%;

    right:-100px;

    bottom:-100px;

} */

/*=====================================
        IMAGE OVERFLOW FIX
======================================*/

.blog-card,
.testimonial-card{

    overflow:hidden;

}

/*=====================================
        SMOOTH TRANSITIONS
======================================*/

.blog-card,
.testimonial-card,
.blog-card img,
.cta .btn-primary{

    transition:all .35s ease;

}

/*=====================================
            FAQ SECTION
======================================*/

.faq{
    background:#ffffff;
}

.faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 30px;
    cursor:pointer;
}

.faq-question h3{
    color:var(--dark);
    font-size:22px;
    font-weight:600;
}

.faq-question i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
}

.faq-answer{
    display:none;
    padding:0 30px 30px;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

/*=====================================
        NEWSLETTER
======================================*/

.newsletter{
    padding:90px 0;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.newsletter-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.newsletter span{
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.newsletter h2{
    color:#fff;
    font-size:44px;
    margin:15px 0;
}

.newsletter p{
    color:rgba(255,255,255,.9);
}

.newsletter form{
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    min-width:480px;
}

.newsletter input{
    flex:1;
    border:none;
    outline:none;
    padding:18px 24px;
    font-size:16px;
    font-family:inherit;
}

.newsletter button{
    border:none;
    background:var(--accent);
    color:#fff;
    padding:18px 35px;
    cursor:pointer;
    font-weight:600;
    transition:.35s;
}

.newsletter button:hover{
    background:#ea580c;
}

/*=====================================
            FOOTER
======================================*/

footer{
    background:var(--dark);
    color:#CBD5E1;
    padding:90px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo h2{
    color:#fff;
}

.footer-logo span{
    color:#94A3B8;
    font-size:14px;
}

.footer-column p{
    margin-bottom:25px;
    line-height:1.8;
}

.footer-column h3{
    color:#fff;
    margin-bottom:25px;
    font-size:22px;
}

.footer-column ul li{
    margin-bottom:16px;
}

.footer-column ul li a{
    color:#CBD5E1;
    transition:.35s;
}

.footer-column ul li a:hover{
    color:var(--secondary);
    padding-left:6px;
}

.footer-column ul li i{
    color:var(--secondary);
    margin-right:10px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}

.social-links a:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/*=====================================
        COPYRIGHT
======================================*/

.copyright{
    background:#020617;
    color:#94A3B8;
    text-align:center;
    padding:20px 0;
    font-size:15px;
}

/*=====================================
        DISCLAIMER
======================================*/

.footer-disclaimer{
    background:#0F172A;
    color:#94A3B8;
    padding:30px 0;
    font-size:14px;
    line-height:1.9;
}

.footer-disclaimer strong{
    color:#fff;
}

/*=====================================
        BACK TO TOP
======================================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:0 15px 35px rgba(15,118,110,.3);
    transition:.35s;
    opacity:0;
    visibility:hidden;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

/*=====================================
        COMMON HOVER EFFECTS
======================================*/

.category-card,
.service-card,
.process-card,
.testimonial-card,
.blog-card,
.counter-box,
.faq-item{
    transition:all .35s ease;
}

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
}

/*=====================================
        RESPONSIVE
======================================*/

/* Large Desktop */

@media(max-width:1400px){

.hero h1{
font-size:56px;
}

.section-heading h2{
font-size:42px;
}

.about-content h2,
.why-content h2{
font-size:40px;
}

.cta-wrapper h2{
font-size:42px;
}

}

/* Laptop */

@media(max-width:1200px){

.hero-wrapper,
.about-wrapper,
.why-wrapper{

grid-template-columns:1fr;
gap:60px;

}

.hero-content{

order:1;

}

.hero-image{

order:2;

max-width:700px;

margin:auto;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.categories-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(3,1fr);

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.newsletter-wrapper{

flex-direction:column;

align-items:flex-start;

}

.newsletter form{

width:100%;

max-width:650px;

}

.cta-wrapper{

flex-direction:column;

text-align:center;

}

.hero{

padding:90px 0;

}

}

/* Tablet */

@media(max-width:992px){

.nav-links{

display:none;

}

.btn-primary{

display:none;

}

.hamburger{

display:block;

}

.hero h1{

font-size:48px;

}

.section-heading h2{

font-size:38px;

}

.about-content h2,
.why-content h2{

font-size:36px;

}

.process-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.categories-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:1fr;

}

.blog-grid{

grid-template-columns:1fr;

}

.hero-buttons{

flex-wrap:wrap;
gap:20px;

}

.hero-features{

gap:18px;

}

.about-features{

grid-template-columns:1fr;

}

.why-list{

grid-template-columns:1fr;

}

.newsletter h2{

font-size:36px;

}

}

/* Mobile */

@media(max-width:768px){

.section-padding{

padding:80px 0;

}

.container{

width:92%;

}

.topbar{

display:none;

}

header{

position:fixed;

width:100%;

}

.hero{

padding-top:150px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:flex-start;

}

.btn-secondary{

margin-left:0;

}

.stats{

margin-top:30px;

}

.stats-grid{

grid-template-columns:1fr;

}

.categories-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.newsletter-wrapper{

text-align:center;

align-items:center;

}

.newsletter form{

min-width:100%;
flex-direction:column;
border-radius:18px;

}

.newsletter input{

width:100%;

}

.newsletter button{

width:100%;

}

.cta-wrapper{

padding:60px 35px;

}

.cta-wrapper h2{

font-size:34px;

}

.floating-card{

display:none;

}

.experience-box{

position:relative;
right:auto;
bottom:auto;
margin-top:20px;
width:100%;

}

.logo h2{

font-size:24px;

}

.logo span{

font-size:13px;

}

.section-heading{

margin-bottom:45px;

}

}

/* Small Mobile */

@media(max-width:576px){

.hero h1{

font-size:32px;

}

.section-heading h2{

font-size:30px;

}

.about-content h2,
.why-content h2{

font-size:30px;

}

.cta-wrapper h2{

font-size:28px;

}

.newsletter h2{

font-size:30px;

}

.process-card,
.service-card,
.category-card,
.testimonial-card,
.blog-card{

padding:30px 25px;

}

.hero-tag{

font-size:14px;

}

.hero-features{

flex-direction:column;

align-items:flex-start;

}

.counter-box h2{

font-size:42px;

}

.counter-box i{

font-size:38px;

}

.footer-logo{

align-items:flex-start;

}

.social-links{

flex-wrap:wrap;

}

#backToTop{

right:18px;
bottom:18px;

width:48px;
height:48px;

font-size:18px;

}

}

/* Extra Small Devices */

@media(max-width:380px){

.hero h1{

font-size:28px;

}

.section-heading h2{

font-size:26px;

}

.logo{

gap:10px;

}

.logo-icon{

width:48px;
height:48px;

font-size:20px;

}

.logo h2{

font-size:20px;

}

.btn-primary,
.btn-secondary{

padding:14px 24px;

font-size:15px;

}

.newsletter button{

padding:16px;

}

.cta-wrapper{

padding:45px 20px;

}

.faq-question{

padding:20px;

}

.faq-question h3{

font-size:18px;

}

.faq-answer{

padding:0 20px 20px;

}

}

@media (max-width:992px){
    .nav-links{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .hamburger{
        display:block;
    }
}

/* Scroll Reveal */

.hidden-section{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.show-section{
opacity:1;
transform:translateY(0);
}

/* Active Menu */

.nav-links a.active{

color:var(--primary);

}

.nav-links a.active::after{

width:100%;

}

/* Hamburger Animation */

.hamburger.active span:nth-child(1){

transform:rotate(45deg) translateY(12px);

}

.hamburger.active span:nth-child(2){

opacity:0;

}

.hamburger.active span:nth-child(3){

transform:rotate(-45deg) translateY(-12px);

}

/*=====================================
        CONTACT PAGE
======================================*/

.page-banner{
    padding:140px 0 90px;
    background:linear-gradient(135deg,#0F766E,#14B8A6);
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:56px;
    margin:20px 0;
}

.page-banner p{
    max-width:750px;
    margin:auto;
    opacity:.95;
}

.contact-info{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto auto 25px;
    font-size:28px;
}

.contact-card h3{
    color:var(--dark);
    margin-bottom:12px;
}

.contact-form-section{
    background:#F8FAFC;
    padding:100px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
}

.contact-form{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid var(--border);
    border-radius:12px;
    outline:none;
    font-family:inherit;
    font-size:16px;
}

.contact-form textarea{
    margin-bottom:25px;
    resize:vertical;
}

.contact-side img{
    border-radius:20px;
    margin-bottom:30px;
}

.office-hours{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.office-hours h3{
    margin-bottom:20px;
    color:var(--dark);
}

.office-hours li{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.office-hours li:last-child{
    border:none;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

@media(max-width:991px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-wrapper{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}

.page-banner h1{
font-size:42px;
}

}

@media(max-width:768px){

.contact-form{
padding:30px;
}

.page-banner{
padding:130px 0 70px;
}

.page-banner h1{
font-size:34px;
}

}

/*=====================================
        LEGAL PAGES
======================================*/

.legal-content{
    max-width:950px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.legal-content h2{
    color:var(--dark);
    font-size:40px;
    margin-bottom:20px;
}

.legal-content h3{
    color:var(--dark);
    margin:35px 0 15px;
    font-size:26px;
}

.legal-content p{
    margin-bottom:18px;
    line-height:1.9;
}

.legal-content ul{
    margin:20px 0 25px 20px;
    list-style:disc;
}

.legal-content ul li{
    margin-bottom:12px;
    line-height:1.8;
}

@media(max-width:768px){

.legal-content{
    padding:30px 25px;
}

.legal-content h2{
    font-size:30px;
}

.legal-content h3{
    font-size:22px;
}

}