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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* Custom container-fluid padding */
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header-sticky {
    position: relative;
}

.navbar {
    padding: 20px 60px;
    background: transparent !important;
    transition: all 0.3s ease;
}

/* Ensure JavaScript can override background */
.navbar.scrolled {
    background: rgba(2, 43, 35, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.navbar-brand img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    padding: 5px;
}

/* Main Menu Styles */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-wrapper {
    flex: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: #f8f9fa !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Submenu Styles */
.submenu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(40, 167, 69, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
}

.submenu:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu ul li {
    margin: 0;
}

.submenu ul .nav-link {
    padding: 8px 20px !important;
    font-size: 14px;
    color: white !important;
    border-radius: 0;
}

.submenu ul .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f8f9fa !important;
}

/* Header Contact Box */
.header-contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 16px;
}

    .header-contact-item-content p {
        margin: 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
    }
    
    .header-contact-item-content h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }
    
    .header-contact-item-content h3 a {
        color: white;
        text-decoration: none;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        transition: color 0.3s ease;
        display: inline-block;
        padding: 5px 0;
    }
    
    .header-contact-item-content h3 a:hover {
        color: #28a745;
        transform: translateX(5px);
    }
    
    .header-contact-item-content h3 a:active {
        transform: scale(0.98);
    }

/* Header Button */
.header-btn .btn-default {
    background: rgba(255, 255, 255, 0.9);
    color: #28a745;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.header-btn .btn-default:hover {
    background: white;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navbar Toggle */
.navbar-toggle {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar-toggle {
        display: block;
        margin-left: auto;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 8px 12px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .navbar-toggler:hover {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.6);
        outline: none;
    }
    
    .navbar-toggler:active {
        transform: scale(0.95);
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 43, 35, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
        border-radius: 0 0 15px 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
        animation: slideInDown 0.3s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Ensure proper mobile menu behavior */
    .navbar-collapse.collapsing {
        height: auto !important;
        transition: none !important;
    }
    
    .navbar-collapse.show {
        display: flex !important;
    }
    
    /* Mobile menu accessibility improvements */
    .nav-link:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    .submenu ul .nav-link:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    /* Mobile menu keyboard navigation improvements */
    .nav-link:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.7);
        outline-offset: 2px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .submenu ul .nav-link:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.7);
        outline-offset: 2px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile menu screen reader improvements */
    .nav-link[aria-current="page"] {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        font-weight: 600;
    }
    
    .nav-link[aria-current="page"]::before {
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    }
    
    /* Mobile menu touch improvements */
    @media (hover: none) and (pointer: coarse) {
        .nav-link:hover::before {
            width: 0;
        }
        
        .nav-link:active::before {
            width: 100%;
        }
        
        .submenu ul .nav-link:hover {
            padding-left: 30px !important;
        }
        
        .submenu ul .nav-link:active {
            padding-left: 35px !important;
        }
        
        .header-contact-item:hover {
            transform: none;
        }
        
        .header-btn .btn-default:hover {
            transform: none;
        }
        
        .header-contact-item:active::before {
            width: 100%;
        }
        
        .header-btn .btn-default:active::before {
            width: 100%;
        }
    }
    
    /* Mobile menu high contrast mode support */
    @media (prefers-contrast: high) {
        .main-menu {
            background: rgba(2, 43, 35, 1);
            border: 2px solid white;
        }
        
        .nav-link {
            border: 1px solid white;
        }
        
        .submenu ul {
            border: 1px solid white;
        }
    }
    
    /* Mobile menu reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .main-menu,
        .nav-link,
        .submenu ul .nav-link,
        .header-contact-item,
        .header-btn .btn-default,
        .navbar-toggler {
            transition: none;
            animation: none;
        }
        
        .nav-link::before,
        .submenu ul .nav-link::before,
        .header-contact-item::before,
        .header-btn .btn-default::before {
            transition: none;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
        .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
            transition: none;
        }
    }
    
    /* Mobile menu landscape orientation improvements */
    @media (max-width: 991.98px) and (orientation: landscape) {
        .main-menu {
            max-height: calc(100vh - 80px);
            padding: 15px;
        }
        
        .nav-link {
            padding: 12px 20px !important;
            min-height: 44px;
        }
        
        .submenu ul .nav-link {
            padding: 10px 30px !important;
            min-height: 40px;
        }
    }
    
    /* Mobile menu small screen improvements */
    @media (max-width: 575.98px) {
        .main-menu {
            padding: 15px;
            max-height: calc(100vh - 90px);
        }
        
        .nav-link {
            padding: 16px 18px !important;
            font-size: 15px;
        }
        
        .submenu ul .nav-link {
            padding: 14px 25px !important;
            font-size: 13px;
        }
        
        .header-contact-box {
            padding: 15px;
        }
        
        .header-btn .btn-default {
            padding: 14px 20px;
            font-size: 15px;
        }
        
        .navbar-nav::before {
            font-size: 11px;
            margin-bottom: 12px;
        }
        
        .header-contact-box::after {
            font-size: 11px;
            margin-bottom: 12px;
        }
    }
    
    /* Mobile menu extra small screen improvements */
    @media (max-width: 375px) {
        .main-menu {
            padding: 12px;
        }
        
        .nav-link {
            padding: 14px 16px !important;
            font-size: 14px;
        }
        
        .submenu ul .nav-link {
            padding: 12px 22px !important;
            font-size: 12px;
        }
        
        .header-contact-box {
            padding: 12px;
        }
        
        .header-btn .btn-default {
            padding: 12px 18px;
            font-size: 14px;
        }
    }
    
    /* Mobile menu dark mode support */
    @media (prefers-color-scheme: dark) {
        .main-menu {
            background: rgba(0, 0, 0, 0.95);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .nav-link {
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .submenu ul {
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .header-contact-box {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .header-contact-item {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }
    }
    
    /* Mobile menu print styles */
    @media print {
        .main-menu {
            display: none !important;
        }
        
        .navbar-toggle {
            display: none !important;
        }
    }
    
    /* Mobile menu focus management */
    .navbar-collapse.show .nav-link:first-child {
        outline: none;
    }
    
    .navbar-collapse.show .nav-link:first-child:focus {
        outline: 2px solid rgba(255, 255, 255, 0.7);
        outline-offset: 2px;
    }
    
    /* Mobile menu scroll restoration */
    .navbar-collapse.show {
        scroll-behavior: smooth;
    }
    
    /* Mobile menu performance optimizations */
    .navbar-collapse {
        will-change: transform, opacity;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Mobile menu loading states */
    .navbar-collapse.collapsing {
        pointer-events: none;
    }
    
    .navbar-collapse.show {
        pointer-events: auto;
    }
    
    /* Mobile menu error states */
    .navbar-collapse.show.error {
        background: rgba(220, 53, 69, 0.1);
        border-color: rgba(220, 53, 69, 0.3);
    }
    
    /* Mobile menu success states */
    .navbar-collapse.show.success {
        background: rgba(40, 167, 69, 0.1);
        border-color: rgba(40, 167, 69, 0.3);
    }
    
    /* Mobile menu warning states */
    .navbar-collapse.show.warning {
        background: rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.3);
    }
    
    /* Mobile menu info states */
    .navbar-collapse.show.info {
        background: rgba(23, 162, 184, 0.1);
        border-color: rgba(23, 162, 184, 0.3);
    }
    
    /* Mobile menu custom scrollbar for webkit browsers */
    .main-menu::-webkit-scrollbar {
        width: 8px;
    }
    
    .main-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .main-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.6);
    }
    
    .main-menu::-webkit-scrollbar-thumb:active {
        background: rgba(255, 255, 255, 0.8);
    }
    
    /* Mobile menu custom scrollbar for firefox */
    .main-menu {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile menu custom scrollbar for edge */
    .main-menu {
        -ms-overflow-style: none;
    }
    
    .main-menu::-ms-scrollbar {
        width: 8px;
    }
    
    .main-menu::-ms-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .main-menu::-ms-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile menu custom scrollbar for safari */
    .main-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile menu custom scrollbar for opera */
    .main-menu::-o-scrollbar {
        width: 8px;
    }
    
    .main-menu::-o-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .main-menu::-o-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile menu custom scrollbar for internet explorer */
    .main-menu {
        scrollbar-base-color: rgba(255, 255, 255, 0.4);
        scrollbar-face-color: rgba(255, 255, 255, 0.4);
        scrollbar-track-color: rgba(255, 255, 255, 0.1);
        scrollbar-arrow-color: rgba(255, 255, 255, 0.4);
        scrollbar-shadow-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile menu custom scrollbar for all browsers fallback */
    .main-menu {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.1);
    }
    
    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .main-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .main-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .main-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    /* Mobile menu scroll improvements */
    .main-menu {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile menu content spacing improvements */
    .main-menu > *:last-child {
        margin-bottom: 20px;
    }
    
    /* Mobile menu section dividers */
    .navbar-nav::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 20px 0;
    }
    
    /* Mobile menu contact section styling */
    .header-contact-box::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 0 0 20px 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 5px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .navbar-nav::before {
        content: 'Navigation';
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .nav-item {
        width: 100%;
        margin: 0 0 5px 0;
        position: relative;
    }
    
    .nav-link {
        padding: 18px 20px !important;
        border-radius: 8px;
        width: 100%;
        display: block;
        font-size: 16px;
        transition: all 0.3s ease;
        color: white !important;
        text-decoration: none;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
        min-height: 54px;
        display: flex;
        align-items: center;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
        transition: width 0.3s ease;
        pointer-events: none;
    }
    
    .nav-link:hover::before {
        width: 100%;
    }
    
    .nav-link:active::before {
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .submenu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px 0;
        width: 100%;
        border-left: 3px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .submenu ul .nav-link {
        padding: 15px 30px !important;
        font-size: 14px;
        margin: 3px 0;
        color: rgba(255, 255, 255, 0.9) !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .submenu ul .nav-link::before {
        content: '→';
        position: absolute;
        left: 15px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .submenu ul .nav-link:hover::before {
        color: rgba(255, 255, 255, 0.8);
        transform: translateX(3px);
    }
    
    .submenu ul .nav-link:active::before {
        color: rgba(255, 255, 255, 0.9);
        transform: translateX(5px);
    }
    
    .submenu ul .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white !important;
        padding-left: 35px !important;
    }
    
    .submenu ul .nav-link:active {
        background: rgba(255, 255, 255, 0.12);
        color: white !important;
        padding-left: 40px !important;
    }
    
    .header-contact-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px;
        backdrop-filter: blur(10px);
        position: relative;
    }
    
    .header-contact-box::after {
        content: 'Contact & Get Started';
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .header-contact-item {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .header-contact-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
        transition: width 0.3s ease;
        pointer-events: none;
    }
    
    .header-contact-item:hover::before {
        width: 100%;
    }
    
    .header-contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .header-contact-item:active {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(0);
    }
    
    .header-contact-item:focus-within {
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    }
    
    .header-btn {
        width: 100%;
    }
    
    .header-btn .btn-default {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        color: #28a745;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .header-btn .btn-default::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(40, 167, 69, 0.1), transparent);
        transition: width 0.3s ease;
        pointer-events: none;
    }
    
    .header-btn .btn-default:hover::before {
        width: 100%;
    }
    
    .header-btn .btn-default:hover {
        background: white;
        color: #28a745;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .header-btn .btn-default:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .header-btn .btn-default:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    /* Mobile menu close button enhancement */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    
    /* Mobile menu loading state */
    .navbar-collapse.collapsing {
        overflow: hidden;
    }
    
    /* Mobile menu backdrop */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        animation: fadeIn 0.3s ease-out;
    }
    
    /* Mobile menu close on backdrop click */
    .navbar-collapse.show::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -2;
        cursor: pointer;
    }
    
    /* Mobile menu accessibility improvements */
    .navbar-collapse.show {
        animation: slideInDown 0.3s ease-out;
    }
    
    .navbar-collapse.collapsing {
        animation: slideOutUp 0.3s ease-out;
    }
    
    @keyframes slideOutUp {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}



.navbar-toggler {
    border: none;
    padding: 0;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 43, 35, 0.95) 0%, rgba(2, 43, 35, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #90EE90 !important; /* Light green color for service titles */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: #90EE90 !important; /* Light green color for check marks */
    margin-right: 1rem;
    font-size: 1.2rem;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    color: #90EE90 !important; /* Light green color for feature text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 30px;
    backdrop-filter: blur(10px);
    border: none;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators - Hidden */
.carousel-indicators {
    display: none !important;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(40, 167, 69, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        z-index: 1000;
    }
    

}

/* Height-Responsive Design for Hero Slider */
@media (max-height: 800px) {
    .hero-slider-section,
    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-slide {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-height: 600px) {
    .hero-slider-section,
    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-slide {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item i {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 20px;
    }
}

@media (max-height: 500px) {
    .hero-slider-section,
    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        margin-bottom: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item i {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 15px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .navbar-brand img {
        height: 70px;
    }
    
    .header-contact-item-content h3 {
        font-size: 14px;
    }
    
    .icon-box {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 55px;
    }
    
    .navbar {
        padding: 8px 15px;
    }
    
    .header-contact-item-content p {
        font-size: 11px;
    }
    
    .header-contact-item-content h3 {
        font-size: 13px;
    }
    
    .header-btn .btn-default {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    margin: 0;
    width: 100%;
    clear: both;
    /* Temporary debugging - remove after testing */
    border: 2px solid transparent;
    min-height: 600px;
}

.about-us-images {
    position: relative;
    height: 500px;
}

.about-us-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 60%;
    z-index: 2;
}

.about-us-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: scale(1);
}

.about-us-img-1:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-us-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 60%;
    z-index: 1;
}

.about-us-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: scale(1);
}

.about-us-img-2:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.experience-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    transition: all 0.5s ease;
    animation: pulse 2s infinite;
}

.experience-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

.experience-content {
    text-align: center;
    color: white;
}

.experience-content .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-content .text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-us-content {
    padding-left: 50px;
}

.section-title h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.section-title h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.1s;
}

.section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.2s;
}

.section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.about-us-body-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.3s;
}

.about-us-body-item:nth-child(2) {
    transition-delay: 0.1s;
}

.about-us-body-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-us-body-item .icon-box {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.about-us-body-item h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.about-us-body-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.4s;
}

.about-us-body-content p.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-us-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.5s;
}

.about-us-footer.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-us-btn .btn-default {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us-btn .btn-default:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.about-contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-contact-box .icon-box {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.about-contact-box-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-contact-box-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-contact-box-content h3 a {
    color: #333;
    text-decoration: none;
}

.about-contact-box-content h3 a:hover {
    color: #28a745;
}

/* Responsive adjustments for About Us */
@media (max-width: 991.98px) {
    .about-us {
        padding: 80px 0;
    }
    
    .about-us-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-us-images {
        height: 400px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-us-images {
        height: 300px;
    }
    
    .about-us-img-1,
    .about-us-img-2 {
        width: 80%;
        height: 65%;
    }
    
    .experience-circle {
        width: 100px;
        height: 100px;
    }
    
    .experience-content .years {
        font-size: 1.5rem;
    }
    
    .experience-content .text {
        font-size: 0.7rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title h3 {
        font-size: 1rem;
    }
    
    .about-us-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .about-us-body-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-us-body-item .icon-box {
        margin-right: 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .about-us {
        padding: 40px 0;
    }
    
    .about-us-images {
        height: 250px;
    }
    
    .about-us-img-1,
    .about-us-img-2 {
        width: 85%;
        height: 70%;
    }
    
    .experience-circle {
        width: 80px;
        height: 80px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title h3 {
        font-size: 0.9rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .hero-buttons .btn:hover {
        transform: none;
    }
    
    .about-us-btn .btn-default:hover {
        transform: none;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        transform: translateY(-50%) scale(1);
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-slider-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .about-us {
        padding: 60px 0;
    }
    
    .about-us-images {
        height: 350px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #022B23;
    position: relative;
    color: white;
    margin: 0;
    width: 100%;
    clear: both;
    /* Temporary debugging - remove after testing */
    border: 2px solid transparent;
    min-height: 600px;
}

.why-choose-us .section-title h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.why-choose-us .section-title h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.1s;
}

.why-choose-us .section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.2s;
}

.why-choose-us .section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-btn {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out 0.3s;
}

.section-btn.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-highlighted {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-highlighted:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.approach-item-list {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.approach-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-item:nth-child(1) {
    transition-delay: 0.05s;
}

.approach-item:nth-child(2) {
    transition-delay: 0.1s;
}

.approach-item:nth-child(3) {
    transition-delay: 0.15s;
}

.approach-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.approach-item .icon-box {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.approach-item:hover .icon-box {
    background: #218838;
    transform: scale(1.1);
}

.approach-item-content h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.approach-item-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.approach-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Responsive adjustments for Why Choose Us */
@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-us .section-title h2 {
        font-size: 2rem;
    }
    
    .approach-item-list {
        gap: 20px;
    }
    
    .approach-item {
        padding: 20px;
        min-width: 280px;
    }
}

@media (max-width: 767.98px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-title h2 {
        font-size: 1.8rem;
    }
    
    .approach-item-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .approach-item {
        padding: 20px;
        min-width: auto;
        width: 100%;
    }
    
    .approach-item .icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-us .section-title h2 {
        font-size: 1.6rem;
    }
    
    .approach-item {
        padding: 15px;
    }
    
    .approach-item .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .approach-item-content h3 {
        font-size: 1rem;
    }
    
    .approach-item-content p {
        font-size: 0.8rem;
    }
    
    .approach-list li {
        font-size: 0.8rem;
    }
}

/* Services Section */
.page-services {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.page-services .section-title {
    margin-bottom: 60px;
}

.page-services .section-title h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.page-services .section-title h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.page-services .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.page-services .section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.page-services .section-title p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.4s;
}

.page-services .section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-item-list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.service-item-list .col-lg-4,
.service-item-list .col-md-6 {
    margin-bottom: 30px;
}

/* Ensure cards maintain equal heights on different screen sizes */
@media (min-width: 992px) {
    .service-item-list .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .service-item-list .col-lg-4 {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .service-item-list .col-md-6 {
        display: flex;
        flex-direction: column;
    }
}

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-item:nth-child(1) {
    transition-delay: 0.05s;
}

.service-item:nth-child(2) {
    transition-delay: 0.1s;
}

.service-item:nth-child(3) {
    transition-delay: 0.15s;
}

.service-item:nth-child(4) {
    transition-delay: 0.2s;
}

.service-item:nth-child(5) {
    transition-delay: 0.25s;
}

.service-item:nth-child(6) {
    transition-delay: 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(40, 167, 69, 0.95) !important;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.service-content {
    padding: 25px;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content h3 a {
    color: #022B23;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #28a745;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.service-content p {
    color: #022B23;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image figure {
    margin: 0;
    position: relative;
}



.service-item:hover .service-content h3 a {
    color: white !important;
}

.service-item:hover .service-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-item:hover .service-content {
    background: transparent !important;
}

.service-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.service-item:hover .service-btn {
    opacity: 1;
    transform: translateX(0);
}

.service-btn a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-btn:hover {
    background: #218838;
    transform: scale(1.1);
}

/* Responsive adjustments for Services */
@media (max-width: 991.98px) {
    .page-services {
        padding: 80px 0 !important;
    }
    
    .page-services .section-title h2 {
        font-size: 2rem !important;
    }
    
    .page-services .service-content h3 a {
        font-size: 1.2rem !important;
    }
    
    .page-services .service-image figure img {
        height: 220px !important;
        min-height: 220px !important;
    }
    
    .page-services .service-item-list .col-lg-4,
    .page-services .service-item-list .col-md-6 {
        margin-bottom: 25px !important;
    }
}

/* Services Section - Complete Rebuild */
.page-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.page-services .service-item-list {
    margin-top: 50px;
}

/* Service Item Container */
.page-services .service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(40, 167, 69, 0.95);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Service Content */
.page-services .service-content {
    padding: 25px;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.page-services .service-content h3 {
    margin-bottom: 15px;
}

.page-services .service-content h3 a {
    color: #022B23;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-services .service-content h3 a:hover {
    color: #28a745;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.page-services .service-content p {
    color: #022B23;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Service Image */
.page-services .service-image {
    position: relative;
    overflow: hidden;
}

.page-services .service-image figure {
    margin: 0;
    position: relative;
}

.page-services .service-image figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    min-height: 250px;
}

.page-services .service-item:hover .service-image figure img {
    transform: scale(1.1);
}

.page-services .service-item:hover .service-content h3 a {
    color: white;
}

.page-services .service-item:hover .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.page-services .service-item:hover .service-content {
    background: transparent;
}

/* Service Button */
.page-services .service-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.page-services .service-item:hover .service-btn {
    opacity: 1;
    transform: translateX(0);
}

.page-services .service-btn a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.page-services .service-btn a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.page-services .service-btn:hover {
    background: #218838;
    transform: scale(1.1);
}

/* WOW Animation Classes */
.page-services .wow {
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.page-services .wow.animated {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.page-services .wow.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.page-services .wow.fadeInUp {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 767.98px) {
    .page-services {
        padding: 60px 0;
    }
    
    .page-services .section-title h2 {
        font-size: 1.8rem;
    }
    
    .page-services .section-title h3 {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 a {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .page-services .service-image figure img {
        height: 200px;
        min-height: 200px;
    }
    
    .service-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .service-item-list .col-lg-4,
    .service-item-list .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-services {
        padding: 40px 0;
    }
    
    .page-services .section-title h2 {
        font-size: 1.6rem;
    }
    
    .page-services .section-title h3 {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 18px;
    }
    
    .service-content h3 a {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .page-services .service-image figure img {
        height: 180px;
        min-height: 180px;
    }
    
    .service-btn {
        width: 35px;
        height: 35px;
        top: 12px;
        right: 12px;
    }
    
    .service-item-list .col-lg-4,
    .service-item-list .col-md-6 {
        margin-bottom: 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accreditation Section Styles */
.accreditation-section {
    background: #022B23;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    clear: both;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.accreditation-section .section-title {
    color: white;
}

.accreditation-section .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.accreditation-section .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.accreditation-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}



.accreditation-section .section-title h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
}

.accreditation-section .section-title p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.4s;
}

.accreditation-section .section-title h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.accreditation-section .section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.accreditation-section .section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

.accreditation-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 30px;
    padding: 40px 20px;
    margin-top: 40px;
    width: 100%;
}

.accreditation-logo-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 100px;
    max-width: 200px;
    max-height: 120px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.accreditation-logo-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.accreditation-logo-item:nth-child(1) {
    transition-delay: 0.05s;
}

.accreditation-logo-item:nth-child(2) {
    transition-delay: 0.1s;
}

.accreditation-logo-item:nth-child(3) {
    transition-delay: 0.15s;
}

.accreditation-logo-item:nth-child(4) {
    transition-delay: 0.2s;
}

.accreditation-logo-item:nth-child(5) {
    transition-delay: 0.25s;
}

.accreditation-logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.accreditation-logo-item:hover {
    transform: translateY(-10px);
    background: white;
    border-color: rgba(40, 167, 69, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.accreditation-logo-item:hover img {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .accreditation-section {
        padding: 80px 0;
        min-height: 80vh;
    }
    
    .accreditation-logos-grid {
        gap: 30px 20px;
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .accreditation-logo-item {
        min-width: 120px;
        min-height: 80px;
        max-width: 160px;
        max-height: 100px;
        padding: 20px 25px;
    }
    
    .accreditation-logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 767.98px) {
    .accreditation-section {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .accreditation-section .section-title h2 {
        font-size: 2rem;
    }
    
    .accreditation-section .section-title h3 {
        font-size: 1rem;
    }
    
    .accreditation-logos-grid {
        gap: 20px 15px;
        padding: 25px 10px;
        margin-top: 25px;
    }
    
    .accreditation-logo-item {
        min-width: 100px;
        min-height: 70px;
        max-width: 140px;
        max-height: 90px;
        padding: 15px 20px;
    }
    
    .accreditation-logo-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .accreditation-section {
        padding: 50px 0;
        min-height: 60vh;
    }
    
    .accreditation-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .accreditation-section .section-title h3 {
        font-size: 0.9rem;
    }
    
    .accreditation-logos-grid {
        gap: 15px 10px;
        padding: 20px 5px;
        margin-top: 20px;
    }
    
    .accreditation-logo-item {
        min-width: 80px;
        min-height: 60px;
        max-width: 120px;
        max-height: 80px;
        padding: 12px 15px;
    }
    
    .accreditation-logo-item img {
        max-height: 40px;
    }
}

/* Footer Section Styles */
.main-footer {
    background: #022B23 url('../images/patterns/footer-bg-img.png') repeat;
    background-size: auto;
    padding: 60px 0 25px 0;
    color: white;
    position: relative;
    min-height: auto;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 43, 35, 0.85);
    z-index: 1;
}

.main-footer > * {
    position: relative;
    z-index: 2;
}

.footer-header {
    text-align: center;
    margin-bottom: 40px;
}

.footer-header .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.footer-header .section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-header .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out 0.2s;
}

.footer-header .section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-footer {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(1.1);
}

.about-footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.about-footer-content p.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-links li a:hover {
    background: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.footer-links h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #28a745;
}

.footer-contact-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-box ul li i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact-box ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-box ul li a:hover {
    color: #28a745;
}

.footer-copyright-text {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 25px;
}

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

/* Responsive adjustments for Footer */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 50px 0 20px 0;
    }
    
    .footer-header {
        margin-bottom: 35px;
    }
    
    .footer-header .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .footer-links {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .main-footer {
        padding: 40px 0 15px 0;
    }
    
    .footer-header {
        margin-bottom: 30px;
    }
    
    .footer-header .section-title h2 {
        font-size: 1.8rem;
    }
    
    .footer-header .section-title p {
        font-size: 0.95rem;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .about-footer-content p {
        font-size: 0.9rem;
    }
    
    .footer-links h3 {
        font-size: 1rem;
    }
    
    .footer-links ul li a {
        font-size: 0.85rem;
    }
    
    .footer-contact-box ul li {
        font-size: 0.85rem;
    }
    
    .footer-social-links ul {
        gap: 10px;
    }
    
    .footer-social-links li a {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 0 10px 0;
    }
    
    .footer-header {
        margin-bottom: 25px;
    }
    
    .footer-header .section-title h2 {
        font-size: 1.6rem;
    }
    
    .footer-header .section-title p {
        font-size: 0.9rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .about-footer-content p {
        font-size: 0.85rem;
    }
    
    .footer-links h3 {
        font-size: 0.95rem;
    }
    
    .footer-links ul li a {
        font-size: 0.8rem;
    }
    
    .footer-contact-box ul li {
        font-size: 0.8rem;
    }
    
    .footer-social-links ul {
        gap: 8px;
    }
    
    .footer-social-links li a {
        width: 28px;
        height: 28px;
    }
    
    .footer-copyright-text {
        padding-top: 15px;
        margin-top: 20px;
    }
    
    .footer-copyright-text p {
        font-size: 0.75rem;
    }
}

/* Extra small devices - improve footer layout */
@media (max-width: 360px) {
    .main-footer {
        padding: 25px 0 8px 0;
    }
    
    .footer-header .section-title h2 {
        font-size: 1.5rem;
    }
    
    .footer-header .section-title p {
        font-size: 0.85rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-links h3 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 8px;
    }
    
    .footer-links ul li a {
        font-size: 0.75rem;
    }
    
    .footer-contact-box ul li {
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .footer-contact-box ul li i {
        font-size: 0.9rem;
        min-width: 14px;
    }
    
    .footer-social-links li a {
        width: 26px;
        height: 26px;
    }
    
    .footer-copyright-text {
        padding-top: 12px;
        margin-top: 18px;
    }
    
    .footer-copyright-text p {
        font-size: 0.7rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #f8f9fa;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    clear: both;
}

.contact-section .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
}

.contact-section .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.4s;
}

.contact-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 50px auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
}

.contact-section .section-title h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-section .section-title h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-section .section-title p.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Location Card Styles */
.location-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.location-header {
    background: #28a745;
    color: white;
    padding: 25px;
    text-align: center;
}

.location-header i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.location-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-content {
    padding: 25px;
}

.location-content p {
    margin-bottom: 12px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-content p:last-child {
    margin-bottom: 0;
}

.location-content strong {
    color: #28a745;
}

/* Google Maps Embed Styles */
.google-maps-embed {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 300px;
}

.maps-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 20px;
}

.maps-placeholder i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.maps-placeholder p {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.maps-placeholder small {
    color: #999;
    font-size: 0.85rem;
}

/* Responsive adjustments for Contact Section */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .location-card {
        margin-bottom: 25px;
    }
    
    .google-maps-embed {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-section .section-title h3 {
        font-size: 1rem;
    }
    
    .contact-section .section-title p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .location-header {
        padding: 20px;
    }
    
    .location-header i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .location-header h3 {
        font-size: 1.2rem;
    }
    
    .location-content {
        padding: 20px;
    }
    
    .google-maps-embed {
        height: 200px;
    }
    
    /* Improve form layout on mobile */
    .contact-section .row {
        margin: 0;
    }
    
    .contact-section .col-lg-8,
    .contact-section .col-lg-4 {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .contact-section .section-title h3 {
        font-size: 0.9rem;
    }
    
    .contact-section .section-title p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .location-header {
        padding: 18px;
    }
    
    .location-header i {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .location-header h3 {
        font-size: 1.1rem;
    }
    
    .location-content {
        padding: 18px;
    }
    
    .location-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .google-maps-embed {
        height: 180px;
    }
    
    .maps-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .maps-placeholder p {
        font-size: 1rem;
    }
    
    .maps-placeholder small {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .contact-section .section-title h3 {
        font-size: 0.85rem;
    }
    
    .contact-section .section-title p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-control {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .location-header {
        padding: 15px;
    }
    
    .location-header i {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .location-header h3 {
        font-size: 1rem;
    }
    
    .location-content {
        padding: 15px;
    }
    
    .location-content p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .google-maps-embed {
        height: 160px;
    }
    
    .maps-placeholder i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .maps-placeholder p {
        font-size: 0.9rem;
    }
    
    .maps-placeholder small {
        font-size: 0.75rem;
    }
}

/* About Us Page Styles */
/* Background wrapper for pages with background images */
body.about-page {
    position: relative;
}

body.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/EnvCleanup.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

/* Air Page - No body background, only page header background */
body.air-page {
    position: relative;
}

/* Water Page - No body background, only page header background */
body.water-page {
    position: relative;
}

/* Environmental Cleanup Page - No body background, only page header background */
body.environmental-cleanup-page {
    position: relative;
}

.page-header,
.page-header.bg-section,
.page-header.parallaxie {
    margin-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
    background-color: transparent !important;
    color: white !important;
    padding: 120px 0 80px !important;
    overflow: hidden !important;
    min-height: 300px !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
}

.page-header::before,
.page-header.bg-section::before,
.page-header.parallaxie::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/EnvCleanup.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    z-index: -1 !important;
    display: block !important;
}

/* Page-specific header backgrounds */
body.air-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/air01_.jpg') !important;
}

body.water-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/water01.jpg') !important;
}

body.environmental-cleanup-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/EnvCleanup.jpg') !important;
}

body.asbestos-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/asbestos_sample_collection.png') !important;
}

body.others-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/Others.png') !important;
}

/* Contact Page Styles */
body.contact-page .page-header::before {
    background: linear-gradient(rgba(2, 43, 35, 0.7), rgba(2, 43, 35, 0.7)), url('../images/carousel/EnvCleanup.jpg') !important;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

/* IAQ 3-Column Section Styles */
.iaq-content h4 {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.iaq-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.iaq-btn .btn-highlighted {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.iaq-btn .btn-highlighted:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    color: white;
}

.iaq-image-box {
    position: relative;
    text-align: center;
}

.iaq-image {
    margin-bottom: 25px;
}

.iaq-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.iaq-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}



.iaq-parameters-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.parameter-group h4 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(40, 167, 69, 0.3);
    padding-bottom: 8px;
}

.parameter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.parameter-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.parameter-item i {
    color: #28a745;
    font-size: 14px;
    width: 20px;
    text-align: center;
    font-weight: bold;
}

.parameter-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.iaq-parameters-list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

/* Laboratory Information Styles */
.iaq-lab-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: fit-content;
    max-width: 100%;
}

.iaq-lab-info:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-left-color: #20c997;
}

.iaq-lab-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.iaq-lab-info p:last-child {
    margin-bottom: 0;
}



.iaq-lab-info p {
    position: relative;
    padding-left: 20px;
}

.iaq-lab-info p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* What We Do Section Styles */
.what-we-do {
    padding: 80px 0;
    position: relative;
}

.what-we-do.dark-section {
    background: linear-gradient(135deg, #022B23, #1a4a3f);
    color: white;
}

.what-we-content .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.what-we-content .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.what-we-content .section-title h2 span {
    color: #28a745;
}

.what-we-content .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.what-we-btn .btn-highlighted {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.what-we-btn .btn-highlighted:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    color: white;
}

.what-we-image-box {
    position: relative;
    text-align: center;
}

.what-we-image {
    margin-bottom: 30px;
}

.what-we-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.what-we-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-contact-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.about-contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-contact-box .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #022B23, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-contact-box .icon-box i {
    color: white;
    font-size: 20px;
}

.about-contact-box-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.about-contact-box-content h3 {
    color: #022B23;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.about-contact-box-content h3 a {
    color: #022B23;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-contact-box-content h3 a:hover {
    color: #28a745;
}

.what-we-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.what-we-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.what-we-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-left-color: #20c997;
}

.what-we-item h3 {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.what-we-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Info Sidebar Styles */
.contact-info-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    height: fit-content;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #022B23, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.contact-info-item .contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-info-item .contact-content h4 {
    color: #022B23;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-item .contact-content p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-info-item .contact-content a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item .contact-content a:hover {
    color: #022B23;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    color: #022B23;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background: white;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #022B23, #28a745);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #28a745, #022B23);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Business Hours Styles */
.business-hours-content h2,
.service-areas-content h2 {
    color: #022B23;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.business-hours-content p,
.service-areas-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hours-item .day {
    font-weight: 600;
    color: #022B23;
}

.hours-item .time {
    color: #28a745;
    font-weight: 500;
}

.hours-item.emergency {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.hours-item.emergency .time {
    color: #dc3545;
    font-weight: 600;
}

/* Service Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.area-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.area-item:hover i {
    transform: scale(1.1);
    color: #022B23;
}

.area-item span {
    color: #022B23;
    font-weight: 600;
    font-size: 1rem;
}

/* Map Section Styles */
.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.map-content h3 {
    color: #022B23;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.map-actions .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .iaq-content h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .iaq-content p {
        text-align: center;
    }
    
    .iaq-btn {
        text-align: center;
    }
    
    .iaq-image-box {
        margin: 30px 0;
    }
    
    .iaq-lab-info {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .parameter-item {
        padding: 8px;
    }
    
    .parameter-item span {
        font-size: 0.9rem;
    }
    
    .what-we-do {
        padding: 60px 0;
    }
    
    .what-we-content .section-title h2 {
        font-size: 2rem;
    }
    
    .what-we-content .section-title p {
        font-size: 1rem;
    }
    
    .what-we-item {
        padding: 20px;
    }
    
    .what-we-item h3 {
        font-size: 1.2rem;
    }
    
    .about-contact-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-sidebar {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-item .contact-icon {
        margin: 0 auto 15px;
    }
    
    .map-placeholder {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hours-item .day,
    .hours-item .time {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .business-hours-content h2,
    .service-areas-content h2 {
        font-size: 1.8rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #022B23, #28a745);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #28a745, #022B23);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.page-header-box {
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-header-box h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-box h1 span {
    color: #28a745;
}

.page-header-box .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.page-header-box .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header-box .breadcrumb-item a {
    color: #28a745;
    text-decoration: none;
}

.page-header-box .breadcrumb-item.active {
    color: white;
}

.page-header-box .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
    margin: 0 10px;
}



/* Who We Are Section */
.who-we-are-section {
    background: #f8f9fa;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    clear: both;
}

.who-we-are-section .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.who-we-are-section .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.who-we-are-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.who-we-are-content p:last-of-type {
    margin-bottom: 30px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.certification-item i {
    color: #28a745;
    font-size: 1.5rem;
}

.certification-item span {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.who-we-are-image {
    text-align: center;
}

.who-we-are-image figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

/* Chairman Section */
.chairman-section {
    background: #022B23;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    clear: both;
    color: white;
}

.chairman-section .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.chairman-section .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.chairman-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.chairman-message p:last-child {
    margin-bottom: 0;
}

.chairman-message p strong {
    color: #28a745;
    font-weight: 600;
}

.chairman-image {
    text-align: center;
}

.chairman-image figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.chairman-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Company Values Section */
.company-values-section {
    background: #f8f9fa;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    clear: both;
}

/* Animation classes for About Us page elements */
.who-we-are-section .section-title h3,
.who-we-are-section .section-title h2,
.who-we-are-section .section-title p,
.who-we-are-content p,
.certification-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.who-we-are-section .section-title h3.animate,
.who-we-are-section .section-title h2.animate,
.who-we-are-section .section-title p.animate,
.who-we-are-content p.animate,
.certification-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.chairman-section .section-title h3,
.chairman-section .section-title h2,
.chairman-message p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.chairman-section .section-title h3.animate,
.chairman-section .section-title h2.animate,
.chairman-message p.animate {
    opacity: 1;
    transform: translateY(0);
}

.company-values-section .section-title h3,
.company-values-section .section-title h2,
.value-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.company-values-section .section-title h3.animate,
.company-values-section .section-title h2.animate,
.value-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.company-values-section .section-title h3 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.company-values-section .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    color: white;
    font-size: 2rem;
}

.value-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for About Us Page */
@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 70px 0;
    }
    
    .page-header-box h1 {
        font-size: 3rem;
    }
    
    .who-we-are-section,
    .chairman-section,
    .company-values-section {
        padding: 80px 0;
    }
    
    .who-we-are-section .section-title h2,
    .chairman-section .section-title h2,
    .company-values-section .section-title h2 {
        font-size: 2.2rem;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .value-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 60px 0;
    }
    
    .page-header-box h1 {
        font-size: 2.5rem;
    }
    
    .who-we-are-section,
    .chairman-section,
    .company-values-section {
        padding: 60px 0;
    }
    
    .who-we-are-section .section-title h2,
    .chairman-section .section-title h2,
    .company-values-section .section-title h2 {
        font-size: 2rem;
    }
    
    .who-we-are-section .section-title h3,
    .chairman-section .section-title h3,
    .company-values-section .section-title h3 {
        font-size: 1rem;
    }
    
    .who-we-are-content p,
    .chairman-message p {
        font-size: 1rem;
    }
    
    .certification-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .certification-item {
        width: 100%;
        max-width: 300px;
    }
    
    .value-item {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 70px 0 50px 0;
    }
    
    .page-header-box h1 {
        font-size: 2.2rem;
    }
    
    .who-we-are-section,
    .chairman-section,
    .company-values-section {
        padding: 50px 0;
    }
    
    .who-we-are-section .section-title h2,
    .chairman-section .section-title h2,
    .company-values-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .who-we-are-section .section-title h3,
    .chairman-section .section-title h3,
    .company-values-section .section-title h3 {
        font-size: 0.9rem;
    }
    
    .who-we-are-content p,
    .chairman-message p {
        font-size: 0.95rem;
    }
    
    .certification-item {
        padding: 12px 15px;
        max-width: 280px;
    }
    
    .certification-item i {
        font-size: 1.3rem;
    }
    
    .certification-item span {
        font-size: 0.9rem;
    }
    
    .value-item {
        padding: 25px 20px;
        margin-bottom: 18px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .value-icon i {
        font-size: 1.6rem;
    }
    
    .value-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .page-header-box h1 {
        font-size: 2rem;
    }
    
    .who-we-are-section .section-title h2,
    .chairman-section .section-title h2,
    .company-values-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .who-we-are-section .section-title h3,
    .chairman-section .section-title h3,
    .company-values-section .section-title h3 {
        font-size: 0.85rem;
    }
    
    .who-we-are-content p,
    .chairman-message p {
        font-size: 0.9rem;
    }
    
    .certification-item {
        padding: 10px 12px;
        max-width: 260px;
    }
    
    .certification-item i {
        font-size: 1.2rem;
    }
    
    .certification-item span {
        font-size: 0.85rem;
    }
    
    .value-item {
        padding: 20px 18px;
        margin-bottom: 15px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .value-icon i {
        font-size: 1.4rem;
    }
    
    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 0.85rem;
    }
}

/* Air Services Page Styles */
body {
    padding-top: 0;
}

.services-navigation-section {
    background: #f8f9fa;
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    scroll-margin-top: 140px;
}

.services-navigation-section .section-title h3,
.services-navigation-section .section-title h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.services-navigation-section .section-title h3.animate,
.services-navigation-section .section-title h2.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.service-nav-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.service-nav-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-nav-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 200px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-nav-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(40, 167, 69, 0.95) !important;
    border-color: #28a745;
}

.service-nav-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-nav-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-nav-card:hover .service-nav-icon {
    transform: scale(1.1);
    background: white;
}

.service-nav-card:hover .service-nav-icon i {
    color: #28a745;
}

.service-nav-card:hover h5 {
    color: white;
}

.service-nav-card h5 {
    color: #333;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.service-detail-section {
    padding: 100px 0;
    background: #f8f9fa;
    margin-top: 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 140px;
}

.service-detail-section:first-of-type {
    margin-top: 50px;
}

.service-detail-section.dark-section {
    background: #022B23;
    color: white;
    position: relative;
    z-index: 1;
}

.service-detail-section.dark-section .section-title h3 {
    color: #28a745;
}

.service-detail-section.dark-section .section-title h2 {
    color: white;
}

.service-detail-section .section-title h3,
.service-detail-section .section-title h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.service-detail-section .section-title h3.animate,
.service-detail-section .section-title h2.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-detail-section.dark-section .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease-out;
}

.service-content p.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-content p.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-image {
    position: relative;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease-out;
}

.service-image.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.advantages-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.advantages-section.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.advantages-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.advantages-section h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.advantage-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.advantage-item span {
    color: #666;
    line-height: 1.6;
}

.alert-box {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.alert-box.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.alert-box strong {
    font-size: 1.1rem;
}

.service-gallery-item {
    transition: all 0.3s ease;
}

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

.service-gallery-item img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-gallery-item:hover img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.test-parameters {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.test-parameters.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.test-parameters.animate {
    opacity: 1;
    transform: translateY(0);
}

.test-parameters h4 {
    color: #28a745;
    margin-bottom: 15px;
    font-weight: 600;
}

.test-parameters ol {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 20px;
}

.test-parameters li {
    margin-bottom: 8px;
    line-height: 1.6;
}


/* Responsive adjustments for Air Services */
@media (max-width: 991.98px) {
    .services-navigation-section {
        padding: 60px 0;
        margin-top: 100px !important;
        scroll-margin-top: 120px;
    }
    
    .service-detail-section {
        padding: 80px 0;
        margin-top: 0;
        scroll-margin-top: 120px;
    }
    
    .service-nav-card {
        padding: 30px 20px;
        height: 180px;
    }
    
    .service-nav-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-nav-icon i {
        font-size: 1.4rem;
    }
    
    .page-header {
        margin-top: 80px;
    }
}

@media (max-width: 767.98px) {
    .services-navigation-section {
        padding: 50px 0;
        margin-top: 90px !important;
        scroll-margin-top: 100px;
    }
    
    .service-detail-section {
        padding: 60px 0;
        margin-top: 0;
        scroll-margin-top: 100px;
    }
    
    .service-nav-card {
        padding: 25px 15px;
        margin-bottom: 20px;
        height: 160px;
    }
    
    .service-nav-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-nav-icon i {
        font-size: 1.3rem;
    }
    
    .service-nav-card h5 {
        font-size: 0.9rem;
    }
    
    .advantages-section {
        padding: 20px;
    }
    
    .alert-box {
        padding: 15px;
    }
    
    .alert-box strong {
        font-size: 1rem;
    }
    
    .page-header {
        margin-top: 70px;
        padding: 100px 0 60px;
    }
    
    .page-header-box h1 {
        font-size: 2.5rem;
    }
    
    .page-header::before {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .services-navigation-section {
        padding: 40px 0;
        margin-top: 80px !important;
        scroll-margin-top: 90px;
    }
    
    .service-detail-section {
        padding: 50px 0;
        margin-top: 0;
        scroll-margin-top: 90px;
    }
    
    .service-nav-card {
        padding: 18px 12px;
        height: 140px;
    }
    
    .service-nav-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .service-nav-icon i {
        font-size: 1.3rem;
    }
    
    .service-nav-card h5 {
        font-size: 0.9rem;
    }
    
    .advantages-section {
        padding: 15px;
    }
    
    .advantage-item {
        gap: 10px;
    }
    
    .advantage-item i {
        font-size: 1.1rem;
    }
    
    .test-parameters {
        padding: 20px;
    }
    
    .page-header {
        margin-top: 60px;
        padding: 80px 0 50px;
    }
    
    .page-header-box h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .page-header::before {
        opacity: 0.15;
    }
}

@media (max-width: 360px) {
    .services-navigation-section {
        padding: 30px 0;
        margin-top: 70px !important;
    }
    
    .service-detail-section {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .service-nav-card {
        padding: 15px 10px;
        height: 120px;
    }
    
    .service-nav-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .service-nav-icon i {
        font-size: 1.2rem;
    }
    
    .service-nav-card h5 {
        font-size: 0.85rem;
    }
    
    .page-header {
        margin-top: 50px;
        padding: 60px 0 40px;
    }
    
    .page-header-box h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title h3 {
        font-size: 0.9rem;
    }
    
    .page-header::before {
        opacity: 0.1;
    }
}

/* Work Step List Styles - Redesigned cards */
.work-step-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px; /* Reduced gap between images */
    margin-top: 0;
    position: relative;
    padding: 20px;
}

/* New Animation System - Intersection Observer Based */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for multiple elements */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Override section title animations - make headings always visible */
.section-title h3,
.section-title h2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* Ensure section titles are always visible without animation */
.section-title h3.animate,
.section-title h2.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Override page-services specific section title animations */
.page-services .section-title h3,
.page-services .section-title h2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.page-services .section-title h3.animate,
.page-services .section-title h2.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Override service-detail-section specific section title animations */
.service-detail-section .section-title h3,
.service-detail-section .section-title h2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.service-detail-section .section-title h3.animate,
.service-detail-section .section-title h2.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure section titles are always visible by overriding all animation rules */
.section-title h3,
.section-title h2,
.page-services .section-title h3,
.page-services .section-title h2,
.service-detail-section .section-title h3,
.service-detail-section .section-title h2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    visibility: visible !important;
    display: block !important;
}

/* Enhanced animation effects for different content types */
.animate-on-scroll.animated {
    animation-fill-mode: both;
}

/* Special animations for different element types */
.section-title .animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.comparison-card.animate-on-scroll.animated {
    animation: scaleIn 0.6s ease-out forwards;
}

.process-step.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Ensure smooth transitions */
.animate-on-scroll {
    will-change: opacity, transform;
    backface-visibility: hidden;
}

/* Before and After Comparison Styles */
.comparison-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.comparison-card.compact {
    margin-bottom: 15px;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.comparison-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    text-align: center;
}

.comparison-header.compact {
    padding: 15px;
}

.comparison-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-header i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.comparison-image {
    padding: 20px;
    background: #f8f9fa;
}

.comparison-image.compact {
    padding: 15px;
}

.comparison-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.comparison-description {
    padding: 20px;
    background: white;
}

.comparison-description.compact {
    padding: 15px;
}

.comparison-description p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.comparison-description strong {
    color: #333;
}

/* Process Steps Styles */
.process-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps.compact {
    padding: 20px;
}

.process-steps h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 30px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step.compact {
    padding: 15px;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.step-image {
    margin-bottom: 15px;
}

.step-image.compact {
    margin-bottom: 10px;
}

.step-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.step-content h5 {
    color: #28a745;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Responsive Design for Comparison Section */
@media (max-width: 991.98px) {
    .comparison-card {
        margin-bottom: 30px;
    }
    
    .comparison-image img {
        height: 200px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .step-image img {
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .comparison-header h4 {
        font-size: 1.1rem;
    }
    
    .comparison-image {
        padding: 15px;
    }
    
    .comparison-image img {
        height: 180px;
    }
    
    .comparison-description {
        padding: 15px;
    }
    
    .comparison-description p {
        font-size: 0.9rem;
    }
    
    .process-steps {
        padding: 20px;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .step-content h5 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .comparison-image img {
        height: 150px;
    }
    
    .step-image img {
        height: 80px;
    }
    
    .process-steps h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

.work-step-item {
    text-align: center;
    background: #022B23;
    border-radius: 15px;
    position: relative;
    flex: 1;
    max-width: 300px;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-step-item:hover {
    background: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-step-item:hover .step-image img {
    transform: scale(1.05);
}

.work-step-item h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 0 0;
    padding: 15px;
    background: rgba(2, 43, 35, 0.9);
    position: relative;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.work-step-item:hover h3 {
    background: rgba(40, 167, 69, 0.9);
}

/* Second card positioned lower */
.work-step-item:nth-child(3) {
    margin-top: 40px;
}

/* Arrow between steps with animation */
.comparison-arrow {
    position: absolute;
    left: 45%; /* Moved slightly to the left */
    top: 65px; /* Positioned higher between the two cards */
    width: 40px;
    height: 40px;
    z-index: 10;
    transition: all 0.3s ease;
    animation: arrowPulse 2s infinite;
    transform: translateX(-50%);
}

.arrow-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes arrowPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.comparison-arrow:hover {
    transform: translateX(-50%) scale(1.2);
}

.comparison-arrow:hover .arrow-image {
    filter: brightness(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .work-step-list {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .work-step-item {
        max-width: 100%;
    }
    
    .work-step-item:first-child::after {
        content: '';
        position: absolute;
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%) rotate(90deg);
        width: 40px;
        height: 30px;
    }
    
    /* Fix arrow positioning on mobile */
    .comparison-arrow {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 15px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .comparison-arrow:hover {
        transform: scale(1.2);
    }
}

/* Additional mobile fixes for arrows */
@media (max-width: 575px) {
    .comparison-arrow {
        width: 30px;
        height: 30px;
        margin: 10px auto;
    }
}

/* Service Organic List Styles with Tick Marks */
.service-organic-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-organic-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #022B23;
}

/* Dark section list items */
.dark-section .service-organic-list li {
    color: white;
}

/* Dark section work step items - ensure they have light styling */
.dark-section .work-step-item {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dark-section .work-step-item h3 {
    color: #022B23;
    background: rgba(255, 255, 255, 0.9);
    margin: 15px 0 0 0;
    padding: 15px;
    border-radius: 8px;
}

.dark-section .work-step-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.service-organic-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

/* Enhanced Service Cards */
.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image figure {
    margin: 0;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-overlay-content {
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-overlay-content {
    transform: translateY(0);
}

.service-btn-overlay {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #28a745;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-btn-overlay:hover {
    background: white;
    color: #28a745;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(40, 167, 69, 0.3);
}

.service-content {
    padding: 30px;
    background: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.service-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #28a745;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-category,
.service-duration {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Responsive adjustments for enhanced service cards */
@media (max-width: 991.98px) {
    .service-content {
        padding: 25px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 1.4rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .service-content {
        padding: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .service-meta {
        gap: 10px;
    }
    
    .service-category,
    .service-duration {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .service-content {
        padding: 18px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .service-btn-overlay {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}
