:root {
    --primary: #005f8c;
    --secondary: #00a0e1;
    --accent: #ff6b00;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --white: #ffffff;
}
            
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
            
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    padding-top: 120px;
}

html, body {
    overflow-x: hidden;
}
            
.main-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#logo img {
    max-height: 100px;
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.05);
}

#tabs-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#tabs-top a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 750;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

#tabs-top a.active {
    color: var(--primary);
}

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

#tabs-top a:hover {
    color: var(--primary);
}

#tabs-top a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

#tabs-top a:hover:after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    padding-left: 30px;
}

.dropdown-content a {
    color: var(--dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    height: 80vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    filter: brightness(0.7);
}

.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.hero-tagline h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
            
section {
    padding: 5rem 5%;
}
            
#about {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}
            
#about img {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
            
#about-text {
    flex: 1;
}
            
#about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
            
#about-text p {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1.1rem;
}
            
button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
            
button:hover {
    background-color: #346d41;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
            
#services {
    background-color: #eff1f3;
}
            
#services h2, #Brands h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
            
#services p, #Brands p {
    text-align: center;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}
            
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
            
.info-box {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}
            
.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
            
.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
            
.info-box h3 {
    position: absolute;
    bottom: 70px;
    left: 20px;
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
             
.info-box button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid var(--white);
}
            
.info-box button:hover {
    background-color: var(--white);
    color: var(--primary);
}

#products-info {
    background-color: var(--primary);
    color: var(--white);
    padding: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.product-info-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.info-box-2 {
    flex: 1;
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin-left: 0%;
    margin-right: 0%;
}

.product-image-container {
    height: 500px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-text {
    padding: 2rem;
}

.product-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-text p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-info-grid {
        /* Changes the main axis from horizontal (row) to vertical (column) */
        flex-direction: column;
    }

    .info-box-2 {
        /* Since the items are now stacked, adding some vertical spacing is often helpful. */
        margin-bottom: 1rem;
    }
}

.button-link {
    display: inline-block;
    background-color: lightblue;
    border: none;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-link:hover {
    background-color: rgb(38, 180, 38);
}

#Brands {
    padding: 5rem 5%;
    background-color: var(--white);
    text-align: center;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}
            
.brand-logos img {
    height: 60px;
    filter: grayscale(5%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
            
.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
            
.footer {
    background: #1a202c;
    color: white;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    color: #ff6b35;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
    font-size: 1.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}
            
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
            
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
            
#casualty-section {
    padding: 3rem 5% 2rem;
    background-color: var(--white);
}
            
.casualty-info-box h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
}
            
.casualty-info-box h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent);
}
            
.department-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
            
.department-tabs a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid gray;
}
            
.department-tabs a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.solutions-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    background-color: #005f8c;
    color: #fff;
    padding: 20px;
}

.solutions-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
}

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

.solutions-nav li {
    margin-bottom: 12px;
}

.solutions-nav a {
    display: block;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.solutions-nav a:hover {
    background-color: #f5f5f5;
    border-color: #999;
    color: #000;
}

.solutions-nav a.active {
    background-color: #519d4f;
    color: #fff;
    border-color: #007bff;
}

.solutions-dropdown-menu .dropbtn {
    padding: 0 10px;
}

.solutions-dropdown-menu .dropdown-content {
    right: auto;
    left: 0;
}

.dropdown-item {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    font-weight: bold;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 20px;
    display: none;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    color: #333;
    background-color: #f0f2f5;
    padding: 5px 10px;
    border-radius: 4px;
}

.dropdown-menu a:hover {
    background-color: #e0e0e0;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
}

.page-title {
    font-size: 2rem;
    color: #005f8c;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    text-align: center;     
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px auto; 
}

.equipment-list-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.equipment-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    width: 100%;
}

.equipment-column p {
    margin: 6px 0;
}

.tabs-top .active-link {
    color: #3f6089;
    text-decoration: underline;
    text-decoration-color: #3f6089;
}

@media (max-width: 992px) {
    #about {
        flex-direction: column;
    }
                
    #about img {
        width: 100%;
    }
                
    .main-header {
        flex-direction: column;
        padding: 1rem;
    }
                
    #tabs-top {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
                
    .hero-tagline h1 {
        font-size: 2.5rem;
    }
                
    .hero-tagline p {
        font-size: 1.2rem;
    }
                
    .department-tabs {
        gap: 0.5rem;
    }
                
    .department-tabs a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}
            
@media (max-width: 768px) { 
    /* ===================================================
       NEW: Stacks sidebar and main content at 768px
       =================================================== */
    .solutions-container {
        flex-direction: column;
        /* Optional: Remove desktop side margins/padding if needed */
        margin: 10px auto;
        padding-top: 30px;
    }

    .sidebar {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px; /* Adds vertical space between sidebar and main content */
    }
    
    #tabs-top {
        display:none;
        flex-direction: column;
        background-color: var(--white);
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

    .dropdown:hover .dropdown-content {
        position: static;
        box-shadow: none;
    }

    .dropdown-content a {
        color: #000000;
    }
                    
    .product-image-container {
        height: auto;
    }

    .product-image-container img {
        height: auto;
        object-fit: contain;
    }
                    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-top: 1.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    #tabs-top.active {
        left: 0;
    }
    
    .solutions-nav a {
        width: 100%;
        font-size: 1rem;
    }
    
    .solutions-heading {
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .solutions-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .solutions-nav li {
        margin: 5px;
    }
    
    .equipment-list {
        flex-direction: column;
        gap: 10px;
    }
                    
    section {
        padding: 3rem 2rem;
    }
                    
    .services-grid {
        grid-template-columns: 1fr;
    }
                    
    .brand-logos img {
        height: 40px;
    }
                    
    #casualty-section, .gallery, #Brands {
        padding: 2rem;
    }
                    
    .casualty-info-box h1 {
        font-size: 2rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
                    
    .gallery-item p {
        min-height: 50px;
        padding: 0.7rem;
    }
}

/* ===== Hamburger Button Styling ===== */
.hamburger-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 25px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Show hamburger on mobile only */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: green;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    #tabs-top {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 100px; /* under your header */
        left: -100%;
        width: 100%;
        background: var(--white);
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 999;
    }

    #tabs-top.active {
        left: 0;
    }

    #tabs-top a {
        padding: 0;
        font-size: 1rem;
    }

    .dropdown {
        position: static; 
        width: 100%; 
    }

    /* Target the dropdown content when it's supposed to be visible */
    .dropdown:hover .dropdown-content,
    .dropdown-content.active { 
        display: block;
        width: 50%; 
        position: static; 
        box-shadow: none;
        padding: 0;
        margin: 5px 0 10px 0; /* Add margin for separation from the next item */
        border-radius: 4px;
        overflow: hidden; 
        background-color: #519d4f;
    }

    /* Style the links inside the mobile dropdown box */
    .dropdown-content a {
        padding: 10px 30px; 
        font-size: 0.9rem; 
        text-align: center;
        color: var(--white) !important; /* Forces the link text to white */
        background-color: transparent; /* Remove background so the green box color shows */
        border: none;
        transition: background-color 0.3s ease;
    }
    
    /* Optional: Add hover/tap effect for the green sub-menu items */
    .dropdown-content a:hover {
        background-color: rgba(0, 0, 0, 0.1); /* Slight darker shade on hover/tap */
    }
}

/* ===== Animate into X when active ===== */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}
            
/* Support Hero Section (Tech.html file) */
#support-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0, 95, 140, 0.4), rgba(0, 95, 140, 0.5)),
        url('images/support.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    margin-top: 6px;
}

.hero-tagline h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-tagline p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Services Grid */
#support-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background-color: var(--white);
}

.service-item {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px #497c90;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 2rem 1.5rem;
}

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

.service-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.service-item h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Enlarged Support Section */
#support-services-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 6rem 8%; 
    background-color: #fff; 
}

#support-services-large .service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center; 
    overflow: hidden; 
}

#support-services-large .service-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
}

#support-services-large .service-item h2 {
    font-size: 1.4rem;
    padding: 1.5rem 0; 
    color: #005f8c; 
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    #support-services-large {
        grid-template-columns: 1fr; /* On smaller screens, stack items in a single column */
        gap: 1.5rem; /* Reduce the gap between items */
        padding: 4rem 5%; /* Adjust padding for mobile */
    }

    #support-services-large .service-item img {
        height: 200px; /* Slightly reduce the image height for mobile screens */
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: gainsboro;
    padding: 5rem 5%;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.why-choose-content {
    flex: 1;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.why-choose-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

.intro {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.benefits-list strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefits-list span {
    color: var(--gray);
    font-size: 0.95rem;
    display: block;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Query for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
    .footer-content {
        /* On screens smaller than 768px, we make each section a single column. */
        grid-template-columns: 1fr;
        text-align: center; /* Center the text for a cleaner mobile layout */
    }

    .footer-section h4 {
        margin-top: 1.5rem; /* Adds space between sections when they stack */
    }

    .footer-logo {
        justify-content: center; /* Centers the logo on mobile screens */
    }
}

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

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

@media (max-width: 992px) {
    .why-choose-container {
        flex-direction: column;
    }
    
    .why-choose-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .main-header {
        flex-direction: column;
        padding: 1rem;
    }
    
    #tabs-top {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-tagline h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #support-services, .why-choose-us, #Brands {
        padding: 3rem 2rem;
    }
    
    #support-hero {
        height: 50vh;
    }
    
    .hero-tagline h1 {
        font-size: 1.8rem;
    }
    
    .hero-tagline p {
        font-size: 1.1rem;
    }
    
    .brand-logos img {
        height: 40px;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 95, 140, 0.2), rgba(0, 95, 140, 0.1)), 
    url('images/contact-us-banner-2.webp') center/cover no-repeat;
    padding: 8rem 5% 6rem;
    margin-top: 120px; /* to avoid overlap with fixed header */
    height: 100%;
    text-align: center;
    color: var(--white);
    margin-top: 8px;
}
            
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}
            
.hero-subtext {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}
            
/* Contact Details Section */
.contact-details {
    padding: 4rem 5%;
   background-color: var(--white);
}
            
.contact-details h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
}
            
.contact-details h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}
            
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
            
.contact-method {
    background: var(--light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px #497c90;
}
            
.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
            
.contact-method img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}
            
.contact-method h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
            
.contact-method a, .contact-method p {
    color: var(--gray);
    transition: color 0.3s ease;
}
            
.contact-method a:hover {
    color: var(--accent);
    text-decoration: none;
}
            
/* ===== Contact Section ===== */
.contact-form-section {
    padding: 80px 20px;
    background-color: #f4f7f9;
}

.contact-form-container {
    display: flex; /* Creates a side-by-side layout */
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-column,
.contact-details-column {
    flex: 1; /* Both columns take up equal space */
}

/* ===== Form Styling ===== */
.contact-form h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

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

    .contact-form label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
        color: #555;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1em;
        box-sizing: border-box; /* Ensures padding doesn't affect the width */
    }

    .contact-form select {
        appearance: none; /* Removes default dropdown arrow */
        background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007bff%22%20d%3D%22M287%20197.6%20150.1%2060.7c-7.7-7.7-20.2-7.7-27.9%200L5.4%20197.6c-7.7%207.7-7.7%2020.2%200%2027.9s20.2%207.7%2027.9%200L136.2%20117.6c7.7-7.7%2020.2-7.7%2027.9%200L259.1%20225.5c7.7%207.7%2020.2%207.7%2027.9%200%207.8-7.7%207.8-20.2.1-27.9z%22%2F%3E%3C%2Fsvg%3E') no-repeat right 12px center;
        background-size: 10px;
    }

    .contact-form textarea {
        resize: vertical; /* Allows users to resize vertically */
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        border-color: #007bff; /* Highlights the input on focus */
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        background-color: var(--primary);
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
        background-color: #346d41;
    }
    
    /* Contact Details Column */
    .contact-details-column {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
        box-sizing: border-box;
    }

    .contact-details-column h3 {
        font-size: 1.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    /* Contact Info Card */
    .contact-info-item {
        background-color: var(--white);
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: auto; /* prevent forced stretching */
    }

    /* Correct scoping: only target h4 & h2 inside */
    .contact-info-item h4,
    .contact-info-item h2 {
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .contact-info-item p {
        color: var(--primary);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .contact-info-item ul {
        color: var(--primary);
        padding-left: 1.2rem;
    }

    .contact-info-item ul li {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
            
            /* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .form-column,
    .contact-details-column {
        width: 100%;
        flex: unset;
    }

    .contact-form-section {
        padding: 50px 15px;
    }

    .contact-form h2 {
        font-size: 1.6em;
    }

    .contact-details-column h3 {
        font-size: 1.3rem;
    }

    .contact-form-container {
        border-radius: 6px;
    }

    .submit-btn {
        font-size: 1em;
        padding: 12px;
    }

    .contact-info-item {
        padding: 1.5rem;
    }
}

/* About Us Section */
.about-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
}
        
.about-heading:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto;
}
        
.about-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}
        
#who-we-are, #our-expertise {
    flex: 1;
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
        
#who-we-are:hover, #our-expertise:hover {
    transform: translateY(-5px);
}
        
#who-we-are h3, #our-expertise h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}
        
.about-who, .about-expertise {
    color: var(--gray);
    line-height: 1.8;
}
        
.vision-mission-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 5%;
    color: var(--white);
}
        
.vision-mission-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.vision-mission-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.vision-mission-box h2:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.vision-mission-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Mobile Responsive (768px) ===== */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* stack vertically */
        gap: 1.5rem; /* smaller gap for mobile */
    }

    #who-we-are,
    #our-expertise {
        width: 100%; /* take full width */
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}