/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5000;
}

.logo img {
    width: 180px;
    height: auto;
}

/* NAVIGATION */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.nav ul li:hover a {
    opacity: 0.7;
}

/* BUTTON */
.consult-btn {
    padding: 12px 25px;
    background: #ff3b2d;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;  /* Smooth effect */
}

.consult-btn:hover {
    background: #e62f22;   /* Slightly darker red */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 18px rgba(255, 59, 45, 0.4); /* Glow shadow */
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: -1;
}

.hero-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDE container */
.hero-slide {
    width: 80%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    opacity: 0;
    display: none;
}

/* ACTIVE SLIDE */
.hero-slide.active {
    display: flex;
    opacity: 1;
}

/* Left Content */
.hero-left {
    width: 50%;
    color: #fff;
}

/* Right Image */
.hero-right {
    width: 50%;
    text-align: right;
}

.hero-img {
    width: 90%;
}

/* Animations */
/* CONTENT: Moves more right + comes down slightly + slower */
.fadeInTopLeft {
    animation: fadeInTopLeft 2.3s ease forwards;  /* slower */
}

@keyframes fadeInTopLeft {
    0% { 
        opacity: 0;
        transform: translate(-80px, -120px); /* start further left & up */
    }
    60% {
        opacity: 1;
        transform: translate(20px, 10px);   /* move right + little down */
    }
    100% { 
        opacity: 1;
        transform: translate(40px, 20px);   /* final right shift + more down */
    }
}


/* IMAGE: Moves clearly downward + slower */
.fadeInTopRight {
    animation: fadeInTopRight 2.3s ease forwards; /* slower */
}

@keyframes fadeInTopRight {
    0% { 
        opacity: 0;
        transform: translate(100px, -150px); /* start higher & right */
    }
    60% {
        opacity: 1;
        transform: translate(20px, 40px);   /* clear downward motion */
    }
    100% { 
        opacity: 1;
        transform: translate(0, 70px);      /* image moves clearly down */
    }
}


/* Button */
.discover-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #ff3b2d;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}


/* MOBILE RESPONSIVE (Max Width: 768px) */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 80px 20px 120px;
    }

    /* Slide responsive */
    .hero-slide {
        flex-direction: column;     /* Stack items */
        text-align: center;
        position: relative;
        width: 100%;
        display: none;
        opacity: 0;
    }

    /* Active slide display */
    .hero-slide.active {
        display: flex;
        opacity: 1;
    }

    /* LEFT CONTENT */
    .hero-left {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    /* Headings and texts scale down */
    .hero-left h1,
    .hero-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-left p {
        font-size: 15px;
        line-height: 24px;
        padding: 0 10px;
    }

    /* Right-side image goes full width */
    .hero-right {
        width: 100%;
        text-align: center;
    }

    .hero-img {
        width: 85%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Button center */
    .discover-btn {
        display: inline-block;
        margin: 20px auto 0;
        padding: 10px 26px;
        font-size: 15px;
    }

    /* Adjust animations for smaller screens */
    @keyframes fadeInTopLeft {
        0% { opacity: 0; transform: translate(-40px, -80px); }
        60% { opacity: 1; transform: translate(10px, 5px); }
        100% { opacity: 1; transform: translate(0, 10px); }
    }

    @keyframes fadeInTopRight {
        0% { opacity: 0; transform: translate(40px, -100px); }
        60% { opacity: 1; transform: translate(10px, 20px); }
        100% { opacity: 1; transform: translate(0, 40px); }
    }
}

@media (max-width: 768px) {
    .hero-left {
        margin-top: 40px !important;
        position: relative;
        top: 40px;  /* THIS finally moves it */
    }
}

/* ==============================
   CLEAN DROPDOWN MENU
================================*/

.has-dropdown {
    position: relative;
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
    color: #fff;
}

/* Desktop dropdown base */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 120px;
    background: #fff;
    display: none; 
    flex-direction: column;
    padding: 6px 0;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 9999;
}

.dropdown li a {
    padding: 8px 10px;
    font-size: 14px;
    color: #222;
    display: block;
}

/* DESKTOP: Show on hover */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown {
        display: flex !important;
    }

    /* Anti-flicker bridge */
    .has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent;
    }
}

/* MOBILE DROPDOWN */
@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 9999;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav ul li a {
        color: #000;
    }

    .arrow {
        color: #000;
    }

    .dropdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: #f7f7f7;
        padding-left: 20px;
        border-radius: 0;
        box-shadow: none;
    }

    /* Open only when JS adds .open */
    .has-dropdown.open .dropdown {
        display: flex !important;
    }
}

/* MOBILE MENU ICON */
.menu-toggle {
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}


/* ===============================
   FINAL OVERRIDE – FORCE HIDE DROPDOWN
================================ */

.has-dropdown .dropdown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(5px);
    background: #fff !important;
    width: 130px !important;    /* size fix */
    padding: 8px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

/* DESKTOP HOVER – SHOW */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Anti-gap flicker fix */
    .has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent;
    }
}

/* MOBILE – show only when .open class exists */
@media (max-width: 768px) {
    .has-dropdown.open .dropdown {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        background: #f7f7f7 !important;
        width: 100% !important;
        box-shadow: none !important;
        padding-left: 15px !important;
    }
}

/* ===============================
      CLEAN DROPDOWN (NO BLANK BOX)
=============================== */

/* Parent */
.has-dropdown {
    position: relative;
}

/* Dropdown hidden */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 30px;
    width: 130px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.18s ease;
}

/* Dropdown item text */
.has-dropdown .dropdown li a {
    display: block;
    padding: 8px 12px;
    color: #222 !important;         /* FIX: visible text */
    text-decoration: none;
    font-size: 14px;
}

/* Dropdown item hover */
.has-dropdown .dropdown li a:hover {
    background: #f2f2f2;
}

/* DESKTOP – show on hover */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown {
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Anti-flicker bridge */
    .has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent;
    }
}

/* MOBILE – only show when .open added by JS */
@media (max-width: 768px) {
    .has-dropdown.open .dropdown {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .has-dropdown .dropdown {
        position: relative;
        background: #f7f7f7;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
    }

    .has-dropdown .dropdown li a {
        color: #000 !important;   /* mobile readable */
        text-align: left;
    }
}

/* ============= FIX HOME SHIFT ON MOBILE ONLY ============= */

/* Desktop: DO NOT force width */
.has-dropdown {
    position: relative;
}

/* Anchor should behave normally on desktop */
.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile override */
@media (max-width: 768px) {

    /* Parent fixed width ONLY in mobile */
    .has-dropdown {
        width: 140px;        /* keeps home centered in mobile */
    }

    /* Center Home text + arrow */
    .has-dropdown > a {
        justify-content: center;
        width: 100%;
    }

    /* When dropdown opens, still centered */
    .has-dropdown.open > a {
        justify-content: center;
    }


    .has-dropdown .dropdown {
        width: 100% !important;
        position: relative !important;
    }
}

/* MOBILE: Move Home button slightly right */
@media (max-width: 768px) {
    .nav ul li.has-dropdown > a {
        padding-left: 10px;   /* pushes Home → right */
    }

}


/* Disable wave animation on mobile */
@media (max-width: 768px) {
    .wave-text span {
        animation: none !important;
        transform: none !important;
    }

    .wave-text:hover span {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .nav ul li a {
        color: #000 !important;   /* Black text for mobile menu */
        opacity: 1 !important;    /* Make sure it’s fully visible */
    }
}

@media (max-width: 768px) {
    .nav ul li {
        text-align: center;
        width: 100%;
    }

    .nav ul li a {
        display: inline-flex;
        align-items: center;
        justify-content: center; /* centers text + arrow */
        gap: 6px; /* spacing between Home and ▼ */
    }
}

@media (max-width: 768px) {

    /* Center the dropdown container */
    .nav ul li .dropdown {
        width: 90%;                /* same width as menu items */
        margin: 10px auto;         /* center horizontally */
        text-align: center;        /* center the text */
        justify-content: center;
    }

    /* Center dropdown text */
    .nav ul li .dropdown li a {
        text-align: center;
        display: block;
        width: 100%;
        justify-content: center;
    }
}


/* DESKTOP ONLY: dropdown small left adjustment */
@media (min-width: 769px) {
    .has-dropdown .dropdown {
        left: -30px !important;
    }
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    position: relative;
}


/* Each letter block */
.wave-text span {
    display: inline-block;
    transition: 0.3s ease;
}

/* Hover wave animation */
.wave-text:hover span {
    animation: waveAnim 0.45s ease-in-out forwards;
}

/* delay for wave effect */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.05s; }
.wave-text span:nth-child(3) { animation-delay: 0.1s; }
.wave-text span:nth-child(4) { animation-delay: 0.15s; }
.wave-text span:nth-child(5) { animation-delay: 0.2s; }
.wave-text span:nth-child(6) { animation-delay: 0.25s; }
/* Add more if links have more letters */

/* Wave keyframes */
@keyframes waveAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


/* Section styling */
.how-we-work {
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    background: #f7f8ff;
}

/* Subtitle */
.section-subtitle {
    color: #ff6a6a;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Main Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.4;
}

/* Cards container */
.work-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Card style */
.work-card {
    background: #fff;
    width: 340px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    transition: 0.3s ease-in-out;
    text-align: left;
}

.work-card:hover {
    transform: translateY(-10px);
}

/* Icon circle */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Colors */
.icon-circle.blue {
    background: #e3edff;
}

.icon-circle.yellow {
    background: #fff1d6;
}

.icon-circle.red {
    background: #ffe4e4;
}

/* Icon image */
.icon-circle img {
    width: 46px;
    height: 46px;
}

/* Title */
.work-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.work-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* Section Padding */
    .how-we-work {
        padding: 50px 20px;
    }

    /* Subtitle */
    .section-subtitle {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    /* Title scales down */
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    /* Cards container - stack vertically */
    .work-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    /* Card full width for mobile */
    .work-card {
        width: 100%;
        max-width: 350px;
        padding: 28px;
        text-align: left;
    }

    /* Icon sizes adjust */
    .icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .icon-circle img {
        width: 40px;
        height: 40px;
    }

    /* Title inside card */
    .work-card h3 {
        font-size: 17px;
    }

    /* Paragraph text */
    .work-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}



/* Outer Section */
.evaluate-section {
    background: #eef3ff;
    overflow: hidden;
    padding: 90px 50px;
}

.evaluate-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.evaluate-left {
    position: relative;
    width: 48%;
}

.main-person {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 2;
}


/* RIGHT SIDE CONTENT */
.evaluate-right {
    width: 48%;
}

.small-title {
    color: #ff4b4b;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.desc {
    color: #777;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* LIST */
.evaluate-list .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.num {
    border: 2px dashed #ff4b4b;
    color: #ff4b4b;
    font-weight: 700;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.text p {
    color: #777;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* Section padding */
    .evaluate-section {
        padding: 50px 20px;
    }

    /* Wrapper becomes vertical */
    .evaluate-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* Left (Image) full width */
    .evaluate-left {
        width: 100%;
    }

    .main-person {
        max-width: 90%;
        margin: 0 auto;
    }

    /* Right content full width */
    .evaluate-right {
        width: 100%;
    }

    /* Titles + text resize */
    .small-title {
        font-size: 14px;
    }

    .main-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* List items stack cleanly */
    .evaluate-list .item {
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
        text-align: left;
    }

    .num {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .text h3 {
        font-size: 16px;
    }

    .text p {
        font-size: 14px;
        line-height: 1.5;
    }
}


.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
    overflow: hidden;
    background: #f3f6ff;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-icon {
    font-size: 40px;
    color: #ff6a48;  /* Orange like your sample */
}

.stats-item h3 {
    font-size: 35px;
    font-weight: 700;
    color: #0d1117;
    margin: 0;
    display: inline-block;
}

.stats-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
}

.plus,
.million {
    font-size: 28px;
    font-weight: 700;
    color: #0d1117;
    margin-left: 4px;
}

.divider {
    width: 1px;
    height: 40px;
    background: #ccc;
}


@media (max-width: 768px) {

    .stats-section {
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
        text-align: center;
    }

    /* Remove divider line on mobile */
    .divider {
        display: none;
    }

    .stats-item {
        flex-direction: column;
        gap: 8px;
    }

    .stats-icon {
        font-size: 32px;
    }

    .stats-item h3 {
        font-size: 28px;
    }

    .plus,
    .million {
        font-size: 22px;
    }

    .stats-item p {
        font-size: 13px;
        line-height: 1.3;
    }
}



.business-growth-section {
    padding: 80px 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    gap: 40px;
    background: #f4f7ff;
}

/* LEFT SIDE */
.business-growth-left {
    width: 50%;
}

.sub-title {
    color: #ff645a;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.desc {
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
}

.growth-list {
    list-style: none;
    padding: 0;
}

.growth-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.growth-list i {
    color: #ff645a;
    font-size: 18px;
}

/* RIGHT SIDE IMAGE ONLY */
.business-growth-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.single-main-img {
    width: 100%;
    max-width: 480px;
    height: 520px;
}

@media (max-width: 768px) {

    .business-growth-section {
        padding: 50px 20px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Left side full width */
    .business-growth-left {
        width: 100%;
    }

    .sub-title {
        font-size: 14px;
    }

    .main-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* List center aligned */
    .growth-list {
        text-align: left;
        margin: 0 auto;
        max-width: 350px;
    }

    .growth-list li {
        font-size: 15px;
    }

    .growth-list i {
        font-size: 16px;
    }

    /* Right side image */
    .business-growth-right {
        width: 100%;
        justify-content: center;
    }

    .single-main-img {
        width: 90%;
        max-width: 360px;
        height: auto; /* Auto height for mobile */
    }
}



.marketing-section {
    padding: 80px 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    gap: 40px;
    background: #f4f7ff;
}

/* LEFT SIDE */
.marketing-left {
    position: relative;
    width: 50%;
}

.person-img {
    width: 520px;
    position: relative;
    z-index: 3;
}

/* Circle Background */
.circle-bg {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 12px solid #d1e4ff;
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 1;
}

/* Megaphone drawing */
.megaphone {
    width: 200px;
    position: absolute;
    top: 140px;
    left: 220px;
    z-index: 5;
}

/* Green small icon badge */
.icon-badge {
    width: 55px;
    height: 55px;
    background: #66d47e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60px;
    left: 40px;
    font-size: 22px;
    z-index: 6;
}

/* RIGHT SIDE */
.marketing-right {
    width: 50%;
}

.sub-title {
    color: #ff6a58;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* FEATURES */
.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.feature-box .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}

.feature-box h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.feature-box p {
    color: #777;
    line-height: 1.5;
}

/* Icon colors */
.icon.green { background: #bff1c0; color: #2aaa32; }
.icon.blue  { background: #cfe3ff; color: #2d71f8; }
.icon.orange { background: #ffe2b6; color: #f8a22d; }


@media (max-width: 768px) {

    .marketing-section {
        padding: 50px 20px;
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    /* LEFT SIDE */
    .marketing-left {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        min-height: 350px; /* keeps icons visible */
    }

    /* Main image */
    .person-img {
        width: 70%;
        max-width: 260px;
        z-index: 3;
    }

    /* Circle background */
    .circle-bg {
        width: 230px;
        height: 230px;
        border: 10px solid #d1e4ff;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    /* Megaphone */
    .megaphone {
        width: 115px;
        top: 100px;
        left: 50%;
        transform: translateX(15px);
        z-index: 5;
    }

    /* Green badge */
    .icon-badge {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: 45px;
        left: 50%;
        transform: translateX(-85px);
        z-index: 6;
    }

    /* RIGHT SIDE */
    .marketing-right {
        width: 100%;
        text-align: center;
    }

    .sub-title {
        font-size: 14px;
    }

    .main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .desc {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    /* FEATURES */
    .feature-box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .feature-box .icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .feature-box h3 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 14px;
        line-height: 1.4;
    }
}


.support-section {
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.mini-title {
    color: #ff3b7d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sub-title {
    max-width: 600px;
    margin: 0 auto 60px;
    color: #777;
}

.support-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.support-card {
    position: relative;
    background: #ffffff;
    width: 330px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.card-no {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
}

.card-title i {
    margin-right: 10px;
    color: #ffae00;
}

/* Background Blobs */
.bg-shape {
    position: absolute;
    width: 230px;
    height: 230px;
    top: -40px;
    left: -30px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.shape-blue  { background: #b3d4ff; }
.shape-orange{ background: #ffddc2; }
.shape-green { background: #c5f2c2; }

/* Card Content */
.workflow-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.w-item {
    background: #eef3ff;
    padding: 15px;
    width: 45%;
    border-radius: 10px;
    text-align: center;
    color: #333;
}

.w-item i {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.doc-box {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.doc-box img, .market-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.support-btn {
    padding: 14px 28px;
    background: #ff4500;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.support-btn:hover {
    background: #ff5722;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 18px rgba(255, 87, 34, 0.45);
}


.market-box {
    background: #eef8ff;
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 15px;
}

.card-text {
    color: #666;
    margin-bottom: 20px;
}

.card-desc {
    color: #777;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}


@media (max-width: 768px) {

    .support-section {
        padding: 50px 15px;
    }

    .mini-title {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .main-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .sub-title {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    /* Wrapper stacks the cards */
    .support-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    /* Cards become full width */
    .support-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 30px;
    }

    /* Card Number smaller */
    .card-no {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }

    /* Title text */
    .card-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    /* Background shape smaller & centered */
    .bg-shape {
        width: 160px;
        height: 160px;
        top: -20px;
        left: -10px;
        opacity: 0.18;
    }

    /* Workflow boxes */
    .workflow-box {
        gap: 10px;
    }

    .w-item {
        padding: 12px;
    }

    .w-item i {
        font-size: 18px;
    }

    /* Documentation box */
    .doc-box img,
    .market-box img {
        width: 50px;
        height: 50px;
    }

    /* Button */
    .support-btn {
        padding: 10px;
        font-size: 14px;
    }

    /* Market box */
    .market-box {
        padding: 12px;
    }

    .card-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-desc {
        font-size: 12px;
    }
}

.services-section {
    padding: 40px 40px;
    background: #fff;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.service-header h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-link {
    color: #ff5436;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 60px;
    transition: 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #ff5722;
    transform: translateX(4px);
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-content: center;
}

/* CARD BASE */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

/* ICON CIRCLE */
.icon-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    transition: 0.3s;
}

/* HOVER EFFECT (controlled by classes) */
.service-card.green:hover {
    background: #8cc63f;
    color: #fff;
}

.service-card.green:hover .icon-circle {
    background: #fff;
    color: #8cc63f;
}

.service-card.blue:hover {
    background: #35c8e0;
    color: #fff;
}

.service-card.blue:hover .icon-circle {
    background: #fff;
    color: #35c8e0;
}

.service-card.orange:hover {
    background: #ff6a4b;
    color: #fff;
}

.service-card.orange:hover .icon-circle {
    background: #fff;
    color: #ff6a4b;
}

.service-card.yellow:hover {
    background: #ffbf3b;
    color: #fff;
}

.service-card.yellow:hover .icon-circle {
    background: #fff;
    color: #ffbf3b;
}

.service-card.pink:hover {
    background: #ff4b8b;
    color: #fff;
}

.service-card.pink:hover .icon-circle {
    background: #fff;
    color: #ff4b8b;
}

.service-card.purple:hover {
    background: #8a3ffc;
    color: #fff;
}

.service-card.purple:hover .icon-circle {
    background: #fff;
    color: #8a3ffc;
}

/* Fix text colors on hover */
.service-card:hover p {
    color: #fff;
}


@media (max-width: 768px) {

    .services-section {
        padding: 30px 20px;
    }

    /* Header Title */
    .service-header h2 {
        font-size: 22px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .contact-link {
        margin-bottom: 40px;
        font-size: 14px;
    }

    /* GRID → two columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Card resizing */
    .service-card {
        padding: 22px;
        border-radius: 16px;
    }

    /* Smaller icons */
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Title size */
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* Description */
    .service-card p {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    /* GRID → single column */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 13px;
    }
}


/* FOOTER MAIN */
.footer {
    padding: 60px 0 20px;
    color: #fff;
    border-radius: 120px 120px 0 0;
    background-image: url('Images1/footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 1;
}


.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LOGO SECTION */
.footer-logo {
    width: 30%;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 15px;
}

.logo-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* SOCIAL ICONS */
.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #0b1b3b;
}

/* COLUMNS */
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 75%;
    gap: 40px;
}


/* FOOTER BOTTOM */
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.col {
    width: 33.33%;
    padding: 0 25px;
    position: relative;
}

.col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.col h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.col .divider {
    display: block;
    width: 40px;
    height: 3px;
    background: #fff;
    margin: 8px 0 12px;
    border-radius: 5px;
}

.col .desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 15px;
}

.col p {
    margin: 8px 0;
    cursor: pointer;
    opacity: 0.85;
}

.col p i {
    margin-right: 8px;
}

/* Hover effect for normal text links */
.col p:hover,
.footer-bottom a:hover {
    color: #ffb347;                /* soft orange highlight */
    opacity: 1;
    transform: translateX(4px);    /* slight movement */
    transition: 0.3s ease;
}

/* ================================
   📱 MOBILE DEVICES (Max 768px)
================================ */
@media (max-width: 768px) {

    /* STATS SECTION */
    .stats-section {
        padding: 30px 0;
        border-radius: 0 0 60px 60px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 25px;
    }

    .divider {
        display: none; /* Remove line in mobile */
    }

    .stat-box i {
        font-size: 30px;
    }

    .stat-box h2 {
        font-size: 24px;
    }

    .stat-box p {
        font-size: 13px;
    }


    /* FOOTER SECTION */
    .footer {
        padding: 40px 20px;
        border-radius: 60px 60px 0 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    /* Logo center */
    .footer-logo {
        width: 100%;
    }

    .footer-logo img {
        width: 150px;
        margin: auto;
        display: block;
    }

    .social-links {
        text-align: center;
        margin-top: 10px;
    }

    /* Columns stacked */
    .footer-links {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .col {
        width: 100%;
        padding: 0;
        border-right: none !important;  /* remove vertical divider */
    }

    .col .divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer bottom center */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}


/* ================================
   📱 SMALL DEVICES (Max 480px)
================================ */
@media (max-width: 480px) {

    .stats-section {
        padding: 20px 0;
    }

    .stat-box i {
        font-size: 26px;
    }

    .stat-box h2 {
        font-size: 20px;
    }

    .stat-box p {
        font-size: 12px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-logo img {
        width: 130px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .footer-bottom a {
        display: inline-block;
        margin-bottom: 5px;
    }
}

.col p a {
    text-decoration: none;
    color: inherit;
}
.col p a:hover {
    color: #ff3b2e; /* optional hover color */
}

/* Remove cursor & hover for contact section */
.contact-col p {
    cursor: default !important;
    pointer-events: none;  /* No hover, no click */
    opacity: 0.85;
}

/* Also prevent hover changes */
.contact-col p:hover {
    color: inherit !important;
    transform: none !important;
    opacity: 0.85 !important;
}

/* Base hidden state */
.roll-trigger {
    opacity: 0;
    transform: translateY(40px) rotate(-10deg);
    transition: transform 1.8s ease-out, opacity 0.8s ease-out;
}

/* Final visible animated state */
.roll-animate {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}
