@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Dark Theme (Default) */
    --bg-main: #0f1115;
    --bg-secondary: #161a20;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --accent: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(12px);
    --nav-bg: #0f1115;
}

[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --accent: #059669;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(0, 0, 0, 0.02);
    --nav-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
}

/* Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: var(--transition);
    color: var(--text-main);
}

.glass:hover {
    border-color: var(--primary);
    background: var(--card-bg);
    color: var(--text-main);
}

/* Specific fix for day/night button colors */
[data-theme="light"] .btn.glass {
    color: #000 !important;
}

[data-theme="dark"] .btn.glass {
    color: #fff !important;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    background: var(--primary-light);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--nav-bg);
    background-image:
        radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
    border-bottom: 2px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-image: none;
    /* Clean solid look when scrolling */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo-img {
    max-height: 80px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

/* Dual Logo Toggling */
[data-theme="dark"] .logo-light { display: none; }
[data-theme="light"] .logo-dark { display: none; }

nav.scrolled .logo-img {
    max-height: 60px;
}

.logo span {
    color: var(--primary);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    opacity: 0.5;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.dropdown-menu li a::after {
    display: none;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.theme-toggle:hover {
    color: var(--primary);
}

/* Slider */
.slider-container {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background: #000;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 10s linear;
}

.slide.active-animation img {
    transform: scale(1.1);
}

.slide.active {
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
}

[data-theme="light"] .slide-overlay {
    background: none;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    line-height: 1.1;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .hero-subtitle {
    color: rgba(15, 23, 42, 0.8);
}

.slide-content .btn {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.slide.active-animation .hero-title,
.slide.active-animation .hero-subtitle,
.slide.active-animation .btn {
    transform: translateY(0);
    opacity: 1;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}

/* Service Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.card {
    padding: 40px;
}

.card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Forms */
input,
select,
textarea {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-main);
    width: 100%;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer Improvements */
.footer-wrap {
    margin-top: 80px;
}

.footer {
    padding-top: 80px;
    padding-bottom: 0;
    border-radius: 40px 40px 0 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Adding an ambient glow behind the footer */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-links li a i {
    font-size: 12px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact .icon-box {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 6px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 0;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse-ring 2s infinite;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 2s infinite;
    opacity: 0.6;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp::before {
    background-color: #25D366;
}

.float-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

.float-phone {
    background-color: var(--primary);
}

.float-phone::before {
    background-color: var(--primary);
}

.float-phone:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.float-mail {
    background-color: #ef4444 !important;
}

.float-mail::before {
    background-color: #ef4444 !important;
}

.float-mail:hover {
    background-color: #f87171 !important;
    transform: translateY(-5px);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive Design System */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    /* Hide for custom mobile toggle */
    .mobile-nav-toggle {
        display: flex !important;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .admin-sidebar {
        width: 80px;
        padding: 40px 10px;
    }

    .admin-sidebar .active span,
    .admin-sidebar .logo span,
    .admin-sidebar a span {
        display: none;
    }

    .admin-main {
        margin-left: 80px;
        padding: 30px;
    }

    #admin-menu-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr !important;
    }

    h1 {
        font-size: 42px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    .section {
        padding: 60px 0;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Admin Mobile Fix */
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .admin-sidebar.active {
        transform: translateX(0);
        width: 250px;
    }

    .admin-main {
        margin-left: 0;
    }
}

/* Mobile Menu Classes */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    display: none !important;
    flex-direction: column;
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 25px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none !important;
    backdrop-filter: blur(5px);
}

.mobile-overlay.active {
    display: block !important;
}

.hamburger {
    display: none !important;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 991px) {
    .hamburger {
        display: flex !important;
    }

    .mobile-nav {
        display: flex !important;
    }

    .mobile-overlay.active {
        display: block !important;
    }
}

/* Image Handling & Global Resets */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Homepage Specific Components */
.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.section-content {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Info Boxes */
.info-boxes-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.authorized-badge {
    margin-bottom: 30px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(15, 17, 21, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
}

[data-theme="light"] .authorized-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.authorized-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(25deg);
    animation: light-sweep 8s infinite ease-in-out;
}

@keyframes light-sweep {
    0% { left: -100%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.authorized-badge .badge-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    flex-shrink: 0;
}

.authorized-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.authorized-badge .brand-names {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

[data-theme="light"] .authorized-badge .brand-names {
    color: var(--text-main);
    text-shadow: none;
}

.authorized-badge .brand-names span {
    color: var(--primary);
    font-size: 24px;
    opacity: 1;
}

.authorized-badge .badge-tag {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .authorized-badge {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .authorized-badge .badge-content {
        align-items: center;
        text-align: center;
    }
    .authorized-badge .brand-names {
        font-size: 20px;
    }
}

/* Banner Section */
.banner-container {
    padding: 60px;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.banner-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.banner-logos {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .about-img {
        height: 400px;
    }

    .section-title {
        font-size: 36px;
    }

    .banner-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }

    .logo-img {
        max-height: 65px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .about-img {
        height: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle,
    .section-content,
    .banner-desc {
        font-size: 16px;
    }

    .banner-title {
        font-size: 30px;
    }

    .banner-content {
        min-width: 100%;
    }

    .banner-logos {
        justify-content: center;
        width: 100%;
    }

    .info-boxes-section {
        margin-top: -40px;
    }

    /* Grid adjustments for mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .banner-logos div {
        width: 100px !important;
        height: 100px !important;
        padding: 15px !important;
    }

    .slider-nav {
        bottom: 20px;
    }

    .logo {
        font-size: 20px;
    }
}