/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.section-body {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Buttons */
.cta-button, .hero-cta-button {
    background: #cf161d;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover, .hero-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.outline-button {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 20px 40px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.outline-button:hover {
    background: #000000;
    color: #ffffff;
}

.outline-button.small {
    padding: 12px 24px;
    font-size: 16px;
}



.black-button {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: initial;
}

.black-button:hover {
    background: #333333;
}



/* Header */
.header {
    position: fixed;
    top: 20px; /* Add some space from the top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1368px; /* Match the Figma width */
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    border-radius: 100px; /* Match the Figma corner radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0; /* Adjust padding */
    transition: top 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px; /* Add horizontal padding */
    width: 100%;
}

.logo img {
    height: 50px; /* Adjust logo height */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #cf161d;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.header .cta-button {
    padding: 12px 24px;
    font-size: 16px;
}

/* Hero Section */
.hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.hero-fullscreen .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fullscreen .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* .hero-fullscreen .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg,rgba(47, 17, 17, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
} */

.hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-fullscreen .columns {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-fullscreen .text-side {
    max-width: 570px;
    color: #ffffff;
    padding-left: 0;
}

.hero-text {
    color: #ffffff;
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f41c3b;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 20px;
}

.hero-cta-button {
    margin-bottom: 30px;
}

/* Emplifi-style button container and button */
.button-container {
    margin-top: 30px;
}

.button-container.full-mobile {
    width: 100%;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.btn.big {
    background: #CF161D;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn.big:hover {
    background: #B3141A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 22, 29, 0.3);
}

.hero-bottom-left {
    margin-top: 80px;
    color: #ffffff;
    max-width: 494px;
}

.hero-cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.client-logos img {
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

.partner-logos {
    gap: 20px;
}

.hero-bottom-left p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

.partner-logos img {
    height: 163px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.hero-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.ui-card {
    position: absolute;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: all;
}

.ui-card:hover {
    transform: translateY(-4px);
}

.metric-card-1 {
    top: 290px;
    right: 280px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-2 {
    top: 360px;
    right: 100px;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-3 {
    top: 450px;
    right: 250px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-1:hover,
.metric-card-2:hover,
.metric-card-3:hover {
    transform: translateY(-4px);
}

.metric-card-1 img,
.metric-card-2 img,
.metric-card-3 img {
    width: 80%;
    height: auto;
    border-radius: 8px;
}


/* Section Styles */
section {
    padding: 100px 0;
}

.section-whatsapp {
    background-color: rgba(227, 239, 255, 0.28);
    text-align: center;
}

.section-whatsapp .section-subtitle {
    margin-bottom: 60px;
}

.whatsapp-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* text-align: left; */
}

.whatsapp-content-grid .section-content {

    text-align: left;
}

.section-image img {
    width: 55%;
    height: auto;
    border-radius: 20px;
}

.indexsection-button-container {
    padding-top: 50px;
}

.section-solutions {
    background: #ffffff;
    text-align: center;
}

.solutions-grid-container {
    margin-top: 60px;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.solutions-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solutions-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-card {
    background: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card.dark {
    background: #10218b;
    color: #ffffff;
}

.solution-card-1 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 653px;
}

.solution-card-2 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 875px;
}

.solution-card-3 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 770px;
}

.solution-card-4 {
    background-color: #10218b;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 547px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-4-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: initial;
}

.solution-card-4-btn:hover {
    background: #ffffff;
    color: #000000;
}

.card-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    
}

.solution-card-3 .card-image {
    padding: 50px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(4, 9, 37, 1) 100%);
}

.card-content, .card-content-overlay {
    padding: 50px;
}

.solution-card-4 .card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    z-index: 2;
}

.card-content h3, .card-content-overlay h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    line-height: 100%;
}



.card-content p, .card-content-overlay p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
    text-align: left;
}

.card-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-content li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    
}

.card-content li::before {
    content: '•';
    color: #000000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.solution-card-2 .card-content h3 {
    color: #000000;
    font-weight:600;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 150%;
}

.solution-card-2 .card-content p {
    color: #000000;
}

.solution-card-4 .card-content h3 {
    color: #ffffff;
    font-weight:600;
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    line-height: 150%;
    text-align: center;
}

/* Section 03: Academy */
.section-academy {
    padding: 100px 0;
    background-color: rgba(227, 239, 255, 0.28);
}

.academy-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.academy-image {
    flex: 1;
}

.parallax-container {
    overflow: hidden;
    height: 711px; /* Adjust as needed */
    border-radius: 20px;
}

.parallax-image {
    width: 100%;
    height: 120%; /* Make image taller to allow for movement */
    object-fit: cover;
    transition: transform 0.5s ease-out;
}


.academy-text {
    flex: 1;
    max-width: 50%;
}

.section-academy .section-title {
    line-height: 1.1;
    margin-bottom: 25px;
}

.academy-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #000000;
}

.academy-body {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px;
}

.academy-content .black-button {
    padding: 20px 40px;
}

/* Technology Section */
.section-tech {
    background: #ffffff;
    text-align: center;
}

.section-tech .section-title,
.section-tech .section-subtitle,
.section-tech .section-body {
    max-width: 806px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.tech-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.tech-content {
    background-color: #f0f0f0;
    padding: 30px;
    height: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

.tech-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.tech-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
}

/* Section 05: Success Stories */
.section-success {
    padding: 109px 0;
    background-color: rgba(227, 239, 255, 0.28);
    text-align: left;
}

.section-success .container {
    max-width: 1240px;
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 49px;
    gap: 20px;
}

.success-header-text {
    max-width: 504px;
}

.success-subtitle {
    max-width: 100%;
    margin: 20px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.section-success .section-title {
    margin-bottom: 0;
}

.case-study-accordion {
    display: flex;
    gap: 0;
    background-color: #e3efff;
    border-radius: 20px;
    padding: 0;
    align-items: stretch;
    text-align: left;
    height: 526px;
    overflow: hidden;
}

.case-study-image-container {
    flex: 0 0 527px;
    max-width: 527px;
}

.case-study-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.case-study-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    counter-reset: case-study-counter;
    padding: 68px 47px 40px;
}

.case-study-item {
    border-bottom: 1px solid #000000;
    padding: 24px 0;
    cursor: pointer;
    counter-increment: case-study-counter;
}

.case-study-item:first-child {
    padding-top: 0;
}

.case-study-item:last-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 24px;
}

.case-study-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.case-study-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    padding-left: 2.2rem;
    text-indent: -2.2rem;
}

.case-study-title h3::before {
    content: counter(case-study-counter) ". ";
}

.case-study-body {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.5s ease-out, padding 0.5s ease-out; */
    padding: 0;
}

.case-study-body p {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
}

.case-study-item.active .case-study-body {
    max-height: 500px; /* Adjust as needed */
    padding: 16px 0 0 0;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8V16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1.5px solid #000;
    border-radius: 50%;
}

.case-study-item.active .accordion-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


.closing-text {
    margin-top: 49px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 600px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(141deg,rgba(47, 17, 17, 0.15) 49%, rgba(47, 17, 17, 0.08) 52%, rgba(47, 17, 17, 0.01) 65%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.cta-gradient-blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(255deg,rgba(47, 17, 17, 0.5) 32%, rgba(47, 17, 17, 0.50) 23%, rgba(47, 17, 17, 0.08) 49%, rgba(16, 33, 139, 1) 78%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    /* padding-left: 100px; Add padding to shift content to the right */
}

.cta-text {
    max-width: 526px; /* Increased width to prevent title wrapping */
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px; /* Adjusted spacing */
}

.cta-body {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px; /* Adjusted spacing */
    font-weight: 300; /* Lighter font for the body */
}

.cta-body strong {
    font-weight: 600; /* Bolder font for highlighted words */
}

.cta-section .cta-button {
    font-weight: 500; /* Inter Medium */
}

/* Footer */
.footer {
    background: #f6faff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 10px;
    line-height: 14px;
    color: #000000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #10218b;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #cf161d;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #e3efff;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #000000;
}

.footer-bottom p {
    font-weight: 700;
}

/* Responsive Design */

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger .hamburger-line {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.hamburger::before {
    top: 0;
}

.hamburger .hamburger-line {
    top: 8px;
}

.hamburger::after {
    top: 16px;
}

.hamburger.active::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.no-scroll {
    overflow: hidden;
}

/* Large screens */
@media (min-width: 1441px) {
    .container {
        padding: 0px 20px;
    }
}

/* Tablets and smaller desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-title {
        font-size: 55px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* .nav-menu a {
        font-size: 2.2rem;
    }
    
    .nav-wrapper {
        padding: 70px 25px 35px 25px;
    } */
}

/* Tablets (portrait) */
@media (max-width: 992px) {
    .header {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        position: relative;
        padding: 0 20px;
        height: 70px;
    }

    .hamburger {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 350px 30px 350px 30px;
        background: rgba(255, 255, 255, 0.98);
        opacity: 0; 
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .hamburger.active {
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 1001;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* .nav-menu {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: left;
        align-items: flex-start;
        background-color: #ffffff !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        display: block;
    } */

    .nav-wrapper .cta-button {
        margin-top: 40px;
        background: #1a1a2e;
        border: 2px solid #1a1a2e;
        color: white;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }

    .nav-wrapper .cta-button:hover {
        background: white;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        gap: 0;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .nav-menu a {
        font-size: 2.5rem;
        font-weight: 600;
        padding: 15px 0;
        margin: 0;
        color: #1a1a2e;
        border-bottom: none;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUpNav 0.6s ease forwards;
    }

    .nav-menu a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu a:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu a:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu a:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu a:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu a:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu a:hover {
        color: #3549ff;
        transform: translateY(-2px);
    }

    .nav-menu a.active {
        color: #ff6b35;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 0;
        transform: none;
        width: 30px;
        height: 3px;
        background: #ff6b35;
        border-radius: 2px;
    }
    
    .nav-menu a {
        font-size: 2rem;
    }
    
    .nav-wrapper {
        padding: 350px 20px 350px 20px;
    }
    
    .nav-wrapper .cta-button {
        margin-top: 30px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding-top: 100px; /* Space for header */
    }

    .hero-left-content {
        position: static;
        padding: 120px 20px 60px;
        max-width: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-metrics {
        display: none;
    }
    
    .hero-bottom-left {
        position: static;
        color: #ffffff;
        max-width: 100%;
    }

    .hero-cta-text {
        font-size: 16px;
    }
    
    .client-logos {
        position: static;
    }
    
    .case-study-body p {
        display: none;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solutions-left-column,
    .solutions-right-column {
        gap: 20px;
    }
    
    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4 {
        height: auto;
        min-height: 300px;
    }
    
    .card-content h3, .card-content-overlay h3 {
        font-size: 28px;
    }
    
    .card-content, .card-content-overlay {
        padding: 30px;
    }

    .solution-card,
    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4 {
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
    }
    
    .card-content h3, .card-content-overlay h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .card-content p, .card-content-overlay p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .card-content ul {
        font-size: 16px;
    }
    
    .solution-card-4 .card-content {
        padding: 30px 20px;
    }

    .whatsapp-content-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-content-grid .section-image {
        order: 1;
    }

    .whatsapp-content-grid .section-content {
        order: 2;
        text-align: center;
    }

    .whatsapp-content-grid .section-content .section-body {
        text-align: justify;
    }

    .academy-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .academy-content .academy-text {
        max-width: 100%;
    }

    .academy-content .black-button {
        max-width: 100%;
    }

    .case-study-accordion {
        flex-direction: column;
        height: auto;
    }

    .case-study-image-container {
        flex: 1 1 auto;
        max-width: 100%;
        height: 300px;
    }

    .success-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .case-study-body p {
        display: none;
    }
}

/* Mobile devices */
/* Reset and Base Styles */




/* Header */
.header {
    position: fixed;
    top: 20px; /* Add some space from the top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1368px; /* Match the Figma width */
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    border-radius: 100px; /* Match the Figma corner radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0; /* Adjust padding */
    transition: top 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px; /* Add horizontal padding */
    width: 100%;
}

.logo img {
    height: 50px; /* Adjust logo height */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #cf161d;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.header .cta-button {
    padding: 12px 24px;
    font-size: 16px;
}

/* Hero Section */
.hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.hero-fullscreen .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fullscreen .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-fullscreen .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(22, 35, 86, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-fullscreen .columns {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-fullscreen .text-side {
    max-width: 570px;
    color: #ffffff;
    padding-left: 0;
}

.hero-text {
    color: #ffffff;
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f41c3b;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 20px;
}

.hero-cta-button {
    margin-bottom: 30px;
}

/* Emplifi-style button container and button */
.button-container {
    margin-top: 30px;
}

.button-container.full-mobile {
    width: 100%;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.btn.big {
    background: #CF161D;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn.big:hover {
    background: #B3141A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 22, 29, 0.3);
}

.hero-bottom-left {
    margin-top: 80px;
    color: #ffffff;
    max-width: 494px;
}

.hero-cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.client-logos img {
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

.partner-logos {
    gap: 20px;
}

.hero-bottom-left p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

.partner-logos img {
    height: 163px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.hero-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.ui-card {
    position: absolute;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: all;
}

.ui-card:hover {
    transform: translateY(-4px);
}

.metric-card-1 {
    top: 290px;
    right: 280px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-2 {
    top: 360px;
    right: 100px;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-3 {
    top: 450px;
    right: 250px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-1:hover,
.metric-card-2:hover,
.metric-card-3:hover {
    transform: translateY(-4px);
}

.metric-card-1 img,
.metric-card-2 img,
.metric-card-3 img {
    width: 80%;
    height: auto;
    border-radius: 8px;
}


/* Section Styles */
section {
    padding: 100px 0;
}

.section-whatsapp {
    background-color: rgba(227, 239, 255, 0.28);
    text-align: center;
}

.section-whatsapp .section-subtitle {
    margin-bottom: 60px;
}

.whatsapp-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* text-align: left; */
}

.whatsapp-content-grid .section-content {

    text-align: left;
}

.section-image img {
    width: 55%;
    height: auto;
    border-radius: 20px;
}

.indexsection-button-container {
    padding-top: 50px;
}

.section-solutions {
    background: #ffffff;
    text-align: center;
}

.solutions-grid-container {
    margin-top: 60px;
    position: relative;
    padding: 0px 20px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.solutions-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solutions-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-card {
    background: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card.dark {
    background: #10218b;
    color: #ffffff;
}

.solution-card-1 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 653px;
}

.solution-card-2 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 875px;
}

.solution-card-3 {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 770px;
}

.solution-card-4 {
    background-color: #10218b;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 547px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    
}

.solution-card-3 .card-image {
    padding: 50px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(4, 9, 37, 1) 100%);
}

.card-content, .card-content-overlay {
    padding: 50px;
}

.solution-card-4 .card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    z-index: 2;
}

.card-content h3, .card-content-overlay h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    line-height: 100%;
}



.card-content p, .card-content-overlay p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
    text-align: left;
}

.card-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-content li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    
}

.card-content li::before {
    content: '•';
    color: #000000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.solution-card-2 .card-content h3 {
    color: #000000;
    font-weight:600;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 150%;
}

.solution-card-2 .card-content p {
    color: #000000;
}

.solution-card-4 .card-content h3 {
    color: #ffffff;
    font-weight:600;
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    line-height: 150%;
    text-align: center;
}

/* Section 03: Academy */
.section-academy {
    padding: 100px 0;
    background-color: rgba(227, 239, 255, 0.28);
}

.academy-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.academy-image {
    flex: 1;
}

.parallax-container {
    overflow: hidden;
    height: 711px; /* Adjust as needed */
    border-radius: 20px;
}

.parallax-image {
    width: 100%;
    height: 120%; /* Make image taller to allow for movement */
    object-fit: cover;
    transition: transform 0.5s ease-out;
}


.academy-text {
    flex: 1;
    max-width: 50%;
}

.section-academy .section-title {
    line-height: 1.1;
    margin-bottom: 25px;
}

.academy-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #000000;
}

.academy-body {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px;
}

.academy-content .black-button {
    padding: 20px 40px;
}

/* Technology Section */
.section-tech {
    background: #ffffff;
    text-align: center;
}

.section-tech .section-title,
.section-tech .section-subtitle,
.section-tech .section-body {
    max-width: 806px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.tech-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.tech-content {
    background-color: #f0f0f0;
    padding: 30px;
    height: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

.tech-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.tech-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
}

/* Section 05: Success Stories */
.section-success {
    padding: 109px 0;
    background-color: rgba(227, 239, 255, 0.28);
    text-align: left;
}

.section-success .container {
    max-width: 1240px;
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 49px;
    gap: 20px;
}

.success-header-text {
    max-width: 504px;
}

.success-subtitle {
    max-width: 100%;
    margin: 20px 0 0 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.section-success .section-title {
    margin-bottom: 0;
}

.case-study-accordion {
    display: flex;
    gap: 0;
    background-color: #e3efff;
    border-radius: 20px;
    padding: 0;
    align-items: stretch;
    text-align: left;
    height: 526px;
    overflow: hidden;
}

.case-study-image-container {
    flex: 0 0 527px;
    max-width: 527px;
}

.case-study-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.case-study-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    counter-reset: case-study-counter;
    padding: 68px 47px 40px;
}

.case-study-item {
    border-bottom: 1px solid #000000;
    padding: 24px 0;
    cursor: pointer;
    counter-increment: case-study-counter;
}

.case-study-item:first-child {
    padding-top: 0;
}

.case-study-item:last-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 24px;
}

.case-study-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.case-study-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    padding-left: 2.2rem;
    text-indent: -2.2rem;
}

.case-study-title h3::before {
    content: counter(case-study-counter) ". ";
}

.case-study-body {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.5s ease-out, padding 0.5s ease-out; */
    padding: 0;
}

.case-study-body p {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
}

.case-study-item.active .case-study-body {
    max-height: 500px; /* Adjust as needed */
    padding: 16px 0 0 0;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8V16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1.5px solid #000;
    border-radius: 50%;
}

.case-study-item.active .accordion-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


.closing-text {
    margin-top: 49px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 600px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(141deg,rgba(47, 17, 17, 0.15) 49%, rgba(47, 17, 17, 0.08) 52%, rgba(47, 17, 17, 0.01) 65%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.cta-gradient-blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(255deg,rgba(47, 17, 17, 0.5) 32%, rgba(47, 17, 17, 0.50) 23%, rgba(47, 17, 17, 0.08) 49%, rgba(16, 33, 139, 1) 78%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    /* padding-left: 100px; Add padding to shift content to the right */
}

.cta-text {
    max-width: 526px; /* Increased width to prevent title wrapping */
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px; /* Adjusted spacing */
}

.cta-body {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px; /* Adjusted spacing */
    font-weight: 300; /* Lighter font for the body */
}

.cta-body strong {
    font-weight: 600; /* Bolder font for highlighted words */
}

.cta-section .cta-button {
    font-weight: 500; /* Inter Medium */
}

/* Footer */
.footer {
    background: #f6faff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 10px;
    line-height: 14px;
    color: #000000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #10218b;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #cf161d;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #e3efff;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #000000;
}

.footer-bottom p {
    font-weight: 700;
}

/* Responsive Design */

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger .hamburger-line {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.hamburger::before {
    top: 0;
}

.hamburger .hamburger-line {
    top: 8px;
}

.hamburger::after {
    top: 16px;
}

.hamburger.active::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active::after {
    transform: rotate(-45deg) translate(6px, -6px);
}



.no-scroll {
    overflow: hidden;
}

/* Large screens */
@media (min-width: 1441px) {
    .container {
        padding: 0px 20px;
    }
}

@media screen and (min-width: 993px) and (max-width: 1215px) {
    .header {
        max-width: 98%;
    }

    .header-container {
        padding: 0 12px;
    }

    .nav-wrapper {
        gap: 12px;
        justify-content: center;
    }

    .nav-menu {
        gap: 10px;
        flex: 1;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 13px;
        white-space: nowrap;
        padding: 0;
        letter-spacing: -0.2px;
    }

    .header .cta-button {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
        min-width: auto;
        letter-spacing: -0.2px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 32px;
    }
}


/* Tablets and smaller desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-title {
        font-size: 55px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* .nav-menu a {
        font-size: 2.2rem;
    }
    
    .nav-wrapper {
        padding: 70px 25px 35px 25px;
    } */
}

/* Tablets (portrait) */
@media (max-width: 992px) {
    .header {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        position: relative;
        padding: 0 20px;
        height: 70px;
    }

    .hamburger {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 350px 30px 350px 30px;
        background: rgba(255, 255, 255, 0.98);
        opacity: 0; 
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .hamburger.active {
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 1001;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* .nav-menu {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: left;
        align-items: flex-start;
        background-color: #ffffff !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        display: block;
    } */

    .nav-wrapper .cta-button {
        margin-top: 40px;
        background: #1a1a2e;
        border: 2px solid #1a1a2e;
        color: white;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }

    .nav-wrapper .cta-button:hover {
        background: white;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        gap: 0;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .nav-menu a {
        font-size: 2.5rem;
        font-weight: 600;
        padding: 15px 0;
        margin: 0;
        color: #1a1a2e;
        border-bottom: none;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUpNav 0.6s ease forwards;
    }

    .nav-menu a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu a:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu a:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu a:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu a:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu a:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu a:hover {
        color: #3549ff;
        transform: translateY(-2px);
    }

    .nav-menu a.active {
        color: #ff6b35;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 0;
        transform: none;
        width: 30px;
        height: 3px;
        background: #ff6b35;
        border-radius: 2px;
    }
    
    .nav-menu a {
        font-size: 2rem;
    }
    
    .nav-wrapper {
        padding: 350px 20px 350px 20px;
    }
    
    .nav-wrapper .cta-button {
        margin-top: 30px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding-top: 100px; /* Space for header */
    }

    .hero-left-content {
        position: static;
        padding: 120px 20px 60px;
        max-width: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-metrics {
        display: none;
    }
    
    .hero-bottom-left {
        position: static;
        color: #ffffff;
        max-width: 100%;
    }

    .hero-cta-text {
        font-size: 16px;
    }
    
    .client-logos {
        position: static;
    }
    
    .case-study-body p {
        display: none;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solutions-left-column,
    .solutions-right-column {
        gap: 20px;
    }
    
    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4 {
        height: auto;
        min-height: 300px;
    }
    
    .card-content h3, .card-content-overlay h3 {
        font-size: 28px;
    }
    
    .card-content, .card-content-overlay {
        padding: 30px;
    }

    .solution-card,
    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4 {
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
    }
    
    .card-content h3, .card-content-overlay h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .card-content p, .card-content-overlay p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .card-content ul {
        font-size: 16px;
    }
    
    .solution-card-4 .card-content {
        padding: 30px 20px;
    }

    .whatsapp-content-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-content-grid .section-image {
        order: 1;
    }

    .whatsapp-content-grid .section-content {
        order: 2;
        text-align: center;
    }

    .whatsapp-content-grid .section-content .section-body {
        text-align: justify;
    }

    .academy-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .academy-content .academy-text {
        max-width: 100%;
    }

    .academy-content .black-button {
        max-width: 100%;
    }

    .case-study-accordion {
        flex-direction: column;
        height: auto;
    }

    .case-study-image-container {
        flex: 1 1 auto;
        max-width: 100%;
        height: 300px;
    }

    .success-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .case-study-body p {
        display: none;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .header {
        top: 0;
        width: 100%;
        padding: 0;
        border-radius: 0;
    }

    .header-container {
        flex-direction: row;
        gap: 10px;
        height: 70px;
        padding: 0 20px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 2rem;
        font-weight: 600;
        padding: 15px 0;
        margin: 0;
        color: rgb(0, 0, 0);
        border-bottom: none;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUpNav 0.6s ease forwards;
    }

    .nav-menu a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu a:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu a:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu a:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu a:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu a:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu a:hover {
        color: #4335ff;
        transform: translateY(-2px);
    }

    .nav-menu a.active {
        color: #6435ff;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #ff6b35;
        border-radius: 2px;
    }

    .header .cta-button {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .hero-metrics {
        flex-direction: column;
    }
        
    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    
    .footer-content, .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        gap: 40px;
    }

    .social-icons {
        justify-content: left;
    }

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

    .cta-content {
        padding-left: 0;
        text-align: center;
        justify-content: center;
    }

    .cta-text {
        padding: 0 0px;
    }

    .solution-card,
    .solution-card-1,
    .solution-card-2,
    .solution-card-3,
    .solution-card-4 {
        width: 100%;
    }

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

/* Responsive styles for UI elements */
@media (max-width: 1200px) {
    .metric-card-1 {
        top: 100px;
        right: 60px;
        width: 240px;
    }
    
    .metric-card-2 {
        top: 240px;
        right: 40px;
        width: 220px;
    }
    
    .metric-card-3 {
        top: 380px;
        right: 80px;
        width: 200px;
    }
}

@media (max-width: 992px) {
    .hero-fullscreen {
        min-height: 600px;
    }
    
    .hero-fullscreen .container {
        padding: 0 40px;
    }
    
    .hero-fullscreen .columns {
        padding-top: 80px;
    }
    
    .hero-fullscreen .text-side {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .hero-cta-button {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }
    
    .hero-bottom-left {
        margin-top: 60px;
        text-align: left;
    }
    
    .hero-bottom-left p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-cta-text {
        font-size: 18px;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .client-logos {
        gap: 25px;
        justify-content: flex-start;
    }
    
    .client-logos img {
        height: 32px;
    }
    
    .partner-logos {
        gap: 15px;
    }
    
    .partner-logos img {
        height: 100px;
    }
    
    .hero-ui-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        min-height: 500px;
        padding-bottom: 110px;
    }
    
    .hero-fullscreen .container {
        padding: 0 30px;
    }
    
    .hero-fullscreen .columns {
        padding-top: 60px;
    }
    
    .hero-fullscreen .text-side {
        text-align: left;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .hero-cta-button {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }
    
    .hero-bottom-left {
        margin-top: 50px;
        text-align: left;
    }
    
    .hero-bottom-left p {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-cta-text {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .client-logos {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .client-logos img {
        height: 28px;
    }
    
    .partner-logos {
        gap: 12px;
    }
    
    .partner-logos img {
        height: 80px;
    }
    
    .hero-ui-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        min-height: 600px;
    }
    
    .hero-fullscreen .container {
        padding: 0 20px;
    }
    
    .hero-fullscreen .columns {
        padding-top: 50px;
    }
    
    .hero-fullscreen .text-side {
        text-align: left;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: left;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .hero-cta-button {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }
    
    .hero-bottom-left {
        margin-top: 40px;
        text-align: left;
        position: static;
        color: #ffffff;
        max-width: 100%;
    }
    
    .hero-cta-text {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-left-content {
        position: static;
        padding: 120px 20px 60px;
        max-width: 100%;
        text-align: center;
    }

    
    .client-logos {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .client-logos img {
        height: 24px;
    }
    
    .hero-ui-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .tech-hero-title {
        font-size: 2rem;
    }
    
    .tech-hero-subtitle {
        font-size: 1rem;
    }
    
    .tech-hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .tech-panel {
        padding: 20px;
        min-height: 250px;
        margin: 0 auto;
    }
    
    .tech-panel-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tech-panel-icon {
        width: 120px;
        height: 100px;
    }
    
    .tech-panel h3 {
        font-size: 1.1rem;
    }
    
    .tech-panel p {
        font-size: 1rem;
    }

    

    .client-logos img {
        height: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-button, .hero-cta-button, .outline-button, .black-button, .white-button, .solution-card-4-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
    
    .card-content {
        padding: 30px 20px;
    }
    
    .solutions-grid {
        gap: 20px;
    }
    
    .solutions-left-column,
    .solutions-right-column {
        gap: 15px;
    }
    
    .card-content h3, .card-content-overlay h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .card-content p, .card-content-overlay p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .card-content ul {
        font-size: 14px;
    }
    
    .card-content li {
        margin-bottom: 8px;
    }
    
    .solution-card-4 .card-content {
        padding: 20px 15px;
    }
    
    .white-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .case-study-items-container {
        padding: 40px 20px;
    }

    .case-study-item h3 {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 350px 30px 350px 30px;
        background: rgba(255, 255, 255, 0.95);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .hamburger.active {
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 1001;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-wrapper .cta-button {
        margin-top: 40px;
        background: #1a1a2e;
        border: 2px solid #1a1a2e;
        color: white;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        display: none;
        text-align: center;
    }

    .nav-wrapper .cta-button:hover {
        background: white;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 2rem;
        font-weight: 600;
        padding: 15px 0;
        margin: 0;
        color: rgb(0, 0, 0);
        border-bottom: none;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUpNav 0.6s ease forwards;
    }

    .nav-menu a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu a:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu a:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu a:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu a:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu a:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu a:hover {
        color: #355aff;
        transform: translateY(-2px);
    }

    .nav-menu a.active {
        color: #3564ff;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #ff6b35;
        border-radius: 2px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpNav {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-content, .solution-card, .tech-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.hamburger:focus, .cta-button:focus, .outline-button:focus, .black-button:focus, .white-button:focus, a:focus {
    outline: 2px solid #cf161d;
    outline-offset: 2px;
} 

/* WhatsApp Hero Section */
.whatsapp-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.whatsapp-hero-fullscreen .whatsapp-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.whatsapp-hero-fullscreen .whatsapp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.whatsapp-hero-fullscreen .whatsapp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(252deg, rgba(0, 0, 0, 0) 20.17%, rgba(0, 0, 0, 1));
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.whatsapp-hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.whatsapp-hero-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.whatsapp-hero-fullscreen .whatsapp-hero-columns {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.whatsapp-hero-fullscreen .text-side {
    max-width: 570px;
    color: #ffffff;
    padding-left: 0;
}

.whatsapp-hero-text {
    color: #ffffff;
    text-align: left;
}

.whatsapp-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.whatsapp-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 20px;
}

.whatsapp-hero-spots {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    font-style: italic;
    padding: 10px 20px;
}

.whatsapp-hero-cta-button {
    margin-bottom: 30px;
}

/* Emplifi-style button container and button */
.whatsapp-hero-button-container {
    margin-top: 30px;
}

.whatsapp-hero-button-container.full-mobile {
    width: 100%;
}

.whatsapp-hero-btn {
    background: #0069FF;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.whatsapp-hero-btn:hover {
    background: #B3141A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 22, 29, 0.3);
}


.whatsapp-hero-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.whatsapp-hero-ui-card {
    position: absolute;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: all;
}

.whatsapp-hero-ui-card:hover {
    transform: translateY(-4px);
}

.whatsapp-metric-card-1 img{
    width: 60%;
    height: auto;
    border-radius: 8px;
}

.whatsapp-metric-card-1 {
    top: 290px;
    right: 280px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-metric-card-1:hover{
    transform: translateY(-4px);
}



/* .whatsapp-hero {
    position: relative;
    min-height: 1308px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.whatsapp-hero .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 89px;
}

.whatsapp-hero .hero-left-content {
    position: absolute;
    top: 89px;
    max-width: 630px;
}

.whatsapp-hero .hero-text {
    color: #ffffff;
    text-align: left;
}

.whatsapp-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.whatsapp-hero .hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 20px;
}

.whatsapp-hero .hero-body {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.whatsapp-hero .cta-button, .whatsapp-hero .hero-cta-button {
    background: #0069FF;
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-hero .cta-button:hover, .whatsapp-hero .hero-cta-button:hover {
    background: #185cbb;
    transform: translateY(-2px);
}

.whatsapp-hero .hero-bottom-left {
    position: absolute;
    top: 800px;
    color: #ffffff;
    max-width: 1150px;
}

.whatsapp-hero .hero-cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.whatsapp-hero-chat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.whatsapp-hero-chat-card {
    position: absolute;
    width: 284px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.8s ease-out;
    pointer-events: all;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px) scale(1);
}

.whatsapp-hero-chat-card:hover {
    transform: scale(1.05);
}


.whatsapp-hero.animate .whatsapp-hero-chat-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-hero-chat-card img {
    width: 60%;
    height: auto;
}

.whatsapp-hero-chat-card-1 {
    top: 130px;
    left: 910px;
    transition-delay: 0.2s;
}

.whatsapp-hero-chat-card-2 {
    top: 317px;
    left: 910px;
    transition-delay: 0.4s;
}

.whatsapp-hero-chat-card-3 {
    top: 375px;
    left: 840px;
    transition-delay: 0.6s;
}

.whatsapp-hero-chat-card-4 {
    top: 439px;
    left: 840px;
    transition-delay: 0.8s;
}

.whatsapp-hero-chat-card-5 {
    top: 470px;
    left: 840px;
    transition-delay: 1s;
} */



/* Mobile Responsive Styles for WhatsApp Hero */
@media (max-width: 1200px) {
    .whatsapp-hero {
        min-height: 1000px;
    }

    .whatsapp-hero .hero-content {
        padding: 0 40px;
    }

    .whatsapp-hero .hero-left-content {
        top: 60px;
        max-width: 500px;
    }

    .whatsapp-hero .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .whatsapp-hero .hero-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .whatsapp-hero .hero-body {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .whatsapp-hero .hero-cta-button {
        padding: 16px 32px;
        font-size: 18px;
    }

    .whatsapp-hero .hero-bottom-left {
        top: 600px;
    }

    .whatsapp-hero .hero-cta-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .partner-logos img {
        height: 120px;
    }
}

@media (max-width: 992px) {
    .whatsapp-hero {
        min-height: 990px;
    }

    .whatsapp-hero .hero-content {
        padding: 0 30px;
    }

    .whatsapp-hero .hero-left-content {
        top: -55px;
        max-width: 400px;
    }

    .whatsapp-hero .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .whatsapp-hero .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .whatsapp-hero .hero-body {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .whatsapp-hero .hero-cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .whatsapp-hero .hero-bottom-left {
        top: 720px;
    }

    .whatsapp-hero .hero-cta-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .partner-logos img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .whatsapp-hero {
        min-height: 600px;
        padding: 20px 0;
    }

    .whatsapp-hero .hero-content {
        padding: 0 20px;
        height: auto;
    }

    .whatsapp-hero .hero-left-content {
        position: relative;
        top: auto;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .whatsapp-hero .hero-text {
        text-align: center;
    }

    .whatsapp-hero .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .whatsapp-hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .whatsapp-hero .hero-body {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .whatsapp-hero .hero-cta-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .whatsapp-hero .spots-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .whatsapp-hero .hero-bottom-left {
        position: relative;
        top: auto;
        max-width: 100%;
        text-align: center;
    }

    .whatsapp-hero .hero-cta-text {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .partner-logos {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .partner-logos img {
        height: 80px;
    }

    
}

@media (max-width: 480px) {
    .whatsapp-hero {
        min-height: 500px;
        padding: 15px 0;
    }

    .whatsapp-hero .hero-content {
        padding: 0 15px;
    }
    .whatsapp-hero .hero-left-content {
        padding: 70px 20px 180px;
    }

    .whatsapp-hero .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .whatsapp-hero .hero-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .whatsapp-hero .hero-body {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .whatsapp-hero .hero-cta-button {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .whatsapp-hero .spots-text {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .whatsapp-hero .hero-cta-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .partner-logos img {
        height: 45px;
    }

    .whatsapp-hero-chat-card img {
        width: 35%;
        height: auto;
    }
    
    .whatsapp-hero-chat-card-1 {
        top: 500px;
        left: 140px;
        transition-delay: 0.2s;
    }
    
    .whatsapp-hero-chat-card-2 {
        top: 637px;
        left: 140px;
        transition-delay: 0.4s;
    }
    
    .whatsapp-hero-chat-card-3 {
        top: 670px;
        left: 95px;
        transition-delay: 0.6s;
    }
    
    .whatsapp-hero-chat-card-4 {
        top: 703px;
        left: 95px;
        transition-delay: 0.8s;
    }
    
    .whatsapp-hero-chat-card-5 {
        top: 720px;
        left: 95px;
        transition-delay: 1s;
    }

    .whatsapp-hero-ui-elements{
        display: none;
    }
    
    .first-click-content .steps-accordion{
        margin-bottom: 50px;
    }

   
}

@media (max-width: 398px) {
    .whatsapp-hero {
        min-height: 500px;
        padding: 15px 0;
    }

    .whatsapp-hero .hero-content {
        padding: 50px 15px;
    }
    .whatsapp-hero .hero-left-content {
        padding: 60px 20px 150px;
    }

    .whatsapp-hero .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .whatsapp-hero .hero-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .whatsapp-hero .hero-body {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .whatsapp-hero .hero-cta-button {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .whatsapp-hero .spots-text {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .whatsapp-hero .hero-cta-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .partner-logos img {
        height: 45px;
    }

    .whatsapp-hero-chat-card img {
        width: 30%;
        height: auto;
    }
    
    .whatsapp-hero-chat-card-1 {
        top: 610px;
        left: 90px;
        transition-delay: 0.2s;
    }
    
    .whatsapp-hero-chat-card-2 {
        top: 703px;
        left: 90px;
        transition-delay: 0.4s;
    }
    
    .whatsapp-hero-chat-card-3 {
        top: 728px;
        left: 55px;
        transition-delay: 0.6s;
    }
    
    .whatsapp-hero-chat-card-4 {
        top: 754px;
        left: 55px;
        transition-delay: 0.8s;
    }
    
    .whatsapp-hero-chat-card-5 {
        top: 768px;
        left: 55px;
        transition-delay: 1s;
    }
}

/* WhatsApp Solutions Section */
.whatsapp-solutions {
    padding: 100px 0 0 0;
    background: #F8F9FF;
    min-height: 972px;
    display: flex;
    align-items: center;
}

.whatsapp-solutions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-solutions-header {
    max-width: 800px;
    margin-bottom: 60px;
    padding-bottom: 100px;
}

.whatsapp-solutions-header h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.whatsapp-solutions-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #000;
    font-weight: 600;
}

.whatsapp-solutions-description {
    font-size: 18px;
    line-height: 1.6;
    color: #06040A;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.phones-showcase {
    width: 100%;
    position: relative;
    height: 600px;
}

.phone-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    height: 100%;
    width: auto;
    position: relative;
    z-index: 1;
}

.api-solutions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.api-solution-card {
    position: absolute;
    width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.api-solution-card:nth-child(1) {
    left: -147px;
    top: -23px;
    width: 500px;
    transition-delay: 0.2s;
}

.api-solution-card:nth-child(2) {
    right: -100px;
    top: -115px;
    width: 313px;
    transition-delay: 0.6s;
}

.api-solution-card:nth-child(3) {
    right: -90px;
    top: 130px;
    width: 233px;
    transition-delay: 1s;
}

/* Animation class that gets added when section is in view */
.whatsapp-solutions.animate .api-solution-card {
    opacity: 1;
    transform: translateY(0);
}

.api-solution-card img {
    width: 100%;
    height: auto;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .whatsapp-solutions {
        padding: 60px 0 0 0;
        min-height: auto;
    }

    .whatsapp-solutions-header {
        padding-bottom: 60px;
        margin-bottom: 40px;
    }

    .whatsapp-solutions-header h2 {
        font-size: 48px;
    }

    .whatsapp-solutions-subtitle {
        font-size: 20px;
    }

    .phones-showcase {
        height: 500px;
    }

    .api-solution-card:nth-child(1) {
        left: -110px;
        top: -15px;
        width: 400px;
    }

    .api-solution-card:nth-child(2) {
        right: -50px;
        top: -93px;
        width: 250px;
    }

    .api-solution-card:nth-child(3) {
        right: -30px;
        top: 105px;
        width: 180px;
    }
}

@media (max-width: 992px) {
    .whatsapp-solutions {
        padding: 40px 0 0 0;
    }

    .whatsapp-solutions-header {
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .whatsapp-solutions-header h2 {
        font-size: 36px;
    }

    .whatsapp-solutions-subtitle {
        font-size: 18px;
    }

    .whatsapp-solutions-description {
        font-size: 16px;
    }

    .phones-showcase {
        height: 400px;
    }

    .api-solution-card:nth-child(1) {
        left: 1px;
        top: -2px;
        width: 300px;
    }

    .api-solution-card:nth-child(2) {
        right: 20px;
        top: -72px;
        width: 200px;
    }

    .api-solution-card:nth-child(3) {
        right: 37px;
        top: 87px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .whatsapp-solutions {
        padding: 30px 20px 0 20px;
        min-height: auto;
    }

    .whatsapp-solutions-header {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }

    .whatsapp-solutions-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .whatsapp-solutions-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .whatsapp-solutions-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .phones-showcase {
        height: 400px;
    }

    .api-solution-card:nth-child(1) {
        left: -74px;
        top: -2px;
        width: 300px;
    }

    .api-solution-card:nth-child(2) {
        right: -43px;
        top: -72px;
        width: 200px;
    }

    .api-solution-card:nth-child(3) {
        right: -40px;
        top: 87px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .whatsapp-solutions {
        padding: 20px 15px 0 15px;
    }

    .whatsapp-solutions-header h2 {
        font-size: 24px;
    }

    .whatsapp-solutions-subtitle {
        font-size: 14px;
    }

    .whatsapp-solutions-description {
        font-size: 13px;
    }

    .phones-showcase {
        height: 180px;
    }

    .api-solution-card:nth-child(1) {
        left: -58px;
        top: -13px;
        width: 180px;
    }

    .api-solution-card:nth-child(2) {
        right: -30px;
        top: -39px;
        width: 100px;
    }

    .api-solution-card:nth-child(3) {
        right: -30px;
        top: 38px;
        width: 80px;
    }
}

/* First Click Section */
.first-click {
    padding: 100px 0 0 0;
    background: white;
    height: 972px;
    overflow: hidden;
}

.first-click-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.content-right {
    max-width: 600px;
}

.first-click .section-header {
    margin-bottom: 60px;
}

.first-click .section-header h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
    font-weight: 700;
}

.first-click .highlight {
    color: #0066FF;
}

.first-click .section-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #06040A;
    font-family: 'Nunito', sans-serif;
}

/* Steps Accordion */
.steps-accordion {
    display: flex;
    flex-direction: column;
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 12px;
}

.step {
    border-bottom: 1px solid #000000;
}

.step-header {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.step-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.expand-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: #f8f9fa;
}

.expand-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.step.active .expand-btn i {
    transform: rotate(45deg);
}

.step-content {
    display: none;
}

.step.active .step-content {
    display: block;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #1E1E1E;
    max-width: 500px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .first-click {
        height: auto;
        min-height: 972px;
    }

    .first-click-content {
        padding: 0 24px;
        gap: 40px;
    }

    .flow-diagram {
        height: auto;
    }

    .flow-diagram img {
        height: auto;
        max-height: none;
    }
}

@media (max-width: 992px) {
    .first-click-content {
        grid-template-columns: 1fr;
    }

    .flow-diagram {
        position: relative;
        top: 0;
    }

    .flow-diagram img {
        max-width: 100%;
    }

    .first-click .section-header h2 {
        font-size: 36px;
    }

    .content-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .first-click .section-header h2 {
        font-size: 24px;
    }
}

/* Why WhatsApp Section */
.why-whatsapp {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-whatsapp .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-whatsapp .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.why-whatsapp h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #000;
}

.why-whatsapp .highlight {
    color: #0066FF;
}

.section-subtitle-whatsapp {
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: left;
}

.why-whatsapp .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #06040A;
    margin-bottom: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.benefit-card h3 span {
    color: #DC3545;
}

.why-whatsapp-content {
    text-align: center;
    margin: 48px 0;
}

.why-whatsapp-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #06040A;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

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


    .why-whatsapp h2 {
        font-size: 36px;
    }

    .why-whatsapp .section-subtitle {
        font-size: 20px;
    }

    .benefit-card {
        min-height: auto;
        padding: 32px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }

    .benefit-icon img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .why-whatsapp {
        padding: 0;
    }
    
    .why-whatsapp h2 {
        font-size: 24px;
    }

    .section-subtitle-whatsapp {
        font-size: 20px;
    }

    .why-whatsapp .section-description {
        font-size: 16px;
    }
    
    
}

/* Results Section */
.results {
    padding: 80px 0;
    background: white;
}

.case-studies {
    margin-top: 48px;
}

.case-study {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.case-study img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 24px;
}

.case-study h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.case-study p {
    color: #666;
    margin-bottom: 16px;
}

/* Integration Partners Section */
.integration-partners {
    padding: 80px 0;
    background: #10218B;
    color: white;
    position: relative;
    overflow: hidden;
}

.integration-partners .container {
    position: relative;
}

.get-started-btn {
    position: absolute;
    width: 340px;
    top: 0;
    right: 0;
    background: #000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.get-started-btn:hover {
    background: #333;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 40px;
}

.partners-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partners-header h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.partners-header p {
    font-size: 24px;
    line-height: 1.5;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.partners-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 500;
}

.partners-right {
    position: relative;
    height: 100%;
}

.integration-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.integration-visual .phone-mockup {
    width: auto;
    height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.integration-visual .whatsapp-tech-partners {
    position: absolute;
    right: -50px;
    top: -25px;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    width: 100%;
}

@media (max-width: 992px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-header h2 {
        font-size: 36px;
    }

    .get-started-btn {
        position: relative;
        display: block;
        margin: 0 auto 40px;
        right: auto;
        top: auto;
    }

    .integration-visual {
        justify-content: center;
        margin-top: 40px;
    }

    .integration-visual .phone-mockup {
        height: 400px;
    }

    .integration-visual .tech-partners {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .integration-visual .tech-partners{
        right: 0px;
        transform: none;
        position: static;
        top: 0px;
        left: 0px;
        margin-bottom: 20px;
        padding: 0px;
    }

    .partners-header h2 {
        font-size: 24px;
    }

    .partners-header p {
        font-size: 16px;
    }

    .feature h4 {
        font-size: 20px;
    }
}

/* Final CTA Section */
.cta-section-whatsapp {
    padding: 80px 0;
    background-color: #000;
    background-size: cover;
    background-position: right center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.cta-section-whatsapp .container {
    position: relative;
    z-index: 2;
}

.cta-section-whatsapp .cta-content {
    max-width: 600px;
}

.cta-section-whatsapp .cta-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-section-whatsapp .cta-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section-whatsapp .cta-button {
    background: #DC3545;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 24px;
}

.cta-section-whatsapp .cta-button:hover {
    background: #c82333;
}

.cta-section-whatsapp .spots-text {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 16px;
    font-style: italic;
}

.cta-section-whatsapp .cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section-whatsapp .cta-image img {
    max-width: 100%;
    height: auto;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .cta-section-whatsapp {
        background-position: center;
    }

    .cta-section-whatsapp .cta-content {
        margin: 0 auto;
        text-align: center;
    }

    .cta-section-whatsapp .cta-title {
        font-size: 36px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whatsapp-hero {
        padding: 80px 0;
    }

    .whatsapp-hero h1 {
        font-size: 36px;
    }

    .whatsapp-hero-title {
        font-size: 32px;
    }

    .whatsapp-hero-subtitle {
        font-size: 16px;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .partners-content {
        flex-direction: column;
    }

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

    .integration-visual .whatsapp-tech-partners {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: relative;
        z-index: 1;
        right: 0px;
        top: 0px;
        left: 0px;
        margin-bottom: 20px;
        padding: 0px;
    }
} 


/* Academy Page Styles */

/* Academy Hero Section */
.academy-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.academy-hero-fullscreen .academy-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.academy-hero-fullscreen .academy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.academy-hero-fullscreen .academy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(66deg, rgba(0, 0, 0, 1) 44.12%, rgba(0, 0, 0, 0) 89.92%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.academy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.academy-overlay.active {
    opacity: 1;
    visibility: visible;
}

.academy-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.academy-hero-fullscreen .academy-columns {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.academy-hero-fullscreen .text-side {
    max-width: 700px;
    color: #ffffff;
    padding-left: 0;
}

.academy-hero-text {
    color: #ffffff;
    text-align: left;
}

.academy-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.academy-hero-h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.academy-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}

.academy-btn-left {
    background: #0069FF;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.academy-btn-right {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.academy-hero-cta-button {
    margin-bottom: 30px;
}

/* Academy Introduction Section */
.academy-intro {
    background: #e3f2fd;
    padding: 100px 0;
}

.academy-intro-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr;
    gap: 60px; */
    align-items: center;
}

.academy-intro-text {
    color: #000000;
    text-align: center;
}

.academy-intro-top {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.academy-intro-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.academy-intro-visual {
    position: relative;
    text-align: center;
}

.academy-flow-diagram {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
}

.flow-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.flow-circle-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.flow-circle-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.flow-circle-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.flow-circle-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 4.5s; }

.flow-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection-line {
    position: absolute;
    background: #007bff;
    height: 2px;
    width: 100px;
    top: 50%;
    left: 50%;
    transform-origin: left center;
}

.connection-line:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.connection-line:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.connection-line:nth-child(3) { transform: translate(-50%, -50%) rotate(180deg); }

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #007bff;
}

.platform-logo i {
    font-size: 2.5rem;
}

.platform-logo span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Academy Trainers Section */
.academy-trainers {
    padding: 100px 0;
    background: white;
}

.academy-trainers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.academy-trainers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.academy-trainers-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.academy-trainers-text-content {
    text-align: left;
}

.academy-trainers-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.academy-trainers-highlight {
    color: #007bff;
}

.academy-trainers-text {
    text-align: left;
}

.academy-trainers-intro {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.academy-trainers-main {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1F1F3B;
}

.academy-trainers-description,
.academy-trainers-approach,
.academy-trainers-recognition {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #000000;
}

.academy-trainers-recognition {
    font-weight: 600;
    color: #000000;
}

/* Academy Benefits Section */
.academy-benefits {
    padding: 100px 0 0 0;
    background: #f8f9fa;
}

.academy-benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.academy-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.academy-benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.academy-benefits-header {
    text-align: left;
    padding-top: 40px;
}

.academy-benefits-badge {
    display: inline-block;
    background: white;
    color: black;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.academy-benefits-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.academy-benefit-card {
    background: #007bff;
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.academy-benefit-card-light {
    background: #EBEEF5;
    color: #1a1a2e;
}

.academy-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.academy-benefit-card-light:hover {
    box-shadow: 0 10px 30px rgba(235, 238, 245, 0.3);
}

.academy-benefit-icon {
    margin-bottom: 20px;
}

.academy-benefit-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.academy-benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.academy-benefit-card p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.academy-benefit-card-light p {
    opacity: 0.8;
}

.academy-benefits-line {
    height: 2px;
    background: #1F1F3B;
    width: 100%;
    margin-top: 40px;
}

/* Academy Statistics Section */
.academy-stats {
    padding: 80px 0;
    background: #F8F8F8;
}

.academy-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.academy-stat-item {
    padding: 20px;
}

.academy-stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 10px;
}

.academy-stat-label {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
}

.academy-formats {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}


.academy-formats-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.academy-formats-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(193deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1) 46.22%, rgba(0, 0, 0, 1) 84.03%, rgba(0, 0, 0, 0.6) 97.06%);
    z-index: 1;
}

.academy-formats-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.academy-formats-title {
    text-align: left;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 88.66px;
    position: relative;
    z-index: 2;
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
}

.academy-formats-subtitle {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 60px;
    opacity: 1;
    max-width: 1172px;
    line-height: 29.05px;
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.academy-formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.academy-formats-card {
    background: rgba(0, 106, 255, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.academy-formats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* .academy-formats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
} */

.academy-formats-card-right {
    background: #ffffff;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.academy-formats-card-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 68.5%); */
    z-index: -1;
}

/* .academy-formats-card-right:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
} */

.academy-formats-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.academy-formats-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}
.academy-formats-hr {
    border: 1px solid #ffffff;
    margin-bottom: 20px;
}

.academy-formats-card-right h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.academy-formats-card-right h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}
.academy-formats-hr-right {
    border: 1px solid #000000;
    margin-bottom: 20px;
}

.academy-formats-description {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.academy-formats-description-right {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.academy-formats-features {
    list-style: initial;
    margin-bottom: 30px;
    padding: 50px 25px;
}

.academy-formats-features-right {
    list-style: initial;
    margin-bottom: 30px;
    padding: 50px 25px;
    color: #000000;
}

.academy-formats-features li {
    position: relative;
    padding-left: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.academy-formats-features-right li {
    position: relative;
    padding-left: 0;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* .academy-formats-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
} */

.academy-formats-features-list {
    padding: 0 0;
    list-style: none;
}

.academy-formats-features-li {
    margin-left: 25px;
}

.academy-formats-summary {
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

/* Solutions Ways CTA Section */
.academy-formats-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 150px;
    padding: 40px 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.academy-formats-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 68.5%);
    z-index: -1;
}

.academy-formats-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.academy-formats-cta img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.academy-formats-cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.academy-formats-cta h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 36px;
}

.academy-formats-cta p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 27px;
    opacity: 0.9;
}

.academy-formats-cta-right {
    flex-shrink: 0;
}

.academy-formats-button-left,
.academy-formats-button-right {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.academy-f-btn-left {
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.academy-f-btn-left:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.academy-f-btn-right {
    background: #0069FF;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.academy-f-btn-right:hover {
    background: #006aff9d;
    transform: translateY(-2px);
}

/* Academy Testimonial Section */
.academy-testimonial {
    padding: 100px 0;
    background: #10218B;
    color: white;
}

.academy-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.academy-testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.academy-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.academy-testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.academy-testimonial-slide.prev {
    transform: translateX(-100%);
}

.academy-testimonial-content {
    text-align: center;
}

.academy-testimonial-quote {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
}

/* .academy-testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
} */

.academy-testimonial-author {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
}

.academy-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.academy-testimonial-prev,
.academy-testimonial-next {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.academy-testimonial-prev:hover,
.academy-testimonial-next:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.academy-testimonial-prev:disabled,
.academy-testimonial-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.academy-testimonial-dots {
    display: flex;
    gap: 12px;
}

.academy-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.academy-testimonial-dot.active {
    background: white;
    transform: scale(1.2);
}

.academy-testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Academy Final CTA Section */
.academy-final-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.academy-final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><rect width="1200" height="800" fill="%231a1a2e"/><circle cx="300" cy="200" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="600" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
}

.academy-final-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.academy-final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.academy-final-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.academy-final-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.academy-final-cta-button {
    background: #cf161d;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.academy-final-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

.academy-final-cta-side {
    text-align: right;
}

.academy-final-cta-side p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Responsive Design for Academy */
@media (max-width: 1200px) {
    .academy-hero-title {
        font-size: 3rem;
    }
    
    .academy-trainers-title {
        font-size: 2.5rem;
    }
    
    .academy-benefits-title {
        font-size: 2.5rem;
    }
    
    .academy-formats-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .academy-hero-fullscreen {
        min-height: 600px;
    }
    
    .academy-hero-fullscreen .container {
        padding: 0 40px;
    }
    
    .academy-hero-fullscreen .academy-columns {
        padding-top: 80px;
    }
    
    .academy-hero-fullscreen .text-side {
        max-width: 100%;
        text-align: left;
    }
    
    .academy-hero-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .academy-hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .academy-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .academy-trainers-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .academy-trainers-text-content {
        text-align: center;
    }

    .academy-trainers-title {
        font-size: 2rem;
    }
    
    .academy-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .academy-benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .academy-benefits-header {
        text-align: center;
        padding-top: 0;
    }
    
    .academy-formats-grid {
        grid-template-columns: 1fr;
    }
    
    .academy-final-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .academy-final-cta-side {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .academy-hero-fullscreen {
        min-height: 500px;
        padding-bottom: 110px;
    }
    
    .academy-hero-fullscreen .container {
        padding: 0 30px;
    }
    
    .academy-hero-fullscreen .academy-columns {
        padding-top: 60px;
    }
    
    .academy-btn-left,
    .academy-btn-right {
        width: 100%;         /* Full width on mobile */
        margin-bottom: 10px; /* Space between buttons */
    }

    .academy-hero-fullscreen .text-side {
        text-align: left;
    }
    
    .academy-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.2;
    }
    
    .academy-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .academy-trainers-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .academy-trainers-visual img {
        max-width: 90%;
    }

    .academy-trainers-title {
        font-size: 1.8rem;
    }
    
    .academy-benefits-title {
        font-size: 2rem;
    }
    
    .academy-formats-title {
        font-size: 2rem;
    }
    
    .academy-formats-subtitle {
        font-size: 1rem;
    }
    
    .academy-formats-card,
    .academy-formats-card-right {
        padding: 30px 20px;
    }
    
    .academy-formats-card h3,
    .academy-formats-card-right h3 {
        font-size: 1.2rem;
    }
    
    .academy-formats-card h4,
    .academy-formats-card-right h4 {
        font-size: 1rem;
    }
    
    .academy-formats-button,
    .academy-formats-button-right {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .academy-testimonial-quote {
        font-size: 1.5rem;
    }

    .academy-testimonial-controls {
        gap: 20px;
        margin-top: 30px;
    }

    .academy-testimonial-prev,
    .academy-testimonial-next {
        width: 40px;
        height: 40px;
    }

    .academy-final-cta-text h2 {
        font-size: 2rem;
    }
    
    .academy-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .academy-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .academy-benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-logos {
        gap: 20px;
    }
    
    .platform-logo i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .academy-hero-fullscreen {
        min-height: 600px;
    }
    
    .academy-hero-fullscreen .container {
        padding: 0 20px;
    }
    
    .academy-hero-fullscreen .academy-columns {
        padding-top: 50px;
    }
    
    .academy-hero-fullscreen .text-side {
        text-align: left;
    }
    
    .academy-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: left;
        line-height: 1.2;
    }
    
    .academy-hero-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: left;
    }

    .academy-btn-left,
    .academy-btn-right {
        width: 100%;         /* Full width on mobile */
        margin-bottom: 10px; /* Space between buttons */
    }

    .academy-intro-top {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .academy-intro-main {
        font-size: 1rem;
    }
    
    .academy-trainers-title {
        font-size: 1.6rem;
    }
    
    .academy-benefits-header {
        text-align: left;
    }

    .academy-benefits-title {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .academy-formats-title {
        font-size: 1.8rem;
    }
    
    .academy-formats-subtitle {
        font-size: 0.9rem;
    }
    
    .academy-formats-card,
    .academy-formats-card-right {
        padding: 25px 25px;
    }
    
    .academy-formats-card h3,
    .academy-formats-card-right h3 {
        font-size: 18px;
    }
    
    .academy-formats-card h4,
    .academy-formats-card-right h4 {
        font-size: 16px;
    }
    
    .academy-formats-button,
    .academy-formats-button-right {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .academy-format-card {
        padding: 30px 20px;
    }
    
    .academy-final-cta-text h2 {
        font-size: 1.8rem;
    }
    
    .academy-testimonial-quote {
        font-size: 1.1rem;
    }

    .academy-testimonial-controls {
        gap: 15px;
        margin-top: 25px;
    }

    .academy-testimonial-prev,
    .academy-testimonial-next {
        width: 36px;
        height: 36px;
    }

    .academy-testimonial-dots {
        gap: 8px;
    }

    .academy-testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .academy-final-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Tech Page Styles */

/* Tech Hero Section */
.tech-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    /* border-radius: 0px 0px 48px 48px; */
}

.tech-hero-fullscreen .tech-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-hero-fullscreen .tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: right center; */
}

.tech-hero-fullscreen .tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(66deg, rgba(0, 0, 0, 1) 44.12%, rgba(0, 0, 0, 0) 89.92%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.tech-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.tech-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tech-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.tech-hero-fullscreen .tech-columns {
    height: 100%;
    padding-top: 100px;
}

.tech-hero-fullscreen .text-side {
    color: #ffffff;
    padding-left: 0;
}

.tech-hero-text {
    color: #ffffff;
    text-align: center;
}

.tech-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.tech-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}

.tech-btn-left {
    background: #0069FF;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    margin-bottom: 50px;
}


.tech-hero-cta-button {
    margin-bottom: 30px;
}

/* .tech-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tech-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/tech/hero-background.png');
    background-size: cover;
    background-position: center;
}

.tech-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 16%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-hero-text {
    color: white;
    margin-bottom: 60px;
}

.tech-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 120%;
    font-family: 'Nunito', sans-serif;
}

.tech-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 1;
    font-family: 'Inter', sans-serif;
}

.tech-hero-cta {
    background: #0069FF;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tech-hero-cta:hover {
    background: #0056b3;
    transform: translateY(-2px);
} */

.tech-hero-panels {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 100px;
}

.tech-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
    width: 375px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-panel-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 75px;
    height: 75px;
    background: #0069FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    font-family: 'Nunito', sans-serif;
}

.tech-panel-icon {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 180px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-panel-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tech-panel h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000000;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.tech-panel p {
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
}


/* Tech Bridge Section */
.tech-bridge {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    min-height: auto;
    display: flex;
    align-items: center;
}

.tech-bridge-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/tech/tech-bridge-bg.png');
    background-size: cover;
    background-position: center;
}

.tech-bridge-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.85) 82%);
    z-index: 1;
}

.tech-bridge-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tech-bridge-left {
    text-align: left;
    max-width: 500px;
    align-self: flex-start;
}

.tech-bridge-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Nunito', sans-serif;
}

.tech-bridge-description {
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 27px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    opacity: 0.9;
}

.tech-bridge-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tech-bridge-panel {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 346px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left !important;
    width: 100%;
}

.tech-bridge-panel:nth-child(2) {
    background: #10218B;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 346px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left !important;
    width: 100%;
}

/* .tech-bridge-panel:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
} */

.tech-bridge-panel h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    line-height: 30px;
}

.tech-bridge-panel p {
    font-size: 18px;
    line-height: 150%;
    opacity: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000000;
    flex: 1;
    text-align: justify;
    align-content: center;
    width: 100%;
    padding: 0 15px
}

.tech-bridge-panel:nth-child(2) p {
    font-size: 20px;
    line-height: 150%;
    opacity: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    flex: 1;
    text-align: justify;
    align-content: center;
    width: 100%;
    padding: 0 15px
}

.tech-bridge-bottom {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-align: left;
    font-family: 'Inter', sans-serif;
    margin-top: 40px;
}

/* Tech Partners Section */
.tech-partners {
    padding: 100px 0;
    background: #10218B ;
    color: white;
    position: relative;
    /* min-height: 940px; */
    display: flex;
    align-items: center;
}

.tech-partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/tech/we-trust-bg.png');
    background-size: cover;
    background-position: center;
}

.tech-partners-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%); */
    z-index: 1;
}


.tech-partners-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.tech-partners-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 45px;
    font-family: 'Nunito', sans-serif;
}

.tech-partners-description {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 27px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.tech-partners-logos {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-partners-logos img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* SwiftrDesign Section */
.tech-swiftr {
    padding: 100px 0;
    background: #f9f9f9;
    /* min-height: 1144px; */
}

.tech-swiftr-header {
    text-align: center;
    margin-bottom: 80px;
}

.tech-swiftr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-swiftr-text {
    color: #1a1a2e;
}

.tech-swiftr-badge {
    font-size: 18px;
    font-weight: 700;
    color: #06040a;
    margin-bottom: 8px;
    letter-spacing: 0.18px;
    font-family: 'Nunito', sans-serif;
}

.tech-swiftr-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #06040a;
    letter-spacing: 0.65px;
    line-height: 81.6px;
    font-family: 'Nunito', sans-serif;
}

.tech-swiftr-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: #06040a;
    letter-spacing: 0;
    line-height: 24px;
    font-family: 'Nunito', sans-serif;
}

.tech-swiftr-description {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
    color: #06040a;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

.tech-swiftr-features {
    list-style: initial;
    margin-bottom: 25px;
    padding-left: 40px;
}

.tech-swiftr-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 0;
    font-size: 18px;
    line-height: 30px;
    color: #06040a;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

/* .tech-swiftr-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
} */

.tech-swiftr-target {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #06040a;
    line-height: 30px;
    font-family: 'Nunito', sans-serif;
}

.tech-swiftr-cta {
    background: #000000;
    color: white;
    border: none;
    padding: 20px 150px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.198px;
    line-height: 27px;
}

.tech-swiftr-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.tech-swiftr-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-swiftr-main-image {
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}

.tech-swiftr-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.tech-swiftr-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-swiftr-before,
.tech-swiftr-after {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-swiftr-before::before,
.tech-swiftr-after::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 30px;
    background: #e9ecef;
    border-radius: 5px;
}

.tech-swiftr-before span,
.tech-swiftr-after span {
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: #666;
}

.tech-swiftr-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tech-swiftr-thumbnail {
    width: 60px;
    height: 60px;
    background: #e9ecef;
    border-radius: 8px;
    border: 2px solid #dee2e6;
}

.tech-swiftr-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-swiftr-example {
    background: #f8f9fa;
    border-radius: 10px;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.tech-swiftr-example::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #e9ecef;
    border-radius: 5px;
}

.tech-swiftr-example-1::after {
    content: 'Sofa';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.tech-swiftr-example-2::after {
    content: 'Candle';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* Tech Final CTA Section */
.tech-final-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.tech-final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><rect width="1200" height="800" fill="%231a1a2e"/><circle cx="300" cy="200" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="600" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
}

.tech-final-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.tech-final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-final-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tech-final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.tech-final-cta-button {
    background: #cf161d;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-final-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

/* Responsive Design for Tech */
@media (max-width: 1200px) {
    .tech-hero-title {
        font-size: 3rem;
    }
    
    .tech-bridge-title {
        font-size: 40px;
        line-height: 40px;
    }
    
    .tech-bridge-content {
        gap: 40px;
    }
    
    .tech-bridge-left {
        text-align: center;
        max-width: none;
        align-self: center;
    }
    
    .tech-bridge-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .tech-bridge-panels {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-partners-title {
        font-size: 2.2rem;
    }
    
    .tech-partners-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    .tech-partners-logos {
        margin-top: 30px;
    }
    
    .tech-partners-logos img {
        max-width: 85%;
        height: auto;
    }
    
    .tech-bridge-panel {
        min-height: 300px;
    }
    
    .tech-bridge-panel h3 {
        font-size: 18px;
    }
    
    .tech-bridge-panel p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .tech-bridge-bottom {
        font-size: 16px;
        text-align: center;
    }
    
    .tech-partners-title {
        font-size: 2.5rem;
    }
    
    .tech-partners-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .tech-partners-logos {
        margin-top: 40px;
    }
    
    .tech-partners-logos img {
        max-width: 90%;
        height: auto;
    }
    
    .tech-swiftr-title {
        font-size: 50px;
        line-height: 60px;
    }
    
    .tech-swiftr-badge {
        font-size: 16px;
    }
    
    .tech-swiftr-subtitle {
        font-size: 20px;
    }
    
    .tech-swiftr-description,
    .tech-swiftr-features li,
    .tech-swiftr-target {
        font-size: 20px;
        line-height: 25px;
    }
    
    .tech-final-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .tech-hero-fullscreen {
        min-height: 600px;
    }
    
    .tech-hero-fullscreen .container {
        padding: 0 40px;
    }
    
    .tech-hero-fullscreen .tech-columns {
        padding-top: 80px;
    }
    
    .tech-hero-fullscreen .text-side {
        max-width: 100%;
        text-align: left;
    }
    
    .tech-hero-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .tech-hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .tech-swiftr-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .tech-swiftr-header {
        margin-bottom: 60px;
    }
    
    .tech-swiftr-title {
        font-size: 45px;
        line-height: 55px;
    }
    
    .tech-swiftr-badge {
        font-size: 16px;
    }
    
    .tech-swiftr-subtitle {
        font-size: 18px;
    }
    
    .tech-swiftr-description,
    .tech-swiftr-features li,
    .tech-swiftr-target {
        font-size: 18px;
        line-height: 22px;
    }
    
    .tech-bridge-panels {
        grid-template-columns: 1fr;
    }
    
    .tech-partners-title {
        font-size: 35px;
        line-height: 35px;
    }
    
    .tech-partners-description {
        font-size: 14px;
        line-height: 21px;
    }
    
    .tech-partners-logos {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .tech-hero-fullscreen {
        min-height: 500px;
        padding-bottom: 110px;
    }
    
    .tech-hero-fullscreen .container {
        padding: 0 30px;
    }
    
    .tech-hero-fullscreen .tech-columns {
        padding-top: 60px;
    }
    
    .tech-hero-fullscreen .text-side {
        text-align: center;
    }
    
    .tech-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
    
    .tech-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .tech-hero-panels {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .tech-panel {
        width: 100%;
        max-width: 350px;
        min-height: 280px;
    }
    
    .tech-panel-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .tech-panel-icon {
        width: 140px;
        height: 120px;
    }
    
    .tech-panel h3 {
        font-size: 1.2rem;
    }
    
    .tech-panel p {
        font-size: 18px;
    }
    
    .tech-bridge-title {
        font-size: 35px;
        line-height: 35px;
    }
    
    .tech-bridge-description {
        font-size: 14px;
        line-height: 21px;
    }
    
    .tech-bridge-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-bridge-panel {
        min-height: 250px;
    }
    
    .tech-bridge-panel h3 {
        font-size: 16px;
    }
    
    .tech-bridge-panel p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .tech-bridge-bottom {
        font-size: 14px;
    }
    
    .tech-partners-title {
        font-size: 40px;
        line-height: 40px;
    }
    
    .tech-partners-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .tech-swiftr-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .tech-swiftr-badge {
        font-size: 14px;
    }
    
    .tech-swiftr-subtitle {
        font-size: 16px;
    }
    
    .tech-swiftr-description,
    .tech-swiftr-features li,
    .tech-swiftr-target {
        font-size: 16px;
        line-height: 20px;
    }
    
    .tech-final-cta-content h2 {
        font-size: 2rem;
    }
    
    .tech-panel {
        padding: 20px;
    }
    
    .tech-panel-number {
        font-size: 1.5rem;
    }
    
    .tech-panel-icon {
        font-size: 1.5rem;
    }
    
    .tech-partners-logos {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    
    .tech-partners-logos img {
        max-width: 75%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .tech-hero-fullscreen {
        min-height: 600px;
    }
    
    .tech-hero-fullscreen .container {
        padding: 0 20px;
    }
    
    .tech-hero-fullscreen .tech-columns {
        padding-top: 50px;
    }
    
    .tech-hero-fullscreen .text-side {
        text-align: center;
    }
    
    .tech-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: center;
        line-height: 1.2;
    }
    
    .tech-hero-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

    .tech-btn-left {
        margin-bottom: 10px;
    }

    .tech-panel p {
        font-size: 16px;
    }
        
    .tech-bridge-title {
        font-size: 30px;
        line-height: 30px;
    }
    
    .tech-bridge-description {
        font-size: 12px;
        line-height: 18px;
    }
    
    .tech-bridge-panel {
        min-height: 200px;
        padding: 20px;
    }

    .tech-bridge-panel:nth-child(2) {
        min-height: 200px;
        padding: 20px;
    }
    
    .tech-bridge-panel h3 {
        font-size: 14px;
    }
    
    .tech-bridge-panel p {
        font-size: 16px;
        line-height: 150%;
    }

    .tech-bridge-panel:nth-child(2) p {
        font-size: 16px;
    }

    .tech-bridge-bottom {
        font-size: 12px;
    }
    
    .tech-partners {
        min-height: 400px;
        background:#10218b
    }

    .tech-partners-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/tech/we-trust-bg.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .tech-partners-title {
        font-size: 30px;
        line-height: 30px;
    }
    
    .tech-partners-description {
        font-size: 16px;
        line-height: 18px;
    }
    
    .tech-partners-logos {
        margin-top: 30px;
    }
    
    .tech-swiftr-title {
        font-size: 35px;
        line-height: 42px;
    }
    
    .tech-swiftr-badge {
        font-size: 12px;
    }
    
    .tech-swiftr-subtitle {
        font-size: 14px;
    }
    
    .tech-swiftr-description,
    .tech-swiftr-features li,
    .tech-swiftr-target {
        font-size: 16px;
        line-height: 18px;
    }

    .tech-swiftr-features li {
        font-size: 16px;
        padding: 0;
        text-align: left;
    }
    
    .tech-swiftr-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .tech-final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .tech-final-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .tech-swiftr-comparison {
        grid-template-columns: 1fr;
    }
    
    .tech-swiftr-examples {
        grid-template-columns: 1fr;
    }
}

/* Success Stories Page Styles */

/* Success Stories Hero Section */
.success-st-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.success-st-hero-fullscreen .success-st-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.success-st-hero-fullscreen .success-st-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.success-st-hero-fullscreen .success-st-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(22, 35, 86, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.success-st-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.success-st-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-st-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.success-st-hero-fullscreen .success-st-columns {
    height: 100%;
    align-items: flex-start;
    padding-top: 100px;
}

.success-st-hero-fullscreen .text-side {
    color: #ffffff;
    padding-left: 0;
}

.success-st-hero-text {
    color: #ffffff;
    text-align: center;
}

.success-st-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}


.success-st-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}

/* Success Stories Introduction Section */
.success-st-intro {
    background: #f8f9fa;
    padding: 80px 0;
}

.success-st-intro-content {
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
}

.success-st-intro-content p {
    font-size: 24px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 500;
}

.success-st-intro-content p:last-child {
    margin-bottom: 0;
}

/* Success Stories Cases Section */
.success-st-cases {
    padding: 100px 0;
    background: white;
}

.success-st-cases-content {
    max-width: 1200px;
    margin: 0 auto;
}

.success-st-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    background: #E3EFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 526px;
}

.success-st-case.animate {
    opacity: 1;
    transform: translateY(0);
}

.success-st-case:last-child {
    margin-bottom: 0;
}

.success-st-case-reverse {
    direction: rtl;
}

.success-st-case-reverse .success-st-case-content {
    direction: ltr;
}

.success-st-case-image {
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.success-st-case-image:hover {
    transform: none;
    box-shadow: none;
}

.success-st-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.success-st-case-content {
    color: #1a1a2e;
    padding: 40px 0px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 445px;
}

.success-st-case-title {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 120%;
    color: #1a1a2e;
}

.success-st-case-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 160px;
    font-weight: 400;
}

.success-st-case-button {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    min-width: 360px;
    text-align: center;
}

.success-st-case-button:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Success Stories CTA Section */
.success-st-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.success-st-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><rect width="1200" height="800" fill="%231a1a2e"/><circle cx="300" cy="200" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="600" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
}

.success-st-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.success-st-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.success-st-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.success-st-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.success-st-cta-button {
    background: #cf161d;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-st-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

.success-st-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-st-cta-phone {
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.success-st-cta-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.success-st-cta-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.success-st-cta-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-st-cta-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-st-cta-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.success-st-cta-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
}

.success-st-cta-chart {
    position: relative;
    height: 120px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-st-cta-chart-line {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #28a745 100%);
    border-radius: 2px;
}

.success-st-cta-chart-dots {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.success-st-cta-chart-dot {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    position: relative;
}

.success-st-cta-chart-dot:nth-child(1) { height: 20px; }
.success-st-cta-chart-dot:nth-child(2) { height: 35px; }
.success-st-cta-chart-dot:nth-child(3) { height: 25px; }
.success-st-cta-chart-dot:nth-child(4) { height: 45px; }

/* Responsive Design for Success Stories */
@media (max-width: 1200px) {
    
    .success-st-case-title {
        font-size: 2rem;
    }
    
    .success-st-cta-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .success-st-hero-fullscreen {
        min-height: 600px;
    }
    
    .success-st-hero-fullscreen .container {
        padding: 0 40px;
    }
    
    .success-st-hero-fullscreen .success-st-columns {
        padding-top: 80px;
    }
    
    .success-st-hero-fullscreen .text-side {
        max-width: 100%;
        text-align: center;
    }
    
    .success-st-hero-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.2;
    }
    
    .success-st-hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .success-st-intro-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .success-st-case {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 80px;
        overflow: hidden;
    }
    
    .success-st-case-reverse {
        direction: ltr;
    }
    
    .success-st-case-image {
        height: 300px;
    }
    
    .success-st-case-content {
        padding: 30px;
        width: 100%;
    }
    
    .success-st-case-title {
        font-size: 22px;
    }
    
    .success-st-case-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .success-st-case-button {
        min-width: 280px;
    }
    
    .success-st-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .success-st-cta-phone {
        width: 240px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .success-st-hero-fullscreen {
        min-height: 500px;
        padding-bottom: 110px;
    }
    
    .success-st-hero-fullscreen .container {
        padding: 0 30px;
    }
    
    .success-st-hero-fullscreen .success-st-columns {
        padding-top: 60px;
    }
    
    .success-st-hero-fullscreen .text-side {
        text-align: center;
    }
    
    .success-st-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
    
    .success-st-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .success-st-intro {
        padding: 60px 0;
    }
    
    .success-st-intro-content p {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 25px;
    }
    
    .success-st-case {
        margin-bottom: 60px;
        min-height: auto;
    }
    
    .success-st-case-title {
        font-size: 20px;
        line-height: 120%;
        margin-bottom: 20px;
    }
    
    .success-st-case-description {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 30px;
    }
    
    .success-st-case-button {
        min-width: 240px;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .success-st-cta-text h2 {
        font-size: 2rem;
    }
    
    .success-st-cta-text p {
        font-size: 1.1rem;
    }
    
    .success-st-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .success-st-cta-phone {
        width: 200px;
        height: 360px;
    }
    
    .success-st-cta-screen {
        padding: 20px 15px;
    }
    
    .success-st-cta-metrics {
        gap: 15px;
    }
    
    .success-st-cta-metric {
        padding: 12px;
    }
    
    .success-st-cta-metric-label {
        font-size: 0.8rem;
    }
    
    .success-st-cta-metric-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .success-st-hero-fullscreen {
        min-height: 600px;
    }
    
    .success-st-hero-fullscreen .container {
        padding: 0 20px;
    }
    
    .success-st-hero-fullscreen .success-st-columns {
        padding-top: 50px;
    }
    
    .success-st-hero-fullscreen .text-side {
        text-align: center;
    }
    
    .success-st-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: center;
        line-height: 1.2;
    }
    
    .success-st-hero-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .success-st-intro {
        padding: 40px 0;
    }
    
    .success-st-intro-content p {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .success-st-case {
        margin-bottom: 40px;
        min-height: auto;
    }
    
    .success-st-case-content {
        padding: 25px 20px;
    }
    
    .success-st-case-title {
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 15px;
    }
    
    .success-st-case-description {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 25px;
    }
    
    .success-st-case-button {
        min-width: 200px;
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .success-st-cta-text h2 {
        font-size: 1.8rem;
    }
    
    .success-st-cta-text p {
        font-size: 1rem;
    }
    
    .success-st-cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .success-st-cta-phone {
        width: 180px;
        height: 320px;
    }
    
    .success-st-cta-screen {
        padding: 15px 10px;
    }
    
    .success-st-cta-metrics {
        gap: 15px;
    }
    
    .success-st-cta-metric {
        padding: 10px;
    }
    
    .success-st-cta-metric-label {
        font-size: 0.7rem;
    }
    
    .success-st-cta-metric-value {
        font-size: 0.9rem;
    }
    
    .success-st-cta-chart {
        height: 100px;
        padding: 15px;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.about-hero-fullscreen .about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-fullscreen .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.about-hero-fullscreen .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #10218B;
    background: linear-gradient(75deg, rgba(16, 33, 139, 1), rgba(12, 26, 108, 1) 7.14%, rgba(5, 10, 44, 1) 100%, rgba(16, 33, 139, 0.85));
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.about-overlay.active {
    opacity: 1;
    visibility: visible;
}

.about-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 745px;
    margin: 0 auto;
}

.about-hero-fullscreen .about-columns {
    height: 100%;
    padding-top: 100px;
}

.about-hero-fullscreen .text-side {
    color: #ffffff;
    padding-left: 0;
}

.about-hero-text {
    color: #ffffff;
    text-align: center;
}

.about-hero-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}


.about-hero-subtitle {
    font-size: 38px;
    font-weight: 400;
    line-height: 105%;
    margin-bottom: 30px;
    max-width: 745px;
}

/* .about-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(90deg, #041A29 0%, #010B19 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><rect width="1200" height="800" fill="%23041A29"/><circle cx="300" cy="200" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="600" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
}

.about-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(16, 33, 139, 0.9) 0%, rgba(1, 11, 25, 0.8) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 745px;
    margin: 0 auto;
    padding: 80px 0;
}

.about-hero-title {
        font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.about-hero-subtitle {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
} */

/* About Superanium Section */
.about-superanium {
    padding: 100px 0;
    background: white;
}

.about-superanium-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-superanium-header {
    margin-bottom: 60px;
}

.about-superanium-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.about-superanium-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-superanium-left p,
.about-superanium-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.about-superanium-left p:last-child,
.about-superanium-right p:last-child {
    margin-bottom: 0;
}

.about-superanium-cta {
    text-align: center;
}

.about-superanium-button {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-superanium-button:hover {
    background: #0f3460;
    transform: translateY(-2px);
}

/* The Superanium Group Section */
.about-group {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    display: flex;
    align-items: center;
}

.about-group-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/about/superanium-group-bg.png');
    background-size: cover;
    background-position: center;
}

.about-group-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.55) 49%, rgba(0, 0, 0, 0.7) 69%);
    z-index: 1;
}

.about-group-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-group-header {
    margin-bottom: 60px;
    max-width: 630px;
}

.about-group-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.about-group-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
}

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

.about-group-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
    justify-content: flex-start;
    gap: 32px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.about-group-card:nth-child(2) {
    background: #0069FF;
}

.about-group-card:nth-child(2) h3,
.about-group-card:nth-child(2) .about-group-card-short,
.about-group-card:nth-child(2) .about-group-card-description {
    color: #FFFFFF;
}

.about-group-card:nth-child(2) .about-group-card-divider {
    background: rgba(255, 255, 255, 0.2);
}

.about-group-card:nth-child(2) .about-group-card-button {
    background: #FFFFFF;
    color: #0069FF;
}

.about-group-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-group-card:hover {
    transform: translateY(-5px);
}

.about-group-card:nth-child(2):hover .about-group-card-button {
    background: #F0F0F0;
}

.about-group-card-header {
    display: grid;
    grid-template-columns: 1fr 150px;
    min-height: 140px;
    margin-bottom: 0;
}

.about-group-card-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.about-group-card-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: left;
    color: #000;
}

.about-group-card-short {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
    color: #333;
}

.about-group-card-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0;
    width: 100%;
}

.about-group-card-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
    color: #666;
}

.about-group-card-icon {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    right: -20px;
    top: -30px;
}

.about-group-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-group-card-button {
    background: #0066FF;
    color: white;
    border: none;
    padding: 24px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.about-group-card-button:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

/* Meet Our Founder Section */
.about-founder {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0px;
}

.about-founder-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-founder-gradient {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #041A29 0%, #010B19 100%); */
    /* background: linear-gradient(to right, #041A29, #010B19); */
    background: url('images/about/founder-background.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.about-founder .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.about-founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

.about-founder-image {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.about-founder-photo {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
	margin-left: 25px;
}

.about-founder-info {
    position: absolute;
    bottom: 80px;
    /* left: 590px; */
    color: white;
    z-index: 3;
    right: 0;
}

.about-founder-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.about-founder-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
	white-space : nowrap;
}

.about-founder-text {
    padding: 80px 80px 0 80px;
    color: white;
}

/* Adjustments for laptop screens */
/* @media screen and (max-height: 768px) {
    .about-founder-text {
        padding: 40px 60px 0 60px;
    }

    .about-founder-text h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .about-founder-text p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .about-founder-info {
        padding: 16px 0;
    }

    .about-founder-info h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .about-founder-info p {
        font-size: 14px;
    }
} */

.about-founder-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.about-founder-text p {
    font-size: 14px;
    /* font-weight: 500; */
    line-height: 1.7;
    color: white;
    margin-bottom: 25px;
    opacity: 0.9;
	text-align: justify;
}

.about-founder-text p:last-child {
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="3"/></filter></defs><rect width="1200" height="800" fill="%231a1a2e"/><circle cx="300" cy="200" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="600" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    background-position: center;
}

.about-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-cta-button {
    background: #cf161d;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

.about-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-cta-phone {
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-cta-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.about-cta-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-cta-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-cta-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-cta-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.about-cta-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
}

.about-cta-chart {
    position: relative;
    height: 120px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-cta-chart-line {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #28a745 100%);
    border-radius: 2px;
}

.about-cta-chart-dots {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-cta-chart-dot {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    position: relative;
}

.about-cta-chart-dot:nth-child(1) { height: 20px; }
.about-cta-chart-dot:nth-child(2) { height: 35px; }
.about-cta-chart-dot:nth-child(3) { height: 25px; }
.about-cta-chart-dot:nth-child(4) { height: 45px; }

/* Responsive Design for About Page */
@media screen and (min-width: 993px) and (max-width: 1215px){
/* @media (max-width: 1024px) { */
    .about-founder-text p {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .about-hero-subtitle {
        font-size: 2.5rem;
    }
    
    .about-group-title {
        font-size: 2.5rem;
    }
    
    .about-cta-text h2 {
        font-size: 2.2rem;
    }
    
    .about-group-cards {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .about-hero-subtitle {
        font-size: 2.2rem;
    }
    
    .about-superanium-header h2 {
        font-size: 2.5rem;
    }
    
    .about-superanium-text {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-group-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-group-card {
        min-height: 400px;
    }

    .about-founder .container {
        padding-bottom: 50px;
    }
    
    .about-founder-content {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
        gap: 40px;
    }
    
    .about-founder-image {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
    }
    
    .about-founder-photo {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 25px;
    }
    
    .about-founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        margin: 0;
    }
    
    .about-founder-info {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: center;
    }
    
    .about-founder-info h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .about-founder-info p {
        font-size: 18px;
    }
    
    .about-founder-text {
        padding: 40px 40px 0 40px;
    }
    
    .about-founder-text p {
        font-size: 14px;
    }

    .about-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-cta-phone {
        width: 240px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-superanium-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-superanium-left p,
    .about-superanium-right p {
        font-size: 1rem;
    }
    
    .about-group-title {
        font-size: 2rem;
    }
    
    .about-group-subtitle {
        font-size: 1.1rem;
    }
    
    .about-group-card {
        padding: 30px 20px;
    }
    
    .about-group-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-group-card h3 {
        font-size: 1.3rem;
    }
    
    .about-founder-info h3 {
        font-size: 1.6rem;
    }
    
    .about-founder-text h2 {
        font-size: 2.5rem;
    }
    
    .about-founder-text p {
        font-size: 14px;
        /* font-weight: 500; */
    }
    
    .about-founder-image {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }
    
    .about-founder-photo {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .about-founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        margin: 0;
    }
    
    .about-founder-info {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: center;
    }
    
    .about-founder-info h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .about-founder-info p {
        font-size: 16px;
    }
    
    .about-founder-text {
        padding: 20px 20px 0 20px;
    }
    
    .about-cta-text h2 {
        font-size: 2rem;
    }
    
    .about-cta-text p {
        font-size: 1.1rem;
    }
    
    .about-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .about-cta-phone {
        width: 200px;
        height: 360px;
    }
    
    .about-cta-screen {
        padding: 20px 15px;
    }
    
    .about-cta-metrics {
        gap: 15px;
    }
    
    .about-cta-metric {
        padding: 12px;
    }
    
    .about-cta-metric-label {
        font-size: 0.8rem;
    }
    
    .about-cta-metric-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 16px;
    }
    
    .about-hero-subtitle {
        font-size: 32px;
    }
    
    .about-superanium-left p,
    .about-superanium-right p {
        font-size: 16px;
    }
    
    .about-superanium-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .about-group-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-group-subtitle {
        font-size: 16px;
    }
    
    .about-group-card {
        padding: 25px 15px;
        min-height: 300px;
    }
    
    .about-group-card-icon {
        width: 180px;
        height: 180px;
    }
    
    .about-group-card-text h3 {
        font-size: 1.2rem;
    }
    
    .about-group-card-short,
    .about-group-card-description {
        font-size: 16px;
    }
    
    .about-group-card-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .about-founder .container {
        padding-bottom: 50px;
    }

    .about-founder-photo {
        width: 200px;
        height: 200px;
    }
    
    .about-founder-info h3 {
        font-size: 1.4rem;
    }
    
    .about-founder-info p {
        font-size: 16px;
    }
    
    .about-founder-text p {
        font-size: 14px;
    }
    
    .about-cta-text h2 {
        font-size: 1.8rem;
    }
    
    .about-cta-text p {
        font-size: 16px;
    }
    
    .about-cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .about-cta-phone {
        width: 180px;
        height: 320px;
    }
    
    .about-cta-screen {
        padding: 15px 10px;
    }
    
    .about-cta-metrics {
        gap: 15px;
    }
    
    .about-cta-metric {
        padding: 10px;
    }
    
    .about-cta-metric-label {
        font-size: 0.7rem;
    }
    
    .about-cta-metric-value {
        font-size: 0.9rem;
    }
    
    .about-cta-chart {
        height: 100px;
        padding: 15px;
    }
}

/* WD-40 Case Study Styles */
.wd-40-hero {
    /* background: linear-gradient(135deg, #2F1111 0%, #000000 100%); */
    background: linear-gradient(to bottom left, rgba(22, 35, 86, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.wd-40-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/success-stories/WD40-Landing-Banner.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.property-hero {
    /* background: linear-gradient(135deg, #2F1111 0%, #000000 80%); */
    background: linear-gradient(to bottom left, rgba(22, 35, 86, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.property-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/success-stories/Pavi-Landing-Banner.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.nutriboost-hero {
    /* background: linear-gradient(135deg, #2F1111 0%, #000000 100%); */
    background: url('images/success-stories/Nutri-Landing-Banner.png') center/cover;
    /* color: white; */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.nutriboost-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/success-stories/Nutri-Landing-Banner.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.wd-40-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.wd-40-hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.wd-40-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.nutriboost-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.wd-40-content-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.wd-40-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wd-40-case-study-intro {
    text-align: center;
}

.wd-40-case-study-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 5000;
    margin-bottom: 30px;
    color: #CF161D;
}

.wd-40-case-study-description {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 140%;
    color: #000000;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

.wd-40-academy-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.wd-40-academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.wd-40-academy-left {
    position: relative;
}

.wd-40-academy-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.wd-40-academy-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-40-academy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
}

.wd-40-academy-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wd-40-academy-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.wd-40-academy-logo span {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.wd-40-academy-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.wd-40-enroll-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wd-40-enroll-button:hover {
    background: #c0392b;
}

.wd-40-challenges-right {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wd-40-challenges-right h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.wd-40-challenges-list {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 20px;
}

.wd-40-challenges-list li {
    margin-bottom: 20px;
}

.wd-40-goal-section {
    padding: 80px 0;
    background: #E3EFFF;
    text-align: center;
}

.wd-40-goal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    line-height: 140%;
    color: #CF161D;
    max-width: 868px;
    margin: 0 auto;
    font-weight: 500;
}

.wd-40-goal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 140%;
    color: #000000;
    max-width: 868px;
    margin: 0 auto;
    font-weight: 500;
}

.wd-40-testimonial-section {
    background: #F9F9F9;
    padding: 80px 0;
    text-align: center;
}

.wd-40-testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.wd-40-testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 60px;
    font-weight: 500;
}

.wd-40-testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    font-weight: 700;
}

.wd-40-outcomes-section {
    background: #F9F9F9;
    padding: 80px 0;
    text-align: center;
}

.wd-40-outcomes-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: 140%;
    color: #CF161D;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.wd-40-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ss-outcomes-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.wd-40-outcome-card {
    background: white;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 400px;
    position: relative;
}

.wd-40-outcome-card:nth-child(2) {
    background: #e2e7f1;
}

.wd-40-outcome-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wd-40-outcome-icon img {
    width: 126px;
    height: 126px;
    object-fit: contain;
}

.wd-40-outcome-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #454545;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.wd-40-highlight {
    color: #cf161d;
    font-weight: 700;
}

.wd-40-solutions-section {
    padding: 100px 0;
    background: #F9F9F9;
}

/* Challenges Section - matching Our Solutions styling */
.wd-40-challenges-section {
    padding: 100px 0;
    background: #F9F9F9;
}

.wd-40-challenges-content {
    max-width: 1200px;
    margin: 0 auto;
}

.wd-40-challenge-animate {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 526px;
}

.wd-40-challenge-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.wd-40-challenge-image:hover {
    transform: none;
    box-shadow: none;
}

.wd-40-challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wd-40-challenge-content {
    color: #1a1a2e;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
}

.wd-40-challenge-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #000000;
}

.wd-40-challenges-list {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 120%;
    color: #1E1E1E;
    font-weight: 500;
    padding-left: 0;
    list-style: none;
    counter-reset: challenge-counter;
    background: transparent;
}

.wd-40-challenges-list li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
    padding-bottom: 24px;
    counter-increment: challenge-counter;
    border-bottom: 1px solid #000000;
}

.wd-40-challenges-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wd-40-challenges-list li::before {
    content: counter(challenge-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Mobile responsive for Challenges section */
@media (max-width: 768px) {
    .wd-40-challenge-animate {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 0px;
    }
    
    .wd-40-challenge-image {
        order: 1;
        height: 300px;
    }
    
    .wd-40-challenge-image img {
        object-fit: contain;
        padding-top: 20px;
    }

    .wd-40-challenge-content {
        order: 2;
        padding: 40px 30px;
    }
    
    .wd-40-challenge-content h3 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .wd-40-challenges-list {
        font-size: 16px;
    }
}

.wd-40-solutions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.wd-40-solution-animate {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 526px;
}

.wd-40-solution-animate {
    opacity: 1;
    transform: translateY(0);
}


.wd-40-solution-image {
    position: relative;
    border-radius: 4%;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: stretch;
    background: #000000;
}

.wd-40-solution-image:hover {
    transform: none;
    box-shadow: none;
}

.wd-40-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* .wd-40-solution-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
} */

.wd-40-solution-image .enroll-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    line-height: 1.3;
}

.wd-40-solution-content {
    color: #1a1a2e;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
}

.wd-40-solution-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #000000;
}

.wd-40-solutions-list {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #1E1E1E;
    padding-left: 0;
    list-style: none;
    counter-reset: solution-counter;
    background: transparent;
    font-style: normal;
}

.wd-40-solutions-list li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
    padding-bottom: 24px;
    counter-increment: solution-counter;
    border-bottom: 1px solid #000000;
}

.wd-40-solutions-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wd-40-solutions-list li::before {
    content: counter(solution-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Solution 3 specific styling */
.solution-3-content {
    margin-top: 16px;
}

.solution-3-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.solution-3-flow {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    position: relative;
    min-height: 200px;
}

.solution-3-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #ccc 0, #ccc 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.solution-3-step {
    flex: 1;
    background: white;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.solution-3-step h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.solution-3-step p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: black;
    font-weight: 500;
    margin: 0;
}

.solution-3-step img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.solution-3-step .step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #CF161D;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.wd-40-services-section {
    padding: 60px 0;
    background: #E3EFFF;
    text-align: center;
    min-height: 650px;
}

.wd-40-services-section h2 {
    font-family: 'Inter', sans-serif;
        font-size: 24px;
    line-height: 140%;
    color: #CF161D;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.wd-40-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.ss-services-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 576px) {
    .ss-services-grid2 {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
}

.ss-services-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .ss-services-grid4 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media screen and (max-width: 576px) {
    .ss-services-grid4 {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
}

.wd-40-service-card {
    background: transparent;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 267px;       
    position: relative;
}

.wd-40-service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 132px;
    height: 132px;
    background: white;
    border-radius: 100%;
    padding: 24px;
}


.wd-40-service-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;

}

.wd-40-service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #CF161D;
    text-align: center;
}

.wd-40-service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.wd-40-explore-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
}

.wd-40-explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wd-40-explore-left h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.wd-40-explore-left p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.wd-40-explore-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.wd-40-explore-button:hover {
    background: #c0392b;
}

.wd-40-explore-right {
    text-align: center;
}

.wd-40-phone-mockup {
    display: inline-block;
    position: relative;
}

.wd-40-phone-screen {
    width: 280px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #333;
}

.wd-40-dashboard {
    background: white;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.wd-40-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.wd-40-metric:last-child {
    border-bottom: none;
}

.wd-40-metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.wd-40-metric-value {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive Design for WD-40 */
@media (max-width: 1200px) {
    .wd-40-hero-title {
        font-size: 3.5rem;
    }
    
    .wd-40-case-study-title,
    .wd-40-goal-content h2,
    .wd-40-outcomes-section h2,
    .wd-40-services-section h2,
    .wd-40-explore-left h2 {
        font-size: 2.5rem;
    }
    
    .wd-40-outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .wd-40-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .wd-40-hero-title {
        font-size: 3rem;
    }
    
    .wd-40-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .wd-40-academy-grid,
    .wd-40-solutions-grid,
    .wd-40-explore-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .wd-40-outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .wd-40-outcome-card,
    .wd-40-service-card {
        padding: 30px 20px;
    }
    
    .wd-40-outcome-icon img {
        width: 100px;
        height: 100px;
    }
    
    .wd-40-outcome-card p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .wd-40-hero {
        padding: 80px 0 60px;
    }
    
    .wd-40-hero-title {
        font-size: 2.5rem;
    }
    
    .wd-40-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .wd-40-case-study-title {
        font-size: 2rem;
    }
    
    .wd-40-case-study-description {
        font-size: 1.1rem;
    }
    
    .wd-40-goal-section {
        padding: 60px 0;
    }
    
    .wd-40-goal-content h2 {
        font-size: 2rem;
    }
    
    .wd-40-goal-content p {
        font-size: 1.1rem;
    }
    
    .wd-40-testimonial-section {
        padding: 60px 0;
    }
    
    .wd-40-testimonial-quote {
        font-size: 1.2rem;
    }
    
    .wd-40-testimonial-author {
        font-size: 1rem;
    }
    
    .wd-40-outcomes-section {
        padding: 60px 0;
    }
    
    .wd-40-outcomes-section h2 {
        font-size: 2rem;
    }
    
    .wd-40-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wd-40-outcome-card {
        padding: 40px 30px;
        height: auto;
        min-height: 300px;
    }
    
    .wd-40-outcome-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .wd-40-outcome-icon img {
        width: 80px;
        height: 80px;
    }
    
    .wd-40-outcome-card p {
        font-size: 18px;
        line-height: 24px;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .wd-40-solutions-section {
        padding: 60px 0;
    }
    
    .wd-40-solution-animate {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .wd-40-solution-image {
        order: 1;
        height: 300px;
    }
    
    .wd-40-solution-image img {
        object-fit: contain;
        padding-top: 20px;
    }


    .wd-40-solution-content {
        order: 2;
        padding: 40px 30px;
    }
    
    .wd-40-solution-content h3 {
        font-size: 24pxm;
        margin-bottom: 24px;
    }
    
    .wd-40-solutions-list {
        font-size: 16px;
    }
    
    .solution-3-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .solution-3-flow::before {
        display: none;
    }
    
    .solution-3-step {
        position: relative;
        z-index: 2;
    }
    
    .solution-3-step .step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 10px;
    }
    
    .wd-40-services-section {
        padding: 60px 0;
    }
    
    .wd-40-services-section h2 {
        font-size: 2rem;
    }
    
    .wd-40-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .wd-40-service-card {
        height: auto;
        min-height: 200px;
        padding: 30px 20px;
    }
    
    .wd-40-service-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .wd-40-service-card h3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 15px;
    }
    
    .wd-40-service-card p {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
    }
}

@media (max-width: 480px) {
    .wd-40-hero {
        padding: 60px 0 40px;
    }
    
    .wd-40-hero-title {
        font-size: 2rem;
    }
    
    .wd-40-hero-subtitle {
        font-size: 1rem;
    }
    
    .wd-40-case-study-title {
        font-size: 1.8rem;
    }
    
    .wd-40-case-study-description {
        font-size: 1rem;
    }
    
    .wd-40-goal-section {
        padding: 40px 0;
    }
    
    .wd-40-goal-content h2 {
        font-size: 1.8rem;
    }
    
    .wd-40-goal-content p {
        font-size: 1rem;
    }
    
    .wd-40-testimonial-section {
        padding: 40px 0;
    }
    
    .wd-40-testimonial-quote {
        font-size: 1.1rem;
    }
    
    .wd-40-testimonial-author {
        font-size: 0.9rem;
    }
    
    .wd-40-outcomes-section {
        padding: 40px 0;
    }
    
    .wd-40-outcomes-section h2 {
        font-size: 1.8rem;
    }
    
    .wd-40-outcome-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .wd-40-outcome-icon img {
        width: 60px;
        height: 60px;
    }
    
    .wd-40-outcome-card p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .wd-40-solutions-section {
        padding: 40px 0;
    }
    
    .wd-40-solution-image {
        height: 250px;
    }
    
    .wd-40-solution-content {
        padding: 30px 20px;
    }
    
    .wd-40-solution-content h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .wd-40-solutions-list {
        font-size: 15px;
    }
    
    .solution-3-step {
        padding: 15px 12px;
    }
    
    .solution-3-step img {
        width: 32px;
        height: 32px;
    }
    
    .wd-40-services-section {
        padding: 40px 0;
    }
    
    .wd-40-services-section h2 {
        font-size: 1.8rem;
    }
    
    .wd-40-service-card {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .wd-40-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .wd-40-service-icon img {
        width: 30px;
        height: 30px;
    }
    
    .wd-40-service-card h3 {
        font-size: 1.2rem;
    }
    
    .wd-40-service-card p {
        font-size: 14px;
    }
}

/* Partner Section */
.partner-section {
    background: #000000;
    padding: 50px 0;
    color: white;
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logos img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

.partner-text {
    font-family: 'Nunito', sans-serif;
        font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive styles for partner section */
@media (max-width: 1200px) {
    .partner-section {
        padding: 70px 0;
    }
    
    .partner-text {
        font-size: 17px;
        max-width: 750px;
    }
}

@media (max-width: 992px) {
    .partner-section {
        padding: 60px 0;
    }
    
    .partner-content {
        gap: 30px;
    }
    
    .partner-text {
        font-size: 16px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 50px 0;
    }
    
    .partner-content {
        gap: 25px;
    }
    
    .partner-text {
        font-size: 15px;
        max-width: 600px;
        padding: 0 20px;
    }
    
    .partner-logos img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 40px 0;
    }
    
    .partner-content {
        gap: 20px;
    }
    
    .partner-text {
        font-size: 14px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .partner-logos img {
        max-width: 100%;
    }
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    background: #fafbfc;
    position: relative;
    z-index: 1002;
}

.mobile-nav-close {
    background: #e2e8f0;
    border: 2px solid #cbd5e1;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #475569;
    transition: all 0.2s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
}

.mobile-nav-close:hover {
    background: #cbd5e1;
    color: #1f2937;
}

.mobile-nav-close:active {
    background: #94a3b8;
    transform: scale(0.95);
}

.mobile-nav-content {
    padding: 1.5rem 1rem;
}

.mobile-nav-section {
    margin-bottom: 2rem;
}

.mobile-nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.mobile-nav-item {
    display: block;
    padding: 0.875rem 0;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-item:hover {
    color: #cf161d;
    background: #f8fafc;
    padding-left: 0.5rem;
}

.mobile-nav-item:active {
    background: #e2e8f0;
}

.mobile-cta {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #cf161d 0%, #b31419 100%);
    color: white;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(207, 22, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 22, 29, 0.4);
}

.mobile-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(207, 22, 29, 0.3);
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.mobile-cta:hover::before {
    left: 100%;
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* ========================================
   SOLUTIONS PAGE STYLES
   ======================================== */

/* Hero Section */
/* Hero Section */
.solutions-hero-fullscreen {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0px 0px 48px 48px;
}

.solutions-hero-fullscreen .solutions-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solutions-hero-fullscreen .solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.solutions-hero-fullscreen .solutions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(66deg, rgba(0, 0, 0, 1) 44.12%, rgba(0, 0, 0, 0) 89.92%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.solutions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.solutions-overlay.active {
    opacity: 1;
    visibility: visible;
}

.solutions-hero-fullscreen .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.solutions-hero-fullscreen .solutions-columns {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.solutions-hero-fullscreen .text-side {
    max-width: 570px;
    color: #ffffff;
    padding-left: 0;
}

.solutions-hero-text {
    color: #ffffff;
    text-align: left;
}

.solutions-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.solutions-hero-h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.solutions-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}

.solutions-btn {
    background: #0069FF;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    min-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.solutions-hero-cta-button {
    margin-bottom: 30px;
}

.solutions-hero-spots {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    font-style: italic;
    padding: 10px 20px;
}



/* Introduction Section */
.solutions-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solutions-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

/* Funnel System Section */
.solutions-funnel-new {
    padding: 100px 0;
    background: white;
}

.solutions-funnel-title-new {
    font-size: 38px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    color: #333;
}

.solutions-funnel-subtitle-new {
    font-size: 18px;
    line-height: auto;
    text-align: left;
    margin-bottom: 60px;
    color: #000000;
}

.solutions-funnel-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.solutions-funnel-image-new {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/* Funnel Diagram */
.funnel-diagram-new {
    margin-top: 40px;
    position: relative;
}

.funnel-step-new {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.funnel-dot-new {
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.funnel-label-new {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.funnel-step-new:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: 20px;
    background: #e0e0e0;
}

/* Steps Accordion */
.steps-accordion {
    display: flex;
    flex-direction: column;
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 12px;
}

.step {
    border-bottom: 1px solid #000000;
}

.step-header {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.step-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.expand-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: #f8f9fa;
}

.expand-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.step.active .expand-btn i {
    transform: rotate(45deg);
}

.step-content {
    display: none;
}

.step.active .step-content {
    display: block;
}

.step-content p {
        font-size: 16px;
    line-height: 1.6;
    color: #1E1E1E;
    max-width: 500px;
    margin-bottom: 20px;
}

/* Testimonial Section */
.solutions-testimonial-new {
    padding: 100px 0;
    background: #10218B;
    color: white;
}

.solutions-testimonial-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote-new {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: normal;
    font-family: 'Nunito', sans-serif;
}

.testimonial-author-new {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    font-style: normal;
    font-family: 'Nunito', sans-serif;
}

/* Ways to Work Section */
.solutions-ways {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

/* .solutions-ways::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
} */

.solutions-ways-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solutions-ways-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(193deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1) 46.22%, rgba(0, 0, 0, 1) 84.03%, rgba(0, 0, 0, 0.6) 97.06%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.solutions-ways-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solutions-ways-title {
    font-size: 38px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 3;
}

.solutions-ways-subtitle {
    font-size: 18px;
    text-align: left;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.solutions-ways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.solutions-way-card {
    background: #0062FD;
    border-radius: 50px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.solutions-way-card-right {
    background: #ffffff;
    border-radius: 50px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #000000;
}

.solutions-way-card::before, .solutions-way-card-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solutions-way-card:hover {
    transform: translateY(-5px);
    background: #0062FD;
}

.solutions-way-card-right:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.solutions-way-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.solutions-way-card-right h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.solutions-way-card h4 {
    font-size: 16px;
    font-weight: 00;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-card-right h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-hr {
    border: 1px solid #ffffff;
    margin-bottom: 20px;
}

.solutions-way-hr-right {
    border: 1px solid #000000;
    margin-bottom: 20px;
}

.solutions-way-description {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-description-right {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.solutions-way-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 150%;
}

.solutions-way-features-li-right {
    padding: 8px 0;
    position: relative;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 150%;
    margin: 0 20px;
}

.solutions-way-features-list-right1 {
    padding: 8px 0;
    position: relative;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: 'Inter', sans-serif;
    line-height: 150%;
}


.solutions-way-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.solutions-way-features-li-right::before {
    content: '';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.solutions-way-features-list-right1::before {
    content: '';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.solutions-way-features-list {
    padding: 0 0;
    list-style: none;
}

.solutions-way-features-list-right1 {
    padding: 0 0;
    list-style: none;
}

.solutions-way-features-li {
    padding: 8px 0;
    position: relative;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-summary {
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

.solutions-way-summary-right {
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
}

/* Solutions Ways CTA Section */
.solutions-ways-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 35px 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.solutions-ways-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solutions-ways-cta-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
}

.solutions-ways-cta img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.solutions-ways-cta-text {
    flex: 1;
    min-width: 300px;
}

.solutions-ways-cta h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.solutions-ways-cta p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.solutions-ways-cta-right {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutions-ways-cta-button {
    background: #FFFFFF;
    color: black;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    min-height: 56px;
    min-width: 200px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.solutions-ways-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: black;
}

.solutions-ways-cta-button:active {
    transform: translateY(1px);
    background: #e5e5e5;
}

/* CTA Section */
/* .cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
} */

/* .cta-gradient-blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 13%, rgba(0, 0, 0, 0) 67%);
    z-index: 1;
} */

/* .cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-body {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
} */

/* .cta-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
} */



/* ========================================
   SOLUTIONS PAGE RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
   
    
    .solutions-funnel-content-new {
        gap: 60px;
    }
    
    .solutions-ways-grid {
        gap: 30px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .solutions-hero-fullscreen {
        min-height: 600px;
    }
    
    .solutions-hero-fullscreen .container {
        padding: 0 40px;
    }
    
    .solutions-hero-fullscreen .columns {
        padding-top: 80px;
    }
    
    .solutions-hero-fullscreen .text-side {
        max-width: 100%;
        text-align: left;
    }
    
    .solutions-hero-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }

    .solutions-hero-h2 {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .solutions-hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .solutions-funnel-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions-ways-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-ways-cta {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 24px;
    }

    .solutions-ways-cta-left {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .solutions-ways-cta-right {
        width: 100%;
    }

    .solutions-ways-cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-section .cta-button {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    
    .solutions-hero-fullscreen {
        min-height: 500px;
        padding-bottom: 110px;
    }
    
    .solutions-hero-fullscreen .container {
        padding: 0 30px;
    }
    
    .solutions-hero-fullscreen .columns {
        padding-top: 60px;
    }
    
    .solutions-hero-fullscreen .text-side {
        text-align: left;
    }
    
    .solutions-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.2;
    }

    .solutions-hero-h2 {
        font-size: 20px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .solutions-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        text-align: left;
    }

    .solutions-funnel-title-new {
        font-size: 2rem;
    }
    
    .solutions-ways-title {
        font-size: 2rem;
    }
    
    .solutions-way-card,
    .solutions-way-card-right {
        padding: 30px;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .metric-card {
        padding: 10px 15px;
    }
    
    .metric-text {
        font-size: 0.8rem;
    }
    
    .testimonial-quote-new {
        font-size: 1.8rem;
    }
    
    .testimonial-author-new {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-body {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    
    .solutions-hero-fullscreen {
        min-height: 600px;
    }
    
    .solutions-hero-fullscreen .container {
        padding: 0 20px;
    }
    
    .solutions-hero-fullscreen .columns {
        padding-top: 50px;
    }
    
    .solutions-hero-fullscreen .text-side {
        text-align: left;
    }
    
    .solutions-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: left;
        line-height: 1.2;
    }

    .solutions-hero-h2 {
        font-size: 20px;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.2;
    }
    
    .solutions-hero-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .solutions-funnel-title-new {
        font-size: 1.8rem;
    }
    
    .solutions-ways-title {
        font-size: 1.8rem;
    }
    
    .solutions-way-card,
    .solutions-way-card-right {
        padding: 25px;
    }
    
    .testimonial-quote-new {
        font-size: 1.5rem;
    }
    
    .testimonial-author-new {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .steps-accordion {
        padding: 20px;
    }
    
    .step-header {
        padding: 20px 0;
    }
    
    .step-header h3 {
        font-size: 16px;
    }
    
    .step-number {
        font-size: 16px;
    }
}

/* ========================================
   SOLUTIONS PAGE RESPONSIVE DESIGN
   ======================================== */
 


/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Event Page Styles */
/* .event-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
} */

.event-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(9deg,rgba(47, 17, 17, 0.88) 17%, rgba(0, 0, 0, 0.92) 73%);
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.event-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.event-hero-badge {
    display: inline-block;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-hero-title {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    line-height: 120%;
}

.event-hero-subtitle {
    font-size: 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 120%;
}

.event-details-block {
    color: white;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.event-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.event-detail:last-child {
    margin-bottom: 0;
}

.event-detail i {
    margin-right: 12px;
    color: #FFFFFF;
    width: 20px;
}

.event-pricing {
    background: #10218B;
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(348deg,rgba(16, 33, 139, 1) 0%, rgba(12, 26, 108, 1) 17%, rgba(5, 10, 44, 1) 40%, rgba(16, 33, 139, 0.85) 83%); */
    /* Static background - no animations */
}

@keyframes slideIn {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.event-pricing-content {
    /* Static display - no animations */
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.event-pricing-title {
    font-size: 24px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px;
    font-weight: 600;
    /* Static display - no animations */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-pricing-amount {
    margin-bottom: 40px;
    /* Static display - no animations */
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.event-price-current {
    font-size: 45px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    color: #F41C3B;
    margin-right: 15px;
    position: relative;
    display: inline-block;
    /* Static display - no animations */
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(207, 22, 29, 0);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(207, 22, 29, 0.5);
    }
}

.event-price-current::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    /* background: linear-gradient(45deg, #cf161d, #ff6b6b, #cf161d); */
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
    /* Static display - no animations */
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.event-price-original {
    font-size: 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    text-decoration: line-through;
    opacity: 0.6;
    color: #FFFFFF;
}

@keyframes fadeInStrike {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0.6;
        transform: translateX(0);
    }
}

.event-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInFromBottom 0.8s ease-out 1s both;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-item {
    text-align: center;
    animation: countdownBounce 0.6s ease-out both;
}

.countdown-item:nth-child(1) { animation-delay: 1.1s; }
.countdown-item:nth-child(2) { animation-delay: 1.2s; }
.countdown-item:nth-child(3) { animation-delay: 1.3s; }
.countdown-item:nth-child(4) { animation-delay: 1.4s; }

@keyframes countdownBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.countdown-number {
    background: white;
    color: #10218B;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 33, 139, 0.1), transparent);
    transition: left 0.5s ease;
}

.countdown-number:hover::before {
    left: 100%;
}

.countdown-number:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-label {
    opacity: 1;
    transform: scale(1.05);
}

.event-cta-button {
    background: #0069FF;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    animation: buttonSlideIn 0.8s ease-out 1.5s both;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.event-cta-button:hover::before {
    left: 100%;
}

.event-cta-button:hover {
    background: #0069FF;
    transform: translateY(-2px) scale(1.05);
    /* box-shadow: 0 15px 35px rgba(207, 22, 29, 0.4); */
}

.event-seats-text {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    opacity: 0.8;
    animation: fadeIn 0.8s ease-out 1.7s both;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.8;
    }
}

.event-conversion-explanation {
    background: #f8f9fa;
    padding: 50px 0 20px 0;
}

.event-conversion-content {
    text-align: center;
}

.event-conversion-title {
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    color: #CF161D;
    margin-bottom: 20px;
    font-weight: 500;
}

.event-conversion-description {
    font-size: 24px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 140%;
}

.event-conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-conversion-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workshop-section {
    padding: 10px 0;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.workshop-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.workshop-content {
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-animate {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 50px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 526px;
}

.workshop-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 600px;
    width: 450px;
    flex: 0 0 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
    will-change: transform;
}

.workshop-image:hover {
    transform: none;
    box-shadow: none;
}

.workshop-image:hover img {
    transform: scale(1.02) translateY(0);
    transition: transform 0.3s ease-out;
}

.workshop-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    margin-top: -10%;
}

.workshop-content-main {
    color: #1a1a2e;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.workshop-content {
    color: #1a1a2e;
    padding: 50px  30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.workshop-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 700;
    /* margin-bottom: 80px; */
    color: #000000;
}

.workshop-list {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 120%;
    color: #1E1E1E;
    font-weight: 700;
    padding-left: 0;
    list-style: none;
    counter-reset: challenge-counter;
    background: transparent;
}

.workshop-list li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
    padding-bottom: 24px;
    counter-increment: challenge-counter;
    border-bottom: 1px solid #000000;
}

.workshop-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.workshop-list li::before {
    content: counter(challenge-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Workshop Accordion Styles - Following Case Study Pattern */
.workshop-accordion {
    margin-top: 40px;
    padding-left: 20px;
}

.workshop-accordion-item {
    border-bottom: 1px solid #000000;
    padding: 24px 0;
    cursor: pointer;
    counter-increment: workshop-counter;
}

.workshop-accordion-item:first-child {
    padding-top: 0;
}

.workshop-accordion-item:last-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 24px;
}

.workshop-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.workshop-accordion-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    padding-left: 2.2rem;
    text-indent: -2.2rem;
}

.workshop-accordion-header h4::before {
    content: counter(workshop-counter) ". ";
}

.workshop-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    display: none;
}

.workshop-accordion-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.workshop-accordion-item.active .workshop-accordion-content {
    max-height: 500px;
    padding: 16px 0 0 0;
    display: block;
}

.workshop-accordion-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8V16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1.5px solid #000;
    border-radius: 50%;
}

.workshop-accordion-item.active .workshop-accordion-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12H16' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/* Workshop Bonus Section Styles */
.workshop-bonus {
    background: linear-gradient(135deg, #e3efff 0%, #d1e7ff 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.workshop-bonus img {
    width: 89px;
    height: 89px;
    flex-shrink: 0;
    margin-top: 4px;
}

.workshop-bonus-content {
    flex: 1;
}

.workshop-bonus h3 {
    font-size: 18px;
    font-weight: 800;
    color: #10218B;
    margin: 0 0 12px 0;
    line-height: 120%;
    font-family: 'Nunito', sans-serif;
}

.workshop-bonus p {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 120%;
}

/* Mobile responsive for Workshop section */
@media (max-width: 768px) {
    .workshop-section {
        padding: 40px 0;
    }
    
    .workshop-content-container {
        padding: 0 15px;
    }
    
    .workshop-animate {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 0;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .workshop-image {
        order: 1;
        height: 250px;
        min-height: 250px;
        width: 100%;
        flex: none;
    }
    
    .workshop-image img {
        object-fit: cover;
        object-position: center;
        padding: 0;
        max-height: 100%;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    .workshop-content {
        order: 2;
        padding: 30px 20px;
    }
    
    .workshop-content h3 {
        font-size: 22px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .workshop-list {
        font-size: 16px;
    }

    /* Workshop Accordion Mobile Styles */
    .workshop-accordion {
        margin-top: 20px;
        padding-left: 0;
    }

    .workshop-accordion-item {
        margin-bottom: 15px;
    }

    .workshop-accordion-header {
        padding: 15px 0;
    }

    .workshop-accordion-item h4 {
        font-size: 15px;
        line-height: 1.4;
        padding-right: 30px;
    }

    .workshop-accordion-content {
        padding: 0 0 15px 0;
    }

    .workshop-accordion-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Workshop Bonus Mobile Styles */
    .workshop-bonus {
        padding: 20px;
        gap: 12px;
        margin-top: 25px;
        border-radius: 10px;
    }

    .workshop-bonus img {
        width: 50px;
        height: 50px;
    }

    .workshop-bonus h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .workshop-bonus p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Mobile responsive for parallax section */
    .parallax-container {
        height: 300px; /* Much smaller on mobile */
    }
    
    .parallax-image {
        height: 100%; /* Adjust for mobile */
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .workshop-section {
        padding: 30px 0;
    }
    
    .workshop-content-container {
        padding: 0 10px;
    }
    
    .workshop-animate {
        border-radius: 12px;
    }
    
    .workshop-image {
        height: 200px;
        min-height: 200px;
    }
    
    .workshop-content {
        padding: 25px 15px;
    }
    
    .workshop-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .workshop-accordion {
        margin-top: 15px;
    }
    
    .workshop-accordion-item {
        margin-bottom: 12px;
    }
    
    .workshop-accordion-header {
        padding: 12px 0;
    }
    
    .workshop-accordion-item h4 {
        font-size: 14px;
        padding-right: 25px;
    }
    
    .workshop-accordion-content {
        padding: 0 0 12px 0;
    }
    
    .workshop-accordion-content p {
        font-size: 13px;
    }
    
    .workshop-bonus {
        padding: 15px;
        gap: 10px;
        margin-top: 20px;
    }
    
    .workshop-bonus img {
        width: 40px;
        height: 40px;
    }
    
    .workshop-bonus h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .workshop-bonus p {
        font-size: 13px;
    }
    
    /* Extra small mobile responsive for parallax section */
    .parallax-container {
        height: 200px; /* Even smaller on very small mobile */
    }
    
    .parallax-image {
        height: 90%; /* Adjust for very small mobile */
    }
}

.event-target-section {
    padding: 60px 0;
    background: #E3EFFF;
    text-align: center;
    min-height: 550px;
}

.event-target-title {
    font-size: 36px;
    color: #cf161d;
    text-align: center;
    font-weight: 700;
}

.event-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.event-target-card {
    background: transparent;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 267px;       
    position: relative;
}

.event-target-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 132px;
    height: 132px;
    background: white;
    border-radius: 100%;
    padding: 24px;
}

.event-target-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;

}

.event-target-audience {
    background: #f8f9fa;
    padding: 80px 0;
}

.event-target-icon i {
    font-size: 32px;
    color: white;
}

.event-target-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
    color: #CF161D;
}

.event-target-card p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000;
    line-height:110%;
}

.event-learning-points h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
}

.event-learning-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.event-learning-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.event-learning-list li:last-child {
    border-bottom: none;
}

.event-learning-list li::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 20px;
    background: #cf161d;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.event-learning-list {
    counter-reset: list-item;
}



.event-trainer {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #000000;

}

.event-trainer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(225deg,rgba(47, 17, 17, 0.7) 22%, rgba(0, 0, 0, 0.83) 99%); */
    z-index: 2;
    opacity: 0.8;
    visibility: visible;
}

.event-trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-trainer-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    padding: 80px 0;
    color: white;
}

.event-trainer-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 400px;
    text-align: left;
}

.event-trainer-details img {
    display: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.event-trainer-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.event-trainer-details p {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
    opacity: 0.9;
}

.event-trainer-bio {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-trainer-bio h2 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.event-trainer-bio p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
}

/* Mobile responsive for event trainer section */
@media (max-width: 768px) {
    .event-trainer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .event-trainer-details {
        justify-content: center;
        align-items: center;
        height: auto;
        text-align: center;
    }
    
    .event-trainer-details img {
        display: block;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
    }
    
    .event-trainer-details h3 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .event-trainer-details p {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .event-trainer-bio {
        height: auto;
        text-align: center;
    }
    
    .event-trainer-bio h2 {
        text-align: center;
        font-size: 42px;
    }
    
    .event-trainer-bio p {
        text-align: center;
    }

    .event-mobile-cta{
        background-position: right;
        min-height: 400px;
    }
}

.event-testimonial {
    padding: 60px 0;
    background: #10218B;
    color: white;
    height: 420px;
}

.event-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.event-testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 230px;
}

.event-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.event-testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.event-testimonial-slide.prev {
    transform: translateX(-100%);
}

.event-testimonial-content {
    text-align: center;
}

.event-testimonial-quote {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
}

.event-testimonial-author {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

.event-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.event-testimonial-prev,
.event-testimonial-next {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.event-testimonial-prev:hover,
.event-testimonial-next:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.event-testimonial-prev:disabled,
.event-testimonial-next:disabled {
    opacity: 0.5;
    cursor: pointer;
}

.event-testimonial-dots {
    display: flex;
    gap: 12px;
}

.event-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.event-testimonial-dot.active {
    background: white;
    transform: scale(1.2);
}

.event-testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.event-final-cta {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.event-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.event-final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
}

.event-final-cta-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.event-final-cta-button {
    background: #cf161d;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.event-final-cta-button:hover {
    background: #b31419;
    transform: translateY(-2px);
}

.quote-bubble {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 20px;
    font-size: 18px;
    font-style: italic;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* Workshop CTA Terms Styling */
.workshop-cta-terms {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-cta-terms h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.workshop-cta-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workshop-cta-terms li {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.workshop-cta-terms li:before {
    content: '•';
    color: #F41C3B;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.workshop-cta-terms li:last-child {
    margin-bottom: 0;
}

/* Event Page Responsive Styles */
@media (max-width: 1200px) {
    .event-hero-title {
        font-size: 42px;
    }
    
    .event-conversion-grid {
        gap: 40px;
    }
    
    .event-target-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .event-hero-title {
        font-size: 36px;
    }
    
    .event-hero-subtitle {
        font-size: 18px;
    }
    
    .event-conversion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .event-trainer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .event-hero {
        min-height: 80vh;
    }
    
    .event-hero-title {
        font-size: 28px;
    }
    
    .event-hero-subtitle {
        font-size: 16px;
    }
    
    .event-details-block {
        padding: 20px;
        margin: 0 20px;
    }
    
    .event-pricing-title {
        font-size: 28px;
    }
    
    .event-price-current {
        font-size: 36px;
    }
    
    .event-countdown {
        gap: 15px;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .event-conversion-explanation{
        padding:20px 20px;
        background: #F9F9F9;
    }
    
    .event-conversion-title {
        font-size: 28px;
    }
    
    .event-target-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-trainer-bio h2 {
        font-size: 28px;
    }
    
    .event-testimonial-quote {
        font-size: 1.5rem;
    }
    
    .event-testimonial-controls {
        gap: 20px;
    }
    
    .event-testimonial-prev,
    .event-testimonial-next {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .event-testimonial-dots {
        gap: 8px;
    }
    
    .event-testimonial-dot {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .event-final-cta-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .event-hero-title {
        font-size: 24px;
    }
    
    .event-hero-subtitle {
        font-size: 14px;
    }
    
    .event-details-block {
        padding: 15px;
    }
    
    .event-detail {
        font-size: 14px;
    }
    
    .event-pricing-title {
        font-size: 24px;
    }
    
    .event-price-current {
        font-size: 32px;
    }
    
    .event-countdown {
        gap: 10px;
    }
    
    .countdown-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .event-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .event-conversion-title {
        font-size: 24px;
    }
    
    .event-conversion-description {
        font-size: 16px;
    }
    
    .event-learning-points h3 {
        font-size: 20px;
    }
    
    .event-learning-list li {
        font-size: 14px;
        padding: 15px 0 15px 25px;
    }
    
    .event-target-title {
        font-size: 24px;
    }
    
    .event-target-card {
        padding: 20px 15px;
    }
    
    .event-target-icon {
        width: 132px;
        height: 132px;
    }
    
    .event-target-icon i {
        font-size: 24px;
    }
    
    .event-target-card h3 {
        font-size: 18px;
    }
    
    .event-target-card p {
        font-size: 14px;
    }
    
    .event-trainer-bio h2 {
        font-size: 24px;
    }
    
    .event-trainer-bio p {
        font-size: 16px;
    }
    
    .event-testimonial-quote {
        font-size: 1.2rem;
    }
    
    .event-testimonial-controls {
        gap: 15px;
    }
    
    .event-testimonial-prev,
    .event-testimonial-next {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .event-testimonial-dots {
        gap: 6px;
    }
    
    .event-testimonial-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .event-final-cta-text h2 {
        font-size: 24px;
    }
    
    .event-final-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .quote-bubble {
        padding: 20px;
        font-size: 16px;
    }
    
    /* Workshop CTA Terms Mobile Responsive */
    .workshop-cta-terms {
        margin-top: 30px;
        padding: 20px;
    }
    
    .workshop-cta-terms h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .workshop-cta-terms li {
        font-size: 13px;
        padding-left: 18px;
        margin-bottom: 10px;
    }
    
    /* Workshop CTA Terms Extra Small Mobile Responsive */
    .workshop-cta-terms {
        margin-top: 25px;
        padding: 15px;
    }
    
    .workshop-cta-terms h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .workshop-cta-terms li {
        font-size: 12px;
        padding-left: 15px;
        margin-bottom: 8px;
        line-height: 1.5;
    }
}/* Privacy Policy & Terms Styles */
.privacy-policy-section,
.terms-conditions-section {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.last-updated {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.policy-section,
.terms-section {
    margin-bottom: 40px;
}

.policy-section h2,
.terms-section h2 {
    color: #10218B;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-section p,
.terms-section p {
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.policy-section ul,
.terms-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.terms-section ul li {
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 10px;
}
