/* ===============================
   XPORTELLA OVERSEAS LLP - MAIN STYLES
   =============================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette inspired by logo */
    --primary-color: #2D1B69;          /* Deep purple from logo */
    --secondary-color: #009de2;        /* Blue from globe */
    --accent-color: #009de2;           /* Green from globe */
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-dark: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --container-max-width: 1200px;
    --header-height: 100px;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   HEADER STYLES
   =============================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

/* Top Bar */
.top-bar {
    background: #009DE2;
    color: var(--white);
    padding: 8px 45px;
    font-size: 14px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 12px;
    color: #362a69;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    text-decoration: none !important;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: #362a69;
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    padding: 15px 32px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #362a69;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #362a69;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: var(--font-weight-regular);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #009DE2;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* CTA Button */
.header-cta {
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #362a69;
    color: var(--white);
}

.btn-primary:hover {
    background: #009DE2;
    border-color: #009DE2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===============================
   MOBILE NAVIGATION
   =============================== */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.mobile-nav-menu a:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding-left: 25px;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.mobile-dropdown-menu {
    list-style: none;
    background: var(--light-gray);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu a {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

.mobile-nav-cta {
    padding: 20px;
    text-align: center;
}

/* ===============================
   MAIN CONTENT
   =============================== */

.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Hero section adjustment */
.hero-slider {
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 27, 105, 0.8) 0%,
        rgba(74, 144, 226, 0.6) 50%,
        rgba(124, 179, 66, 0.4) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.slide-text {
    max-width: 600px;
    color: var(--white);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide.active .slide-text {
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgb(255 255 255 / 30%);
    background: linear-gradient(249deg, var(--white), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slide-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: #009DE2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    width: 0%;
    transition: width 5s linear;
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-nav {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
        height: 70vh;
    }
    
    .slide-content {
        min-height: 400px;
        text-align: center;
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .slide-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}


@media (max-width: 575px) {
    .video-section {
    position: relative;
    width: 100%;
    height: 22vh;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}    
.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: revert-layer;
    z-index: -1;
}
.video-content {
    /* position: relative; */
    z-index: 1;
    padding: 20px;
}
    
    
}







@media (max-width: 480px) {
    
    

    
    
    
    
    
    .footer-section .footer-links ul li, .footer-section .footer-contact ul li {
    margin-bottom: 0.5rem;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.et_pb_text {
    margin-left: 0%;
    margin-top: 10%;
}
    .hero-slider {
        min-height: 450px;
        height: 60vh;
    }
    
    .slide-title {
        font-size: 1.25rem;
        
    padding: 75px 26px;

    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        width: 100%;
        max-width: 200px;
        margin:auto;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-indicators {
        bottom: -3rem;
        gap: 0.8rem;
        
    }
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-info span:last-child {
        display: none;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .main-content {
        margin-top: var(--header-height);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Your tablet styles go here */
   .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}





@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        font-size: 11px;
        padding: 5px 0;
    }
    
    .contact-info {
        gap: 10px;
        padding:10px;
    }
    
    .contact-info span {
        font-size: 10px;
    }
    
    .social-links {
        gap: 6px;
        padding:10px;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .mobile-nav-content {
        width: 280px;
    }
    
    .mobile-menu-toggle {
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* ===============================
   ANIMATIONS & EFFECTS
   =============================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header {
    animation: fadeInUp 0.6s ease-out;
}

.nav-menu li {
    animation: slideInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.nav-menu li:nth-child(6) { animation-delay: 0.6s; }

/* ===============================
   UTILITY CLASSES
   =============================== */

.text-primary { color: #009DE2; }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: #009DE2; }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-block { display: inline-block; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ===============================
   PRINT STYLES
   =============================== */

@media print {
    .header,
    .mobile-nav {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
}

/* ===============================
   PRODUCTS SECTION
   =============================== */

.products-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.products-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.products-section .text-center {
    text-align: center;
}

/*.products-section h2 {*/
/*    font-size: 2.25rem;*/
/*    font-weight: var(--font-weight-bold);*/
/*    color: #009DE2;*/
/*    margin-bottom: 1.5rem;*/
/*    animation: slideInUp 0.6s ease-out;*/
/*}*/

.products-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 672px;
    margin: 0 auto 1rem;
    animation: slideInUp 0.6s ease-out;
}

.products-section .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.products-section .btn-product {
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.products-section .btn-product::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;
    z-index: -1;
}

.products-section .btn-product:hover::before {
    left: 100%;
}

.products-section .btn-primary {
    background: #362a69;
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.products-section .btn-primary:hover {
    background: #009DE2;
    border-color: #009DE2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.products-section .btn-secondary {
    background: transparent;
    color: #009DE2;
    border: 2px solid #009DE2;
}

.products-section .btn-secondary:hover {
    background: #009DE2;
    color: var(--white);
    border-color: #009DE2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Carousel Styles */
.products-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: calc(250px * 8); /* 4 images + 4 duplicates */
    animation: slideCarousel 20s linear infinite;
}

.carousel-item {
    flex: 0 0 250px;
    height: 400px;
    padding: 0 10px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}

.carousel-image:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-dark);
    filter: brightness(1.1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-overlay.left-0 {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.carousel-overlay.right-0 {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Carousel Animation */
@keyframes slideCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4)); /* Move by 4 images width */
    }
}

/* Responsive Design for Products Section */
@media (min-width: 768px) {
    .products-section h2 {
        font-size: 2.5rem;
    }

    .products-section p {
        font-size: 1.25rem;
    }

    .products-section .btn-product {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .carousel-item {
        flex: 0 0 300px;
        height: 450px;
    }

    .carousel-track {
        width: calc(300px * 8);
    }

    @keyframes slideCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 4));
        }
    }
}

@media (max-width: 768px) {
    .products-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .products-section h2 {
        font-size: 1.875rem;
    }

    .products-section p {
        font-size: 1rem;
    }

    .products-section .flex {
        flex-direction: column;
        gap: 0.8rem;
    }

    .products-section .btn-product {
        padding: 12px 24px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .products-carousel {
        height: 300px;
    }

    .carousel-item {
        flex: 0 0 200px;
        height: 300px;
    }

    .carousel-track {
        width: calc(200px * 8);
    }

    @keyframes slideCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 4));
        }
    }
}

@media (max-width: 480px) {
    .products-section h2 {
        font-size: 1.5rem;
    }

    .products-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .products-carousel {
        height: 250px;
    }

    .carousel-item {
        flex: 0 0 180px;
        height: 250px;
    }

    .carousel-track {
        width: calc(180px * 8);
    }

    @keyframes slideCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 4));
        }

    }
}

/* ===============================
   STRATEGIC DIFFERENTIATOR SECTION
   =============================== */

.strategic-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--white);
    position: relative;
}

.strategic-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.strategic-section .text-center {
    text-align: center;
}


.strategic-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 768px;
    margin: 0 auto 1rem;
    animation: slideInUp 0.6s ease-out;
}

.strategic-section .differentiator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.strategic-section .differentiator-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.strategic-section .differentiator-card:hover {
    box-shadow: var(--shadow-dark);
    transform: translateY(-8px);
}

.strategic-section .differentiator-card .flex {
    display: flex;
    align-items: center;
}

.strategic-section .differentiator-card h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: #009DE2;
}

.strategic-section .differentiator-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.strategic-section .differentiator-card ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.strategic-section .differentiator-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.strategic-section .differentiator-card ul li i {
    font-size: 1rem;
    color: #362a68;
}

.strategic-section .differentiator-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.strategic-section .differentiator-card th,
.strategic-section .differentiator-card td {
    padding: 0.5rem 1rem;
    text-align: left;
}

.strategic-section .differentiator-card th {
    background: #009DE2;
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.strategic-section .differentiator-card td {
    border-bottom: 1px solid var(--border-color);
    padding:6px;
}

.strategic-section .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009DE2 0%, var(--secondary-color) 80%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    padding: 1.5rem;
    text-align: center;
}

.strategic-section .differentiator-card:hover .card-overlay {
    opacity: 1;
    transform: scale(1);
}

.strategic-section .card-overlay p {
    font-size: 1.05rem;
    font-weight: var(--font-weight-medium);
    color: var(--white);
}

.strategic-section .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #362a68;
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.strategic-section .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;
    z-index: 0;
}

.strategic-section .btn-primary:hover::before {
    left: 100%;
}

.strategic-section .btn-primary:hover {
    background: #009DE2;
    border-color: #009DE2;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for Strategic Differentiator Section */
@media (min-width: 768px) {
    .strategic-section .differentiator-grid {
        grid-template-columns: repeat(2, 1fr);
    }

 
    .strategic-section p {
        font-size: 1rem;
    }

    .strategic-section .differentiator-card h3 {
        font-size: 1.5rem;
    }

    .strategic-section .differentiator-card p,
    .strategic-section .differentiator-card ul,
    .strategic-section .differentiator-card table {
        font-size: 1.1rem;
    }

    .strategic-section .card-overlay p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .strategic-section .differentiator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .strategic-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .strategic-section h2 {
        font-size: 2.25rem;
    }

    .strategic-section p {
        font-size: 1.125rem;
    }

    .strategic-section .differentiator-card {
        padding: 1.5rem;
    }

    .strategic-section .differentiator-card h3 {
        font-size: 1.5rem;
    }

    .strategic-section .differentiator-card p,
    .strategic-section .differentiator-card ul,
    .strategic-section .differentiator-card table {
        font-size: 0.95rem;
    }

    .strategic-section .card-overlay p {
        font-size: 0.95rem;
    }

    .strategic-section .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .strategic-section h2 {
        font-size: 1.875rem;
    }
    
    .video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: inherit;
    z-index: -1;
}

    .strategic-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .strategic-section .differentiator-card {
        padding: 1.25rem;
    }

    .strategic-section .differentiator-card h3 {
        font-size: 1.25rem;
    }

    .strategic-section .differentiator-card p,
    .strategic-section .differentiator-card ul,
    .strategic-section .differentiator-card table {
        font-size: 0.9rem;
    }

    .strategic-section .card-overlay p {
        font-size: 0.85rem;
    }

    .strategic-section .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ===============================
   LICENSES & CERTIFICATIONS SECTION
   =============================== */

.licenses-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--light-gray);
    position: relative;
}

.licenses-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.licenses-section .text-center {
    text-align: center;
}

.licenses-section .licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.licenses-section .license-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.licenses-section .license-logo:hover {
    box-shadow: var(--shadow-dark);
    transform: translateY(-8px) scale(1.05);
}

.licenses-section .license-logo img {
    width: 100%;
    height: 6rem;
    object-fit: contain;
    transition: all 0.4s ease;
}

.licenses-section .license-logo:hover img {
    filter: brightness(1.1);
}

.licenses-section .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.licenses-section .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;
    z-index: 0;
}

.licenses-section .btn-primary:hover::before {
    left: 100%;
}

.licenses-section .btn-primary:hover {
    background: #009DE2;
    border-color: #009DE2;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for Licenses & Certifications Section */
@media (min-width: 768px) {
    .licenses-section .licenses-grid {
        grid-template-columns: repeat(4, 1fr);
    }


    .licenses-section .license-logo {
        padding: 2rem;
    }

    .licenses-section .license-logo img {
        height: 7rem;
    }

    .licenses-section .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .licenses-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .licenses-section h2 {
        font-size: 2.25rem;
    }

    .licenses-section .license-logo {
        padding: 1.25rem;
    }

    .licenses-section .license-logo img {
        height: 5rem;
    }

    .licenses-section .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .licenses-section h2 {
        font-size: 1.875rem;
    }

    .licenses-section .license-logo {
        padding: 1rem;
    }

    .licenses-section .license-logo img {
        height: 4rem;
    }

    .licenses-section .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ===============================
   TESTIMONIALS SECTION
   =============================== */

.testimonials-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--light-gray);
    position: relative;
}

.testimonials-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section .text-center {
    text-align: center;
}


.testimonials-section .testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonials-section .testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.testimonials-section .testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.4s ease;
}

.testimonials-section .testimonial-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
}

.testimonials-section .testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonials-section .testimonial-content .flex {
    display: flex;
    align-items: center;
}

.testimonials-section .testimonial-content .rounded-full {
    width: 3rem;
    height: 3rem;
    background: #009DE2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
}

/* Speech Bubble Styling */
.testimonials-section .speech-bubble-left::before,
.testimonials-section .speech-bubble-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.testimonials-section .speech-bubble-left::before {
    border-right-color: var(--white);
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-section .speech-bubble-right::before {
    border-left-color: var(--white);
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-section .testimonial-image div {
    width: 100%;
    height: 12rem;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.testimonials-section .testimonial-item:hover .testimonial-image div {
    transform: rotate(0) scale(1.05);
}

.testimonials-section .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonials-section .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;
    z-index: 0;
}

.testimonials-section .btn-primary:hover::before {
    left: 100%;
}

.testimonials-section .btn-primary:hover {
    background: #009DE2;
    border-color: #009DE2;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for Testimonials Section */
@media (min-width: 768px) {
    .testimonials-section .testimonial-item {
        flex-direction: row;
    }

    .testimonials-section .testimonial-item:nth-child(even) {
        flex-direction: row-reverse;
    }

   

    .testimonials-section .testimonial-content {
        padding: 2.5rem;
    }

    .testimonials-section .testimonial-content p {
        font-size: 1.1rem;
    }

    .testimonials-section .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .testimonials-section h2 {
        font-size: 2.25rem;
    }

    .testimonials-section .testimonial-content {
        padding: 1.5rem;
    }

    .testimonials-section .testimonial-content p {
        font-size: 0.95rem;
    }

    .testimonials-section .speech-bubble-left::before,
    .testimonials-section .speech-bubble-right::before {
        display: none;
    }

    .testimonials-section .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section h2 {
        font-size: 1.875rem;
    }

    .testimonials-section .testimonial-content {
        padding: 1.25rem;
    }

    .testimonials-section .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonials-section .testimonial-content .rounded-full {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .testimonials-section .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
/* ===============================
   FOOTER SECTION
   =============================== */

.footer-section {
    background-color: #009DE2;
    color: var(--white);
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
}

.footer-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section .footer-logo img {
    width: 10rem;
    height: auto;
    object-fit: contain;
}

.footer-section .footer-logo p {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    max-width: 20rem;
}

.footer-section .footer-links,
.footer-section .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section .footer-links h3,
.footer-section .footer-contact h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section .footer-links ul,
.footer-section .footer-contact ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-section .footer-links ul li,
.footer-section .footer-contact ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-section .footer-links ul li a,
.footer-section .footer-contact ul li a,
.footer-section .footer-contact ul li span {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-links ul li a:hover,
.footer-section .footer-contact ul li a:hover {
    color:#362a69;
}

.footer-section .footer-contact ul li i {
    font-size: 1rem;
    color: #ffff;
    width: 1.5rem;
}

.footer-section .footer-contact ul li i.invisible {
    visibility: hidden;
}

.footer-section .footer-contact .space-x-4 {
    display: flex;
    gap: 1rem;
}

.footer-section .footer-contact .space-x-4 a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-section .footer-contact .space-x-4 a:hover {
    color: #362a69;
}

.footer-section .border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.footer-section .border-t p {
    font-size: 0.95rem;
    color: var(--white);
}

/* Responsive Design for Footer Section */
@media (min-width: 768px) {
    .footer-section .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-section .footer-logo,
    .footer-section .footer-links,
    .footer-section .footer-contact {
        align-items: flex-start;
        text-align: left;
    }

    .footer-section .footer-logo img {
        width: 12rem;
    }

    .footer-section .footer-logo p {
        font-size: 1.25rem;
        padding-top: 33px;
    }


    .footer-section .footer-links h3,
    .footer-section .footer-contact h3 {
        font-size: 1.5rem;
    }

    .footer-section .footer-links ul,
    .footer-section .footer-contact ul {
        text-align: left;
    }

    .footer-section .footer-links ul li a,
    .footer-section .footer-contact ul li,
    .footer-section .footer-contact ul li a,
    .footer-section .footer-contact ul li span {
        font-size: 1.05rem;
    }

    .footer-section .footer-contact .space-x-4 a {
        font-size: 1.25rem;
    }

    .footer-section .border-t p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section .footer-logo img {
        width: 8rem;
    }

    .footer-section .footer-logo p {
        font-size: 1rem;
    }

    .footer-section .footer-links h3,
    .footer-section .footer-contact h3 {
        font-size: 1.125rem;
    }

    .footer-section .footer-links ul li a,
    .footer-section .footer-contact ul li,
    .footer-section .footer-contact ul li a,
    .footer-section .footer-contact ul li span {
        font-size: 0.95rem;
    }

    .footer-section .footer-contact .space-x-4 a {
        font-size: 1.1rem;
    }

    .footer-section .border-t p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-section .footer-logo img {
        width: 7rem;
    }

    .footer-section .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-section .footer-links h3,
    .footer-section .footer-contact h3 {
        font-size: 1rem;
    }

    .footer-section .footer-links ul li a,
    .footer-section .footer-contact ul li,
    .footer-section .footer-contact ul li a,
    .footer-section .footer-contact ul li span {
        font-size: 0.85rem;
    }

    .footer-section .footer-contact .space-x-4 a {
        font-size: 1rem;
    }

    .footer-section .border-t p {
        font-size: 0.85rem;
    }
}



/* ===============================
   ABOUT US PAGE
   =============================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


h2.text-4xl.font-bold.text-primary-color.mb-6.animate-slideInUp {
    text-align: center;
    margin-bottom: 30px;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}
h2.text-4xl.font-bold.text-primary-color.mb-6.animate-slideInUp {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.25rem;
    font-weight: 700;
    color:#362a69;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn.btn-accent {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn.btn-accent:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn.btn-accent::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 ease;
}

.btn.btn-accent:hover::before {
    left: 100%;
}

/* Director Section */
.director-section {
    padding: 4rem 0;
    background: var(--white);
}

.director-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.director-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.director-image img:hover {
    transform: scale(1.05);
}

.director-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Journey Section */
.journey-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #009DE2, var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #ffff;
    border: 3px solid #009DE2;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-item::before {
    right: -8px;
}

.timeline-right::before {
    left: -8px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #009DE2;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
}

/* Kickoff Section */
.kickoff-section {
    padding: 4rem 0;
    background: var(--white);
}

.kickoff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.kickoff-content p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #362a69;
}

.stat-item p {
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #362a69;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.2);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #009DE2;
}

.value-card p {
    font-size: 1rem;
}

/* Intent & Horizon Section */
.intent-horizon-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.intent-horizon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.intent-content p,
.horizon-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-ali
gn: center;
    background: linear-gradient(135deg, #009DE2, var(--secondary-color));
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .director-grid,
    .kickoff-grid,
    .intent-horizon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-section h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .director-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::before {
        left: 12px;
    }

    .timeline-right::before {
        left: 12px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .director-content p,
    .kickoff-content p,
    .intent-content p,
    .horizon-content p {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-item h3,
    .value-card h3 {
        font-size: 1.25rem;
    }

    .cta-section h3 {
        font-size: 1.25rem;
    }

    .btn.btn-accent {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}


/*products page*/
/* ===============================
   PRODUCTS PAGE
   =============================== */

.products-page {
    background-color: var(--white);
    overflow-x: hidden;
}

.hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 500px;
}

.hero-section .bg-gradient-to-b {
        position: absolute;
    inset: 0;
    z-index: 1;
    background: #0000008a;
}

.hero-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.8;
}

.products-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--white);
}

.products-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}


.products-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.products-section .product-card {
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
}

.products-section .product-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 8px;
}

.products-section .product-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: #009DE2;
}

.products-section .product-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom right, #009DE2, var(--secondary-color));
    color: var(--white);
}

.cta-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
}

.cta-section .btn-accent {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: #362a69;
    color: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.cta-section .btn-accent:hover::before {
    left: 100%;
}

.cta-section .btn-accent:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

/* Responsive Design for Products Page */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }

    .hero-section p {
        font-size: 1.25rem;
    }

    .products-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h3 {
        font-size: 2.5rem;
    }

    .cta-section .btn-accent {
        padding: 1.5rem 3rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .products-section .grid {
        grid-template-columns: 1fr;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .cta-section .btn-accent {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .products-section h2 {
        font-size: 1.75rem;
    }

    .products-section .product-card h3 {
        font-size: 1.25rem;
    }

    .products-section .product-card p {
        font-size: 0.9rem;
    }

    .cta-section h3 {
        font-size: 1.25rem;
    }

    .cta-section .btn-accent {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
/*products page*/



/* ===============================
   GALLERY PAGE
   =============================== */

.gallery-page {
    background-color: var(--white);
}

.gallery-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--white);
}

.gallery-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-section h1 {
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: #009DE2;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-section .gallery-grid a {
    display: block;
    text-decoration: none;
}

.gallery-section .gallery-grid img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-medium);
    transition: box-shadow 0.2s ease;
}

.gallery-section .gallery-grid a:hover img {
    box-shadow: var(--shadow-large);
}

/* Responsive Design for Gallery Page */
@media (min-width: 640px) {
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-section h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .gallery-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .gallery-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-section h1 {
        font-size: 1.5rem;
    }

    .gallery-section .gallery-grid img {
        height: 10rem;
    }
}

/* Custom Color Variables */
:root {
    --x-contact-light: #f8fafc;
    --x-contact-white: #ffffff;
    --x-contact-dark: #1e293b;
    --x-contact-gray: #64748b;
    --x-contact-accent: #3b82f6;
    --x-contact-secondary: #2563eb;
    --x-contact-border: #e2e8f0;
    --x-contact-lightest: #f1f5f9;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--x-contact-dark);
    background-color: var(--x-contact-light);
}

/* Container */
.x-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Banner */
.x-contact-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3c6d 0%, var(--x-contact-secondary) 100%);
    color: var(--x-contact-white);
    padding: 4rem 0;
    text-align: center;
}

.x-contact-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    animation: fadeInDown 0.8s ease-out;
}

.x-contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Info Section */
.x-contact-info {
    padding: 3rem 0;
    background-color: var(--x-contact-white);
}

.x-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.x-contact-card {
    padding: 1.5rem;
    background-color: var(--x-contact-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.x-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.x-contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.x-contact-text {
    font-size: 0.875rem;
    color: var(--x-contact-gray);
}

/* Contact Form and Map Section */
.x-contact-form {
    padding: 3rem 0;
    background-color: var(--x-contact-light);
}

.x-contact-form-map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.x-contact-form-card {
    flex: 1 1 50%;
    background-color: var(--x-contact-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.x-contact-form-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.x-contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.x-contact-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--x-contact-dark);
    margin-bottom: 0.25rem;
    display: block;
}

.x-contact-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--x-contact-border);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.x-contact-input:focus {
    outline: none;
    border-color: var(--x-contact-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.x-contact-checkbox {
    height: 1rem;
    width: 1rem;
    accent-color: var(--x-contact-accent);
    margin-right: 0.5rem;
}

.x-contact-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #009de2;
    color: var(--x-contact-white);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.x-contact-submit:hover {
    background-color: var(--x-contact-secondary);
}

/* Map Section */
.x-contact-map-frame {
    flex: 1 1 50%;
    max-width: 600px;
    height: 24rem;
    border-radius: 0.75rem;
    overflow:plan: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
interact: hidden;
        opacity: 0;
        transform: flex-wrap: wrap;
        gap: 2rem;
    }

    .x-contact-form-map-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .x-contact-form-card {
        flex: 1 1 50%;
        max-width: 600px;
        background-color: var(--x-contact-white);
        padding: 2rem;
        border-radius: 0.75rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .x-contact-map-frame {
        flex: 1 1 50%;
        max-width: 600px;
        height: 24rem;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    	/* Testimonial Slider Styles */
	.testimonial-slider {
		position: relative;
		padding: 2rem;
		background-color: #fff;
		text-align: center;
	}

	.testimonial-slide {
		display: none;
		max-width: 600px;
		margin: 0 auto;
		padding: 1rem;
		border: 1px solid #ddd;
		border-radius: 0.5rem;
		background-color: #f9f9f9;
	}

	.testimonial-slide p {
		font-style: italic;
		margin-bottom: 1rem;
	}

	.testimonial-slide .author {
		font-weight: bold;
	}

	.testimonial-slider .dot-container.testimonial-dots {
		position: relative;
		margin-top: 1rem;
		display: flex;
		justify-content: center;
		gap: 0.5rem;
	}

	.testimonial-slider .dot {
		cursor: pointer;
		height: 1rem;
		width: 1rem;
		background-color: rgba(211, 211, 211, 0.226);
		border-radius: 50%;
		display: inline-block;
		transition: ease 0.3s;
	}

	.testimonial-slider .dot.active,
	.testimonial-slider .dot:hover {
		background-color: #362a68;
	}