
.trust-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trust-banner .stars {
    display: flex;
    gap: 0.25rem;
}

.trust-banner .stars svg {
    color: #f1c40f;
}

.trust-banner span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/* */
@font-face {
    font-family: 'Gilroy-Bold';
    src: url('./fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* */
@font-face {
    font-family: 'Gilroy-Regular';
    src: url('./fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* */
@font-face {
    font-family: 'URWGeometric';
    src: url('./fonts/URWGeometricLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loede';
    src: url('./fonts/Loede-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif !important;
}

html {
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #e0e6ed;
    background: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif !important;
    font-weight: 900; 
}

.highlight-green {
    color: #137a2b;
    font-weight: 400;
}

p, span, a, li, label, input, textarea, select, button {
    font-family: 'Lato', sans-serif !important;
}


/* */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Wider screen container scaling */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
}

/* */
.navbar {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 1.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #969292;
    font-weight: 600;
    font-size: 0.96rem;
    transition: color 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(240, 240, 240, 0.1);
}

/* */
.fixed-contact-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fixed-whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fixed-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.fixed-whatsapp-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    fill: white;
}

.fixed-whatsapp-btn:hover svg {
    transform: translateX(2px);
}

.fixed-whatsapp-btn span {
    font-family: 'Lato', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.fixed-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(52, 152, 219, 0.5);
    background: linear-gradient(45deg, #2980b9, #1abc9c);
}

.fixed-contact-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.fixed-contact-btn:hover svg {
    transform: translateX(2px);
}

.fixed-contact-btn span {
    font-family: 'Lato', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.fixed-buttons-container {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .fixed-buttons-container {
        flex-direction: row;
    }
}


/* */
.home-section {
    height: 100dvh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('img/background.png') center/cover no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    transition: opacity 0.5s ease-out;
}

.home-text {
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.home-text h1 {
    font-family: 'Loede', sans-serif !important;
    font-weight: 600 !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 24px;
    background: white;
    position: relative;
    opacity: 0.8;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* */
.main-content {
    background: #323336;
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    border-radius: 50px 50px 0 0;
}

.content-section {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: #ffffff;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.content-section:first-child {
    padding-top: clamp(3rem, 6vw, 4.8rem);
    border-radius: 40px 40px 0 0;
}

.content-section:nth-child(even) {
    background: #061226;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 0.01rem;
    text-align: center;
    color: #000000;
    font-family: 'Gilroy-Regular' !important;
    font-weight: 200 !important;
}

.content-section h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 0.8rem;
    text-align: center;
    color: #000000;
    font-family: 'Gilroy-Bold' !important;
    font-weight: 700; /* Bold */
}

.content-section p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.6rem;
    text-align: center;
    color: #6c6565;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-family: 'URWGeometric'!important;
}

.content-section iframe {
    width: 100%;
    max-width: 560px;
    height: 320px;
    border-radius: 12px;
    margin: 1.6rem auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: block;
}

/* */
.button-container {
    display: flex;
    flex-direction: row;
    gap: 2.4rem;
    margin-top: 1.6rem;
    justify-content: center;
    align-items: center;
}

.action-button {
    background: #2568db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(17, 163, 231, 0.4);
}

.action-button.secondary {
    background: white;
    color: black;
    outline: auto;
}

.action-button.secondary:hover {
    box-shadow: 0 5px 40px rgba(52, 152, 219, 0.4);
}

/* */
.slideshow {
    background: #000000;
    padding: 3.2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slideshow h2 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 2.4rem;
    font-weight: bold;
}

.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000000;
    padding: 1.6rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 20s linear infinite;
}

.slide {
    min-width: 200px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.slide img {
    max-width: 144px;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* */
.integrated-clients {
    margin-top: 3.2rem;
    text-align: center;
}

.integrated-clients h3 {
    color: #000000;
    font-size: 1.44rem;
    margin-bottom: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.integrated-clients .slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 1.6rem 0;
    box-shadow: none;
}

.integrated-clients .slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.integrated-clients .slideshow-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.integrated-clients .slide-track {
    display: flex;
    width: calc(200px * 16); 
    animation: scroll 40s linear infinite;
}

.integrated-clients .slide {
    min-width: 200px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.integrated-clients .slide img {
    max-width: 144px;
    max-height: 64px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.integrated-clients .slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* */
.video-showcase-section {
    background: #000000 !important;
    padding: 4rem 0;
}

.video-showcase-section h2 {
    color: #ffffff !important;
    font-size: 2.4rem !important;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Gilroy-Regular' !important;
    font-weight: 200 !important;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border-color: #3498db;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 14px !important;
    border: none !important;
    margin: 0 !important;
    display: block !important;
}

.ads-section .ads-iframe {
    width: 100%;
    max-width: 1400px;
    height: 800px;
    border-radius: 20px;
    margin: 3rem auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
    border: 3px solid #ffffff;
}

/* */
.about-section {
    background: #000000 !important;
    padding: 4.8rem 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3.2rem;
    font-size: 2.4rem;
    color: #ffffff;
    font-family: 'Gilroy-Regular' !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    margin-top: 2.4rem;
}

.feature-card {
    background: #0a0e1a;
    padding: 2.4rem 1.6rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(52, 152, 219, 0.3);
    border: 2px solid #3c6de7;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #3498db, #5dade2);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(98%) saturate(7484%) hue-rotate(244deg) brightness(70%) contrast(140%); 
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.6rem;
    background: linear-gradient(45deg, #030e2e, #091e5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(40, 33, 235, 0.3);
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #b8c5d1;
    margin: 0;
    text-align: center;
    width: 100%;
    display: block;
}

/* */
.approach-section {
    background: #232323;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.approach-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000;
    pointer-events: auto;
    display: block;
}

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

.approach-section h2 {
    text-align: center;
    margin-bottom: 2.4rem;
    font-size: 2.4rem !important;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    font-family: 'Gilroy-Regular' !important;
    font-weight: 200 !important;
}

.approach-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #030e2e, #061d63, #092780);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(3, 65, 222, 0.5);
    z-index: 2;
}

.approach-step {
    position: relative;
    margin: 2rem 0;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.approach-step:nth-child(1) { animation-delay: 0.2s; }
.approach-step:nth-child(2) { animation-delay: 0.4s; }
.approach-step:nth-child(3) { animation-delay: 0.6s; }
.approach-step:nth-child(4) { animation-delay: 0.8s; }

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #030e2e, #09298a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(38, 21, 228, 0.4);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.step-content {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    max-width: 380px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 3;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.approach-step:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    background: rgba(10, 14, 26, 1);
    border: 1px solid rgba(52, 152, 219, 0.6);
}

.approach-step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.5);
}

.approach-step:hover .step-icon img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(15%) saturate(638%) hue-rotate(176deg) brightness(93%) contrast(88%);
}

.approach-step:hover .step-number {
    background: linear-gradient(45deg, #3498db, #2980b9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.step-left {
    justify-content: flex-start;
}

.step-left .step-content {
    margin-right: 120px;
}

.step-left .step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-left: 20px solid rgba(10, 14, 26, 0.95);
}

.step-right {
    justify-content: flex-end;
}

.step-right .step-content {
    margin-left: 120px;
}

.step-right .step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-right: 20px solid rgba(10, 14, 26, 0.95);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.step-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

.step-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #b8c5d1;
    text-align: center;
    margin: 0;
}

/* */
.testimonials-section {
    background: transparent;
    padding: 6rem 0;
    position: relative;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-section h2 {
    text-align: left;
    margin-bottom: 3.2rem;
    font-size: 2.4rem;
    color: #000000;
    font-weight: 200;
    font-family: 'Gilroy-Regular' !important;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    border-radius: 16px;
    padding: 0 1rem;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.333rem);
    width: calc(33.333% - 1.333rem);
    height: 550px; 
    background: #0a0e1a;
    padding: 2rem 1.5rem;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 16px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.testimonial-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.testimonial-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-image:hover {
    transform: scale(1.05);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-image:hover img {
    transform: scale(1.1);
}

.testimonial-text {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b8c5d1;
    margin-bottom: 1.2rem;
    font-style: italic;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    height: 230px;
}

.testimonial-text p::before,
.testimonial-text p::after {
    display: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: auto;
}

.testimonial-author strong {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: #3498db;
    font-weight: 500;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

.testimonial-btn {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    background: rgba(10, 14, 26, 0.95);
    border: 2px solid rgba(52, 152, 219, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 6.4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-size: 0; 
    position: relative;
}

.testimonial-btn::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.testimonial-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg); 
}

.testimonial-next::before {
    transform: translate(-70%, -50%) rotate(45deg); 
}

.testimonial-btn:hover {
    background: #0a0e1a;
    transform: scale(1.1);
    box-shadow: 0 9.6px 28px rgba(0, 0, 0, 0.4);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.8);
}

.testimonial-btn-prev,
.testimonial-btn-next {
    position: static;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.4rem;
    padding: 0.8rem 0;
}

.dot {
    width: 9.6px;
    height: 9.6px;
    border-radius: 50%;
    background: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #3498db;
    transform: scale(1.2);
}

/* */
.white-sections-wrapper {
    background: #000000;
    padding: 6rem 0;
    position: relative;
}

.white-container {
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

/* */
.book-call-section {
    background: transparent;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.book-call-section::before {
    display: none;
}

.book-call-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
    align-items: flex-start; 
    position: relative;
    z-index: 2;
}

.book-call-info {
    text-align: left;
}

.book-call-info h2 {
    font-size: 2.4rem;
    color: #000000;
    margin-bottom: 0.8rem;
    font-weight: 200;
    line-height: 1.2;
    font-family: 'Gilroy-Regular' !important;
}

.book-call-info h3 {
    font-size: 1.44rem;
    color: #3498db;
    margin-bottom: 1.6rem;
    font-weight: 600;
}

.book-call-info p {
    font-size: 0.96rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.call-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    width: 19.2px;
    height: 19.2px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 11.2px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #333333;
    font-size: 0.88rem;
    font-weight: 500;
}

.book-call-form {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.extra-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.extra-btn {
    background: #2568db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.extra-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(17, 163, 231, 0.4);
}

.contact-form {
    position: relative;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(16px);
    transition: all 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-step h4 {
    font-size: 1.44rem;
    color: #ffffff;
    margin-bottom: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.form-group {
    position: relative;
    margin-bottom: 1.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.96rem 0.8rem 0.64rem;
    border: 2px solid #4a5568;
    border-radius: 9.6px;
    font-size: 0.8rem;
    font-family: inherit;
    background: #061226;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2.4px rgba(52, 152, 219, 0.2);
    background: #0a0e1a;
}

.form-group label {
    position: absolute;
    top: 0.96rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #b8c5d1;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #061226;
    padding: 0 0.24rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.4rem;
    font-size: 0.68rem;
    color: #3498db;
    font-weight: 600;
    background: #061226;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 96px;
    padding-top: 1.2rem;
}

.form-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 9.6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1abc9c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.next-btn {
    width: 100%;
    justify-content: center;
}

.form-buttons {
    display: flex;
    gap: 1rem;
}

.back-btn {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    flex: 1;
    justify-content: center;
}

.back-btn:hover {
    background: linear-gradient(45deg, #7f8c8d, #95a5a6);
}

.submit-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    flex: 2;
    justify-content: center;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.form-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #4a5568;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    width: 50%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text {
    font-size: 0.9rem;
    color: #b8c5d1;
    font-weight: 500;
}

/* */
.faq-section {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    display: none;
}

.faq-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.faq-header {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 0.8rem;
    font-weight: 200;
    text-shadow: none;
    font-family: 'Gilroy-Regular' !important;
    text-align: center;
}

.faq-header p {
    font-size: 1.04rem;
    color: #333333;
    font-weight: 400;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: none;
    margin: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    align-items: start;
}

.faq-item {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12.8px;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 6.4px 25.6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item:hover {
    transform: translateY(-1.6px);
    box-shadow: 0 9.6px 38.4px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
}

.faq-question {
    padding: 1.6rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.05);
}

.faq-question h3 {
    font-size: 1.04rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #3498db;
}

.faq-icon {
    width: 38.4px;
    height: 38.4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    margin-left: 0.8rem;
}

.faq-icon svg {
    color: white;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-icon {
    background: linear-gradient(45deg, #2980b9, #1abc9c);
    transform: scale(1.1);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(6, 18, 38, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Increased for longer content */
    border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.faq-content {
    padding: 1.6rem 2rem;
    transform: translateY(-16px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

.faq-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #b8c5d1;
    margin: 0;
    font-weight: 400;
}

.faq-item.active {
    animation: pulse-glow 2s ease-in-out;
}

/* */
.notification {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    padding: 0.8rem 1.2rem;
    border-radius: 9.6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
    max-width: 320px;
}

.notification.error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.notification.success {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.notification-content button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 4));
    }
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-16px) rotate(180deg); 
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 6.4px 25.6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 9.6px 38.4px rgba(52, 152, 219, 0.2);
    }
    100% {
        box-shadow: 0 6.4px 25.6px rgba(0, 0, 0, 0.1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* */

/* Ultra-wide screen optimizations */
@media (min-width: 2560px) {
    
    html {
        font-size: 18px; /* Slightly larger base font for better readability */
    }
    
    .home-section {
        background-size: cover;
        background-position: center center;
    }
    
    .main-content {
        max-width: 100%;
    }
    
    .content-section h2 {
        font-size: clamp(2.5rem, 3vw, 3.2rem);
    }
    
    .content-section h1 {
        font-size: clamp(3.5rem, 4vw, 5rem);
    }
    
    .content-section p {
        font-size: clamp(1.2rem, 1.5vw, 1.8rem);
        max-width: 80%;
    }
    
    .content-section iframe {
        max-width: 800px;
        height: 450px;
    }
    
    .button-container {
        gap: 3rem;
    }
    
    .action-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .features-grid {
        gap: 3.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .videos-grid {
        gap: 3.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .approach-timeline {
        max-width: 1200px;
    }
    
    .testimonials-slider {
        max-width: 1400px;
    }
    
    .book-call-content {
        gap: 6rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .white-container {
        max-width: 1600px;
    }
}

@media (min-width: 3440px) {
    
    html {
        font-size: 20px;
    }
    
    .container {
        max-width: 1800px;
    }
    
    .home-section {
        background-size: cover;
        background-position: center center;
    }
    
    .content-section iframe {
        max-width: 900px;
        height: 506px;
    }
    
    .content-section p {
        max-width: 75%;
    }
    
    .features-grid {
        max-width: 1600px;
    }
    
    .videos-grid {
        max-width: 1600px;
    }
    
    .approach-timeline {
        max-width: 1400px;
    }
    
    .testimonials-slider {
        max-width: 1600px;
    }
    
    .book-call-content {
        max-width: 1600px;
    }
    
    .white-container {
        max-width: 1800px;
    }
}

@media (min-width: 3840px) {
    
    html {
        font-size: 22px;
    }
    
    .container {
        max-width: 2000px;
    }
    
    .home-section {
        background-size: cover;
        background-position: center center;
    }
    
    .content-section iframe {
        max-width: 1000px;
        height: 563px;
    }
    
    .content-section p {
        max-width: 70%;
    }
    
    .features-grid {
        gap: 4rem;
        max-width: 1800px;
    }
    
    .videos-grid {
        gap: 4rem;
        max-width: 1800px;
    }
    
    .approach-timeline {
        max-width: 1600px;
    }
    
    .testimonials-slider {
        max-width: 1800px;
    }
    
    .book-call-content {
        gap: 8rem;
        max-width: 1800px;
    }
    
    .white-container {
        max-width: 2000px;
    }
    
    .integrated-clients .slide-track {
        animation-duration: 30s;
    }
}

    
@media (min-width: 1921px) and (max-width: 2559px) {
    html {
        font-size: 17px; /* Slightly larger base font */
    }
    
    .container {
        max-width: 1500px;
    }
    
    .home-section {
        background-size: cover;
        background-position: center center;
    }
    
    .content-section iframe {
        max-width: 700px;
        height: 394px;
    }
    
    .content-section p {
        max-width: 82%;
    }
    
    .button-container {
        gap: 2.8rem;
    }
    
    .action-button {
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
    }
    
    .features-grid {
        gap: 2.8rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .videos-grid {
        gap: 2.8rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .approach-timeline {
        max-width: 1100px;
    }
    
    .testimonials-slider {
        max-width: 1300px;
    }
    
    .book-call-content {
        gap: 5.5rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .white-container {
        max-width: 1500px;
    }
}

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-section {
        background-attachment: scroll;
    }

    .home-text {
        font-size: 2.5rem;
    }

    .fixed-buttons-container {
        flex-direction: column;
        bottom: 1rem;
        right: 1rem;
    }

    .nav-links {
        display: none;
    }

    .trust-banner {
        gap: 0.5rem;
        flex-direction: column;
    }

    .trust-banner span {
        font-size: 1rem;
        text-align: center;
    }

    .trust-banner .stars svg {
        width: 20px;
        height: 20px;
    }

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

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

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

    .faq-section .container {
        grid-template-columns: 1fr;
    }
}

@media (aspect-ratio: 16/9), 
       (min-aspect-ratio: 1.77) and (max-aspect-ratio: 1.78),
       (min-width: 1900px) and (max-height: 1100px),
       (width: 1920px) and (height: 1080px) {
    
    .content-section .container {
        max-width: 1400px !important; /* Wider container for 16:9 */
        padding-left: 2rem !important; /* Increased from 1rem */
        padding-right: 2rem !important; /* Increased from 1rem */
        margin: 0 auto !important; /* Ensure center alignment */
    }
    .content-section {
        padding: clamp(1.5rem, 3.5vw, 3rem) 0;
        padding-left: 0;
        padding-right: 0;
    }
    .content-section:first-child {
        padding-top: clamp(2rem, 4vw, 3.5rem);
    }
    .content-section h2 {
        font-size: 2.97rem;
        margin-bottom: 0.005rem;
    }
    .content-section h1 {
        font-size: 4.4rem;
        margin-bottom: 0.5rem;
        line-height: 0.95;
    }
    .content-section p {
        font-size: 1.54rem;
        margin-bottom: 1.2rem;
    }

    .about-section .feature-card p {
        font-size: 0.8rem !important;
    }
}

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

@media (aspect-ratio: 16/10) {
    
    .content-section {
        padding-left: 0;
        padding-right: 0;
    }
    .content-section h2 {
        font-size: 2.7rem;
    }
    .content-section h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        border-radius: 30px 30px 0 0;
    }

    .content-section {
        padding: 2rem 0;
    }

    .content-section h1 {
        font-size: 2.5rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .button-container {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }

    .testimonial-text p {
        height: auto;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .book-call-info,
    .book-call-form {
        padding: 1.5rem;
    }

    .approach-timeline::before {
        left: 20px;
    }

    .approach-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-left .step-content,
    .step-right .step-content {
        margin: 0;
        margin-left: 40px;
        max-width: calc(100% - 40px);
    }

    .step-left .step-content::after,
    .step-right .step-content::after {
        display: none;
    }

    .step-number {
        left: 0;
        transform: translateX(0);
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .main-content {
        border-radius: 40px 40px 0 0;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section h1 {
        font-size: 3rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1.2rem;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
    }

    .testimonial-text p {
        height: auto;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}
