@font-face {
    font-family: Gillory-Regular;
    src: url('../fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
}

@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/poppins/Poppins-Regular.ttf) format('truetype');
}

@font-face {
    font-family: Gillory_ExtraBold;
    src: url(../fonts/gilroy/Gilroy-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: Gillory-Bold;
    src: url(../fonts/gilroy/Gilroy-Bold.ttf) format('truetype');
}

@font-face {
    font-family: Gillory-SemiBold;
    src: url(../fonts/gilroy/Gilroy-SemiBold.ttf) format('truetype');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    background: url(../images/logo\ bg.png) no-repeat center center;
    background-size: 100% 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: #6366F1;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logoImg {
    max-width: 100px;
    width: 100%;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #6366F1, #FF6C37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366F1, #FF6C37);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #6366F1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 65px;
    overflow: visible;
    background-size: auto;
}

/* Right-side decorative image */
.hero-container::after{
    content: '';
    position: absolute;
    top: 70%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 120%;
    background: url(../images/home-right.png) no-repeat center right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/* Center (middle) decorative image */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 35%;
    bottom: -10%;
    background: url(../images/home-middle.png) no-repeat center center;
    width: 480px;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/* Hero content stays on top of both images */
.hero>* {
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, -100px);
    }
}

.hero-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    background: url(../images/home-top-left.png) no-repeat;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: Gillory-Regular, sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 52px;
    letter-spacing: 0%;
    color: rgba(125, 46, 237, 1);
}

.gradient-text {
    font-family: Gillory_ExtraBold, sans-serif;
    font-weight: bold;
    color: rgba(29, 17, 74, 1);
    animation: gradientShift 3s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-family: Gillory-Regular, sans-serif;
    margin-top: 1rem;
    font-size: 18px;
    color: rgba(44, 44, 44, 1);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-form {
    font-family: Poppins-Regular, sans-serif;
    background: linear-gradient(241.48deg, #7D2EED 0.09%, #1D114A 99.91%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    padding: 2rem;
    border-radius: 20px;
}

.hero-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: #00000040;
    backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFE066;
    box-shadow: 0 0 20px rgba(255, 224, 102, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #FF6C37, #FFE066);
    color: white;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border: none;
    max-width: 200px;
    width: 100%;
    align-self: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 108, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 108, 55, 0.6);
}

.hero-image {
    max-width: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: url(../images/home-right.png) no-repeat;
    background-position: right;
    background-size: cover;
    /* border-radius: 50%; */
    top: -50px;
    right: -50px;
    filter: blur(100px);
    /* animation: floatingCard 6s ease-in-out infinite; */
    z-index: 1000;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card img {
    /* background: url(../images/home-right.png) no-repeat right;
    background-size: cover;
    backdrop-filter: blur(183.1999969482422px); */
    box-shadow: none !important;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(97.83deg, #FE9B30 0.3%, #FFC281 50%, #FE9B30 99.7%);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.4s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.6s;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: black;
}

.stat-label {
    color: black;
    font-size: 1rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 1.5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(88.84deg, #1D114A 0.42%, #7D2EED 99.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Offers Carousel */
.service-offers-container {
    max-width: 1600px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.service-offers {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.service-offers-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); */
}

.service-offers-card-title {
    font-size: 1rem;
    line-height: 1.5;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(88.84deg, #1D114A 0.42%, #7D2EED 99.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Offers Carousel */
.service-offers-container {
    background-color: transparent;
    max-width: 1600px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.service-offers {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.service-offers-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 213px;
    cursor: pointer;
    background: linear-gradient(180deg, #7251FE 0%, #7E39F1 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    user-select: none;
}

.service-offers-card.active{
    background: linear-gradient(180deg, #4d33bf 0%, #6913f4 100%);
}

.service-offers-card:hover {
    transform: translateY(-5px);
}

.service-offers-card-title {
    font-size: 1rem;
    line-height: 1.5;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    max-width: 1250px;
    padding: 0 40px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f1f5f9d6;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    position: relative;
    min-width: 100%;
    border-radius: 20px;
    background: linear-gradient(261.57deg, #7D2EED 0.15%, #1D114A 99.85%);
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: all 0.5s ease;
}

.service-content {
    padding: 2rem;
    flex: 1;
    color: white;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.service-image img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
}

.service-ellipse-overlay {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    filter: blur(0px) drop-shadow(0 0 40px #7D2EED88);
    transition: opacity 0.3s;
}

.service-nav {
    width: 98%;
    position: absolute;
    top: 35%;
    left: 1%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}

.service-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-nav-btn:hover {
    background: #6366F1;
    transform: scale(1.1);
}

.service-nav-btn img {
    transition: filter 0.3s ease;
}

.service-nav-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(97.83deg, #FE9B30 0.3%, #FFC281 50%, #FE9B30 99.7%);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.4s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.6s;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: black;
}

.stat-label {
    color: black;
    font-size: 1rem;
    font-weight: 600;
}

/* Service Visual Elements */
.chart-visual {
    width: 200px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(135deg, #FFE066, #FF6C37);
    border-radius: 5px;
    animation: barGrow 1s ease-out;
    animation-delay: calc(var(--i) * 0.1s);
}

.bar:nth-child(1) {
    --i: 1;
}

.bar:nth-child(2) {
    --i: 2;
}

.bar:nth-child(3) {
    --i: 3;
}

.bar:nth-child(4) {
    --i: 4;
}

@keyframes barGrow {
    0% {
        height: 0;
    }

    100% {
        height: var(--height, 60%);
    }
}

.dashboard-visual {
    width: 250px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.widget {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
}

.phone-mockup {
    width: 180px;
    height: 300px;
    background: #000;
    border-radius: 25px;
    padding: 20px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6C37, #FFE066);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.festive-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.gift-icon {
    font-size: 3rem;
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.product-scan {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-package {
    background: #FFE066;
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
}

.qr-code {
    width: 60px;
    height: 60px;
    background: #333;
    margin: 0 auto 1rem;
    border-radius: 5px;
    position: relative;
}

.qr-code::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: repeating-linear-gradient(0deg,
            #333 0px,
            #333 2px,
            white 2px,
            white 4px);
}

.phone-scan {
    width: 80px;
    height: 140px;
    background: #333;
    border-radius: 15px;
    position: relative;
}

.scan-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #FF6C37;
    border-radius: 5px;
    animation: scanPulse 2s infinite;
}

@keyframes scanPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #6366F1;
    transform: scale(1.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 1.5rem 0;
    /* background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); */
}

.section-description {
    font-family: Gillory-Regular, sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    /* border: 1px solid rgba(99, 102, 241, 0.1); */
}

.feature-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.feature-item h3 {
    font-family: Gillory-Bold, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-item p {
    font-family: Gillory-Regular, sans-serif;
    color: #64748b;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
    padding: 1.5rem 0;
    /* background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
}

.case-studies-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.case-study-track {
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.case-study-item {
    width: 33.333%;
    padding: 0 1rem;
    transition: all 0.5s ease;
}

.case-study-item.active {
    opacity: 1;
}

.case-study-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.case-study-item.active {
    transform: scale(1.02);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* padding: 1rem; */
    background: linear-gradient(180deg, #7D2EED 0%, #1D114A 100%);
}

.case-study-content h3 {
    font-family: Gillory-Bold, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-top: 1.2rem;
    line-height: 1.4;
}

.case-study-content ul {
    color: #64748b;
    /* padding: 1rem; */
    /* margin-bottom: 1.5rem; */
    line-height: 1;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #6366F1;
}

.stat-label {
    font-size: 0.9rem;
    color: #000;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 2rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: #6366F1;
    color: white;
    transform: scale(1.1);
}

.case-study-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.case-study-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.case-study-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-study-item img {
    max-width: 100%;
    border-radius: 8px;
}

.carousel-nav {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #555;
}

.case-study-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.case-study-indicators .indicator {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.case-study-indicators .indicator.active {
    background: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    background: linear-gradient(88.84deg, #1D114A 0.42%, #7D2EED 99.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible; /* Changed from hidden to visible */
    padding-bottom: 80px; /* Add space for buttons */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    display: flex;
    gap: 20px;
    background: rgba(217, 217, 217, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonials-nav {
    position: absolute;
    bottom: 10rem; /* Position below the card */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    width: 100%;
}

.testimonials-nav .nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(217, 217, 217, 1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6366F1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn-img {
    width: 20px;
    object-fit: contain;
}

.nav-btn-img1 {
    filter: invert(0);
}

.nav-btn-img2 {
    filter: invert(1);
}

.testimonials-nav .nav-btn:hover .nav-btn-img1,
.testimonials-nav .nav-btn:hover .nav-btn-img2 {
    filter: invert(1);
}

.testimonials-nav .nav-btn:hover {
    background: #6366F1;
    color: white;
    transform: scale(1.1);
}

.testimonial-content {
    width: 70%;
    margin-bottom: 0;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-badge {
    width: 30%;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 2rem;
    align-items: center;
    text-align: center;
    font-weight: 600;
}

.testimonial-badge p{
    font-size: 22px;
}

.success-highlight {
    color: #6366F1;
}

.view-more-btn {
    padding: 0.75rem 1.5rem;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #5558e3;
    transform: translateY(-2px);
}

.success-highlight {
    background: rgba(128, 43, 207, 1);
    color: white;
    padding: 0.4rem 0.7rem;
    border-radius: 15px;
}

.view-more-btn {
    background: rgba(255, 255, 255, 0.2);
    /* color: white; */
    border: 1px solid black;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.view-more-btn:hover {
    background: white;
    color: #6366F1;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(267.38deg, #7D2EED 0.17%, #1D114A 99.83%);
    border-radius: 10px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: linear-gradient(98.6deg, #FE9B30 2.36%, #FFC281 114.08%);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(255, 108, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 108, 55, 0.6);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
}

.footer-contact {
    display: flex;
    justify-content: space-evenly;
    gap: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

.contact-item img{
    width: 40px;
    height: 33px;
}

.contact-item:hover {
    color: #6366F1;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 45px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 1030px) {
    .hero-title {
        font-size: 2rem;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .service-offers-card {
        width: calc(50vw - 3rem);
        max-width: 280px;
    }
}

/* Desktop - Show all cards, no carousel */
@media (min-width: 1100px) {
    .service-offers {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 997px) and (min-width: 769px) {
    .case-study-card {
        flex: 0 0 50% !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        top: 60px !important;
    }

    .hero-container{
        flex-direction: column;
    }

    .hero::after {
        top: 88%;
    }

    .hero::before {
        display: none;
    }

    .services-carousel{
        padding: 0 20px;
    }

    .service-offers-card {
        width: calc(100vw - 3rem);
        max-width: 320px;
    }

    .service-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-image img {
        max-height: 250px;
    }

    .service-ellipse-overlay {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .case-study-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-contact {
        gap: 1rem;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .service-card {
        padding-top: 2rem;
        gap: 10px;
    }

    .feature-item {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(99, 102, 241, 0.1);
    }

    .testimonials-track {
        height: 100%;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-nav {
        bottom: 3%;
    }

    .service-card {
        padding: 0;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonial-card {
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .testimonial-content {
        width: 100%;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .testimonial-badge {
        width: 100%;
        padding: 1rem;
    }

    .testimonials-carousel {
        padding-bottom: 70px;
    }

    .testimonials-nav {
        bottom: -15px;
        gap: 15px;
    }

    .testimonials-nav .nav-btn {
        width: 45px;
        height: 45px;
    }

    .hero-stats{
        gap: 2rem;
    }

    .whatsapp-popup {
        font-size: 12px;
        padding: 10px 16px;
        padding-top: 6px;
        border-radius: 10px;
        right: 65%;
    }

    .popup-close-btn {
        width: 22px;
        height: 22px;
        top: 3px;
        right: 3px;
    }

    .popup-close-btn i {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 1450px) {
    .hero-container{
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding-top: 65px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 0;
        min-height: 400px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .testimonials-nav .nav-btn {
        width: 40px;
        height: 40px;
    }

    .view-more-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .whatsapp-fixed {
        right: 16px;
        bottom: 24px;
    }

    .whatsapp-popup {
        font-size: 11px;
        padding: 8px 14px;
        padding-top: 4px;
    }

    .popup-close-btn {
        width: 20px;
        height: 20px;
        top: 2px;
        right: 2px;
    }

    .popup-close-btn i {
        font-size: 10px;
    }
}

/* Animations and Transitions */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hover Effects for Interactive Elements */
.service-card:hover .chart-bars .bar {
    animation: barPulse 0.6s ease-in-out;
}

@keyframes barPulse {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.1);
    }
}

.feature-icon {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

/* Focus States for Accessibility */
button:focus,
input:focus,
.indicator:focus,
.nav-menu a:focus {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .header,
    .carousel-controls,
    .carousel-nav,
    .cta-section,
    .footer {
        display: none;
    }

    .hero {
        background: white;
        color: black;
        min-height: auto;
    }

    .hero-title,
    .section-title {
        color: black;
    }

    .service-card {
        background: white;
        color: black;
        border: 1px solid #ccc;
    }
}

@media (max-width: 395px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 355px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Fixed WhatsApp Icon */
.whatsapp-fixed {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 1200;
    border-radius: 50%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.01);
}

/* WhatsApp Popup - Shows automatically on page load */
.whatsapp-popup {
    position: absolute;
    right: 65%;
    top: 0px;
    transform: translate(-20px, -50%);
    background: transparent;
    color: black;
    padding: 12px;
    padding-top: 0;
    border-radius: 12px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-right: 0px;
}

.whatsapp-popup.show-initial {
    opacity: 1;
    visibility: visible;
    transform: translate(-10px, -50%);
    animation: popupBounce 2s ease-in-out 3;
}

.whatsapp-popup p {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Close Button */
.popup-close-btn {
    position: absolute;
    top: -10px;
    right: -5px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.popup-close-btn:hover {
    background: #b5b5b562;
    color: white;
    transform: scale(1.01);
}

.popup-close-btn i {
    font-size: 12px;
    color: #333;
}

.popup-close-btn:hover i {
    color: white;
}

@keyframes popupBounce {
    0%, 100% {
        transform: translate(-10px, -50%);
    }
    50% {
        transform: translate(-15px, -50%);
    }
}