/* Import Color Variables */
@import url('/assets/css/colors.css');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-hidden {
    transform: translateY(-100%);
}

#navbar {
    will-change: transform;
    transition: transform 0.3s ease-in-out;
}

.navbar-hidden {
    transform: translateY(-100%);
}

#navbar {
    will-change: transform;
}

/* Mobile Menu Styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 500px;
}

/* Services Dropdown Styles */
#services-dropdown {
    position: relative;
}

#services-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

#services-menu.opacity-100 {
    transform: translateY(0);
}

#services-chevron {
    transition: transform 0.3s ease;
}

/* Mobile Services Dropdown */
.mobile-services-dropdown {
    position: relative;
}

.mobile-services-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    display: block !important;
}

#mobile-services-icon {
    transition: transform 0.3s ease-in-out;
}

/* Smooth Scroll - Enhanced for whole website */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header (80px + 20px spacing) */
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Focus Styles */
a:focus,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

button.faq-question:focus {
    outline: none;
    box-shadow: none;
}

#services-btn:focus,
#services-btn:focus-visible,
#mobile-services-btn:focus,
#mobile-services-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Transition Utilities */
.transition-smooth {
    transition: all 0.3s ease-in-out;
}

/* Text Selection Styles */
::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

::-moz-selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

/* Selection for specific elements */
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
h6::-moz-selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

/* Selection for links */
a::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

a::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border: 3px solid var(--color-secondary);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
    transition: color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
        border-width: 2px;
    }
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transform: translateX(-100%);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover {
    color: var(--color-primary-dark);
}

/* White Border Button Variant */
.btn-white {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-white::before {
    background-color: white;
}

.btn-white:hover {
    color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Outline Button Variant */
.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline::before {
    background-color: var(--color-primary);
}

.btn-outline:hover {
    color: white;
}

/* FAQ Section Styles - Accordion Component */
.faq-section {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary, #2262A2);
    width: 100%;
}

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

.faq-drawer {
    margin-bottom: 0;
    width: 100%;
}

.faq-drawer__content-wrapper {
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
}

.faq-drawer__content {
    padding: 20px 0 30px 0;
}

.faq-drawer__content p {
    color: var(--color-gray-600, #4b5563);
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

.faq-drawer__title {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 40px 18px 0;
    position: relative;
    margin-bottom: 0;
    transition: all 0.25s ease-out;
    color: var(--color-primary, #2262A2);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.faq-drawer__title::after {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: " ";
    display: inline-block;
    flex-shrink: 0;
    height: 10px;
    width: 10px;
    margin-top: 6px;
    transform: rotate(135deg);
    transition: 0.35s ease-in-out;
    border-color: var(--color-primary, #2262A2);
}

.faq-drawer__title:hover {
    color: var(--color-secondary, #20B2AA);
}

.faq-drawer__title:hover::after {
    border-color: var(--color-secondary, #20B2AA);
}

.faq-drawer__trigger:checked + .faq-drawer__title + .faq-drawer__content-wrapper {
    max-height: 1000px;
}

.faq-drawer__trigger:checked + .faq-drawer__title {
    color: var(--color-secondary, #20B2AA);
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
    transform: rotate(-45deg);
    transition: 0.25s ease-in-out;
    border-color: var(--color-secondary, #20B2AA);
}

input[type="checkbox"].faq-drawer__trigger {
    display: none;
}

@media only screen and (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .faq-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .faq-drawer__title {
        font-size: 0.95rem;
        padding: 20px 35px 18px 0;
        line-height: 1.4;
        gap: 0.75rem;
    }
    
    .faq-drawer__title::after {
        height: 8px;
        width: 8px;
        margin-top: 4px;
    }
    
    .faq-drawer__content {
        padding: 12px 0 18px 0;
    }
    
    .faq-drawer__content-wrapper {
        font-size: 0.9rem;
    }
    
    .faq-drawer__content p {
        line-height: 1.6;
    }
}

@media only screen and (max-width: 480px) {
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .faq-container {
        padding: 0 0.75rem;
    }
    
    .faq-drawer__title {
        font-size: 0.9rem;
        padding: 18px 30px 0 0;
        gap: 0.5rem;
    }
    
    .faq-drawer__title::after {
        height: 7px;
        width: 7px;
        margin-top: 3px;
    }
    
    .faq-drawer__content {
        padding: 10px 0 15px 0;
    }
    
    .faq-drawer__content-wrapper {
        font-size: 0.85rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background: transparent;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.hero-slide img {
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.hero-slide.opacity-100 img {
    transform: scale(1);
}

.hero-slide.opacity-0 img {
    transform: scale(1.05);
}

.hero-slide.opacity-100 {
    transform: scale(1);
    z-index: 1;
}

.hero-slide.opacity-100 .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.opacity-100 .slide-title {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.hero-slide.opacity-100 .slide-description {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.hero-slide.opacity-100 .slide-buttons {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

/* Enhanced text visibility for slider */
.slide-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.slide-description {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-slide.opacity-0 {
    transform: scale(1.05);
    z-index: 0;
}

.hero-slide.opacity-0 .slide-content {
    opacity: 0;
}

.hero-slide.opacity-0 .slide-title,
.hero-slide.opacity-0 .slide-description,
.hero-slide.opacity-0 .slide-buttons {
    animation: none;
    opacity: 0;
    transform: translateY(30px);
}

.slide-content {
    transition: opacity 0.3s ease-out;
}

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

/* Removed blue gradient backgrounds - using image elements instead */
.hero-slide[data-slide="0"],
.hero-slide[data-slide="1"],
.hero-slide[data-slide="2"] {
    background: transparent;
}

/* Slider Dots */
.slider-dot {
    position: relative;
    overflow: hidden;
}

.slider-dot-fill {
    transition: width 0.3s ease;
}

.slider-dot.active .slider-dot-fill {
    width: 100% !important;
}

.slider-dot:not(.active) .slider-dot-fill {
    width: 0% !important;
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Slider Navigation Buttons */
.slider-prev,
.slider-next {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.25) !important;
}

.slider-prev:active,
.slider-next:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev:focus,
.slider-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 640px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-content {
        padding: 1rem 0;
    }
    
    .slide-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .slide-buttons {
        gap: 0.75rem;
    }
    
    .slide-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .slider-prev,
    .slider-next {
        padding: 0.625rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-prev i,
    .slider-next i {
        font-size: 0.875rem;
    }
    
    .slider-dot {
        width: 32px;
        height: 3px;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .hero-slider {
        min-height: 550px;
    }
    
    .slide-title {
        font-size: 2.25rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-buttons .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

/* Stats Counter Styles */
.stats-section {
    position: relative;
}

.stats-item {
    transition: transform 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* About Section Styles */
.about-numbers-card {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-numbers-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-numbers-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-stat-item {
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(54, 45, 134, 0.1);
    transition: transform 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
}

.about-stat-item:last-child {
    border-bottom: none;
}

.about-image-wrapper {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid var(--color-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    opacity: 0.3;
    transition: all 0.4s ease;
    z-index: -1;
}

.about-image-wrapper:hover::before {
    opacity: 0.5;
    transform: scale(1.1);
}

.about-image-wrapper img {
    transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
    .about-numbers-card {
        padding: 2rem;
    }
    
    .about-numbers-card .text-6xl {
        font-size: 3rem;
    }
    
    .about-stat-item {
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .about-image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-image-wrapper {
        border-width: 3px;
    }
    
    .about-image-wrapper::before {
        inset: -6px;
        border-width: 2px;
    }
}

@media (max-width: 640px) {
    .about-image-container {
        max-width: 240px;
    }
    
    .about-image-wrapper {
        border-width: 2px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
    
    .about-image-wrapper::before {
        inset: -4px;
        border-width: 1px;
    }
}

@media (max-width: 640px) {
    .about-numbers-card {
        padding: 1.5rem;
    }
    
    .about-numbers-card .text-6xl {
        font-size: 2.5rem;
    }
    
    .about-stat-item {
        text-align: center;
    }
    
    .about-image-container {
        max-width: 240px;
    }
    
    .about-image-wrapper {
        border-width: 2px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
    
    .about-image-wrapper::before {
        inset: -4px;
        border-width: 1px;
    }
}

/* Footer Styles */
.footer-section {
    position: relative;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(34, 98, 162, 0.95) 0%, rgba(20, 60, 100, 0.98) 50%, rgba(15, 45, 75, 1) 100%);
    backdrop-filter: blur(10px);
}

.footer-social-link {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-link {
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    padding-left: 8px;
}

@media (max-width: 768px) {
    .footer-section {
        margin-top: 0;
    }
}

/* Services Carousel Styles - Matching provided code */
section .header {
    margin-bottom: 55px;
}

section .header h1 {
    font-weight: 800;
    font-size: 3rem;
    margin: 5px -5px 15px;
}

section .header span {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
}

section .header p {
    max-width: min(40ch, 100% - 2rem);
    line-height: 1.6;
    color: #565656;
}

.item {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px 25px;
    color: #fff;
    background: rgb(2, 0, 36);
    background: linear-gradient(
        0deg,
        #020024 0%,
        #000032a1 3%,
        #17d9ff00 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    align-items: flex-start;
}

.item .overlay span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 60px;
    padding: 10px 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.item .overlay > div {
    width: 100%;
    margin-top: auto;
}

.item .overlay > div h2 {
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.service-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hide Owl Carousel Dots */
.owl-dots {
    display: none !important;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    gap: 12px;
}

.owl-nav button {
    background: #fff !important;
    width: 50px;
    height: 50px;
    font-size: 18px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--color-primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0;
    border: 2px solid rgba(54, 45, 134, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.owl-nav button:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 45, 134, 0.3);
    border-color: var(--color-primary) !important;
}

.owl-nav button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(54, 45, 134, 0.2);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: relative;
}

.owl-nav button span {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    section .header {
        margin-bottom: 70px !important;
    }
    
    section .header h1 {
        font-size: 2rem !important;
        margin: 5px 0 15px !important;
    }
    
    section .header p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .item {
        height: 320px;
    }
    
    .item .overlay {
        padding: 20px 18px;
    }
    
    .item .overlay span {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .item .overlay > div h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-btn {
        padding: 8px 20px;
        font-size: 0.8125rem;
    }
    
    .owl-nav {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .owl-nav button {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    
    .owl-nav button span {
        font-size: 16px !important;
    }
}

@media (max-width: 600px) {
    .owl-nav {
        top: 0 !important;
    }
}

/* Testimonials Carousel Styles */
.testimonials-carousel .item {
    height: 100%;
    padding: 2px;
    display: flex;
}

.testimonials-carousel .item > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-carousel .item > div > p {
    flex-grow: 1;
}

.testimonials-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    gap: 12px;
}

.testimonials-carousel .owl-nav button {
    background: #fff !important;
    width: 50px;
    height: 50px;
    font-size: 18px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--color-primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0;
    border: 2px solid rgba(54, 45, 134, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 45, 134, 0.3);
    border-color: var(--color-primary) !important;
}

.testimonials-carousel .owl-nav button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(54, 45, 134, 0.2);
}

.testimonials-carousel .owl-nav button span {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .testimonials-carousel .owl-nav {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .testimonials-carousel .owl-nav button {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
    }
    
    .testimonials-carousel .owl-nav button span {
        font-size: 16px !important;
    }
}

/* Partners Slider Section */
.partners-slider-container {
    overflow: hidden;
    width: 100%;
}

.partners-slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    display: flex;
}

.partners-logos {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    flex-shrink: 0;
    gap: 3rem;
    padding: 0 2rem;
}

.partners-logos i {
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    flex-shrink: 0;
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .partners-logos i {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    .partners-logos {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .partners-logos i {
        font-size: 2rem !important;
    }
}



/* CTA Section */
.section-cta {
    padding: 60px 20px 50px 20px;
    background-color: var(--color-gray-50, #f9fafb);
    position: relative;
    overflow: visible;
  }
  
  @media (min-width: 768px) {
    .section-cta {
      padding: 80px 20px 50px 20px;
    }
  }
  
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 40px 40px 40px 40px;
    position: relative;
    overflow: visible;
  }
  
  /* Home Page CTA Styles */
  .section-cta-home .cta-container-home {
    background: linear-gradient(135deg, var(--color-secondary, #20B2AA) 0%, var(--color-secondary-dark, #1A8B85) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
  }
  
  @media (max-width: 767px) {
    .cta-container {
      padding: 30px 24px 30px 24px;
    }
  }
  
  .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 1024px) {
    .cta-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: flex-start;
    }
  }
  
  .cta-content {
    text-align: left;
  }
  
  @media (max-width: 1023px) {
    .cta-content {
      text-align: center;
    }
  }
  
  .cta-title {
    color: var(--color-white, #ffffff);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  @media (min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
      gap: 1rem;
    }
  }
  
  @media (max-width: 1023px) {
    .cta-buttons {
      align-items: center;
      justify-content: center;
    }
  }
  
  /* New CTA Buttons */
  .cta-btn-new-primary,
  .cta-btn-new-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    min-width: 160px;
    position: relative;
    overflow: hidden;
  }
  
  .cta-btn-new-primary {
    background-color: var(--color-white, #ffffff);
    color: var(--color-primary, #2262A2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
  }
  
  /* Home Page CTA Button Styles */
  .cta-btn-home-primary {
    background-color: #f5f5f5;
    color: #666666;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cta-btn-home-primary:hover {
    background-color: #ffffff;
    color: #333333;
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }
  
  .cta-btn-home-primary span,
  .cta-btn-home-primary i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .cta-btn-home-primary:hover span,
  .cta-btn-home-primary:hover i {
    color: #333333;
  }
  
  .cta-btn-home-primary i {
    transition: transform 0.3s ease;
  }
  
  .cta-btn-home-primary:hover i {
    transform: translateX(4px);
  }
  
  .cta-btn-home-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cta-btn-home-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #333333;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }
  
  .cta-btn-home-secondary span,
  .cta-btn-home-secondary i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .cta-btn-home-secondary:hover span,
  .cta-btn-home-secondary:hover i {
    color: #333333;
  }
  
  .cta-btn-home-secondary i {
    transition: transform 0.3s ease;
  }
  
  .cta-btn-home-secondary:hover i {
    transform: translateX(4px);
  }
  
  .cta-btn-new-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(32, 89, 124, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }
  
  .cta-btn-new-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
  }
  
  .cta-btn-new-primary:hover::before {
    width: 300px;
    height: 300px;
  }
  
  .cta-btn-new-primary span,
  .cta-btn-new-primary i {
    position: relative;
    z-index: 1;
  }
  
  .cta-btn-new-primary i {
    transition: transform 0.3s ease;
  }
  
  .cta-btn-new-primary:hover i {
    transform: translateX(4px);
  }
  
  .cta-btn-new-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .cta-btn-new-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transition: left 0.3s ease;
    z-index: 0;
  }
  
  .cta-btn-new-secondary span,
  .cta-btn-new-secondary i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .cta-btn-new-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--color-white);
  }
  
  .cta-btn-new-secondary:hover::before {
    left: 0;
  }
  
  .cta-btn-new-secondary:hover span,
  .cta-btn-new-secondary:hover i {
    color: var(--color-secondary-dark);
  }
  
  .cta-btn-new-secondary i {
    transition: transform 0.3s ease;
  }
  
  .cta-btn-new-secondary:hover i {
    transform: translateX(4px);
  }

  /* Home Page CTA Image Styles */
.cta-image-home {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
  }
  
  .cta-image-wrapper-home {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -48px;
    margin-bottom: -40px;
  }
  
  .cta-img-home {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    transform: translateY(0);
  }

/* Commodities Carousel Section */
.commodities-section {
    position: relative !important;
    overflow: hidden !important;
}

.commodities-section .container {
    position: relative !important;
    z-index: 1 !important;
}

.commodities-section .commodities-carousel {
    display: flex !important;
    gap: 1rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    overflow-x: hidden !important;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0% 1%,
        rgba(0, 0, 0, 0.25) 1% 2%,
        rgba(0, 0, 0, 0.7) 2% 4%,
        #000 4% 96%,
        rgba(0, 0, 0, 0.7) 96% 98%,
        rgba(0, 0, 0, 0.25) 98% 99%,
        transparent 99% 100%
    ) !important;
    mask-image: linear-gradient(
        90deg,
        transparent 0% 1%,
        rgba(0, 0, 0, 0.25) 1% 2%,
        rgba(0, 0, 0, 0.7) 2% 4%,
        #000 4% 96%,
        rgba(0, 0, 0, 0.7) 96% 98%,
        rgba(0, 0, 0, 0.25) 98% 99%,
        transparent 99% 100%
    ) !important;
}

.commodities-section .commodities-carousel:focus {
    outline: none !important;
}

.commodities-section .commodities-carousel:hover {
    cursor: grab !important;
}

.commodities-section .commodities-carousel:active {
    cursor: grabbing !important;
}

.commodities-section .commodities-carousel-content {
    display: flex !important;
    gap: 1rem !important;
}

.commodities-section .commodity-card {
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: 200px !important;
    min-width: 200px !important;
    height: 270px !important;
    background-color: #fff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    user-select: none !important;
    transition: border 0.3s, box-shadow 0.3s, transform 0.3s !important;
    padding: 1.5rem !important;
}

.commodities-section .commodity-card:hover,
.commodities-section .commodity-card:focus-within {
    border: 2px solid var(--color-secondary, #20B2AA) !important;
    box-shadow: 0 8px 24px rgba(32, 178, 170, 0.3) !important;
    transform: translateY(-4px) !important;
}

.commodities-section .commodity-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 1rem !important;
    color: var(--color-secondary, #20B2AA) !important;
    font-size: 4rem !important;
    flex-shrink: 0 !important;
}

.commodities-section .commodity-icon i {
    display: block !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: 1 !important;
}

.commodities-section .commodity-name {
    margin: 0.5rem 0 !important;
    font-weight: 600 !important;
    color: var(--color-primary, #2262A2) !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    width: 100% !important;
}

.commodity-link {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.commodity-link a {
    color: var(--color-secondary, #20B2AA);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.commodity-link a:hover {
    color: var(--color-secondary-dark, #1A8B85);
}

.commodity-link a:focus {
    outline: 2px solid var(--color-secondary, #20B2AA);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .commodities-section .commodity-card {
        width: 180px !important;
        min-width: 180px !important;
        height: 250px !important;
        padding: 1rem !important;
    }
    
    .commodities-section .commodity-icon {
        width: 100px !important;
        height: 100px !important;
        font-size: 3rem !important;
    }
    
    .commodities-section .commodity-icon i {
        font-size: 3rem !important;
    }
    
    .commodities-section .commodity-name {
        font-size: 1rem !important;
    }
}

/* Why Choose Us Section - Image Style */
.why-choose-image-container {
    position: relative;
    z-index: 10;
}

.why-choose-content-wrapper {
    position: relative;
}

@media (min-width: 1024px) {
    .why-choose-image-container {
        margin-right: -5rem;
        transform: translateX(0);
    }
    
    .why-choose-content-wrapper {
        padding-left: 6rem !important;
    }
}

@media (min-width: 1280px) {
    .why-choose-image-container {
        margin-right: -6rem;
    }
    
    .why-choose-content-wrapper {
        padding-left: 7rem !important;
    }
}

@media (max-width: 1023px) {
    .why-choose-image-container {
        margin-right: 0;
    }
    
    .why-choose-content-wrapper {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 640px) {
    .why-choose-content-wrapper {
        padding: 2rem 1.5rem !important;
    }
    
    .why-choose-content-wrapper h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .why-choose-content-wrapper .space-y-6 > * + * {
        margin-top: 1.25rem;
    }
}

/* ========================================
   CTA Section Styles (About & Contact Pages)
   ======================================== */
.block-buy {
    position: relative;
}

.wrapper {
    max-width: 71.25rem;
    margin-left: auto;
    margin-right: auto;
}

.block-buy__wrapper {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.2);
    color: #fff;
}

.block-buy__background {
    border-radius: 1.25rem;
    -webkit-mask-image: -webkit-radial-gradient(white,#000);
    mask-image: radial-gradient(white,#000);
}

.block-buy__heading {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.block-buy__heading__title {
    font-weight: 600;
    overflow-wrap: break-word;
    font-size: 1.625rem;
    line-height: 2rem;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .block-buy__heading__title {
        font-size: 2.625rem;
        line-height: 3rem;
    }
}

.block-buy__heading__lead {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: rgba(255,255,255,.85);
    margin: 0;
}

@media screen and (min-width: 768px) {
    .block-buy__heading__lead {
        font-size: 1.625rem;
        line-height: 2.25rem;
        letter-spacing: -.03062rem;
    }
}

.block-buy__heading__action {
    margin-top: 2rem;
}

.button {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    line-height: 1.25;
    padding: .8125rem 1.5rem .8125rem;
    min-height: 3rem;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.02);
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    text-decoration: none;
}

.button:focus, .button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.button:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.button:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,.06);
}

.button--white {
    color: var(--color-primary);
    background-color: #fff;
}

.button--white:active, .button--white:focus, .button--white:hover {
    background-color: rgba(255,255,255,.85);
}

.hero-background {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.hero-background--fit-parent {
    height: 100%;
}

.hero-background__shape {
    position: absolute;
    will-change: transform;
    left: 0;
    top: 0;
}

.hero-background__shape__transform {
    position: absolute;
    will-change: transform;
    left: 0;
    top: 0;
}

.hero-background svg {
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    position: absolute;
}

.hero-background[data-theme=primary][data-layout=top] {
    background-image: -webkit-gradient(linear,left top,left bottom,from(#2E7BC5),color-stop(80%,#1A4D7F));
    background-image: linear-gradient(180deg,#2E7BC5 0,#1A4D7F 80%);
}

.hero-background[data-theme=primary] .hero-background__shape--fill1 {
    mix-blend-mode: multiply;
    opacity: .6;
}

.hero-background[data-theme=primary] .hero-background__shape--fill2 {
    mix-blend-mode: multiply;
    opacity: .4;
}

.hero-background[data-theme=primary] .hero-background__shape--fill3 {
    mix-blend-mode: screen;
    opacity: .3;
}

.hero-background[data-theme=primary] .hero-background__shape--stroke {
    mix-blend-mode: multiply;
}

.hero-background[data-theme=primary] .stroke {
    fill: none;
    stroke: #20B2AA;
    stroke-opacity: .4;
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .block-buy__wrapper {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-background__shape {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    animation: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1f2937;
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

