/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0047ab;
    --secondary-color: #ff6b00;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Updated Buttons with 25px radius */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--white) !important;
}

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

.btn-primary:hover {
    background-color: #003580;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Top Header */
.top-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-media a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
}

.social-media a:hover {
    color: var(--secondary-color);
}

/* Main Navigation */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* HERO SLIDER - UPDATED */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: visible !important; /* Changed from hidden to visible */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero1-compressed.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero2-compressed.jpg') no-repeat center center/cover;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    color: var(--white);
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    margin-top: 0;
    /* REMOVED transform: translateY() - This was causing issues */
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    animation: fadeInUp 1.2s ease-out;
    margin-top: 20px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    color: var(--white) !important;
    padding: 12px 30px;
    min-width: 180px;
    white-space: nowrap;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
    .hero-slider {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 11px 25px;
        min-width: 160px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
        padding-bottom: 40px; /* Add padding at bottom to prevent cutting */
    }
    
    .hero-content {
        padding: 30px 20px 20px; /* Add bottom padding */
        margin-bottom: 20px; /* Add margin at bottom */
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: row !important; /* FORCE horizontal layout */
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
        margin-top: 12px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 140px;
        flex-shrink: 0;
        /* Our Services button will be left, Track Cargo will be right */
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 75vh; /* Slightly taller to accommodate buttons */
        min-height: 450px;
        padding-bottom: 50px; /* More padding at bottom */
    }
    
    .hero-content {
        padding: 25px 15px 15px;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        gap: 8px;
        margin-top: 10px;
        flex-direction: row !important; /* FORCE horizontal */
        flex-wrap: wrap; /* Allow wrapping only if absolutely necessary */
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-width: 48%; /* Use percentage for better fit */
        flex: 1; /* Make buttons equal width */
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero-slider {
        height: 80vh; /* Even taller to ensure buttons fit */
        min-height: 450px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 20px 12px 12px;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        gap: 6px;
        margin-top: 10px;
        flex-direction: row !important; /* FORCE horizontal */
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 9px 10px;
        font-size: 0.8rem;
        min-width: 48%;
        flex: 1;
    }
}

/* Remove any conflicting styles from the bottom of the file */
@media (max-width: 768px) {
    /* REMOVE THESE CONFLICTING STYLES COMPLETELY: */
    /*
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    */
}

/* FIX: Override any vertical stacking that might come from other CSS */
.hero-buttons {
    flex-direction: row !important;
}

.hero-buttons a {
    width: auto !important;
}




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

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Services Highlights - Now 3 boxes only */
.services-highlights {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-card a i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* Global Network Section */
.global-network {
    padding: 80px 0;
    background-color: var(--white);
}

.global-network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.global-network-image {
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.network-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-icon-link {
    display: inline-block;
}

.play-icon-link i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.play-icon-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.global-network-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.global-network-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.network-features {
    margin: 30px 0;
}

.network-feature {
    margin-bottom: 20px;
}

.network-feature h4 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.network-feature h4 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.network-feature p {
    color: var(--text-light);
    margin-left: 30px;
    margin-bottom: 0;
}

/* Our Services Section */
.our-services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.our-service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.our-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.our-service-image {
    height: 200px;
    overflow: hidden;
}

.our-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.our-service-content {
    padding: 25px;
}

.our-service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.our-service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.stats-image {
    height: 400px;
    background: url('assets/images/count-compressed.jpg') no-repeat center center/cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.team-slides {
    position: relative;
    min-height: 350px;
}

.team-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.team-slide.active {
    opacity: 1;
    z-index: 1;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-member-image {
    height: 300px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 30px;
}

.team-member-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-color);
}

.team-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.team-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.team-slider-arrow {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.2rem;
}

.team-slider-arrow:hover {
    background-color: #003580;
    transform: scale(1.1);
}

.team-slider-dots {
    display: flex;
    gap: 10px;
}

.team-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.team-slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 25px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #e05a00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links a {
    color: #aaa;
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading for better performance */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid,
    .our-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .global-network-content,
    .about-content,
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .global-network-image {
        order: -1;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .team-member-image {
        height: 250px;
    }
    
    .services-grid,
    .our-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info span {
        margin-right: 10px;
        margin-bottom: 5px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: center;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .our-services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .image-container {
        height: 300px;
    }
    
    .team-slider-controls {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .team-slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .play-icon-link i {
        font-size: 4rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .navbar {
        padding: 10px 0;
    }
}