/* RESET & BASE STYLES */

:root {
    --primary: #FF6DAF;

    --black: #000000;
    /* --neu-black: #111111; */
    --neu-black: #0f172a;

    --white: #ffffff;
    --neu-white: #f8fdff;

    --bg-light: #d2eeff;
    --muted: #6b7280;
    --glass: rgba(11, 19, 32, 0.04);


    --font-heading: "Arbutus Slab", serif;
    --font-body: "Barlow", sans-serif;

    /* other sizes */
    --carousel-height: 550px;
    /* --dot-size: 12px; */
    --transition-duration: 800ms;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html,
body {
    height: 100%
}


body {
    font-size: 16px;
    /* font-family: var(--font-body); */
    color: var(--neu-black);
    line-height: 1.6;
    /* line-height: 1.35; */
    /* background: var(--bg-light); */
     background: #fffff0; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    /*color: var(--neu-black);*/
    /*letter-spacing: -0.02em*/
} 



.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer
}

.btn_primary {
    background: linear-gradient(90deg, var(--primary), #ff77b4);
    /* color: var(--white); */
    color: var(--neu-black);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18)
}

.btn_ghost {
    background: transparent;
    border: 0;
    color: var(--neu-black)
}

/* start NAV  dropdown services sections*/
.dropdown {
    position: relative;
}

.dropbtn {
    /* color: #fff; */
    /*padding: 12px 18px;*/
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
}
/* PARENT */
.mega-dropdown {
    position: relative;
}

.mega-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
}


/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 9999;
     display: flex;              /* ✅ IMPORTANT */
    flex-direction: row;        /* ✅ FORCE ROW */
    justify-content: space-between;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.55s ease;
}

/* SHOW ON HOVER */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-100%) translateY(0);
}

/* COLUMNS */
.mega-col {
    width: 33.33%;
    padding: 0 20px;
}

/* HEADINGS */
.mega-col h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #111;
    border-bottom: 2px solid #f04f9e;
    padding-bottom: 8px;
}

/* LINKS */
.mega-col a {
    display: block;
    color: #444;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mega-col a:hover {
    color: #f04f9e;
    padding-left: 6px;
}

/* end NAV  dropdown services sections*/

/* start Header / Nav */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid var(--primary);
    z-index: 1;
    background-color: #000;
    color: #fff;
    
}

.brand {
    display: flex;
    gap: 8px;
    align-items: center
}


.logo {
    height: 55px;
}

.site-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem
}

.site-desc {
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 600
}

nav {
    position: relative
}

.nav-inner {
    display: flex;
    gap: 18px;
    align-items: center
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center
}

.nav-list>li {
    position: relative
}

.nav-link {
    background: none;
    border: 0;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* --end Header / Nav */

/* HERO SECTION */
.hero {
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    /* z-index: -1; */
}

/* .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -18%;
    right: -10%;

} */

.hero-content {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    margin: auto 0; */
    /* position: relative;
    z-index: 2; */
}


.hero-content h1 {
    font: var(--area-normal-h1);
    font-size: clamp(60px, 15vw, 150px);
    /* font-size: 150px; */
    z-index: 1;
    /* display: flex;
    flex-direction: column; */
    /* width: 800px; */
    width: 100%;
    font-weight: 600;
    /* max-width: 1000px; */
    left: 0;
    right: 0;
    /* margin: 0 auto;
            margin-top: 20vh; */
}

.hero-content .hero-title {
    /* font-size: 6rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 20px; */
    /* z-index: -1; */
}

.hero-content.hero-subtitle {
    /* font-size: 1rem;
            letter-spacing: 2px;
            text-
            transform: uppercase;
            opacity: 0.8; */
    margin-left: auto;
    z-index: 1;
    position: relative;
}

.hero-content p {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2.04px;
    position: absolute;
    bottom: 24px;
    left: 24px;
    /* margin-left: -70%;
    margin-top: -10%; */
}

.home-digital {
    margin-left: -25%;
}

.home-brilliance {
    margin-left: 20%;
}







/* Cards (Exact look of reference design boxes) */
.media-item {
    /* background: #111; */
    padding: 18px;
    border-radius: 28px;
    width: 450px;
    /* EXACT CARD WIDTH */
    height: 400px;
    /* EXACT CARD HEIGHT */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Images styling */
.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crops perfectly like the reference */
    border-radius: 22px;
    /* smooth edges inside box */
}


.as-featured-in {
    padding: 60px 0;
    text-align: center;
}

.as-featured-in h3 {
    font-size: 24px;
    margin-bottom: 70px;
    font-weight: 600;

}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.featured-grid img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    max-width: 360px;
    max-height: 65px;
}


.content-section {
    padding: 100px 0;

}

.wrap {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* LEFT SIDE */
.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 25px;
}

.content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.awards-img {
    width: 80%;
    max-width: 450px;
    margin: 25px 0 40px 0;
}

/* CTA BUTTON */
.cta-btn {

    align-items: center;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 31px;
    width: fit-content;
    display: flex;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.cta-btn:hover {
    background: #45E8C1;
    color: #fff;
}

.cta-btn svg path {
    transition: 0.3s;
}

.cta-btn:hover svg path {
    fill: #fff;
}

/* RIGHT SIDE */
.content-right {
    flex: 1;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}



.new_wrap {
    max-width: 1440px;
    margin:  auto;
    width: 90vw;

}

 .statistics-heading h4 {
    font-size: 40px;
    font-weight: 500;
    margin-left: 40%;
}
 

 .stats-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 60px;
            padding: 60px 0;
        }

        .stat-box {
            text-align: center;
            width: 260px;
            position: relative;
            padding-top: 40px;
        }

        /* Yellow Icon Box */
        .stat-icon-bg {
            width: 90px;
            height: 90px;
            background: #e24e91;
            border-radius: 8px 40px 8px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .stat-icon-bg img {
            width: 45px;
            height: 45px;
        }

        /* Floating stats-bg icon */
        .stats-bg {
            width: 70px;
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
        }

        /* Number */
        .stat-box h2 {
            font-size: 52px;
            font-weight: bold;
            color: #fff;
            margin: 25px 0 10px;
        }

        /* Label */
        .stat-box p {
            font-size: 20px;
            color: #fff;
            margin: 0;
        }


 /*services section start*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    align-items: stretch;
}

/* Card */


.card-inner {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
    border-radius: var(--card-radius);
    padding: 34px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* subtle grid lines overlay */
.card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(transparent 0 88%, rgba(255, 255, 255, 0.01) 88%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 60px, 60px 100%;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.card-inner>* {
    z-index: 2;
}

/* keep content above overlay */

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: var(--accent);
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    margin-top: 6px;
}

.card-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    /* push button to bottom */
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    background: #fff;
    /* box-shadow: 0 6px 20px rgba(255,120,170,0.12); */
    align-self: flex-start;
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
    background: #45E8C1;
    color: #fff;
}

/* Double-rounded inner border (thin) — emulate outer neon rounded stroke */
/* .service-card { outline: 1px solid rgba(255,255,255,0.02); } */
.service-card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: calc(var(--card-radius));
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    mix-blend-mode: overlay;
}




/* Section Text */
.services {
    text-align: center;
    padding: 80px 50px;
}

.subtitle {
    color: #c28aff;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.3;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Style */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 35px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #a26bff;
   
}

/* Icon */
.icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ff9bd3;
}

/* Headings */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    color: #000;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {

    background: #45E8C1;
    color: #fff;
}

.icon img {
    width: 55px;
    /* adjust size */
    height: auto;
    display: block;
    margin-bottom: 20px;
    background-color: #080808;
    border-radius: 0px;
}


section.call-to-action {
    position: relative;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.call-to-action-content {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 40px;
}

.call-to-action-content h2{
    font-weight: 600;
    font-size: 32px;
}


.call-to-action-background {
    width: 100%;
    height: 100%;
    position: absolute;
}

.call-to-action-background img {
   width: 60%;
    height: 150%;
    object-fit: contain;
    margin-left: 25%;
}

section.call-to-action .two_wrap {
    position: relative;
    margin-top: 11%;
}

a.button {
    align-items: center;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 31px;
    width: fit-content;
    display: flex;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a.button:hover {
    background: #45E8C1;
    color: #fff;
}

a.button svg path {
    transition: 0.3s;
}

a.button:hover svg path {
    fill: #fff;
}


.faq-heading {
    font-size: 42px;
    color: #732091;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    width: 70%;
    margin: 14% auto 10%;
}

.q {
    background: #e6e4fb;
    border-radius: 12px;
    padding: 16px 50px 0px;
    margin-bottom: 28px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.q .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.q h2 {
    color: #732091;
    font-size: 24px;
    font-weight: 500;
    margin-top: -20px;
}

.qb {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.qb img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
}

.answer {
    display: none;
    padding: 18px 5px 5px 5px;
    font-size: 18px;
    color: #000;
}

.q.clicked .answer {
    display: block;
    color: #732091;
}

.q:hover {
    transform: translateY(-3px);
}

.Footer.navigation{
    display: flex;
    gap: 94px;
    margin-left: -82px;
}



.footer-grid {
    display: grid !important;
    grid-template-columns: 460px 410px 250px 330px;
    gap: 55px;
    align-items: start;
}

/* LOGO */
.footer_logo img {
    width: 260px;
    display: block;
    margin-bottom: 25px;
}

/* SECTION TITLES */
.footer-grid h3,
.footer-grid h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

/* LINKS UNDER TITLES */
.col div a.link {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.45;
    opacity: 0.9;
    text-decoration: none;
}

.col div a.link:hover {
    opacity: 1;
}

/* CONTACT TEXT */
.col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* NEWSLETTER CARD */
.newsletter-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
}

.newsletter-card p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
}

/* INPUT + BUTTON */
.newsletter-form input {
    width: 89%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* SOCIAL ICONS FIXED SPACING */
.whatsapp-btn {
    position: fixed;
    top: 38%;
    right: 20px;
    /* distance from right side */
    transform: translateY(-50%);
    z-index: 9999;
    
    /* optional background */
    padding: 10px;
   
    
}

.whatsapp-btn img {
    display: block;
    width: 60px;
    height: 60px;
}

.contact-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    /* distance from right side */
    transform: translateY(-50%);
    z-index: 9999;
  
    /* optional background */
    padding: 10px;
    
}

.contact-btn img {
    display: block;
    width: 60px;
    height: 60px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 45px;
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
    letter-spacing: 0.2px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

/* DEFAULT — Desktop */
.mobile-accordion { 
    display: none !important; 
}

.mega-dropdown { 
    display: block !important; 
}


/* ===============================
      Mobile Responsive sections 
================================ */
/* start mobile services section  Styles */
@media (max-width: 480px) {

    .mobile-accordion {
        display: block !important;
    }

    .mega-dropdown {
        display: none !important;
    }

    .accordion-content,
    .sub-content {
        display: none;
    }
}
/* end  mobile services section  Styles */

  /* start hamburger section */
@media (max-width: 480px) {
    
    .hero-content h1 {
     font-size: 160px !important; 

    }


    header {
        position: relative;
        z-index: 10000;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid var(--primary);
        display: none;
    }

    nav.active {
        display: block;
    }

    .nav-inner {
        flex-direction: column;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-left: 12%;
    }

    .nav-list li {
        width: 100%;
        
    }

    .nav-link {
        width: 100%;
        padding: 14px;
        border-radius: 0;
        display: contents;
    }
}

  /* end hamburger section */

/* start Content Sections after hero sections Media css */
@media (max-width: 480px) {

    .content-section {
        padding: 15px;
    }

    .content-section .wrap {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }


    .content-left {
        width: 100%;
        text-align: left;
        order: 1;
    }

    .content-left h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .content-left p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }




    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
        margin-top: 10px;
    }


    .content-right {
        width: 100%;
        order: 5;
    }

    .content-right img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        margin-top: 10px;
    }
}

/*end Content sections after hero sections Media css */

/* start services card section  */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services {
        padding-top: 20px;
    }

    .title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 20px;
    }

}

/*end  services card section*/

/* start why work number section */
@media (max-width: 480px) {

    .new_wrap {
        width: 95vw;
    }


    .statistics-heading h4 {
        font-size: 25px;
        margin-left: 0;
        text-align: center;
    }


    .stats-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 40px 0;
    }

    .stat-box {
        width: 100%;
        padding-top: 30px;
    }


    .stat-icon-bg {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .stat-icon-bg img {
        width: 32px;
        height: 32px;
    }


    .stats-bg {
        width: 50px;
        top: 10px;
    }


    .stat-box h2 {
        font-size: 32px;
        margin: 15px 0 6px;
    }


    .stat-box p {
        font-size: 14px;
    }
}

/*end why work number  section */

/* start call to actions section */
@media (max-width: 480px) {

    .call-to-action {
        margin-top: -5%;
    }

    .call-to-action-background {
        margin-top: -50%;
    }

    .call-to-action-background img {
        width: 100%;
        margin-left: 12%;
    }

    .call-to-action-content {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .call-to-action-content h2 {
        font-size: 20px;
        font-weight: 400;
      
    }

    .call-to-action-content a.button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 25px;
        font-size: 16px;
    }
}
/* end call to actions section */

/* start FAQ section */
@media (max-width: 480px) {

    /* Container */
    .faq-container {
        width: 92%;
        margin: -20px auto 60px;
    }

    /* Heading */
    .faq-heading {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .title{
        margin-bottom: 50px;
    }

    /* FAQ card */
    .q {
        padding: 10px 18px 0;
        margin-bottom: 18px;
        border-radius: 10px;
    }

    /* Title row */
    .q .title {
        gap: 12px;
    }

    /* Question text */
    .q h2 {
        font-size: 15px;
        line-height: 1.4;
        margin-top: 0;
        max-width: 85%;
    }

    /* Button */
    .qb {
        padding: 8px;
        flex-shrink: 0;
    }

    .qb img {
        width: 22px;
    }

    /* Answer text */
    .answer {
        padding: 12px 0 6px;
        font-size: 14px;
        line-height: 1.5;
    }

    .q.clicked .answer {
        color: #732091;
    }

    /* Remove hover lift on mobile */
    .q:hover {
        transform: none;
    }
}


/* end FAQ section */

/* start footer section  */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 45px;
    }

    .newsletter-card {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer_logo img {
        margin: 0 auto 20px;
    }

    .col div a.link {
        margin-bottom: 8px;
    }

    .newsletter-card {
        width: 100%;
    }

    .inner {
        margin-top: 12px;
    }

    .inner a img {
        margin-right: 8px;
    }
}

@media (max-width: 768px) {

    .Footer.navigation {
        display: contents;
    }

    .footer {
        padding: 50px 20px;
    }

    .footer-grid {
        display: block !important;
    }

    /* LOGO CENTER */
    .footer_logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer_logo img {
        margin: 0;
        width: 140px;
    }

    /* ALL COLUMNS LEFT SIDE */
    .footer-grid .col,
    nav.Footer.navigation .col,
    .newsletter-card {
        margin-bottom: 35px;
        text-align: left !important;
    }

    /* COLUMN TITLES */
    .footer-grid h3,
    .newsletter-card h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    /* LINKS TEXT */
    .footer-grid .col a.link {
        font-size: 15px;
        margin-bottom: 8px;
        display: block;
    }

    /* CONTACT PARAGRAPHS */
    .footer-grid .col p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 10px;
        text-align: left !important;
    }

    /* SOCIAL ICON */
    .inner {
        margin-top: 15px;
        text-align: center;
    }

    .inner a img {
        width: 50px;
        height: 50px;
        margin-right: 88%;
    }

    /* FOOTER BOTTOM */
    .footer-bottom {
        margin-top: 25px;
        padding-top: 10px;
        text-align: center;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 18px;
        font-size: 20px;
    }
}
/* end footer section  */

 /* start social and contact icon  */

@media (max-width: 480px) {

    .whatsapp-btn,
    .contact-btn {
        right: 24px;
        padding: 8px;
        top: 55%;
        width: 65px;
        height: 65px;
        /* reduce padding */
    }
.whatsapp-btn img{
    margin-top: -80px;
}
   
}
/* end social and contact icon  */