@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ============================================
   REMOVE ALL TAP HIGHLIGHTS (iOS/Android)
============================================ */
* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    tap-highlight-color: transparent !important;
}

/* Specifically for buttons and interactive elements */
button,
a,
.hamburger {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    outline: none !important;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0F0F0F;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* GENERAL IMAGE RULES - ADDED */
img {
    max-width: 100%;
    height: auto;
    /* display: block; */
}

/* ============================================
   TESTIMONIAL FIXES
============================================ */

/* 1. Card equal height */


/* 2. Dots color - mobile only */
@media (max-width: 768px) {
    .t-dots .swiper-pagination-bullet {
        background: #4A4A4A !important;
        opacity: 0.5;
        width: 12px;
        height: 12px;
        transition: all 0.3s ease;
    }
    .t-dots .swiper-pagination-bullet-active {
        background: #FF3D00 !important; /* লাল রং */
        opacity: 1;
        transform: scale(1.3);
    }
}

/* 3. Prevent arrows from disappearing on large screens */
@media (min-width: 2269px) {
    .t-arrow {
        display: flex !important;
        position: absolute;
        z-index: 1000;
    }
    .t-left {
        left: calc((100% - 1440px) / 2 - 80px);
    }
    .t-right {
        right: calc((100% - 1440px) / 2 - 80px);
    }
}

/* 4. Ensure arrows are always visible on desktop */
@media (min-width: 1024px) {
    .t-arrow {
        display: flex !important;
    }
}

/* CONTACT RIGHT COLUMN - REVERSED LAYOUT (Top 2, Bottom 1) */
.contact-images-grid-reversed {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
    width: 100%;
    min-height: 500px;
    /* Changed from fixed height */
}

.calendly-inline-widget{
    min-width:320px;
    height:700px;
}

/* Top row - 2 small images side by side */
.top-images-row {
    display: flex;
    /* gap: 8px;  */
    height: 50%;
}

.top-image-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    /* border-radius: 12px;  */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Added border */
}

/* FIXED: Responsive images for top items */
.top-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Top image overlays */
.top-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.7);
}

/* Right top image - Chart */
.right-top .top-image-overlay {
    justify-content: flex-start;
}

.chart-header {
    margin-bottom: 10px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #BBFE00;
    display: block;
}

.chart-date-range {
    margin-top: 5px;
}

.date-range-item {
    font-size: 11px;
    opacity: 0.8;
    display: block;
    margin-bottom: 2px;
}

.chart-visual {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #BBFE00, #8BC34A);
    border-radius: 3px 3px 0 0;
    min-height: 10px;
}

/* Bottom row - 1 large full width image */
.bottom-large-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* background: #0a0a0a;
    height: 50%; */
    /* border-radius: 12px;  */
}

/* FIXED: Responsive image for bottom large image */
.bottom-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Bottom image overlay */
.bottom-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.7);
}

/* Reuse dashboard styles from previous */
.dashboard-section {
    flex: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dashboard-title {
    font-size: 16px;
    font-weight: 600;
    color: #BBFE00;
}

.dashboard-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.metric-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-header {
    margin-bottom: 6px;
}

.metric-label {
    font-size: 11px;
    opacity: 0.8;
}

.metric-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
}

.metric-change {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.metric-change.positive {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

.metric-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    opacity: 0.9;
}

.metric-sub-change.positive {
    color: #4CAF50;
}

.date-range {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.date-label {
    font-size: 12px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.date-dots {
    display: flex;
    gap: 12px;
}

.date-dot {
    font-size: 10px;
    opacity: 0.7;
}

.mobile-show {
    color: #EAF0F3;
    display: none;
}

/* RESPONSIVE */
/* MOBILE RESPONSIVE STYLES - FIXED */
@media (max-width: 768px) {
    .contact-images-grid-reversed {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        position: relative !important;
        width: 100% !important;
        min-height: auto !important;
    }

    .top-images-row {
        width: 100%;
        display: flex;
        gap: 8px;
        height: auto;
        /* min-height: 150px; */
    }

    .top-image-item {
        width: 50% !important;
        height: 150px !important;
        /* Fixed height for mobile */
        flex: 0 0 auto !important;
    }

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

    /* Bottom large image - FIXED OVERLAP */
    .bottom-large-image {
        width: 100%;
        height: 200px;
        position: relative;
        /* top: 0; */
        /* Remove top positioning */
        margin-top: 0;
        /* Remove negative margin */
         top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        order: 3; /* Ensure it comes after top images */
        flex: 0 0 auto !important;
        /* border: 1px solid red; */
    }

    .bottom-large-image img {
        width: 100% !important;
        height: 341px !important;
        object-fit: cover !important;
        display: block !important;
        position: relative !important;
    }

    /* Adjust overlay positioning for mobile */
    .top-image-overlay,
    .bottom-image-overlay {
        padding: 10px;
        font-size: 90%;
    }

    /* FIX THE OVERLAY */
    .bottom-image-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        padding: 15px !important;
        background: rgba(10, 10, 10, 0.7) !important;
        z-index: 2 !important;
    }

    /* Adjust metrics for mobile */
    .metric-value {
        font-size: 14px;
    }

    .metric-change {
        font-size: 10px;
    }

    .mobile-show {

        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
    }
    .calendly-inline-widget {
        min-width: 320px;
        height: 665px;
    }
}

/* SMALLER MOBILE - FIXED */
@media (max-width: 480px) {
    .top-images-row {
        justify-content: space-between;
        gap: 6px;
    }

    .top-image-item {
        width: calc(50% - 3px) !important;
        height: 140px !important;
    }

    .bottom-large-image {
        width: 100% !important;
        height: 100%;
        margin: 0 auto;
        top: 0;
        /* border: 1px solid red; */
    }

    .mobile-show {
        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
        text-decoration: none;
    }

    .calendly-inline-widget {
        min-width: 350px;
        height: 702px;
    }
}

/* TABLET VERSION (769px - 1024px) - CONTACT SECTION FIX */
@media (min-width: 769px) and (max-width: 1024px) {

    /* CONTACT SECTION */
    .contact-section {
        padding: 40px 30px;
    }

    .contact-container {
        flex-direction: row;
        gap: 40px;
        align-items: stretch;
    }

    .contact-left {
        /* width: 50%; */
    }

    .contact-right {
        width: 50%;
    }

    .contact-left h2 {
        font-size: 70px;
        margin-bottom: 15px;
    }

    .contact-sub {
        font-size: 16px;
        margin-bottom: 25px;
    }

    /* CONTACT FORM */
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #EAF0F380;
    }

    /* CONTACT IMAGES GRID - TABLET SIZE */
    .contact-images-grid-reversed {
        height: 400px;
        gap: 10px;
    }

    /* TOP IMAGES ROW */
    .top-images-row {
        height: 45%;
        /* gap: 10px; */
    }

    .top-image-item {
        height: 100%;
    }

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

    /* TOP IMAGE OVERLAY FOR TABLET */
    .top-image-overlay {
        padding: 12px;
    }

    .top-title,
    .chart-title {
        font-size: 13px;
    }

    .top-subtitle {
        font-size: 11px;
    }

    .top-value {
        font-size: 14px;
    }

    .top-change {
        font-size: 11px;
    }

    .top-dates {
        font-size: 9px;
        gap: 6px;
    }

    /* CHART FOR TABLET */
    .chart-visual {
        margin-top: 10px;
    }

    .chart-bars {
        height: 50px;
        gap: 5px;
    }

    /* BOTTOM LARGE IMAGE */
    .bottom-large-image {
        height: 55%;
    }

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

    /* BOTTOM IMAGE OVERLAY FOR TABLET */
    .bottom-image-overlay {
        padding: 15px;
    }

    .dashboard-title {
        font-size: 14px;
    }

    .dashboard-subtitle {
        font-size: 12px;
    }

    .metrics-grid {
        gap: 10px;
        margin-bottom: 12px;
    }

    .metric-card {
        padding: 8px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-change {
        font-size: 10px;
        padding: 2px 5px;
    }

    .metric-footer {
        font-size: 9px;
    }

    .date-label {
        font-size: 11px;
    }

    .date-dots {
        gap: 10px;
        font-size: 9px;
    }

    /* CUSTOM SELECT FOR TABLET */
    .selected-option {
        padding: 12px;
        font-size: 15px;
    }

    .options-list li {
        padding: 12px 18px;
        font-size: 16px;
    }

    /* SUBMIT BUTTON */
    .submit-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .mobile-show {
        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
    }
}

/* LANDSCAPE TABLET (769px - 1024px AND LANDSCAPE) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .contact-images-grid-reversed {
        height: 350px;
    }

    .top-images-row {
        height: 40%;
    }

    .bottom-large-image {
        height: 60%;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    .mobile-show {
        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .contact-images-grid-reversed {
        height: 450px;
    }

    .top-image-overlay {
        padding: 15px;
    }

    .bottom-image-overlay {
        padding: 20px;
    }

    .top-title,
    .chart-title {
        font-size: 14px;
    }

    .metric-value {
        font-size: 18px;
    }

    .mobile-show {
        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
    }
}

@media (min-width: 769px) and (max-width: 899px) {
    .contact-images-grid-reversed {
        height: 400px;
    }

    .top-image-overlay {
        padding: 10px;
    }

    .bottom-image-overlay {
        padding: 12px;
    }

    .top-title,
    .chart-title {
        font-size: 12px;
    }

    .top-value {
        font-size: 13px;
    }

    .metric-value {
        font-size: 15px;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    .mobile-show {
        display: block;
        font-family: Open Sans;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
    }
}

/* HEADER */
.nav-header {
    width: 100%;
    background: #0F0F0F;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 1440px;
    padding: 20px 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0F0F0F;
}

.logo {
    width: 87px;
    transition: width 0.3s ease;
}

/* --- MOBILE MENU STYLES --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;

    background: #0F0F0F;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: flex-start;

    gap: 24px;

    padding-top: 100px;

    transition: all 0.4s ease-in-out;
    z-index: 1500;
}

/* When the menu is toggled via JavaScript */
.mobile-menu.active {
    right: 0;
}

/* Style the links for a full-screen feel */
.mobile-menu a {
    color: #EAF0F3;
    text-decoration: none;
    font-size: 24px;
    /* Larger font for full screen */
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.mobile-cta {
    width: 80% !important;
    /* CTA button looks better not quite full width */
    max-width: 300px;
    background: #FFFFFF;
    color: #000 !important;
    border-radius: 50px;
}

/* --- RESPONSIVE VISIBILITY --- */
@media (max-width: 768px) {

    .nav-links,
    .desktop-cta {
        display: none;
        /* Hide desktop nav on mobile */
    }

    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
    }
}

@media (min-width: 769px) {

    .hamburger,
    .mobile-menu {
        display: none;
        /* Hide mobile elements on desktop */
    }
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links a {
    color: #DCDCDC;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    gap: 44px;
    line-height: 140%;
}

.nav-links a:hover {
    color: #BBFE00;
}

/* CTA BUTTON */
.cta-btn {
    background: #BBFE00;
    padding: 12px 50px;
    color: #202020;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #BBFE00;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(3) {
    width: 70%;
    margin-left: auto;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    z-index: 999;
    border-top: 1px solid rgba(187, 254, 0, 0.2);
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    padding: 15px 20px;
    color: #EAF0F3;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(187, 254, 0, 0.1);
    color: #BBFE00;
}

.mobile-menu .mobile-cta {
    background: #BBFE00;
    color: #000;
    margin: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: none;
    top: 70px;
    left: 0;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(15, 15, 15, 0.12) 0%, rgba(15, 15, 15, 0.3) 50%, rgba(15, 15, 15, -1.9) 100%); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 52px;
    text-transform: uppercase;
    margin: 100px 0 40px;
    color:#EAF0F3;
    /* box-shadow: 0px 4px 4px 0px #00000040; */
}

.highlight {
    color: #BBFE00;
}

.new123test {
    position: relative;
    z-index: 3;
    margin: 150px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
    padding: 10px 20px;

    /* TEXT FILL */
    color: #C6FF00;
}

.launch-btn:hover {
    border-color: #E4FF4A;
}

.launch-arrow {
    width: 20px;
    transition: transform 0.3s ease;
}

.launch-btn:hover .launch-arrow {
    transform: translateX(5px);
}

.subtitle {
    color: #EAF0F3;
    font-size: 18px;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.5;
}

/* LOGO MARQUEE SECTION */
.logo-section {
    padding: 40px 120px 20px 120px;
    background: #0F0F0F;
    overflow: hidden;
}

.logo-wrapper {
    overflow: hidden;
    border: 2px solid #BBFE00;
    border-radius: 40px;
    padding: 15px 0;
    background: #0F0F0F;
    display: flex;
}

.marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Space between logos */
    padding: 0 20px;
    flex-shrink: 0;
    min-width: 100%;

    /* Animation call */
    animation: scroll-left 20s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track img {
    height: 55px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: block;
}

.marquee-track img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* The Magic: Smooth Loop Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* WHAT SETS US APART SECTION */
.apart-section {
    width: 100%;
    padding: 10px 0;
    background: #0F0F0F;
}

.apart-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.apart-section h2 {
    font-size: 50px;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 50px 0 80px;
    line-height: 151%;
    letter-spacing: 1%;
    text-align: center;
    color: #EAF0F3;
}

.apart-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.apart-box {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.apart-box img {
    width: 113px;
    height: auto;
    margin-bottom: 20px;
}

.apart-box p {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* SERVICES SECTION */
.services-section {
    width: 100%;
    padding: 60px 0;
    background: #0F0F0F;
    text-align: center;
}

.services-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #EAF0F3 !important;
}

.services-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #BBFE00;
}

.services-text {
    font-size: 22px;
    color: #EAF0F3;
    line-height: 36px;
    font-weight: normal;
    font-weight: 200 !important;
}

/* SERVICE SLIDER SECTIONS */
.service-slider-section {
    padding: 70px 100px;
}

.service-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 80px;
}

.reverse-layout .service-container {
    flex-direction: row-reverse;
}

.service-text-box {
    background: #1A1A1A;
    border: 1px solid #333;
    padding: 50px 40px;
    border-radius: 24px;
    width: 460px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #EAF0F3;
}

.service-text-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    gap: 16px;
    color: #EAF0F3;
    line-height: 40px;
}

.service-text-box p {
    font-size: 16px;
    line-height: 27px;
    color: #EAF0F3;
    font-weight: 400;
}

.service-text-box h4 {
    margin: 30px 0 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #EAF0F3;
    line-height: 27px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.service-list li {
    color: #EAF0F3;
    font-size: 15px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    line-height: 173%;
}

.tick {
    width: 20px;
    height: 20px;
}

.service-btn {
    display: inline-block;
    background: #BBFE00;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease;
    text-align: center;
    width: 190px;
    height: 55px;
    margin-top: 10px;
}

.service-btn:hover {
    transform: translateY(-1px);
}

/* SERVICE SLIDER */
.service-slider {
    display: flex;
    flex-direction: column;
    width: 700px;
    height: 542px;
}

.image-wrapper {
    flex: 1;
    /* width: 620px;
    height: auto;    */
    overflow: hidden;
    border-radius: 20px;
    background: #111;
}

.slides {
    display: flex;
    /* width: 100%;
    height: 410px; */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    flex-shrink: 0;
}

.slider-controls {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.arrow {
    background: #0f0f0f;
    border: 1px solid #333;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 20px;
    color: #EAF0F3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: #1a1a1a;
}

.dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #777;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.swipe-text {
    text-align: center;
    color: #EAF0F3;
    margin-top: 10px;
    font-size: 14px;
}

/* TRUST SECTION */
.trust-section {
    width: 100%;
    padding: 20px 100px 80px 100px;
    background: #0F0F0F;
}

.trust-title {
    font-family: Montserrat;
    font-weight: 900 !important;
    font-style: Black;
    font-size: 50px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 130%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #EAF0F3;
}

/* TABS */
.trust-tabs {
    font-family: 'Montserrat', sans-serif !important;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-tab {
    font-family: 'Montserrat', sans-serif !important;
    padding: 18px;
    border: 1px solid #EAF0F3;
    background: none;
    font-size: 18px;
    font-weight: 700;
    color: #EAF0F3;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    width: 188px;
    height: 58px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-tab.active {
    background: #BBFE00;
    color: #202020;
    border-color: #EAF0F3;
}

@media (max-width: 768px) {

    .service-list {
        margin: 0 0 10px 0;
    }

    .service-btn {
        width: auto;
        margin: 50 20px;
    }

    .service-text-box h4 {
        margin: 10px 0 0 0;
    }

    .trust-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        /* padding: 10px 16px; */
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .trust-tabs::-webkit-scrollbar {
        display: none;
    }

    .trust-tab {
        flex: 0 0 auto;
        width: auto;
        min-width: 140px;
        height: 50px;
        font-size: 14px;
        scroll-snap-align: start;
    }

    .trust-image-box {
        width: 100%;
        height: auto;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 0;
    }

    #trustImage {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 0;
    }

    .trust-image-box img {
        border-radius: 0 !important;
    }
}

.trust-content-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.trust-image-box {
    width: 50%;
}

.trust-image-box img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
}

.trust-text-box {
    width: 50%;
}

.trust-text-box h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #EAF0F3;
}

.trust-text-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 10px;
    color: #EAF0F3;

}

#trustAuthor {
    font-weight: 400;

}

.trust-link {
    font-family: "Inter" !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #BBFE00;
    margin-top: 10px;
}

.tickup {
    width: 15px;
    height: 15px;
    color: #BBFE00;
}

/* trust */
#trustImage,
#trustTitle,
#trustText,
#trustAuthor {
    transition: opacity 0.3s ease-in-out;
}

.trust-image-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.trust-image-box {
    width: 100%;
    max-width: 600px;
    max-height: 600px;
    overflow: hidden;
}

#trustImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.4s ease-in-out;
    display: block;
}

.company{
    color: #EAF0F399;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 40px 0;
    background:
        url("https://res.cloudinary.com/dvj0lqopq/image/upload/v1767000183/hero1_h3ikg4.png") center / cover no-repeat,
        #0F0F0F;

    text-align: center;
    overflow: hidden;
}

.testimonials-title {
    padding: 10px;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
}

/* Wrapper */
.testimonials-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden !important;
}

/* Slider */
.testimonials-slider {
    display: flex;
    gap: 30px;
    /* margin: 0 100px; */
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Card */
.testimonial-card {
    min-width: 400px;
    max-width: 400px !important;
    flex-shrink: 0;
    background: #232323 !important;;
    align-items: center;
    border-radius: 20px;
    border: 0.5px solid #EAF0F3;
    color: #EAF0F3E5;
    border-radius: 20px;
    /* width: 395.18182373046875px; */
    /* height: 276.62725830078125px ; */
    gap: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.testimonial-card {
    flex: 0 0 400px;
}

.stars {
    color: #BBFE00;
    font-size: 24px;
    /* margin-bottom: 20px; */
}


.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #EAF0F3E5 !important;
}

.author {
    display: block;
    margin-top: 20px;
    font-weight: 400;
    font-size: 15.05px;
    opacity: 0.8;
    color: #eaf0f3 ;
}

/* INFINITY SCROLL DUPLICATE CARDS (for seamless loop) */
.testimonial-card:nth-child(6),
.testimonial-card:nth-child(7),
.testimonial-card:nth-child(8),
.testimonial-card:nth-child(9),
.testimonial-card:nth-child(10) {
    opacity: 1;
}

/* Arrows */
.t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
    margin: 0 30px;
}

.t-left {
    left: 0;
}

.t-right {
    right: 0;
}

/* .t-arrow:hover {
    border-color: #BBFE00;
} */

/* Dots */
.t-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.t-dot {
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
}

.t-dot.active {
    background: #BBFE00;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .testimonials-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-slider {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        transform: none !important;
        margin: 0 !important;
        padding: 0 0 10px 0;
        width: 100%;

    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(85% - 8px);
        min-width: calc(100% - 10px);
        max-width: calc(100% - 8px) ;
        padding: 25px 20px;
        border-radius: 16px;
        scroll-snap-align: center;
        width: 320px;
        height: auto;
        gap: 9.41px;
        border-radius: 20px;
        border-width: 0.5px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonial-card .author {
        font-size: 14px;
        margin-top: 12px;
    }

    .testimonials-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .t-arrow {
        position: static;
        margin: 0 10px;
    }

    .t-dots {
        display: flex;
    }

    .testimonials-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-wrapper>.t-arrow {
        order: 2;
    }

    .testimonials-slider {
        order: 1;
    }
}

/* WHY WORK WITH US */
.why-work-section {
    background: #0F0F0F;
    /* padding: 50px 0; */
    width: 100%;
}

.why-container {
    width: 100%;
    padding: 20px 0 20px 100px;
    margin: auto;
}

.why-container h2 {
    font-size: 70px;
    font-weight: 900 !important;
    line-height: 113.99999999999999%;
    margin-bottom: 80px;
    font-style: Black;
    text-transform: uppercase;
    color: #EAF0F3 !important;

}

.why-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.why-item p {
    font-family: 'Montserrat' !important;
    margin-top: 40px;
    font-size: 26px;
    font-weight: 500;
    text-align: left;
    line-height: 100%;
    color: #EAF0F3;
}

.why-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.why-progress-line {
    position: absolute;
    left: 10px;
    height: 1px;
    width: 0%;
    top: 2px;
    background: #BBFE00;
    transition: width 1.4s ease-out;
    z-index: 1;
}

/* Default dot (inactive) */
.why-dot {
    width: 4px;
    height: 4px;
    background: #7d7d7d;
    border-radius: 50%;
    position: relative;
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    z-index: 2;
    left: 10px
}

.why-dot::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 20px;
    height: 20px;
    background: url("https://res.cloudinary.com/dvj0lqopq/image/upload/v1766903238/dot-circle_escunb.png") no-repeat center/contain;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:first-child .why-dot::after {
    border: 1px solid #bbfe00;
    border-radius: 50%;
}

/* ACTIVE glowing effect */
.why-dot.why-active {
    background: #C6FF00;
    transform: scale(2);
    box-shadow: 0 0 20px #C6FF00, 0 0 40px #C6FF00;
}

.why-dot.why-active::after {
    opacity: 1;
}

/* STRATEGY SECTION */
.strategy-section {
    padding: 60px 80px;
    background: #0F0F0F;
    font-family: 'Open Sans' !important;
}

.strategy-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    gap: 80px;
}

.strategy-left {
    width: 50%;
    height: 1000px;
    padding: 40px;
    border-right: 1px inset #BBFE00;
    font-family: 'Open Sans' !important;
}

.strategy-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 150%;
    color: #eaf0f3;
}

.strategy-left h2 span {
    color: #BBFE00;
}

.strategy-list {}

.strategy-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #eaf0f3;
}

.strategy-list ul {
    list-style: none;
    margin: 15px 30px;
}

.strategy-list li {
    font-size: 16px;
    margin: 8px 0;
    color: #eaf0f3;
    position: relative;
}

.strategy-list li::before {
    content: "•";
    color: #eaf0f3;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.green-text {
    color: #BBFE00;
}

/* FORM STYLES */
.strategy-right {
    width: 55%;
}

.strategy-right {
    /* background: #0b0b0b; */
    padding: 32px;
    border-radius: 16px;
    color: #eaf0f3;
    width: 100%;
    max-width: 420px;
}

.form-title {
    font-family: 'Open Sans' !important;
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #EAF0F3;
    line-height: 150%;
}

.strategy-form {
    display: flex;
    flex-direction: column;
}

.strategy-form label {
    font-family: 'Open Sans' !important;
    font-size: 16px;
    font-weight: 400;
    color: #eaf0f3;
    gap: 4px;
    line-height: 150%;
}

.strategy-form input,
.strategy-form textarea,
.strategy-form select {
    background: #0b0b0b;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 12px;
    color: #EAF0F3;
    font-size: 14px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 16px
}

.strategy-form textarea {
    min-height: 90px;
    resize: none;
}

.strategy-form input::placeholder,
.strategy-form textarea::placeholder {
    color: #777;
}

.add-guest {
    width: 200px;
    height: 48px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A3A3A;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 16px
}

.add-guest:hover {
    background: rgba(187, 254, 0, 0.1);
    border-color: #BBFE00;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.checkbox-item input {
    display: none;
}

.checkbox-level {
    gap: 4px;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #EAF0F3;
    border-radius: 4px;
    position: relative;
}

@media (max-width: 768px) {

    .checkbox-group {
        gap: 6px;
    }

    .checkbox-item {
        margin: 5px 0;
    }

    .strategy-section {
        padding: 60px 0;
    }

    .strategy-container {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        padding: 40px 24px;
    }

    .strategy-left {
        width: 100%;
        height: auto;
        padding: 0;
        border-right: none;
    }

    /* .strategy-left {
    width: 50%;
    height: 1000px;
    padding: 20px;
    border-right: 1px inset #BBFE00;
} */

    .strategy-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .strategy-list h4 {
        font-size: 16px;
        text-align: center;
    }

    .strategy-list li {
        font-size: 16px;
    }

    .strategy-right {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .submit-btn-lg {

        margin-top: 20px;

        font-weight: 700;
        padding: 10px 24px;

        width: 100%;
    }

}

/* REAL tick using borders */
.checkbox-item input:checked+.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border-right: 2px solid #EAF0F3;
    border-bottom: 2px solid #EAF0F3;
    transform: rotate(45deg);
}

.submit-btn-lg {
    font-family: 'Open Sans' !important;
    margin-top: 20px;
    background: #bbfe00;
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 16px;
    gap: 24px;
    width: 262px;
}

.submit-btn-lg:hover {
    transform: translateY(-2px);
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px;
    background:
        url("https://res.cloudinary.com/dvj0lqopq/image/upload/v1766993449/8_jsnrdf.png") center / cover no-repeat,
        #0F0F0F;

}

.contact-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    /* display: flex;
    justify-content: space-between; */
    gap: 80px;
    align-items: center;
}




.contact-left h2 {
    font-family: Montserrat;
    font-weight: 900 !important;
    font-style: Black;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #EAF0F3;

}

.contact-sub {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    color: #eaf0f3;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    padding: 14px;
    color: #EAF0F3;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #757573;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* CUSTOM SELECT */
.custom-select {
    position: relative;
    width: 100%;
}

.selected-option {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 16px;
    color: #7c7c7c;
    cursor: pointer;
    background: transparent;
    margin-bottom: 20px;
}

.options-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(35, 35, 35, 0.97);
    display: none;
    padding: 10px 0;
    margin: 5px 0;
    list-style: none;
    z-index: 10;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.custom-select.open .options-list {
    display: block;
}

.options-list li {
    padding: 13px 20px;
    font-size: 18px;
    color: #EAF0F3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.options-list li:hover {
    color: #BBFE00;
    background: rgba(187, 254, 0, 0.1);
}

.options-list li:last-child {
    border-bottom: none;
}

#serviceInput {
    display: none;
}


.submit-btn {
    background: #BBFE00;
    color: #0F0F0F;
    font-weight: 700;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid #EAF0F3;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    width: fit-content;
    width: 188px;
    height: 58px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* FOOTER */
/* FOOTER */
.footer {
    background: #0F0F0F;
    padding: 50px 0 40px;
    color: #EAF0F3;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 60px; */
    align-items: start;
    padding: 0 50px;
}


.footer-col {
    flex: 0 0 229px;
    text-align: start;
}

.logo-col {
    text-align: start;
}

.footer-logo {
    width: 130px;
    /* margin-bottom: 10px; */
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
}

.contact-col {
    flex: 0 0 200px;
}

.contact-col h4 {
    font-family: Montserrat !important;
    font-weight: 600 !important;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 140%;
    font-style: normal;
}



.footer-email {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social img {
    width: 26px;
    height: 26px;
}

.links-col {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #FFFFFF;
}

.links-col a {
    color: #EAF0F3;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.links-col a:hover {
    opacity: 1;
    /* color: #C6FF00;
    transform: translateX(5px); */
}

/* .footer-col .right-col{
    width: 400px;
} */

.right-col h2 {
    font-family: Montserrat !important;
    font-size: 40px;
    font-weight: 900 !important;
    line-height: 123%;
}

.right-col {
    flex: 0 0 400px;
}

.footer-logo {
    width: 229px;
    /* height: 235px */
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
}

.links-col,
.contact-col {
    margin-top: 20px;
}


.footer-copy {
    margin-top: 40px;
    opacity: 0.7;
    font-family: Montserrat;
    font-weight: 400 !important;
    font-style: Regular;
    font-size: 14px important;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Control line breaks with br tags */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

/* TABLET - 1024px */
@media (max-width: 1024px) {

    /* HEADER */
    .nav-links {
        gap: 30px;
        margin-right: 40px;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* HERO */
    .hero h1 {
        font-size: 40px;
    }

    .launch-btn {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    /* APART SECTION */
    .apart-section h2 {
        font-size: 50px;
    }

    .apart-items {
        gap: 40px;
    }

    /* SERVICES */
    .services-section h2 {
        font-size: 48px;
    }

    .services-subtitle,
    .services-text {
        font-size: 22px;
    }

    /* SERVICE CONTAINER */
    .service-container {
        gap: 40px;
    }

    .service-text-box {
        padding: 30px;
        width: 45%;
        height: 100%;
    }

    .service-slider {
        width: 50%;
    }

    /* TRUST SECTION */
    .trust-title {
        font-size: 50px;
    }

    .trust-content-wrapper {
        gap: 40px;
    }

    /* TESTIMONIALS */
    .testimonials-title {
        font-size: 42px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    /* WHY WORK */
    .why-container h2 {
        font-size: 70px;
    }

    .why-item p {
        font-size: 22px;
    }

    /* STRATEGY */
    .strategy-container {
        gap: 40px;
    }

    .strategy-left {
        padding-right: 40px;
    }

    .strategy-left h2 {
        font-size: 36px;
    }

    /* CONTACT */
    .contact-left h2 {
        font-size: 70px;
    }

    /* FOOTER */
    .right-col h2 {
        font-size: 40px;
    }
}

/* TABLET - 768px */
@media (max-width: 768px) {

    /* HAMBURGER MENU SHOW */
    .nav-links,
    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 15px 25px;
    }

    /* logo section */
    .logo-section {
        padding: 50px 0 0 0;
        background: #0F0F0F;
        overflow: hidden;
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 20px;
        text-align: center;
        line-height: 120%;
        margin: 30px 0;
        font-weight: 800;
    }

    .new123test {
        text-align: center;
        margin: 80px 0 0 0;
    }

    .launch-btn {
        font-size: 24px;
        justify-content: center;
    }

    .subtitle {
        font-size: 14px;
        text-align: center;
        width: 330px;
    }

    /* APART SECTION */
    .apart-section {
        padding: 30px 0;
    }

    .apart-section h2 {
        font-size: 30px;
        margin: 10px 20px;
    }

    .apart-items {
        flex-direction: column;
        gap: 40px;
    }

    .apart-box {
        min-width: auto;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 10px 20px;
    }

    .services-section h2 {
        font-size: 30px;
    }

    .services-subtitle,
    .services-text {
        font-size: 16px;
    }

    /* SERVICE SLIDER SECTIONS */
    .service-slider-section {
        padding: 20px;
    }

    .services-text {
        width: auto;
    }

    .service-container,
    .reverse-layout .service-container {
        flex-direction: column;
        gap: 40px;
        /* padding: 10px 0; */
    }

    .service-text-box,
    .service-slider {
        width: 100%;
        height: 100%;
    }

    .service-slider {
        /* width: 320px; */
        height: 318px;
    }

    .service-text-box {
        min-height: auto;
        order: 2;
        height: 100%;
    }

    .service-slider {
        order: 1;
    }

    .image-wrapper {
        width: 100%;
        height: 400px;
    }

    /* TRUST SECTION */
    .trust-section {
        padding: 60px 0;
    }

    .trust-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .trust-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 15px;
        /* margin-bottom: 30px; */
        margin: 20px 0;
    }

    .trust-tab {
        padding: 12px 16px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .trust-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .trust-image-box,
    .trust-text-box {
        width: 100%;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 30px 10px;
    }

    .testimonials-title {
        font-size: 30px;
        margin-bottom: 0;
        line-height: 1.2;
        text-align: center;
        padding: 20px;
        gap: 24px;
    }

    .testimonials-wrapper {
        position: relative;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .t-arrow {
        display: none;
    }

    .t-dots {
        display: flex;
    }

    /* WHY WORK */
    .why-work-section {
        padding: 0;
    }

    .why-container {
        padding: 20px 24px;
    }

    .why-container h2 {
        font-size: 30px;
        margin-bottom: 40px;
        text-align: start;
    }

    .why-items {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        gap: 40px;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        position: relative;
    }

    .why-dot {
        margin-top: 6px;
        flex-shrink: 0;
        top: 5px;
        margin-right: 20px;
    }

    .why-dot.why-active {
        background: #C6FF00;
        transform: scale(1.1);
        box-shadow: 0 0 20px #C6FF00, 0 0 40px #C6FF00;
    }

    .why-item p {
        margin-top: 0;
        text-align: left;
        font-size: 18px;
        line-height: 1.3;
    }

    .why-progress-line {
      position: absolute;
      left: 12px;        /* DOT CENTER */
      top: 18px;         /* first dot center */
      width: 1px;
      height: 0%;
      background: #BBFE00;
      transform: translateX(-50%);
      transform-origin: top;
      transition: height 1.4s ease-out;
  }


    /* STRATEGY */
    .strategy-section {
        padding: 30px 0;
    }

    .strategy-container {
        flex-direction: column;
        gap: 40px;
    }

    .strategy-left,
    .strategy-right {
        width: 100%;
    }

    .strategy-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 8px inset #BBFE00;
        padding-bottom: 40px;
    }

    .strategy-left h2 {
        text-align: center;
        font-size: 26px;
        color: #EAF0F3;
    }

    /* CONTACT */
    .contact-section {
        padding: 30px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h2 {
        font-size: 40px;
        text-align: start;
        margin-bottom: 0;
    }

    .contact-sub {
        text-align: start;
        margin-bottom: 20px;
    }

    .submit-btn {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        /* gap: 21px; */
        text-align: center;
        padding: 0;
    }

    .footer-col {
        width: 100%;
        text-align: start;
    }

    .links-col {
        align-items: start;
    }

    .footer-social {
        justify-content: start;
    }

    .right-col h2 {
        font-size: 25px;
        text-align: start;
    }

    .footer-copy {
        margin-top: 20px;
    }

    .logo-col {
        order: 1;
        flex: 1;
    }

    .right-col {
        order: 2;
        flex: 1;
    }

    .contact-col {
        order: 3;
        flex: 1;
    }

    .footer-social {
        order: 4;
    }

    .links-col {
        order: 5;
    }

    .footer-copy {
        order: 6;
    }

    .footer-logo {
        width: 130px;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        width: 80px;
    }

    .logo-col {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* MOBILE - 480px */
@media (max-width: 480px) {

    /* HEADER */
    .add-guest {
        border: 1px solid #BBFE00 !important;
        color: #BBFE00 !important;
    }

    .logo {
        width: 35px;
    }

    /* HERO */
    .hero {
        padding: 80px 15px 0;
        display: block;
    }

    .launch-btn {
        font-size: 20px;
        padding-top: 50px;
    }

    .subtitle {
        font-size: 14px;
	font-weight: 700 !important;
    }

    /* LOGO MARQUEE */
    .logo-wrapper {
        border-radius: 50px;
        /* margin: 5px 10px; */
        padding: 5px 10px;
    }
    .marquee-track {
        height: 40px;
    }

    .marquee-track img {
        max-height: 24px;
    }

    /* APART SECTION */
    .apart-section h2 {
        font-size: 30px;
    }

    .apart-box img {
        width: 80px;
    }

    .apart-box p {
        font-size: 18px;
	font-weight: 700 !important;
    }

    /* SERVICES */
    .services-section h2 {
        font-size: 30px;
    }

    .services-subtitle,
    .services-text {
        font-size: 16px;
        line-height: 120%;
        font-weight: 500;
    }

    /* SERVICE BOX */
    .service-text-box {
        padding: 20px;
        height: 100%;
    }

    .service-text-box h2 {
        font-size: 24px;
    }

    .image-wrapper {
        width: 100%;
        /* height: 300px; */
    }

    /* TRUST SECTION */
    .trust-section {
        padding: 20px;
    }

    .trust-title {
        font-size: 30px;
        padding: 0 20px;
        font-weight: 900;
        line-height: 130%;
        letter-spacing: -2%;
        text-align: center;
        text-transform: uppercase;
    }

    .trust-tab {
        padding-top: 12px;
        padding-right: 16px;
        padding-bottom: 12px;
        padding-left: 16px;
        font-size: 14px;
        gap: 10px;
        border-radius: 20px;
    }

    .trust-text-box h3 {
        font-size: 24px;
        line-height: 30px;
    }

    /* TESTIMONIALS */
    .testimonials-title {
        font-size: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    /* WHY WORK */

    .why-items {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        gap: 40px;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        position: relative;
    }

    .why-dot.why-active {
        background: #C6FF00;
        transform: scale(1.1);
        box-shadow: 0 0 20px #C6FF00, 0 0 40px #C6FF00;
    }

    .why-item p {
        font-size: 18px;
        margin-left: 22px;
        text-align: center;
        max-width: 245px;
    }

    .why-item p br {
        display: none;
    }

    .why-item:nth-child(4) p {
        height: 72px;
    }

    .why-container h2 {
        font-size: 30px;
    }

    /* STRATEGY */
    .strategy-left h2 {
        font-size: 28px;
    }

    .strategy-right {
        padding: 20px;
    }

    .strategy-list h4 {
        font-size: 16px;
        text-align: left;
    }

    .service-list li {
        color: #EAF0F3;
        font-size: 15px;
        margin: 6px 0;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 400;
        line-height: 173%;
    }

    /* CONTACT */
    .contact-left h2 {
        font-size: 40px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }

    /* FOOTER */
    .right-col h2 {
        font-size: 25px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-brand {
        font-size: 24px;
    }

    .submit-btn-lg {
        margin-top: 20px;
        font-weight: 700;
        padding: 10px 24px;
        width: 100%;
        /* width: 312px; */
        height: 72px;
        color: #FFFFFF;
    }

    .strategy-right {
        padding: 0;
    }

    /* CONTACT SECTION */
  .contact-section {
    background: 
      url("https://res.cloudinary.com/dvj0lqopq/image/upload/v1766993449/8_jsnrdf.png"), center / cover no-repeat, #0F0F0F;;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

}

/* LANDSCAPE MODE */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 40px;
    }
}

.mobile-dots-container {
    display: none;
}

@media (max-width: 768px) {
    .mobile-dots-container {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        padding: 15px 0;
        width: 100%;
    }

    .mobile-slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background-color: #dddddd;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .mobile-slider-dot:hover,
    .mobile-slider-dot.active {
        background-color: #ff3d00 !important;
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        transform: translateZ(0);
    }

    /* Mobile slider styles - CENTERED */
    .testimonial-slider-container {
        overflow: hidden;
        width: 100%;
    }

    #tSlider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-left: calc(50vw - (85vw / 2));
	height: 320px;
    }

    #tSlider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 auto;
        width: 85vw;
        scroll-snap-align: center;
        margin: 10px;
        transition: transform 0.3s ease;
        padding: 20px;
        gap: 10px;
    }

    /* Last card adjustment */
    .testimonial-card:last-child {
        /* margin-right: 40px; */
    }

    /* Active card styling */
    .testimonial-card.active {
        transform: scale(1.02);
    }

    /* Hide desktop navigation on mobile */
    #tPrev,
    #tNext {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-dots-container {
        display: none !important;
    }

    /* Desktop slider reset */
    #tSlider {
        padding-left: 0 !important;
    }

    .testimonial-card {
        scroll-snap-align: none !important;
        margin-right: 30px;
    }
}

.mobile-break {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {

    .mobile-break {
        display: block;
    }

    .trust-title br {
        display: none;
    }
}

/* ==========================================
   TABLET RESPONSIVE DESIGN (768px - 1024px)
   ========================================== */

@media (min-width: 769px) and (max-width: 1024px) {

    .nav-links,
    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    /* HERO SECTION */
    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-content {
        padding-bottom: 150px;
    }

    .new123test {
        margin-top: 80px;
    }

    .launch-btn {
        font-size: 30px;
    }

    .subtitle {
        font-size: 16px;
        max-width: 600px;
    }

    /* LOGO MARQUEE */
    .logo-section {
        padding: 10px 30px 40px 30px;
    }

    .marquee-track img {
        height: 45px;
    }

    /* WHAT SETS US APART */
    .apart-section h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }

    .apart-items {
        gap: 50px;
        padding: 0 20px;
    }

    .apart-box {
        min-width: 200px;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 50px 20px;
    }

    .services-section h2 {
        font-size: 48px;
    }

    .services-subtitle,
    .services-text {
        font-size: 22px;
    }

    /* SERVICE SLIDER SECTIONS */
    .service-slider-section {
        padding: 30px 30px;
    }

    .service-container {
        gap: 40px;
    }

    .service-text-box {
        width: 45%;
        padding: 30px;
        height: 100%;
    }

    .service-slider {
        width: 50%;
    }

    .service-text-box h2 {
        font-size: 26px;
    }

    .image-wrapper {
        width: 100%;
        height: 350px;
    }

    /* TRUST SECTION */
    .trust-section {
        padding: 80px 20px;
    }

    .trust-title {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .trust-tabs {
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .trust-tab {
        padding: 18px;
        font-size: 18px;
        width: 160px;
        height: 50px;
    }

    .trust-content-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .trust-image-box,
    .trust-text-box {
        width: 50%;
    }

    .trust-image-box {
        height: 500px;
    }

    .trust-text-box h3 {
        font-size: 26px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonials-wrapper {
        padding: 0 20px;
    }

    .testimonials-slider {
        margin: 0;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        width: 320px;
        padding: 30px;
    }

    /* WHY WORK SECTION */
    .why-work-section {
        padding: 30px 20px;
    }

    .why-container {
        padding: 0 20px;
    }

    .why-container h2 {
        font-size: 70px;
        margin-bottom: 60px;
    }

    .why-item p {
        font-size: 18px;
    }

    .mobile-logo {
        display: none;
    }

    .desktop-logo {
        display: block;
        width: 100px;
    }

    /* =========================
        STRATEGY SECTION (DESKTOP + TABLET)
        ========================= */

    .strategy-section {
        padding: 30px 20px;
    }

    .strategy-container {
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 0 20px;
    }

    .strategy-left {
        width: 50%;
        height: auto;
        padding: 0 40px 0 0;
        border-right: 1px solid #BBFE00;
        border-bottom: none;
    }

    .strategy-left h2 {
        font-size: 48px;
        text-align: left;
    }

    .strategy-right {
        width: 50%;
        max-width: none;
        margin: 0;
    }

    /* CONTACT SECTION */
    .contact-section {
        background:
        url("https://res.cloudinary.com/dvj0lqopq/image/upload/v1766993449/8_jsnrdf.png"),#0F0F0F;
        padding: 30px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    /* FOOTER */
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .right-col {
        grid-column: span 2;
    }

    .right-col h2 {
        font-size: 40px;
        text-align: start;
        font-weight: 500;
    }

    /* TABLET SPECIFIC MENU STYLES */
    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        color: #EAF0F3;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        padding: 15px 0;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        color: #BBFE00;
    }

    .mobile-menu .mobile-cta {
        background: #BBFE00;
        color: #000;
        padding: 15px 30px;
        border-radius: 10px;
        font-weight: 700;
        margin-top: 20px;
        border: none;
    }

    /* HAMBURGER FOR TABLET */
    .hamburger {
        width: 30px;
        height: 24px;
    }

    .hamburger span {
        height: 3px;
        background: #BBFE00;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* TABLET LANDSCAPE MODE */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .mobile-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        gap: 20px;
    }

    .mobile-menu a {
        width: auto;
        border-bottom: none;
        padding: 10px 20px;
    }

    .mobile-menu .mobile-cta {
        margin-top: 0;
    }

}

/* TABLET SPECIFIC ADJUSTMENTS (900px - 1024px) */
@media (min-width: 900px) and (max-width: 1096px) {

    /* SERVICE CONTAINER */
    .service-container {
        flex-direction: row !important;
    }

    .reverse-layout .service-container {
        flex-direction: row-reverse !important;
    }

    .service-text-box {
        width: 45%;
        height: 100%;
    }

    .service-slider {
        width: 50%;
    }

    /* TRUST SECTION */
    .trust-content-wrapper {
        flex-direction: row;
    }

    .trust-image-box {
        width: 45%;
        height: 400px;
    }

    .trust-text-box {
        width: 50%;
    }

    /* TESTIMONIALS */
    .testimonials-slider {
        margin: 0 60px;
    }

    /* STRATEGY SECTION */
    .strategy-container {
        flex-direction: row;
    }

    .strategy-left {
        width: 50%;
        border-right: 1px solid #BBFE00;
        border-bottom: none;
        padding-right: 40px;
        padding-bottom: 0;
    }

    .strategy-right {
        width: 45%;
        max-width: none;
        margin: 0;
    }

    /* CONTACT SECTION */
    .contact-container {
        flex-direction: row;
    }

    .contact-left {
        /* width: 50%; */
    }

    .contact-right {
        width: 45%;
    }

    /* FOOTER - FIXED FOR 900px-1024px */
    .footer-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto auto auto;
        gap: 30px 40px;
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
    }

    /* First Row: Logo + Contact */
    .logo-col {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        text-align: left;
        align-self: start;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-col {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        text-align: left;
        align-self: start;
        justify-self: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Second Row: Links + Right Column */
    .links-col {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        text-align: left;
        align-self: start;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .right-col {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        text-align: left;
        align-self: start;
        justify-self: left;
        width: 100%;
        margin: 0;
        padding: 0;
        max-width: 250px;
    }

    /* Social Icons - in a new row */
    .footer-social {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        display: flex;
        justify-content: left;
        gap: 20px;
        margin-top: 10px;
        width: 100%;
    }

    /* Copyright - full width bottom */
    .footer-copy {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 14px;
    }

    /* Remove all flex properties */
    .footer-container>* {
        flex: none !important;
    }

    /* Specific styling for this range */
    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .contact-col h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-email {
        font-size: 15px;
    }

    .links-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .links-col a {
        font-size: 15px;
    }

    .right-col h2 {
        font-size: 40px;
        line-height: 1.3;
        text-align: left;
        margin: 0;
    }

    .footer-social img {
        width: 24px;
        height: 24px;
    }
}

/* TABLET PORTRAIT MODE (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .service-container {
        flex-direction: column;
    }

    .reverse-layout .service-container {
        flex-direction: column;
    }

    .service-text-box,
    .service-slider {
        width: 100%;
        /* height: 100%; */
    }

    .trust-content-wrapper {
        flex-direction: column;
    }

    .trust-image-box,
    .trust-text-box {
        width: 100%;
    }

    .strategy-container {
        flex-direction: column;
    }

    .strategy-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #BBFE00;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .strategy-right {
        width: 100%;
        padding: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    /* .footer-container {
            grid-template-columns: repeat(2, 1fr);
        } */

    .right-col {
        /* flex: 0 0 250px; */
    }

    .logo {
        width: 50px;
        transition: width 0.3s ease;
    }

    /* FOOTER */
    .footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0;
    }

    .footer-col {
        width: 100%;
        text-align: start;
    }

    .links-col {
        align-items: start;
    }

    .footer-social {
        justify-content: start;
    }

    .right-col h2 {
        font-size: 25px;
        text-align: start;
    }

    .footer-copy {
        margin-top: 20px;
    }

    .logo-col {
        order: 1;
        flex: 1;
    }

    .right-col {
        order: 2;
        flex: 1;
    }

    .contact-col {
        order: 3;
        flex: 1;
    }

    .footer-social {
        order: 4;
    }

    .links-col {
        order: 5;
    }

    .footer-copy {
        order: 6;
    }

    .footer-logo {
        width: 130px;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        width: 130px;
    }

    .logo-col {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ============================================
   SMALL TO MEDIUM DESKTOP (1025px - 1360px)
============================================ */
@media (min-width: 1025px) and (max-width: 1360px) {

    /* GLOBAL CONTAINER ADJUSTMENTS */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    .why-container,
    .strategy-container,
    .contact-container,
    .footer-container {
        padding-left: 40px;
        padding-right: 40px;
        width: 100%;
        max-width: 100%;
    }

    /* HEADER */
    .header-inner {
        padding: 20px 40px;
    }

    .logo {
        width: 75px;
    }

    .nav-links {
        gap: 32px;
        margin-right: 20px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .cta-btn {
        padding: 12px 40px;
        font-size: 17px;
        white-space: nowrap;
    }

    /* HERO SECTION */
    .hero {
        padding: 140px 40px 60px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.3;
        margin: 100px 0 40px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .new123test {
        margin-top: 120px;
    }

    .launch-btn {
        font-size: 32px;
        padding: 12px 24px;
    }

    .subtitle {
        font-size: 20px;
        max-width: 850px;
        margin: 0 auto;
    }

    .launch-arrow {
        width: 22px;
    }

    /* LOGO MARQUEE */
    .logo-section {
        padding: 10px 40px 60px;
    }

    .logo-wrapper {
        border-radius: 50px;
        padding: 18px 0;
    }

    .marquee-track img {
        height: 60px;
    }

    /* WHAT SETS US APART */
    .apart-section {
        padding: 40px 0;
    }

    .apart-section h2 {
        font-size: 50px;
        margin-bottom: 70px;
    }

    .apart-items {
        gap: 70px;
        padding: 0 20px;
    }

    .apart-box {
        min-width: 220px;
    }

    .apart-box img {
        width: 100px;
        margin-bottom: 25px;
    }

    .apart-box p {
        font-size: 22px;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 70px 0;
    }

    .services-section h2 {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .services-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-text {
        font-size: 22px;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    /* SERVICE SLIDER SECTIONS */
    .service-slider-section {
        padding: 80px 40px;
    }

    .service-container {
        gap: 60px;
        max-width: 100%;
    }

    .reverse-layout .service-container {
        gap: 60px;
    }

    .service-text-box {
        width: 45%;
        padding: 40px;
        border-radius: 20px;
        height: 100%;
    }

    .service-text-box h2 {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .service-text-box p {
        font-size: 17px;
        line-height: 1.7;
    }

    .service-list li {
        font-size: 16px;
        margin: 8px 0;
    }

    .service-btn {
        width: 180px;
        height: 52px;
        font-size: 17px;
        /* margin-top: 30px; */
    }

    .service-slider {
        width: 52%;
    }

    .image-wrapper {
        width: 100%;
        height: 420px;
        border-radius: 18px;
    }

    .slides {
        height: 420px;
    }

    .slider-controls {
        margin-top: 25px;
    }

    .arrow {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    /* TRUST SECTION */
    .trust-section {
        padding: 80px 40px;
    }

    .trust-title {
        font-size: 50px;
        margin-bottom: 50px;
    }

    .trust-tabs {
        gap: 20px;
        margin-bottom: 60px;
        justify-content: center;
    }

    .trust-tab {
        width: 180px;
        height: 56px;
        font-size: 18px;
        border-radius: 18px;
    }

    .trust-content-wrapper {
        gap: 70px;
        align-items: stretch;
    }

    .trust-image-box {
        width: 48%;
        height: 500px;
        border-radius: 35px;
        overflow: hidden;
    }

    #trustImage {
        height: 100%;
        object-fit: cover;
    }

    .trust-text-box {
        width: 48%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .trust-text-box h3 {
        font-size: 34px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .trust-text-box p {
        font-size: 19px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    #trustAuthor {
        font-size: 18px;
        margin-top: 10px;
    }

    .trust-link {
        font-size: 19px;
        margin-top: 20px;
    }

    .tickup {
        width: 16px;
        height: 16px;
    }

    /* TESTIMONIALS SECTION */
    .testimonials-section {
        padding: 80px 40px;
    }

    .testimonials-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .testimonials-wrapper {
        max-width: 100%;
    }

    .testimonials-slider {
        margin: 0 80px;
        gap: 35px;
    }

    .testimonial-card {
        min-width: 380px;
        max-width: 380px;
        width: 380px;
        padding: 40px;
        border-radius: 22px;
    }

    .stars {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .testimonial-card p {
        font-size: 17px;
        line-height: 1.7;
    }

    .author {
        margin-top: 35px;
        font-size: 17px;
    }

    .t-arrow {
        width: 55px;
        height: 55px;
        margin: 0 40px;
    }

    /* WHY WORK WITH US */
    .why-work-section {
        padding: 80px 0;
    }

    .why-container {
        padding: 0 40px;
    }

    .why-container h2 {
        font-size: 70px;
        margin-bottom: 90px;
        line-height: 1.2;
    }

    .why-items {
        gap: 0;
        justify-content: space-between;
    }

    .why-item {
        flex: 1;
        max-width: 300px;
    }

    .why-item p {
        font-size: 24px;
        line-height: 1.4;
        margin-top: 50px;
        text-align: left;
        padding: 0 15px;
    }

    .why-dot {
        width: 5px;
        height: 5px;
        left: 45px;
        transform: translateX(-50%);
    }

    .why-dot.why-active {
        transform: translateX(-50%) scale(2.5);
    }

    .why-progress-line {
        left: 50px;
        top: 3px;
        width: calc(100% - 100px);
        height: 2px;
    }

    /* STRATEGY SECTION */
    .strategy-section {
        padding: 100px 40px;
    }

    .strategy-container {
        gap: 80px;
        max-width: 100%;
    }

    .strategy-left {
        width: 50%;
        height: auto;
        padding-right: 60px;
        border-right: 2px inset #BBFE00;
    }

    .strategy-left h2 {
        font-size: 50px;
        line-height: 1.4;
        margin-bottom: 40px;
    }

    .strategy-list h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .strategy-list li {
        font-size: 17px;
        margin: 10px 0;
    }

    .strategy-right {
        width: 45%;
        max-width: 450px;
        padding: 40px;
        border-radius: 20px;
    }

    .form-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .strategy-form label {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .strategy-form input,
    .strategy-form textarea,
    .strategy-form select {
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .add-guest {
        width: 220px;
        height: 50px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .checkbox-item {
        font-size: 16px;
        gap: 15px;
    }

    .custom-checkbox {
        width: 20px;
        height: 20px;
    }

    .submit-btn-lg {
        width: 280px;
        height: 56px;
        font-size: 18px;
        border-radius: 10px;
        /* margin-top: 30px; */
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 100px 40px;
        background-size: cover;
        background-position: center;
    }

    .contact-container {
        gap: 80px;
        align-items: flex-start;
    }

    .contact-left {
        /* width: 48%; */
    }

    .contact-left h2 {
        font-size: 70px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .contact-sub {
        font-size: 20px;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .contact-form label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-form input,
    .contact-form textarea,
    .selected-option {
        padding: 16px;
        font-size: 17px;
        border-radius: 18px;
        margin-bottom: 25px;
        border-width: 1.5px;
    }

    .contact-form textarea {
        height: 160px;
        min-height: 160px;
    }

    .selected-option {
        padding: 16px 20px;
    }

    .options-list li {
        padding: 15px 22px;
        font-size: 17px;
    }

    .submit-btn {
        padding: 18px 40px;
        font-size: 18px;
        border-radius: 18px;
        border-width: 1.5px;
    }

    .contact-right {
        /* width: 48%; */
        height: auto;
        margin: auto;
    }

    .contact-images-grid-reversed {
        min-height: 520px;
        height: auto;
        max-height: 600px;
        gap: 12px;
    }

    .top-images-row {
        height: 48%;
    }

    .top-image-overlay {
        padding: 20px;
    }

    .top-title,
    .chart-title {
        font-size: 16px;
    }

    .top-value {
        font-size: 22px;
    }

    .top-change {
        font-size: 14px;
    }

    .chart-bars {
        height: 70px;
        gap: 8px;
    }

    .chart-bar {
        border-radius: 4px 4px 0 0;
    }

    .bottom-large-image {
        height: 52%;
    }

    .bottom-image-overlay {
        padding: 25px;
    }

    .dashboard-title {
        font-size: 18px;
    }

    .dashboard-subtitle {
        font-size: 15px;
    }

    .metrics-grid {
        gap: 15px;
        margin-bottom: 20px;
    }

    .metric-card {
        padding: 15px;
        border-radius: 12px;
    }

    .metric-value {
        font-size: 22px;
    }

    .metric-change {
        font-size: 13px;
        padding: 4px 10px;
    }

    .metric-footer {
        font-size: 12px;
    }

    .date-label {
        font-size: 14px;
    }

    .date-dots {
        gap: 15px;
        font-size: 12px;
    }

    /* FOOTER */
    .footer {
        padding: 80px 40px 50px;
    }

    .footer-container {
        padding: 0;
        gap: 60px;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 200px;
    }

    .logo-col {
        flex: 0 0 180px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-brand {
        font-size: 30px;
    }

    .contact-col {
        flex: 0 0 220px;
    }

    .contact-col h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-email {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .footer-social img {
        width: 28px;
        height: 28px;
    }

    .links-col {
        flex: 0 0 180px;
        gap: 15px;
    }

    .links-col a {
        font-size: 17px;
    }

    .right-col {
        flex: 0 0 250px;
    }

    .footer-copy {
        margin-top: 60px;
        padding-top: 30px;
        font-size: 14px;
    }

    /* HAMBURGER MENU - HIDE ON THIS RANGE */
    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    /* ENSURE DESKTOP NAV IS VISIBLE */
    .nav-links,
    .desktop-cta {
        display: flex !important;
    }

    /* ANIMATION ADJUSTMENTS */
    .marquee-track {
        animation: scroll-left 25s linear infinite;
    }

    /* HOVER EFFECT ENHANCEMENTS */
    .nav-links a:hover,
    .links-col a:hover,
    .trust-link:hover {
        color: #BBFE00;
        transform: translateY(-2px);
    }

    .cta-btn:hover,
    .service-btn:hover,
    .submit-btn:hover,
    .submit-btn-lg:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(187, 254, 0, 0.3);
    }

    .arrow:hover {
        background: #1a1a1a;
        border-color: #BBFE00;
        transform: scale(1.1);
    }

    /* TABLET-SPECIFIC FIXES TO PREVENT ISSUES */
    .trust-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ENSURE IMAGES DON'T OVERFLOW */
    img {
        max-width: 100%;
        height: auto;
    }

    /* FORM ELEMENTS CONSISTENCY */
    input,
    textarea,
    select,
    button {
        font-size: 16px;
        /* Prevent iOS zoom */
    }
}

/* ============================================
   FINE-TUNED BREAKPOINTS WITHIN 1025-1360px
============================================ */

/* 1025px - 1150px (Small Desktop) */
@media (min-width: 1025px) and (max-width: 1150px) {
    .hero h1 {
        font-size: 40px;
    }

    .service-text-box h2 {
        font-size: 28px;
    }

    .trust-title {
        font-size: 50px;
    }

    .why-container h2 {
        font-size: 70px;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    .contact-images-grid-reversed {
        min-height: 480px;
    }
}

/* 1151px - 1250px (Medium Desktop) */
@media (min-width: 1151px) and (max-width: 1250px) {
    .hero h1 {
        font-size: 40px;
    }

    .service-text-box h2 {
        font-size: 30px;
    }

    .trust-title {
        font-size: 50px;
    }

    .why-container h2 {
        font-size: 70px;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    .contact-images-grid-reversed {
        min-height: 550px;
    }
}

/* 1251px - 1360px (Large Desktop) */
@media (min-width: 1251px) and (max-width: 1360px) {
    .hero h1 {
        font-size: 40px;
        line-height: 1.25;
    }

    .service-text-box h2 {
        font-size: 34px;
    }

    .trust-title {
        font-size: 50px;
    }

    .why-container h2 {
        font-size: 70px;
    }

    .contact-left h2 {
        font-size: 70px;
    }

    .contact-images-grid-reversed {
        min-height: 580px;
    }

    /* Slightly wider containers */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    .why-container,
    .strategy-container,
    .contact-container,
    .footer-container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .hero {
        padding: 140px 60px 60px;
    }

    .service-slider-section {
        padding: 80px 60px;
    }

    .trust-section {
        padding: 80px 60px;
    }

    .testimonials-section {
        padding: 80px 60px;
    }

    .strategy-section {
        padding: 100px 60px;
    }

    .contact-section {
        padding: 100px 60px;
    }

    .footer {
        padding: 80px 60px 50px;
    }
}

/* LANDSCAPE ORIENTATION ADJUSTMENTS */
@media (min-width: 1025px) and (max-width: 1360px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding-top: 120px;
    }

    .image-wrapper {
        height: 350px;
    }

    .slides {
        height: 500px;
    }

    .trust-image-box {
        height: 450px;
    }

    .contact-images-grid-reversed {
        min-height: 450px;
    }
}

/* HEIGHT-BASED ADJUSTMENTS FOR SHORT SCREENS */
@media (min-width: 1025px) and (max-width: 1360px) and (max-height: 700px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero h1 {
        /* margin: 60px 0 30px; */
        /* font-size: 40px; */
    }

    .new123test {
        margin-top: 80px;
    }

    .image-wrapper {
        height: 320px;
    }

    .slides {
        height: 320px;
    }

    .trust-image-box {
        height: 380px;
    }

    .contact-images-grid-reversed {
        min-height: 400px;
    }

    .service-text-box {
        padding: 30px;
        height: 100%;
    }

    .slides {
        height: 500px;
    }
}

/* ============================================
   1440px+ LARGE DESKTOP RESPONSIVE DESIGN
   Consistent Gap System & Max-width Containers
============================================ */

/* ============================================
   1440px+ LARGE DESKTOP RESPONSIVE DESIGN
   ORIGINAL CONTENT PRESERVED - ONLY LAYOUT FIXES
============================================ */

@media (min-width: 1450px) {

    /* GLOBAL CONTAINER SYSTEM - ONLY CENTERING */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    /* .why-container, */
    .strategy-container,
    .contact-container,
    .footer-container {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 80px;
        padding-right: 80px;
    }

    /* HEADER - Original sizes kept */
    .header-inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .logo {
        width: 87px;
        /* Original size */
    }

    .nav-links {
        gap: 44px;
        /* Original gap */
    }

    .nav-links a {
        font-size: 18px;
        /* Original size */
        font-weight: bold;
        /* Original weight */
    }

    .cta-btn {
        padding: 12px 50px;
        /* Original padding */
        font-size: 18px;
        /* Original size */
    }
    

    /* HERO SECTION - Original sizes kept */
    .hero {
        padding: 140px 80px 60px;
        /* Adjusted padding only */
    }

    .hero-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 70px;
        left: 0px;
        z-index: 1;
    }
    .hero h1 {
        font-size: 40px;
        line-height: 52px;
        margin: 100px 0 40px;
    }

    .launch-btn {
        font-size: 30px;
        /* Original size */
        padding: 10px 20px;
        /* Original padding */
    }

    .subtitle {
        font-size: 18px;
        /* Original size */
        max-width: 700px;
        /* Original max-width */
    }

    .launch-arrow {
        width: 20px;
        /* Original size */
    }

    /* LOGO MARQUEE - Original sizes kept */
    .logo-section {
        padding: 40px 80px 20px;
        /* Adjusted padding only */
    }

    .logo-wrapper {
        /* max-width: 1200px; */
        margin: 0 auto;
        padding: 15px 0;
        /* Original padding */
    }

    .marquee-track img {
        height: 55px;
        /* Original size */
    }

    /* WHAT SETS US APART - Original sizes kept */
    .apart-section {
        padding: 80px 0;
    }

    .apart-section h2 {
        font-size: 50px;
        font-weight: 900;
        text-transform: uppercase;
        margin: 50px 0 80px;
        line-height: 151%;
        letter-spacing: 1%;
        text-align: center;
        color: #EAF0F3;
    }

    .apart-items {
        gap: 80px;
        /* Original gap */
        max-width: 1200px;
        margin: 0 auto;
    }

    .apart-box img {
        width: 113px;
        /* Original size */
        margin-bottom: 20px;
        /* Original margin */
    }

    .apart-box p {
        font-size: 20px;
        /* Original size */
    }

    /* SERVICES SECTION - Original sizes kept */
    .services-section {
        padding: 60px 0;
        /* Original padding */
    }

    .services-section h2 {
        font-size: 48px;
        /* Original size */
    }

    .services-subtitle {
        font-size: 22px;
        /* Original size */
    }

    .services-text {
        font-size: 22px;
        /* Original size */
        line-height: 36px;
        /* Original line-height */
    }

    /* SERVICE SLIDER SECTIONS - Original sizes kept */
    .service-slider-section {
        padding: 70px 80px;
        /* Adjusted padding only */
    }

    .service-container {
        max-width: 1440px;
        margin: 0 auto;
        gap: 80px;
        /* Original gap */
    }

    .service-text-box {
        width: 550px;
        /* Original width */
        padding: 40px;
        /* Original padding */
        border-radius: 24px;
        /* Original border-radius */
        height: 100%;
        /* Match slider height */
    }

    .service-text-box h2 {
        font-size: 32px;
        /* Original size */
        line-height: 40px;
        /* Original line-height */
    }

    .service-text-box p {
        font-size: 16px;
        /* Original size */
        line-height: 27px;
        /* Original line-height */
    }

    .service-text-box h4 {
        font-size: 16px;
        /* Original size */
    }

    .service-list li {
        font-size: 15px;
        /* Original size */
    }

    .tick {
        width: 20px;
        /* Original size */
        height: 20px;
        /* Original size */
    }

    .service-btn {
        width: 190px;
        /* Original width */
        height: 55px;
        /* Original height */
        font-size: 18px;
        /* Original size */
    }

    .service-slider {
        width: 700px;
        /* Original width */
        height: 542px;
        /* Original height */
        display: flex;
        flex-direction: column;
    }

    .image-wrapper {
        flex: 1;
        /* Takes available space */
        min-height: 410px;
        /* Minimum height */
        height: auto;
        overflow: hidden;
        border-radius: 20px;
        /* Original approximate height */
    }

    .slides {
        height: 100%;
        /* Original approximate height */
        display: flex;
    }

    .slide-img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        flex-shrink: 0;
    }

    .arrow {
        width: 45px;
        /* Original size */
        height: 45px;
        /* Original size */
    }

    .dot {
        width: 12px;
        /* Original size */
        height: 12px;
        /* Original size */
    }

    /* TRUST SECTION - Original sizes kept */
    .trust-section {
        padding: 80px;
        /* Original padding */
    }

    .trust-title {
        font-size: 50px;
        /* Original size */
    }

    .trust-tab {
        width: 188px;
        height: 58px;
        font-size: 18px;
    }

    .trust-content-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        gap: 80px;
        /* Original gap */
    }

    .trust-image-box {
        width: 50%;
    }

    .trust-image-box img {
        border-radius: 40px;
        /* Original border-radius */
    }

    .trust-text-box h3 {
        font-size: 30px;
        /* Original size */
    }

    .trust-text-box p {
        font-size: 18px;
        /* Original size */
    }

    #trustAuthor {
        font-size: 18px;
        /* Original size */
    }

    .trust-link {
        font-size: 18px;
        /* Original size */
    }

    .tickup {
        width: 15px;
        /* Original size */
        height: 15px;
        /* Original size */
    }

    /* TESTIMONIALS SECTION - Original sizes kept */
    .testimonials-title {
        font-size: 30px;
        /* Original size */
    }

    .testimonials-slider {
        margin: 0 100px;
        /* Original margin */
        gap: 30px;
        /* Original gap */
    }

    .testimonial-card {
        min-width: 400px;
        /* Original size */
        max-width: 400px;
        /* Original size */
        width: 400px;
        /* Original size *
    }

    .stars {
        font-size: 24px;
        /* Original size */
    }

    .testimonial-card p {
        font-size: 16px;
        /* Original size */
    }

    .author {
        font-size: 15.05px;
        
    }

    .t-arrow {
        width: 50px;
        /* Original size */
        height: 50px;
        /* Original size */
        margin: 0 30px;
        /* Original margin */
    }

    /* WHY WORK WITH US - Original sizes kept */
    .why-work-section {
        padding: 50px 0;
        /* Original padding */
    }

    .why-container h2 {
        font-size: 70px;
        /* Original size */
    }

    .why-item p {
        font-size: 26px;
        /* Original size */
    }

    .why-dot {
        width: 4px;
        /* Original size */
        height: 4px;
        /* Original size */
    }

    .why-progress-line {
        left: 10px;
        /* Original position */
        height: 1px;
        /* Original height */
    }

    /* STRATEGY SECTION - Original sizes kept */
    /* .strategy-section {
        padding: 60px 80px;
    } */

    .strategy-left h2 {
        font-size: 42px;
        /* Original size */
    }

    .strategy-list h4 {
        font-size: 18px;
        /* Original size */
    }

    .strategy-list li {
        font-size: 16px;
        /* Original size */
    }

    .strategy-right {
        padding: 32px;
        /* Original padding */
    }

    .form-title {
        font-size: 26px;
        /* Original size */
    }

    .strategy-form label {
        font-size: 16px;
        /* Original size */
    }

    .strategy-form input,
    .strategy-form textarea,
    .strategy-form select {
        font-size: 14px;
        /* Original size */
        padding: 12px;
        /* Original padding */
    }

    .add-guest {
        width: 200px;
        /* Original width */
        height: 48px;
        /* Original height */
        font-size: 13px;
        /* Original size */
    }

    .checkbox-item {
        font-size: 15px;
        /* Original size */
    }

    .custom-checkbox {
        width: 18px;
        /* Original size */
        height: 18px;
        /* Original size */
    }

    .submit-btn-lg {
        width: 262px;
        /* Original width */
        font-size: 16px;
        /* Original size */
        padding: 10px 24px;
        /* Original padding */
    }

    /* CONTACT SECTION - Original sizes kept */
    /* .contact-section {
        padding: 80px;
        
    } */

    .contact-left h2 {
        font-size: 70px;
        /* Original size */
    }

    .contact-sub {
        font-size: 18px;
        /* Original size */
    }

    .contact-form input,
    .contact-form textarea,
    .selected-option {
        padding: 14px;
        /* Original padding */
        font-size: 16px;
        /* Original size */
    }

    .contact-form textarea {
        height: 150px;
        /* Original height */
    }

    .selected-option {
        padding: 10px;
        /* Original padding */
    }

    .options-list li {
        padding: 13px 20px;
        /* Original padding */
        font-size: 18px;
        /* Original size */
    }

    .submit-btn {
        background: #BBFE00;
        color: black;
        font-weight: 700;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid #EAF0F3;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s ease;
        width: 188px;
        height: 58px;
    }

    .contact-images-grid-reversed {
        min-height: 500px;
    }

    .top-image-overlay {
        padding: 15px;
    }

    .chart-title {
        font-size: 14px;
    }

    .chart-date-range {
        font-size: 11px;
    }

    .bottom-image-overlay {
        padding: 20px;
    }

    .dashboard-title {
        font-size: 16px;
    }

    .dashboard-subtitle {
        font-size: 14px;
    }

    .metric-label {
        font-size: 11px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-change {
        font-size: 11px;
    }

    .metric-footer {
        font-size: 10px;
    }

    .date-label {
        font-size: 12px;
    }

    .date-dot {
        font-size: 10px;
    }

    /* FOOTER SECTION - Original sizes kept */
    .footer {
        padding: 50px 0 40px;
    }

    .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 50px;
        gap: 60px;
    }

    .footer-logo {
        width: 250px;
        /* Original size */
    }

    .footer-brand {
        font-size: 28px;
    }

    .contact-col h4 {
        font-size: 16px;
    }

    .footer-email {
        font-size: 15px;
    }

    .footer-social img {
        width: 26px;
        height: 26px;
    }

    .links-col a {
        font-size: 16px;
    }

    .right-col h2 {
        font-size: 40px;
    }

    .footer-copy {
        font-size: 14px;
    }

    /* GAP CONSISTENCY - Center all content */
    .hero-content,
    .services-container,
    .testimonials-wrapper {
        /* max-width: 1200px; */
        margin-left: auto;
        margin-right: auto;
    }

    /* .footer-logo {
        width: 217px;
    } */

    .calendly-inline-widget{
    min-width:350px;
    height:710px;
}
}

/* ============================================
   1600px+ ONLY CONTAINER WIDTH INCREASE
============================================ */

@media (min-width: 1600px) {

    /* ONLY INCREASE MAX-WIDTH, NO SIZE CHANGES */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    .why-container,
    .strategy-container,
    .contact-container,
    .footer-container {
        max-width: 1500px;
        padding-left: 100px;
        padding-right: 100px;
    }

    /* Center content better with larger screens */
    .hero-content,
    .services-container {
        max-width: 1300px;
    }
}

/* ============================================
   1920px+ ONLY CENTERING IMPROVEMENT
============================================ */

@media (min-width: 1920px) {

    /* SLIGHTLY WIDER CONTAINERS */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    .why-container,
    .strategy-container,
    .contact-container,
    .footer-container {
        max-width: 1600px;
        padding-left: 120px;
        padding-right: 120px;
    }

    /* Center content better */
    .hero-content,
    .services-container {
        max-width: 1400px;
    }
}

/* ============================================
   2560px+ PREVENT EXCESSIVE STRETCHING
============================================ */

@media (min-width: 2560px) {

    /* FIXED MAX WIDTH - NO MORE STRETCHING */
    .header-inner,
    .apart-container,
    .services-container,
    .service-container,
    .trust-content-wrapper,
    .why-container,
    .strategy-container,
    .contact-container,
    .footer-container {
        max-width: 1800px;
        padding-left: 150px;
        padding-right: 150px;
    }

    /* ADD BACKGROUND ON SIDES */
    body {
        position: relative;
    }

    body::before,
    body::after {
        content: "";
        position: fixed;
        top: 0;
        width: calc((100% - 1800px) / 2);
        height: 100vh;
        background: #0F0F0F;
        z-index: -1;
    }

    body::before {
        left: 0;
    }

    body::after {
        right: 0;
    }

    /* Center content better */
    .hero-content,
    .services-container {
        max-width: 1500px;
    }
}



@media (max-width: 768px) {
    .strategy-list-head2{
        text-align: left !important;
    }
}

@media (max-width: 480px) {

    .hero-bg {
        /* object-position: center top; */
        height: 320px;
        /* position: absolute; */
        width: 100%;
        top: 100px;        
        object-fit: fill;
        /* top: 70px; */
        left: 0;
        z-index: 1;
        transform: scale(1.45); 
    }
}


@media (min-width: 360px) and (max-width: 400px) {

    .testimonials-section {
        padding: 30px 8px !important;
        box-sizing: border-box;
    }
    
    /* Swiper container */
    .testimonials-slider.swiper {
        width: 100% !important;
        padding: 0 5px !important;
        margin: 0 auto;
    }
    
    /* Slide item */
    .testimonials-slider .swiper-slide {
        width: 95% !important; 
        margin: 0 auto;
        transform: translateX(0) !important;
    }
    
    /* Card itself */
    .testimonial-card {
        width: 100% !important;
        min-width: 0 !important; /* important */
        max-width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    /* Card text */
    .testimonial-card p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        padding: 0 5px;
    }
    
    /* Hide non-active slides completely */
    .testimonials-slider .swiper-slide:not(.swiper-slide-active) {
        display: none !important;
    }
    
}
