﻿/*#region General Styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6600;
    --soft-orange: #FF8C42;
    --cyan-blue: #C9A86A;
    --deep-blue: #8B7355;
    --deep-navy: #1C1917;
    --dark-purple: #292524;
    --glass-bg: rgba(41, 37, 36, 0.75);
    --glass-border: rgba(255, 140, 66, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}
/*#endregion*/

/*#region Scroll Progress Bar*/

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px var(--cyan-blue);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar.scrolled {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 0.8rem 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

.nav-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*#endregion*/

/*#region Logo*/

.logo {
    line-height: 1;
}

    .logo img {
        max-height: 65px;
        border-radius: 4px;
    }
/*#endregion*/

/*#region Desktop Navigation*/

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover {
        color: #fff;
        transform: translateY(-2px);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

    .nav-link.active {
        color: #fff;
    }
/*#endregion*/

/*#region Premium CTA Button*/
.nav-cta {
    position: relative;
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

    .nav-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
    }

        .nav-cta:hover::before {
            transform: translateX(100%);
        }

    .nav-cta i {
        transition: transform 0.3s ease;
    }

    .nav-cta:hover i {
        transform: translateX(4px);
    }

/*#endregion*/

/*#region Mobile Menu Toggle*/

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

/* Mobile Menu Overlay - FIXED: Only visible when active */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 31, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* Mobile Navigation - FIXED: Hidden by default, narrower width */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%; 
    width: 280px; 
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-purple), var(--deep-navy));
    backdrop-filter: blur(20px);
    padding: 5rem 1.5rem 2rem; 
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden; 
    pointer-events: none;
}

    .mobile-nav.active {
        right: 0;
        visibility: visible;
        pointer-events: auto; 
    }

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
}

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
        transition: width 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #fff;
        padding-left: 1rem;
    }

        .mobile-nav-link:hover::before,
        .mobile-nav-link.active::before {
            width: 30px;
        }

/* Mobile CTA - FIXED: Better positioning */
.mobile-nav-cta {
    margin-top: auto; 
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

    .mobile-nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
    }

/*#endregion*/

/*#region Responsive*/

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    /* FIXED: Display mobile menu elements only on mobile */
    .menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay,
    .mobile-nav {
        display: block; /* Changed from flex to block */
    }

    .demo-section {
        padding: 8rem 1.5rem 3rem;
    }

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

    .demo-content {
        padding: 2rem;
    }

    .logo-brand {
        font-size: 18px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-tagline {
        display: none;
    }

    /* FIXED: Even narrower on very small screens */
    .mobile-nav {
        width: 260px;
        max-width: 90vw;
        padding: 4.5rem 1.25rem 1.5rem;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 0.875rem 0;
    }

    .mobile-nav-cta {
        padding: 0.75rem 1.25rem;
        font-size: 14px;
    }
}

/*#endregion*/

/*#region Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Progress Circle SVG */
.scroll-top-progress {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 64px;
    height: 64px;
    transform: rotate(-90deg);
    pointer-events: none;
}

    .scroll-top-progress circle {
        fill: none;
        stroke-width: 3;
        stroke-dasharray: 188.5; /* 2 * π * 30 */
        stroke-dashoffset: 188.5;
        transition: stroke-dashoffset 0.3s ease;
    }

        .scroll-top-progress circle.bg {
            stroke: rgba(255, 255, 255, 0.1);
            stroke-dashoffset: 0;
        }

        .scroll-top-progress circle.progress {
            stroke: url(#progress-gradient);
        }

    /* Gradient definition for the progress ring */
    .scroll-top-progress defs linearGradient {
        stop:first-child {
            stop-color: var(--primary-orange);
        }

        stop:last-child {
            stop-color: var(--cyan-blue);
        }
    }

/* Icon styling */
.scroll-top i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Tooltip */
.scroll-top::before {
    content: 'Back to top';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-top:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hover Effects */
.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
}

    .scroll-top:hover i {
        transform: translateY(-3px);
        color: #fff;
    }

    .scroll-top:hover::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        opacity: 0.2;
        border-radius: 50%;
        z-index: 1;
    }

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.scroll-top.active {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .scroll-top-progress {
        width: 54px;
        height: 54px;
    }

        .scroll-top-progress circle {
            stroke-dasharray: 157; /* Adjusted for smaller size */
        }
}

@media (max-width: 576px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }

    .scroll-top-progress {
        width: 49px;
        height: 49px;
    }

        .scroll-top-progress circle {
            stroke-dasharray: 141.3; /* Adjusted for smaller size */
        }
}

/*#endregion Scroll Top */

/*#region Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -15%;
    right: -10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--soft-orange), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Particle Grid */
.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/*.container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}*/

/* Hero Text Content */
.hero-text-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(201, 168, 106, 0.15));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-orange);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.display-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 580px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-explore {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-explore::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-explore:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
    }

        .btn-explore:hover::before {
            left: 100%;
        }

.btn-deals {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

    .btn-deals i {
        color: var(--primary-orange);
        transition: transform 0.3s ease;
    }

    .btn-deals:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
    }

        .btn-deals:hover i {
            transform: scale(1.2) rotate(10deg);
        }

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.indicator-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.indicator-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.indicator-item:hover .indicator-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 102, 0, 0.15);
    border-color: var(--primary-orange);
}

.indicator-text {
    display: flex;
    flex-direction: column;
}

    .indicator-text strong {
        font-size: 0.95rem;
        color: #fff;
    }

    .indicator-text span {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.6);
    }

/* Hero Image Section */
.hero-image-section {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Main Product Display */
.main-product-display {
    position: relative;
    z-index: 1;
}

.product-frame {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

    .product-frame:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(255, 102, 0, 0.3);
    }

    .product-frame::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        border-radius: 30px;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }

    .product-frame:hover::before {
        opacity: 0.3;
    }

    .product-frame img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

.sale-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), #ff4400);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Product Details Card */
.product-details-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    text-align: center;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

/* Secondary Products */
.secondary-products {
    position: absolute;
    left: -80px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.mini-card {
    width: 120px;
    height: 120px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.75rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .mini-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .mini-card:hover {
        transform: translateX(10px) scale(1.05);
        border-color: var(--primary-orange);
    }

        .mini-card:hover::before {
            opacity: 0.1;
        }

    .mini-card img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        border-radius: 12px;
        position: relative;
        z-index: 1;
    }

.quick-price {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    background: var(--primary-orange);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
}

/* Action Icons */
.action-icons {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.icon-bubble {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .icon-bubble i {
        color: var(--primary-orange);
        transition: all 0.3s ease;
    }

    .icon-bubble:hover {
        transform: scale(1.15) rotate(10deg);
        background: rgba(255, 102, 0, 0.15);
        border-color: var(--primary-orange);
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    }

        .icon-bubble:hover i {
            transform: scale(1.2);
        }

    .icon-bubble.favorite:hover i {
        color: #ff1744;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .secondary-products {
        left: -60px;
        bottom: 80px;
    }

    .mini-card {
        width: 100px;
        height: 100px;
    }

    .action-icons {
        right: -50px;
    }

    .icon-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 100px 0 60px;
    }

    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }

    .display-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .secondary-products {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .action-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero .container > .row {
        padding: 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-explore,
    .btn-deals {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .product-frame {
        padding: 1.5rem;
    }

    .sale-badge {
        top: 2rem;
        right: 2rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
/*#endregion*/

/*#region About */
.about.section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
}

/* Animated Background */
.about-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 25s ease-in-out infinite;
}

.about .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.about .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-orange), transparent);
    bottom: 5%;
    left: -5%;
    animation-delay: 10s;
}

.about .shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

/* Particle Grid */
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 106, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 106, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    opacity: 0.5;
}

/* Container styling */
.about .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* About Content Styling */
.about-content {
    padding-left: 2rem;
}

.tag-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(201, 168, 106, 0.15));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-orange);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Values Section */
.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

    .values-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
        border-radius: 2px;
    }

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .value-item:hover {
        transform: translateY(-3px);
        border-color: var(--primary-orange);
        background: rgba(255, 102, 0, 0.1);
    }

.value-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.value-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/* About Image Styling */
.about-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    overflow: visible; /* Changed from hidden to visible */
    margin-bottom: 40px; /* Add space for the card */
}

    /* Ensure the image has proper spacing */
    .about-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        border: 1px solid var(--glass-border);
        transition: transform 0.5s ease;
        display: block;
        position: relative;
        z-index: 1;
    }

    .about-image-wrapper:hover img {
        transform: scale(1.02);
    }

/* Mission Card */
.mission-card {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 3;
    margin-top: -10%; /* This creates the 10% overlap on the image */
}
    /* Optional: Add a subtle hover effect */
    .mission-card:hover {
        transform: translateX(-50%) translateY(-5px) !important;
        box-shadow: 0 20px 60px rgba(255, 102, 0, 0.2);
        border-color: var(--primary-orange);
        transition: all 0.3s ease;
    }

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.mission-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mission-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .mission-card {
        width: 85%;
        padding: 1.25rem;
        margin-top: -8%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {

    .about.section {
        padding: 80px 0;
        min-height: auto;
    }

    .about-content {
        padding-left: 0;
        padding-top: 3rem;
    }

    .mission-card {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0;
        border-radius: 20px;
        margin-top: 0;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .mission-card {
        width: 95%;
        margin-top: -8%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .about .container {
        padding: 0 1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-info p {
        font-size: 1rem;
    }

    .mission-card {
        width: 100%;
        max-width: 320px;
        padding: 1.25rem;
        margin-top: -5%;
    }

    .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .mission-content h4 {
        font-size: 1.1rem;
    }

    .mission-content p {
        font-size: 0.9rem;
    }
}
/* For larger screens, you might want to adjust the positioning */
@media (min-width: 1400px) {
    .mission-card {
        width: 80%;
        max-width: 450px;
        margin-top: -12%;
    }
}

@media (max-width: 480px) {
    .values-list {
        gap: 0.75rem;
    }

    .value-item {
        padding: 0.5rem;
    }

    .mission-card {
        padding: 1rem;
        margin-top: -10%;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.about ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .about ul li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
    }

        .about ul li i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .about ul li span {
            flex: 1;
        }
/*#endregion About Style */

/*#region About 2 Style */
.about-2.section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--deep-navy) 100%);
}

/* Animated Background */
.about-2-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about-2 .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.about-2 .shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.about-2 .shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -5%;
    right: -5%;
    animation-delay: 10s;
}

/* Particle Grid */
.about-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 140, 66, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 140, 66, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 25s linear infinite;
    opacity: 0.5;
}

/* Container styling */
.about-2 .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content Styling */
.about-2 .content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-2 .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* CTA Buttons */
.about-2 .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-2 .btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .about-2 .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .about-2 .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        color: #fff;
    }

        .about-2 .btn-primary:hover::before {
            left: 100%;
        }

.about-2 .btn-outline {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

    .about-2 .btn-outline:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
        color: #fff;
    }

/* Image Wrapper */
.about-2 .image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-2 .main-image {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    overflow: visible; /* Changed from hidden to visible */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

    .about-2 .main-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(255, 102, 0, 0.3);
    }

    .about-2 .main-image::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        border-radius: 24px;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }

    .about-2 .main-image:hover::before {
        opacity: 0.3;
    }

    .about-2 .main-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
    }

/* Floating Cards */
.about-2 .floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}
/* Floating card inside main image (top right) */
.about-2 .main-image .floating-card.top-right {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}
/* Floating card outside main image (bottom left) */
.about-2 .floating-card.secondary.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
    width: 200px;
}

.about-2 .floating-card:first-of-type {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.about-2 .floating-card.secondary {
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
    width: 200px;
}

.about-2 .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-2 .floating-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.about-2 .floating-card.secondary .icon {
    background: linear-gradient(135deg, var(--cyan-blue), var(--deep-blue));
}

.about-2 .floating-card .text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.about-2 .floating-card .text p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Hover Effects */
.about-2 .floating-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-2 .floating-card:first-of-type {
        right: -20px;
        top: -20px;
        width: 200px;
    }

    .about-2 .floating-card.secondary {
        left: -20px;
        bottom: -20px;
        width: 180px;
    }

    .about-2 .main-image .floating-card.top-right {
        right: 15px;
        top: 15px;
        width: 200px;
    }

    .about-2 .floating-card.secondary.bottom-left {
        left: -15px;
        bottom: -15px;
        width: 180px;
    }
}

@media (max-width: 992px) {
    .about-2.section {
        padding: 80px 0;
        min-height: auto;
    }

    .about-2 .floating-card:first-of-type {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto 1rem;
        width: 100%;
        max-width: 300px;
        animation: none;
    }

    .about-2 .floating-card.secondary {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 300px;
        animation: none;
    }

    .about-2 .cta-buttons {
        justify-content: center;
    }

    .about-2 .main-image .floating-card.top-right {
        position: relative;
        top: auto;
        right: auto;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 300px;
        animation: none;
    }

    .about-2 .floating-card.secondary.bottom-left {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 300px;
        animation: none;
    }
}

@media (max-width: 768px) {
    .about-2 .container {
        padding: 0 1rem;
    }

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

    .about-2 .lead {
        font-size: 1rem;
    }

    .about-2 .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-2 .btn-primary,
    .about-2 .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .about-2 .main-image {
        padding: 1rem;
    }

        .about-2 .main-image .floating-card.top-right,
        .about-2 .floating-card.secondary.bottom-left {
            padding: 1rem;
        }

            .about-2 .main-image .floating-card.top-right .icon,
            .about-2 .floating-card.secondary.bottom-left .icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }
}

@media (max-width: 480px) {
    .about-2 .floating-card {
        padding: 1rem;
    }

        .about-2 .floating-card .icon {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }

        .about-2 .floating-card .text h5 {
            font-size: 0.9rem;
        }

        .about-2 .floating-card .text p {
            font-size: 0.8rem;
        }
}

/* Service Highlights in About 2 */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-item:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-2px);
    }

    .service-item i {
        color: var(--primary-orange);
        font-size: 1.1rem;
    }

.about-2 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .about-2 ul li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
    }

        .about-2 ul li i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .about-2 ul li span {
            flex: 1;
        }
/*#endregion About 2 Section Style */

/*#region Tabs Section Style */
.tabs.section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
}

/* Remove light-background class */
.tabs.light-background {
    background: none !important;
}

/* Animated Background */
.tabs-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.tabs .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: float 25s ease-in-out infinite;
}

.tabs .shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    top: 10%;
    right: -15%;
    animation-delay: 0s;
}

.tabs .shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    bottom: 5%;
    left: -10%;
    animation-delay: 12s;
}

.tabs .shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-orange), transparent);
    top: 60%;
    right: 30%;
    animation-delay: 6s;
}

/* Particle Grid */
.tabs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 140, 66, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 140, 66, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
    opacity: 0.3;
}

/* Container styling */
.tabs .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title Styling */
.tabs .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .tabs .section-title h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .tabs .section-title p {
        font-size: 1.125rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
        max-width: 600px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }

/* FIXED: Tabs Navigation - 25% equal width */
.tabs .nav-tabs {
    border: none;
    display: flex;
    width: 100%;
    margin: 0 0 3rem 0;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

/* FIXED: Each nav-item takes 25% width */
.tabs .nav-item {
    flex: 1; /* Equal distribution - each takes 25% */
    margin: 0;
    min-width: 0; /* Allows flex items to shrink properly */
}

/* FIXED: Nav-link styling for equal width */
.tabs .nav-link {
    position: relative;
    padding: 1.25rem 0.5rem; /* Reduced horizontal padding for equal width */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px !important;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    cursor: pointer;
    width: 100%; /* Full width of parent */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap; /* Prevents text wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds ... if text is too long */
    border: none; /* Remove Bootstrap default border */
}

    /* Use button elements for better semantics */
    .tabs .nav-link[role="button"] {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    .tabs .nav-link:hover {
        color: #fff;
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange) !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    }

    /* FIXED: Active tab styling */
    .tabs .nav-link.active {
        background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
        color: #fff !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
        transform: translateY(-3px);
    }

        .tabs .nav-link.active::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
            border-radius: 18px;
            z-index: -1;
            opacity: 0.5;
        }

/* Tab Content */
.tabs .tab-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* FIXED: Tab pane animations */
.tabs .tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .tabs .tab-pane.active {
        opacity: 1;
        animation: tabFadeIn 0.5s ease-out;
    }

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

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

/* Bootstrap fade classes */
.tabs .fade {
    transition: opacity 0.15s linear;
}

    .tabs .fade:not(.show) {
        opacity: 0;
    }

/* Ensure only one tab content shows */
.tabs .tab-content > .tab-pane {
    display: none;
}

.tabs .tab-content > .active {
    display: block;
}

/* Tab Content Layout */
.tabs .tab-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .tabs .tab-content-inner h3 {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #fff;
        background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.tabs .fst-italic {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-orange);
}

.tabs ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .tabs ul li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
    }

        .tabs ul li i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .tabs ul li span {
            flex: 1;
        }

/* CTA Button */
.tabs .btn-cta {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    margin-top: 1rem;
}

    .tabs .btn-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .tabs .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        color: #fff;
    }

        .tabs .btn-cta:hover::before {
            left: 100%;
        }

    .tabs .btn-cta i {
        transition: transform 0.3s ease;
    }

    .tabs .btn-cta:hover i {
        transform: translateX(5px);
    }

/* Image Wrapper */
.tabs .image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tabs .image-wrapper img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.5s ease;
    }

    .tabs .image-wrapper:hover img {
        transform: scale(1.03);
    }

/* Row alignment */
.tabs .row.g-5.align-items-center {
    min-height: 400px;
}

/* FIXED: Responsive Design for Tabs */
@media (max-width: 1200px) {
    .tabs .nav-link {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .tabs .image-wrapper img {
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .tabs.section {
        padding: 80px 0;
        min-height: auto;
    }

    .tabs .tab-content {
        padding: 2rem;
    }

    .tabs .nav-link {
        padding: 0.875rem 0.5rem;
        font-size: 0.85rem;
        white-space: normal; /* Allow text wrapping on tablet */
        min-height: 80px; /* Fixed height for consistency */
    }

    /* FIXED: 2 tabs per row on tablet */
    .tabs .nav-item {
        flex: 0 0 calc(50% - 0.5rem); /* 50% width minus gap */
    }

    .tabs .nav-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .tabs .image-wrapper {
        margin-top: 2rem;
    }

    .tabs .row.g-5.align-items-center {
        min-height: auto;
    }

    .tabs .image-wrapper img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .tabs .container {
        padding: 0 1rem;
    }

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

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

    /* FIXED: 1 tab per row on mobile */
    .tabs .nav-item {
        flex: 0 0 100%; /* Full width on mobile */
    }

    .tabs .nav-link {
        min-height: 60px;
        padding: 0.75rem 1rem;
        white-space: normal;
    }

    .tabs .tab-content-inner h3 {
        font-size: 1.75rem;
    }

    .tabs .fst-italic {
        font-size: 1rem;
    }

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

    .tabs .image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .tabs .tab-content {
        padding: 1.5rem;
    }

    .tabs ul li {
        font-size: 0.95rem;
    }

    .tabs .image-wrapper {
        padding: 1rem;
    }
}

/*#endregion Tabs Section Style */

/*#region Why Us Section Style - Updated */
.why-us.section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--deep-navy) 100%);
}

/* Animated Background */
.why-us-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.why-us .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.why-us .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.why-us .shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -5%;
    right: -5%;
    animation-delay: 10s;
}

/* Particle Grid */
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 106, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 106, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    opacity: 0.5;
}

/* Container styling */
.why-us .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title at the top - Full width */
.why-us .content-grid .section-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

    .why-us .content-grid .section-title h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .why-us .content-grid .section-title p {
        font-size: 1.125rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }

/* Content Grid */
.why-us .content-grid {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* About Block - col-md-7 */
.why-us .about-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us .about-header {
    margin-bottom: 2.5rem;
}

.why-us .section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(201, 168, 106, 0.15));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-orange);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.why-us .about-header h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.why-us .about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    padding-right: 2rem;
}

/* Feature List */
.why-us .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.why-us .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .why-us .feature-item:hover {
        transform: translateX(8px);
        border-color: var(--primary-orange);
        background: rgba(255, 102, 0, 0.1);
        box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
    }

    .why-us .feature-item i {
        color: #fff;
        font-size: 1.2rem;
        margin-top: 0.125rem;
        flex-shrink: 0;
    }

    .why-us .feature-item span {
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.5;
    }

/* Image Showcase - col-md-5 */
.why-us .image-showcase {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us .main-image {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    /*height: 300px;*/
    flex: 1;
}

    .why-us .main-image img {
        /* width: 100%;
        height: 100%;*/
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .why-us .main-image:hover img {
        transform: scale(1.05);
    }

.why-us .overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    transform: translateY(10px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out 0.6s forwards;
}

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

.why-us .badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-us .overlay-badge i {
    font-size: 1.8rem;
    color: var(--primary-orange);
    animation: pulse 2s ease-in-out infinite;
}

.why-us .badge-text {
    display: flex;
    flex-direction: column;
}

    .why-us .badge-text strong {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .why-us .badge-text span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.75);
    }

/* Floating Card */
.why-us .floating-card {
    position: relative;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

    .why-us .floating-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

.why-us .card-content .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

    .why-us .card-content .rating i {
        color: var(--primary-orange);
        font-size: 1rem;
    }

.why-us .card-content p {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    padding-left: 0.5rem;
    border-left: 2px solid var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us .content-grid {
        padding: 3rem 2.5rem;
    }

    .why-us .about-content p {
        padding-right: 1rem;
    }

    .why-us .main-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .why-us.section {
        padding: 80px 0;
        min-height: auto;
    }

    .why-us .content-grid {
        padding: 3rem 2rem;
    }

        .why-us .content-grid .section-title {
            padding: 0;
            margin-bottom: 3rem;
        }

    .why-us .about-block {
        margin-bottom: 3rem;
    }

    .why-us .about-content p {
        padding-right: 0;
    }

    .why-us .feature-list {
        grid-template-columns: 1fr;
    }

    .why-us .image-showcase {
        gap: 1.5rem;
    }

    .why-us .main-image {
        height: 250px;
    }

    .why-us .floating-card {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .why-us .container {
        padding: 0 1rem;
    }

    .why-us .content-grid {
        padding: 2rem 1.5rem;
    }

        .why-us .content-grid .section-title h2 {
            font-size: 2rem;
        }

        .why-us .content-grid .section-title p {
            font-size: 1rem;
        }

    .why-us .about-header h3 {
        font-size: 1.75rem;
    }

    .why-us .about-content p {
        font-size: 1rem;
    }

    .why-us .feature-item {
        padding: 0.75rem 0.875rem;
    }

        .why-us .feature-item span {
            font-size: 0.95rem;
        }

    .why-us .main-image {
        height: 220px;
    }

    .why-us .overlay-badge {
        padding: 1rem;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .why-us .floating-card {
        padding: 1rem;
    }

        .why-us .floating-card img {
            height: 150px;
        }
}

@media (max-width: 576px) {
    .why-us .content-grid {
        padding: 1.5rem 1rem;
    }

        .why-us .content-grid .section-title {
            margin-bottom: 2rem;
        }

    .why-us .about-header {
        margin-bottom: 1.5rem;
    }

    .why-us .section-badge {
        padding: 0.4rem 1.25rem;
        font-size: 12px;
    }

    .why-us .feature-list {
        gap: 0.75rem;
    }

    .why-us .feature-item {
        padding: 0.625rem 0.75rem;
    }

        .why-us .feature-item i {
            font-size: 1.1rem;
        }

        .why-us .feature-item span {
            font-size: 0.9rem;
        }

    .why-us .main-image {
        height: 200px;
    }

    .why-us .badge-content {
        gap: 0.75rem;
    }

    .why-us .overlay-badge i {
        font-size: 1.5rem;
    }

    .why-us .badge-text strong {
        font-size: 0.9rem;
    }

    .why-us .badge-text span {
        font-size: 0.8rem;
    }
}

/* Why Us Section Updates */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-3px);
        border-color: var(--primary-orange);
        background: rgba(255, 102, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Stats Card */
.stats-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Testimonial Card */

.floating-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


    .floating-card:hover {
        transform: translateY(-3px);
        border-color: var(--primary-orange);
        background: rgba(255, 102, 0, 0.1);
    }

.testimonial-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyan-blue), var(--deep-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-orange);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .client-info strong {
        color: #fff;
        font-size: 0.95rem;
    }

    .client-info span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}
/*#endregion Why Us Section Style - Updated */

/*#region Call To Action 2 Section Style */
.call-to-action-2.section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
    overflow: hidden;
}

.call-to-action-2-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.call-to-action-2 .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.call-to-action-2 .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -50px;
    right: -100px;
    animation-delay: 0s;
}

.call-to-action-2 .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -50px;
    left: -80px;
    animation-delay: 10s;
}

.call-to-action-2 .container {
    position: relative;
    z-index: 2;
}

/* CTA Content */
.cta-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.call-to-action-2 .btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease;
    flex: 1;
}

    .call-to-action-2 .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        color: #fff;
    }

.call-to-action-2 .btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
    flex: 1;
}

    .call-to-action-2 .btn-outline:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
        color: #fff;
    }

/* Support Info */
.support-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .support-item i {
        font-size: 1.25rem;
        color: var(--primary-orange);
    }

    .support-item div {
        display: flex;
        flex-direction: column;
    }

    .support-item strong {
        font-size: 0.9rem;
        color: #fff;
        font-weight: 600;
    }

    .support-item span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 0.25rem;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .call-to-action-2.section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .call-to-action-2 .btn-primary,
    .call-to-action-2 .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content .lead {
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .support-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 0.75rem;
    }

    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
/*#endregion Call To Action 2 Section Style */

/*#region Cards Sections (Mission, Vision, Values) - FIXED RESPONSIVE */

/* Base Cards Section Styling */
.cards.section,
.cards-2.section,
.cards-3.section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
}

/* Animated Background */
.cards-background,
.cards-2-background,
.cards-3-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cards .shape,
.cards-2 .shape,
.cards-3 .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.cards .shape-1,
.cards-2 .shape-1,
.cards-3 .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.cards .shape-2,
.cards-2 .shape-2,
.cards-3 .shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -5%;
    right: -5%;
    animation-delay: 10s;
}

/* Container - Desktop (80% width) */
.cards .container,
.cards-2 .container,
.cards-3 .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Container - Tablet (Full width with padding) */
@media (max-width: 968px) {
    .cards .container,
    .cards-2 .container,
    .cards-3 .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }

    .cards.section,
    .cards-2.section,
    .cards-3.section {
        padding: 80px 0;
        min-height: auto;
    }
}

/* Container - Mobile (Full width with smaller padding) */
@media (max-width: 768px) {
    .cards .container,
    .cards-2 .container,
    .cards-3 .container {
        padding: 0 1rem;
    }
}

/* Mission, Vision, Values Cards - Updated Styles */
.mission-vision-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

    .mission-vision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 80px rgba(255, 102, 0, 0.2);
        border-color: var(--primary-orange);
    }

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(201, 168, 106, 0.15));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-orange);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

    .card-badge i {
        font-size: 1.1rem;
    }

/* Card Image */
.card-image {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.5s ease;
    }

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

.image-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

    .image-overlay i {
        color: var(--primary-orange);
    }

/* Card Info */
.card-info h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--cyan-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-info .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Mission Points */
.mission-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .mission-point:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateX(5px);
    }

    .mission-point i {
        font-size: 1.5rem;
        color: var(--primary-orange);
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

    .mission-point h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .mission-point p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
    }

/* Vision Pillars */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .pillar:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-5px);
    }

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.pillar-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pillar-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .value-card:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
    }

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-card-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease;
}

    .btn-card-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        color: #fff;
    }

.btn-card-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
}

    .btn-card-outline:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
        color: #fff;
    }

/* Responsive Design for Cards */
@media (max-width: 992px) {
    .vision-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mission-vision-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

        .mission-point i {
            margin: 0 auto;
        }

    .value-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .value-icon {
        margin: 0 auto;
    }

    .cta-section {
        flex-direction: column;
        width: 100%;
    }

    .btn-card-primary,
    .btn-card-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mission-vision-card {
        padding: 1.5rem;
    }

    .card-badge {
        font-size: 12px;
        padding: 0.5rem 1rem;
    }

    .card-info h3 {
        font-size: 1.5rem;
    }
}

.cards ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .cards ul li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
    }

        .cards ul li i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .cards ul li span {
            flex: 1;
        }
/*#endregion Cards Sections (Mission, Vision, Values) - FIXED RESPONSIVE */

/*#region Contact Section - FIXED RESPONSIVE */

.contact-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-purple) 100%);
    overflow: hidden;
}
    /* Container - Desktop (80% width) */
    .contact-hero .container {
        max-width: 80%;
        width: 80%;
        margin: 0 auto;
        padding: 0;
        position: relative;
        z-index: 1;
    }
/* Container - Tablet (Full width with padding) */
@media (max-width: 968px) {
    .contact-hero .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }

    .contact-hero {
        padding: 80px 0;
    }
}
/* Container - Mobile (Full width with smaller padding) */
@media (max-width: 768px) {
    .contact-hero .container {
        padding: 0 1rem;
    }
}

.contact-content-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
}
/* Contact Info Section */
.contact-hero .contact-info-section {
    height: 100%;
}

    .contact-hero .contact-info-section .info-header {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .info-header h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .contact-hero .contact-info-section .info-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(224, 230, 237, 0.9);
            margin-bottom: 0;
        }

    .contact-hero .contact-info-section .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-hero .contact-info-section .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

        .contact-hero .contact-info-section .info-item:hover {
            background: rgba(255, 102, 0, 0.1);
            border-color: var(--primary-orange);
            transform: translateY(-3px);
        }

            .contact-hero .contact-info-section .info-item:hover .info-icon {
                background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
                transform: scale(1.1);
            }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

            .contact-hero .contact-info-section .info-item .info-icon i {
                font-size: 24px;
                color: #fff;
                transition: all 0.3s ease;
            }

        .contact-hero .contact-info-section .info-item .info-content {
            flex: 1;
        }

            .contact-hero .contact-info-section .info-item .info-content h5 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 8px;
                color: var(--primary-orange);
                background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .contact-hero .contact-info-section .info-item .info-content p {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 0;
                color: rgba(224, 230, 237, 0.9);
            }
/* Contact Form Wrapper */
.contact-hero .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    height: 100%;
}

    .contact-hero .contact-form-wrapper .form-header {
        text-align: center;
        margin-bottom: 35px;
    }

        .contact-hero .contact-form-wrapper .form-header h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .contact-hero .contact-form-wrapper .form-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(224, 230, 237, 0.9);
            margin-bottom: 0;
        }
    /* Form Styling */
    .contact-hero .contact-form-wrapper .form-label {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .contact-hero .contact-form-wrapper .form-control {
        height: 50px;
        padding: 12px 18px;
        border-radius: 12px;
        border: 2px solid rgba(0, 102, 255, 0.3);
        color: #000;
        font-size: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        background: rgba(255, 255, 255, 0.9);
    }

        .contact-hero .contact-form-wrapper .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
            outline: none;
            color: #000;
        }

        .contact-hero .contact-form-wrapper .form-control::placeholder {
            color: #666;
        }

    .contact-hero .contact-form-wrapper .message-textarea {
        height: 120px;
        resize: vertical;
        font-family: inherit;
    }
    /* Submit Button */
    .contact-hero .contact-form-wrapper .submit-btn {
        width: 100%;
        padding: 18px 30px;
        background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    }

        .contact-hero .contact-form-wrapper .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        }

        .contact-hero .contact-form-wrapper .submit-btn span {
            position: relative;
            z-index: 1;
        }

        .contact-hero .contact-form-wrapper .submit-btn i {
            font-size: 18px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .contact-hero .contact-form-wrapper .submit-btn:hover i {
            transform: translateX(4px);
        }
/* Responsive adjustments */
@media (max-width: 1200px) {
    .contact-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero .contact-info-section {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .contact-info-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
}

@media (max-width: 768px) {
    .contact-content-wrapper {
        padding: 40px 30px;
    }

    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .contact-hero .hero-description {
        font-size: 1rem;
    }

    .contact-hero .contact-info-section .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero .contact-info-section .info-item {
        padding: 20px;
    }

        .contact-hero .contact-info-section .info-item:hover {
            transform: translateY(-5px);
        }

    .contact-hero .contact-form-wrapper {
        padding: 30px 25px;
    }

        .contact-hero .contact-form-wrapper .form-header h3 {
            font-size: 1.75rem;
        }
}

@media (max-width: 576px) {
    .contact-content-wrapper {
        padding: 30px 20px;
    }

    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-hero .contact-info-section .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 70px;
            height: 70px;
        }
}
/*#endregion Contact Section - FIXED RESPONSIVE */


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}
/*#region Footer */

.footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--dark-purple) 0%, #1a0f1a 100%);
    border-top: 1px solid var(--glass-border);
}
    /* Remove light-background class */
    .footer.light-background {
        background: none !important;
    }
/* Animated Background */
.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.footer .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
    animation: float 30s ease-in-out infinite;
}

.footer .shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: -30%;
    left: -10%;
    animation-delay: 0s;
}

.footer .shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-blue), transparent);
    bottom: -20%;
    right: -5%;
    animation-delay: 15s;
}
/* Particle Grid */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 106, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 106, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 40s linear infinite;
    opacity: 0.2;
}
/* Container styling */
.footer .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Footer Content Styling */
.footer .row.gy-3 {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.footer .col-lg-3 {
    padding: 1.5rem;
}

.footer .d-flex {
    align-items: flex-start;
    gap: 1.5rem;
}

.footer .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--soft-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .footer .icon:hover {
        transform: translateY(-5px) rotate(10deg);
        box-shadow: 0 15px 30px rgba(255, 102, 0, 0.5);
    }

.footer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-orange), var(--cyan-blue));
        border-radius: 2px;
    }

.footer p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.footer strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.footer span {
    color: rgba(255, 255, 255, 0.7);
}
/* Copyright Section */
.footer .copyright {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-top: 3rem !important;
}

    .footer .copyright p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    .footer .copyright strong.sitename {
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 0.25rem 0.75rem;
        border-radius: 8px;
        background-color: rgba(255, 102, 0, 0.1);
        border: 1px solid rgba(255, 102, 0, 0.2);
    }

    .footer .copyright span {
        color: rgba(255, 255, 255, 0.6);
    }
/* Hover Effects for Footer Items */
.footer .col-lg-3 {
    transition: all 0.3s ease;
}

    .footer .col-lg-3:hover {
        transform: translateY(-5px);
    }

        .footer .col-lg-3:hover .icon {
            transform: scale(1.1);
        }
/* Responsive Design */
@media (max-width: 1200px) {
    .footer .row.gy-3 {
        padding: 2.5rem;
    }

    .footer .col-lg-3 {
        padding: 1.25rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }

        .footer .row.gy-3 {
            padding: 2rem;
            gap: 2rem;
        }

        .footer .d-flex {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .footer .icon {
            width: 50px;
            height: 50px;
            font-size: 1.25rem;
        }
}

@media (max-width: 768px) {
    .footer .container {
        padding: 0 1rem;
    }

    .footer .row.gy-3 {
        padding: 1.5rem;
    }

    .footer .col-lg-3 {
        padding: 1rem;
    }

    .footer h4 {
        font-size: 1.1rem;
    }

    .footer p {
        font-size: 0.95rem;
    }

    .footer .copyright {
        padding: 1.5rem;
    }

        .footer .copyright p {
            font-size: 0.9rem;
        }
}

@media (max-width: 576px) {
    .footer .row.gy-3 {
        padding: 1.25rem;
    }

    .footer .col-lg-3 {
        padding: 0.75rem;
    }

    .footer .icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
/*#endregion Footer */

/*#region Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
/* Progress Circle SVG */
.scroll-top-progress {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 64px;
    height: 64px;
    transform: rotate(-90deg);
    pointer-events: none;
}

    .scroll-top-progress circle {
        fill: none;
        stroke-width: 3;
        stroke-dasharray: 188.5; /* 2 * π * 30 */
        stroke-dashoffset: 188.5;
        transition: stroke-dashoffset 0.3s ease;
    }

        .scroll-top-progress circle.bg {
            stroke: rgba(255, 255, 255, 0.1);
            stroke-dashoffset: 0;
        }

        .scroll-top-progress circle.progress {
            stroke: url(#progress-gradient);
        }
    /* Gradient definition for the progress ring */
    .scroll-top-progress defs linearGradient {
        stop:first-child {
            stop-color: var(--primary-orange);
        }

        stop:last-child {
            stop-color: var(--cyan-blue);
        }
    }
/* Icon styling */
.scroll-top i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}
/* Tooltip */
.scroll-top::before {
    content: 'Back to top';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-top:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Hover Effects */
.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
}

    .scroll-top:hover i {
        transform: translateY(-3px);
        color: #fff;
    }

    .scroll-top:hover::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary-orange), var(--cyan-blue));
        opacity: 0.2;
        border-radius: 50%;
        z-index: 1;
    }
/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.scroll-top.active {
    animation: pulse 2s infinite;
}
/* Responsive Design */
@media (max-width: 768px) {
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .scroll-top-progress {
        width: 54px;
        height: 54px;
    }

        .scroll-top-progress circle {
            stroke-dasharray: 157; /* Adjusted for smaller size */
        }
}

@media (max-width: 576px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }

    .scroll-top-progress {
        width: 49px;
        height: 49px;
    }

        .scroll-top-progress circle {
            stroke-dasharray: 141.3; /* Adjusted for smaller size */
        }
}
/*#endregion Scroll Top */

/*#region DESKTOP FOOTER FIXED RIGHT & MOBILE FOOTER FIXED BOTTOM*/
/* Floating Action Buttons with Hero Styling */
.floating-action-buttons {
    position: fixed;
    z-index: 9999;
}

.hero-floating-elements {
    pointer-events: none;
}

.floating-button-wrapper {
    pointer-events: auto;
    position: relative;
}
/* Desktop Floating Buttons */
.desktop-floating-buttons {
    bottom: 90px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}
/* Mobile Floating Buttons */
.mobile-floating-buttons {
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

    .mobile-floating-buttons .mobile-buttons-container {
        display: flex;
        gap: 15px;
        background: rgba(20, 24, 36, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 50px;
        padding: 15px 25px;
        border: 1px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
/* Floating Particles */
.floating-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

.desktop-floating-buttons .floating-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -30px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.desktop-floating-buttons .floating-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: -40px;
    right: -20px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.desktop-floating-buttons .floating-particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -10px;
    animation-delay: 10s;
    animation-duration: 15s;
}

.mobile-floating-buttons .floating-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: -30px;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.mobile-floating-buttons .floating-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.mobile-floating-buttons .floating-particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 30%;
    animation-delay: 7s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-5px, -25px) scale(0.9);
        opacity: 0.3;
    }

    75% {
        transform: translate(15px, -15px) scale(1.05);
        opacity: 0.5;
    }
}
/* Floating Button Base Styles */
.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.floating-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
/* Phone Button */
.floating-btn-phone {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

    .floating-btn-phone::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-phone:hover::before {
        left: 100%;
    }

    .floating-btn-phone:hover .floating-btn-glow {
        opacity: 1;
    }
/* Email Button */
.floating-btn-email {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

    .floating-btn-email::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-email:hover::before {
        left: 100%;
    }

    .floating-btn-email:hover .floating-btn-glow {
        opacity: 1;
    }

/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.floating-btn-phone:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.6);
}

.floating-btn-email:hover {
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
}

.floating-btn i {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.floating-btn:hover i {
    transform: scale(1.2);
}
/* Desktop Tooltips */
.desktop-floating-buttons .floating-btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(20, 24, 36, 0.95);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

    .desktop-floating-buttons .floating-btn-tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: rgba(20, 24, 36, 0.95);
        border-right: 1px solid rgba(0, 102, 255, 0.3);
        border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    }

.desktop-floating-buttons .floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}
/* Mobile Labels */
.mobile-floating-buttons .floating-btn-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-floating-buttons .floating-btn:hover .floating-btn-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}
/* Mobile specific button sizing */
.mobile-floating-buttons .floating-btn {
    width: 50px;
    height: 50px;
}

    .mobile-floating-buttons .floating-btn i {
        font-size: 20px;
    }
/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-floating-buttons {
        display: none;
    }

    .mobile-floating-buttons {
        display: flex;
    }

        .mobile-floating-buttons .mobile-buttons-container {
            padding: 12px 20px;
        }

        .mobile-floating-buttons .floating-btn {
            width: 45px;
            height: 45px;
        }

            .mobile-floating-buttons .floating-btn i {
                font-size: 18px;
            }

        .mobile-floating-buttons .floating-btn-label {
            font-size: 11px;
            bottom: -22px;
        }
}

@media (min-width: 769px) {
    .mobile-floating-buttons {
        display: none;
    }

    .desktop-floating-buttons {
        display: flex;
    }
}
/* Accessibility and touch improvements */
.floating-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}
/* Animation delays for staggered appearance */
.desktop-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 200ms !important;
}

.desktop-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 300ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 150ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 200ms !important;
}

.mobile-bar-fixed-bottom {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2d2d2d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* High z-index to stay above other content */
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}
/* Show only on mobile devices (screens smaller than 768px) */
@media (max-width: 767px) {
    .mobile-bar-fixed-bottom {
        display: flex !important;
    }

    .desktop-bar-fixed-right {
        display: none;
    }
}
/* Individual buttons */
.btn-phone-mobile-bar-fixed-bottom,
.btn-email-mobile-bar-fixed-bottom {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
}


    .btn-phone-mobile-bar-fixed-bottom:hover, .btn-email-mobile-bar-fixed-bottom:hover {
        background-color: var(--accent-color);
        transform: scale(1.1);
    }
    /* Icon styling */
    .btn-phone-mobile-bar-fixed-bottom i,
    .btn-email-mobile-bar-fixed-bottom i {
        font-size: 24px;
    }
/* Add padding to body to prevent content from being hidden behind the fixed footer */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Height of mobile bar + some spacing */
    }
}

@media (max-width: 767px) {
    .custom-chat-btn {
        bottom: 90px !important; /* Position above mobile footer */
    }

    .custom-chat-window {
        bottom: 90px !important; /* Position above mobile footer */
        height: calc(100vh - 170px) !important; /* Adjust height to fit above mobile footer */
    }
}
/*#endregion*/

/*#region General Container Styles - FIXED FOR RESPONSIVE */
/* Base container - 80% width for desktop */
.container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}
/* Tablet and small screens - Full width with padding */
@media (max-width: 968px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}
/* Mobile screens - Full width with smaller padding */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region About Section Container - FIXED */
.about .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .about .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .about .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region About-2 Section Container - FIXED */
.about-2 .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .about-2 .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-2 .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Tabs Section Container - FIXED */
.tabs .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .tabs .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .tabs .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Why Us Section Container - FIXED */
.why-us .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .why-us .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Call To Action 2 Section Container - FIXED */
.call-to-action-2 .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .call-to-action-2 .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .call-to-action-2 .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Footer Container - FIXED */
.footer .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .footer .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Contact Section Container - FIXED */
.contact-hero .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .contact-hero .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Mission/Vision/Values Cards Container */
.mission-vision-card .container,
.section .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .mission-vision-card .container,
    .section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-card .container,
    .section .container {
        padding: 0 1rem;
    }
}
/*#endregion*/
/*#region Hero Section - Additional Fix */
/* Ensure hero row has no extra padding on mobile */
@media (max-width: 968px) {
    .hero .container > .row {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .hero .container > .row {
        padding: 0;
    }
}
/*#endregion*/

/*#region UNIVERSAL CONTAINER FIX - CENTERED ON DESKTOP */

/* Base container - 80% width CENTERED for desktop */
.container,
.hero .container,
.about .container,
.about-2 .container,
.tabs .container,
.why-us .container,
.call-to-action-2 .container,
.cards .container,
.cards-2 .container,
.cards-3 .container,
.footer .container,
.contact-hero .container,
.mission-vision-card .container,
.section .container {
    max-width: 80%;
    width: 80%;
    margin: 0 auto; /* This centers the container */
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Tablet and small screens - Full width with padding */
@media (max-width: 968px) {
    .container,
    .hero .container,
    .about .container,
    .about-2 .container,
    .tabs .container,
    .why-us .container,
    .call-to-action-2 .container,
    .cards .container,
    .cards-2 .container,
    .cards-3 .container,
    .footer .container,
    .contact-hero .container,
    .mission-vision-card .container,
    .section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem;
    }
}

/* Mobile screens - Full width with smaller padding */
@media (max-width: 768px) {
    .container,
    .hero .container,
    .about .container,
    .about-2 .container,
    .tabs .container,
    .why-us .container,
    .call-to-action-2 .container,
    .cards .container,
    .cards-2 .container,
    .cards-3 .container,
    .footer .container,
    .contact-hero .container,
    .mission-vision-card .container,
    .section .container {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .container,
    .hero .container,
    .about .container,
    .about-2 .container,
    .tabs .container,
    .why-us .container,
    .call-to-action-2 .container,
    .cards .container,
    .cards-2 .container,
    .cards-3 .container,
    .footer .container,
    .contact-hero .container,
    .mission-vision-card .container,
    .section .container {
        padding: 0 1rem;
    }
}

/* Ensure hero row has no extra padding on mobile */
@media (max-width: 968px) {
    .hero .container > .row,
    .about .container > .row,
    .about-2 .container > .row {
        padding: 0;
        margin: 0;
    }
}

/*#endregion*/
