﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    margin: 0; /* Remove any default margin */
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
}

body {
    background-color: #f4f6fa !important;
    color: #333; /* Black text for readability */
    font-size: 16px;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #192230; /* Darker navbar for contrast */
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style the logo container */
.logo {
    display: flex;
    align-items: center;
}

/* Style for the link around the logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove default link styling */
}

/* Style for the logo image */
.logo-img {
    height: 80px; /* Adjust logo image size */
    margin-right: 8px; /* Add space between the image and text */
}

/* Style for the logo text */
.logo-text {
    font-size: 3rem; /* Adjust font size */
    font-weight: bold; /* Make the text bold */
}

/* Color for 'AC' part of the logo */
.logo-ac {
    color: #03ae57; /* Green color */
}

/* Color for 'TECH' part of the logo */
.logo-tech {
    color: white; /* White color */
}

/* Navbar Links */
.navbar-links {
    display: flex;
    gap: 2rem;
}

.navbar-link {
    color: #e2e2e2;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 8px 16px; /* Add padding for a better hover feel */
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease-in-out;
    border-radius: 0.5rem;
}

    /* Hover Effect */
    .navbar-link:hover {
        color: #fff;
        background-color: #03ae57; /* Change background on hover */
        transform: translateY(-2px); /* Subtle hover effect */
        transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease-in-out;
    }

/* Burger Menu for Mobile */
.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-icon {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .burger-icon:before,
    .burger-icon:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #fff;
    }

    .burger-icon:before {
        top: -8px;
    }

    .burger-icon:after {
        bottom: -8px;
    }

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly darkened backdrop */
    backdrop-filter: blur(8px); /* Beautiful blur effect */
    display: none;
    z-index: 10; /* Ensure it's below the menu but above other elements */
    opacity: 0;
    transition: opacity 0.3s ease;
}

    /* When the menu is open, the backdrop becomes visible */
    .mobile-menu-backdrop.open {
        display: block;
        opacity: 1; /* Full opacity */
    }

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Adjust width for a more compact look */
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #1a202c, #2d3748); /* Beautiful dark gradient */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
    transform: translateX(100%);
    transition: transform 0.4s ease-out, opacity 0.3s ease;
    z-index: 20; /* Ensure it's above the backdrop */
    padding: 2rem;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the menu items */
    align-items: center; /* Horizontally center the menu items */
}

    /* When the mobile menu is opened, it slides in */
    .mobile-menu.open {
        transform: translateX(0);
        opacity: 1;
    }

/* Close Button */
.close-menu {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: color 0.3s ease;
    z-index: 25; /* Ensure close button is clickable even on small screens */
}

    .close-menu i {
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .close-menu:hover {
        color: #63b3ed; /* Hover effect */
    }

        .close-menu:hover i {
            transform: rotate(90deg) scale(1.1);
        }

/* Mobile Menu Links */
.mobile-menu-link {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #f5f5f5;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: slide-in 0.5s ease-out forwards;
    width: 100%;
    justify-content: flex-start; /* Changed from center to flex-start for left alignment */
    padding: 8px 16px;
    border-radius: 0.5rem;
}

    .mobile-menu-link i {
        margin-right: 5px; /* Reduced the space between the icon and text */
        color: #fff;
    }

    .mobile-menu-link:hover {
        color: #fff;
        background-color: #03ae57;
        transform: translateY(-2px);
        transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease-in-out;
    }

/* Slide-In Animation for Links */
@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delay each link */
.mobile-menu-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu-link:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu-link:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive: Full Width on Smaller Screens */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
}



/* Footer */
.footer {
    background-color: #1f1f1f;
    color: #e2e2e2;
    padding: 1rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-link {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #bbf7d0;
    }

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .navbar-links {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 2.25rem; /* Adjust font size for tablets */
    }

    .navbar-links {
        display: none;
    }

    .navbar-link {
        font-size: 0.9rem; /* Smaller font size for mobile */
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 1.75rem; /* Larger text size for smaller screens */
    }

    .navbar-link {
        font-size: 0.85rem; /* Even smaller font size for very small screens */
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/shared/gears.jpg') center/cover no-repeat;
    z-index: 0; /* Ensure it's behind content */
}

/* Gradient Overlay */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Glassmorphism Effect */
.glass {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.35);
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 1400px; /* Max width for content */
    z-index: 2; /* Keep content above background */
    width: 100%;
    animation: fadeInUp 1.2s ease forwards;
}

/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.company-name {
    color: #03ae57;
    font-size: 4rem; /* Adjust size for more impact */
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.highlighted {
    font-weight: 600;
    font-size: 3rem;
    color: #ffcc00;
}

/* Subtext */
.hero-subtext {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 15px 0;
}

/* Checklist */
.hero-checklist {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

* AOS fade-up animation */
.check-item {
    opacity: 0; /* Start with item hidden */
    transform: translateY(30px); /* Start from below */
    animation: fadeInUp 1.2s ease forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Bounce-In effect for more dynamic entry */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.check-item {
    animation: bounceIn 0.8s ease forwards;
}

    /* For more fluid animation between elements */
    .check-item:nth-child(1) {
        animation-delay: 0.3s;
    }

    .check-item:nth-child(2) {
        animation-delay: 0.5s;
    }

    .check-item:nth-child(3) {
        animation-delay: 0.7s;
    }
.checkmark {
    font-size: 1.8rem;
    color: #03ae57;
    margin-right: 10px;
}

.check-item p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Button */
.hero-cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #03ae57, #027a3f);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(3, 174, 87, 0.5);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .hero-cta-btn:hover {
        background: linear-gradient(135deg, #02c169, #035b34);
        transform: translateY(-2px);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.1) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .company-name {
        font-size: 3.5rem;
    }

    .hero-subtext {
        font-size: 1.3rem;
    }

    .hero-checklist {
        flex-direction: column;
        gap: 20px;
    }

    .check-item {
        font-size: 1.1rem;
    }

    .hero-cta-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 40px;
}

/* Service Cards Layout */
.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Service Card */
.service-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 30px 25px;
    width: 360px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
}

    /* Hover Effect for Service Card */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

/* Icon Above Titles */
.service-icon {
    font-size: 3rem;
    color: #03ae57;
    margin-bottom: 15px;
}

/* Heading Style */
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 10px;
}

/* Description Style */
.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* CTA Panel */
.cta-panel {
    margin-top: 30px;
}

.cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

/* CTA Link Styling */
.cta-link {
    font-size: 1.1rem;
    color: #03ae57;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    overflow: hidden; /* prevent overflow on animation */
    transition: color 0.3s ease;
}

.cta-animate-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.5s ease; /* smooth motion */
}

.cta-link:hover .cta-animate-group {
    transform: translateX(8px);
}

.cta-link:hover {
    color: #1e3d58;
}

    .cta-link:hover i,
    .cta-link:hover .cta-animate-text {
        color: #1e3d58;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
    }

    .cta-link {
        font-size: 1rem;
    }
}


/* Portfolio Section */
.portfolio {
    background-color: #e1e2dc;
    padding: 80px 20px;
    text-align: center;
    max-width: 100%; /* Ensure it's not overflowing */
    margin: 0 auto; /* Center the section horizontally */
}

/* Ensures the portfolio grid is centered and does not overflow */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto; /* Center the grid */
    max-width: 1200px; /* Prevents the grid from becoming too wide */
    padding: 0 15px; /* Adds padding for small screens */
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-icon {
    font-size: 3rem;
    color: #03ae57;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Panel */
.cta-panel {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

.cta-link {
    font-size: 1.2rem;
    color: #03ae57;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #03ae57;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    /* Wrap both icon and text in a span for group animation */
    .cta-link .cta-animate-group {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.4s ease;
    }

    /* Animate entire group on hover */
    .cta-link:hover .cta-animate-group {
        transform: translateX(8px);
    }

    .cta-link:hover {
        background-color:  #03ae57;;
        color: white;
        text-decoration: none;
    }

        .cta-link:hover i,
        .cta-link:hover .cta-animate-text {
            color: white;
            background-color: #03ae57;
        }


/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        width: 90%;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-link {
        font-size: 1.1rem;
    }
}

/* General Styles for Icons */
.fas {
    font-size: 2rem; /* Adjusting the size of icons */
    color: #03ae57;
}
/* CTA Section */
.cta {
    background-color: #03ae57;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

    .cta h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .cta p {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

.cta-btn {
    background-color: #1e3d58;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .service-cards {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        width: 90%;
    }

    .portfolio-grid {
        flex-direction: column;
        gap: 20px;
    }

    .project-card {
        width: 90%;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .cta p {
        font-size: 1.2rem;
    }
}

/* Footer Section */
.footer {
    background-color: #192230; /* Dark background for the footer */
    color: white;
    padding: 20px 0;
}

/* Reduce icon size */
.icon-small {
    font-size: 1.2rem; /* Adjust the size as needed */
}

.footer i {
    font-size: 1.5rem; /* Default icon size for other icons */
}

.footer .fs-5 {
    font-size: 1rem; /* Ensure consistent font size for text */
}

.nav-link-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.text-center {
    font-size: 1rem;
    text-align:center;
}

.fs-5 {
    font-size: 1.2rem;
}

.text-white {
    color: white !important;
}

/* Email and Phone Sections */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.mx-2, .mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.fs-5 {
    font-size: 1rem;
}


/* Remove underline from all anchor tags */
a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherit text color from parent */
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer .nav-link-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer .mx-4 {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer .text-center {
        margin-bottom: 10px;
    }
}


/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #03ae57;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px; /* Set a specific width */
    height: 50px; /* Set a specific height */
    display: flex;
    align-items: center; /* Vertically center the icon */
    justify-content: center; /* Horizontally center the icon */
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensure it appears above other content */
}

    .back-to-top-btn:hover {
        background-color: #028a46; /* Darker shade on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    /* Change the color of the arrow icon to white */
    .back-to-top-btn i {
        color: white;
        pointer-events: none; /* Prevent interfering with clicks */
    }


/* === About Us === */

/* === Image Styling === */
img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* === Section Styling === */
.section {
    background-color: #fff;
    padding: 80px 40px;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08), 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
    animation: fadeInUp 1s ease-out;
    /* border: 2px solid #192230; */
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Section Titles === */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 46px;
        font-weight: 700;
        color: #192230;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 4px;
            background-color: #03ae57;
            border-radius: 2px;
        }

/* === Vision & Mission === */
.vision-mission .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.content-image {
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

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

.content-text {
    flex: 2;
}

    .content-text h3 {
        font-size: 30px;
        color: #03ae57;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .content-text p {
        margin-bottom: 20px;
        color: #192230;
        font-size: 18px;
        line-height: 1.6;
    }

/* === Purpose === */
.purpose .content-wrapper {
    text-align: justify;
}

    .purpose .content-wrapper p {
        font-size: 18px;
        color: #192230;
    }

/* === Differences Section === */
.difference-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.difference-card {
    background-color: #f0f4f9;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .difference-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .difference-card h3 {
        color: #03ae57;
        font-size: 26px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .difference-card p {
        color: #192230;
        font-size: 18px;
        line-height: 1.6;
    }

/* === Company History Timeline === */
.timeline-wrapper {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: #03ae57;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    animation: fadeInUp 1s ease-out;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    background-color: #192230;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px #03ae5730;
}

.timeline-content {
    background: #f7f9fc;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    flex: 1;
}

    .timeline-content h4 {
        font-size: 22px;
        color: #03ae57;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .timeline-content p {
        font-size: 16px;
        color: #192230;
        line-height: 1.6;
    }

/* === Corporate Officers Grid === */
.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.officer-card {
    background-color: #f0f4f9;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .officer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .officer-card h4 {
        font-size: 24px;
        color: #03ae57;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .officer-card p {
        font-size: 18px;
        color: #192230;
    }

/* === Recognition Section === */
.recognition-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.recognition-card {
    background-color: #f0f4f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

    .recognition-card h4 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #03ae57;
        font-weight: 600;
    }

    .recognition-card p {
        font-size: 16px;
        color: #192230;
        line-height: 1.6;
    }

/* === Image Styling === */
.clickable-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Modal Container */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    padding-top: 60px;
}

/* Modal Content (the image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
}

/* Caption (description) */
#caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px;
    font-size: 18px;
}

/* Close Button (X) */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #f1f1f1;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .close-modal:hover,
    .close-modal:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* === Responsive Design === */
@media screen and (max-width: 768px) {
    .recognition-cards {
        justify-content: center;
    }

    .recognition-card {
        max-width: 100%;
        padding: 15px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .clickable-img {
        max-width: 60%;
    }
}



/* Org Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.org-connector {
    width: 4px;
    height: 30px;
    background: #03ae57;
    margin: 0 auto;
}

.officer-card {
    background-color: #f0f4f9;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .officer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

    .officer-card h4 {
        font-size: 22px;
        font-weight: 600;
        color: #03ae57;
        margin-bottom: 10px;
    }

    .officer-card p {
        font-size: 16px;
        color: #192230;
        line-height: 1.6;
    }



/* Connector line to VPs */
.vps::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background-color: #03ae57;
    z-index: -1;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .org-level {
        flex-direction: column;
    }

    .vps::before {
        width: 4px;
        height: 60px;
        left: 50%;
        top: -30px;
        transform: translateX(-50%);
    }
}


/* Accredited By Section */
.accredited-by {
    background-color: white;
    padding: 5rem 0;
    text-align: center;
}

    .accredited-by .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        letter-spacing: 2px;
        color: #333;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carousel Images */
.carousel-images {
    display: flex;
    /*animation: slide 15s linear infinite;*/
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carousel-image-container {
    margin: 0 10px;
}

.carousel-image {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px; /* Fixed width for circular shape */
    height: 50px; /* Fixed height to match width */
    padding: 0; /* No extra padding */
    cursor: pointer;
    z-index: 1;
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Adjust button position for previous and next */
.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Infinite Loop Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* End About us */

/* SERVICES start */
.container.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.service-section {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .service-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .service-row.reverse {
        flex-direction: row-reverse;
    }

.service-col {
    flex: 1 1 100%;
    padding: 15px;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .service-col {
        flex: 1 1 45%;
    }
}

.service-col:hover {
    transform: translateY(-10px);
}

.image-col {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.service-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.text-col {
    padding: 20px;
    color: #495057;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

    .service-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #03ae57;
        position: absolute;
        bottom: 0;
        left: 0;
    }

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .service-list li {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 12px;
        position: relative;
        padding-left: 30px;
        font-weight: 400;
    }

        .service-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: #03ae57;
            font-size: 1.2rem;
        }

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.service-row.reverse .slide-in-left {
    animation-delay: 0.3s;
}

.service-row .slide-in-right {
    animation-delay: 0.3s;
}

/* Custom Carousel */
.custom-carousel-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 50px auto;
    text-align: center;
    padding-bottom: 30px;
}

/* Title Styling */
.name {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-title-icon {
    margin-right: 15px;
    font-size: 2rem;
    color: #03ae57;
    vertical-align: middle;
}

/* Carousel container */
.custom-carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
    padding-bottom: 20px;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.custom-carousel-item {
    min-width: 300px;
    padding: 10px;
    position: relative;
}

.custom-carousel-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .custom-carousel-image:hover {
        transform: scale(1.05);
    }

.carousel-item-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.item-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 15px;
    font-size: 1.2rem;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item-overlay:hover .item-label {
    opacity: 1;
}

/* Optional buttons */
.custom-carousel-controls {
    margin-top: 15px;
}

    .custom-carousel-controls button {
        background-color: #03ae57;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 0 10px;
        border-radius: 10px;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .custom-carousel-controls button:hover {
            background-color: #02914b;
        }

/* Carousel responsive design */
@media (max-width: 768px) {
    .custom-carousel-item {
        min-width: 100%;
    }

    .custom-carousel-image {
        height: 200px;
    }
}

/* Modal */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent dark background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-modal-content {
    position: relative;
    width: 90%; /* Increased width */
    height: 90%; /* Increased height */
    max-width: 1200px; /* Limit max width */
    max-height: 800px; /* Limit max height */
    background-color: rgba(20, 20, 20, 0.85); /* Semi-transparent grayish black background */
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Soft shadow */
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 35px; /* Larger close button */
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .custom-modal-close:hover {
        color: #03ae57; /* Green color on hover */
    }

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1001;
    border-radius: 50%;
}

.modal-arrow.left {
    left: 20px;
}

.modal-arrow.right {
    right: 20px;
}


/* Fix the image size */
.modal-image {
    width: 100%; /* Ensures the image takes up full width of modal */
    height: 100%; /* Ensures image fills available height */
    object-fit: contain; /* Ensures the image maintains aspect ratio */
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Rounded corners for the image */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-carousel-image {
        max-width: 90%;
        max-height: 200px;
    }

    .modal-image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .custom-carousel-image {
        max-width: 100%;
        max-height: 180px;
    }

    .modal-image {
        max-height: 80vh;
    }
}
/* SERVICES end */

/*Projects start*/
.about-us-container {
    padding: 20px;
}

.project-scope {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr; /* Forces a single column layout */
    gap: 20px; /* Adjust the gap between projects */
}
.project-card {
    background: linear-gradient(145deg, #f0f4f8, #dfe9f3);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    border-left: none;
    width: 90%;
    margin: 0 auto;
    backdrop-filter: blur(6px);
    margin-bottom: 50px;
}

.project-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.project-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-icon {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 2px;
}

.detail-label {
    font-weight: 600;
    color: #2f3542;
    font-size: 1rem;
}

.detail-value {
    color: #636e72;
    font-weight: 500;
    flex: 1;
    font-size: 1rem;
}

.read-more {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #03ae57;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

    .read-more:hover {
        color: #192230;
        background-color: #03ae57;
        box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
        transform: translateY(-3px);
    }

    .read-more:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    .read-more:active {
        transform: translateY(2px);
        background-color: #0056b3;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    }

.more-projects {
    display: none;
    margin-top: 1.5rem;
}

    .more-projects.open {
        display: block;
    }

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 1.2rem 0;
}

.animated-drop {
    animation: dropIn 1s ease-in-out;
}

.project-address, .project-name {
    font-weight: bold;
    color: #333;
}

.more-projects {
    display: none;
    margin-top: 20px;
}

    .more-projects.open {
        display: block;
    }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1e1e;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    animation: dropIn 1s ease forwards;
}

    .project-heading i {
        color: #ffaa00;
        margin-right: 15px;
        font-size: 1.4em;
        vertical-align: middle;
        /*animation: glowPulse 1.5s infinite ease-in-out;*/
    }

    .project-heading::after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        /*background: linear-gradient(90deg, #ffaa00, #ff6600);*/
        background-color: #03ae57;
        bottom: 0;
        left: 20%;
        border-radius: 2px;
        animation: slideIn 1s ease forwards;
    }

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        width: 0;
        left: 50%;
    }

    100% {
        width: 60%;
        left: 20%;
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 5px #ffaa00, 0 0 10px #ffaa00;
    }

    50% {
        text-shadow: 0 0 15px #ffcc33, 0 0 25px #ffaa00;
    }

    100% {
        text-shadow: 0 0 5px #ffaa00, 0 0 10px #ffaa00;
    }
}

    /*Projects end*/


    /*dropdown start*/

/* -------------------- Navbar Dropdown (Desktop) -------------------- */
.navbar-dropdown {
    position: relative;
    display: inline-block;
}

    .navbar-dropdown > .navbar-link {
        display: inline-block;
        padding: 10px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        vertical-align: middle;
        transition: color 0.3s ease;
    }

        .navbar-dropdown > .navbar-link:hover {
            color: black; /* Optional hover effect */
        }

    .navbar-dropdown .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333; /* Change to white if needed */
        min-width: 200px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

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

        .navbar-dropdown .dropdown-content a {
            color: #fff; /* Make sure this contrasts with background-color */
            padding: 10px 15px;
            display: block;
            text-decoration: none;
        }

            .navbar-dropdown .dropdown-content a:hover {
                background-color: #444;
            }

/* -------------------- Mobile Dropdown -------------------- */
.mobile-dropdown {
    position: relative;
    display: block;
}

    .mobile-dropdown > .navbar-link {
        display: block;
        padding: 10px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    margin-left: 20px;
}

.mobile-dropdown:hover .mobile-dropdown-content {
    display: flex;
}

.mobile-sub-link {
    color: #fff;
    padding: 8px 10px;
    text-decoration: none;
}

    .mobile-sub-link:hover {
        background-color: #444;
    }

    /*dropdown end*/


    /*contact us start*/

.contactus-container {
    width: 100%;
    max-width: 1750px;
    margin: 4rem auto;
}

.contactus-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.contactus-col {
    flex: 1;
    min-width: 300px;
}

.info-block {
    background-color: #192230;
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-block {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-contactus-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.contactus-icon {
    color: #03ae57;
    margin-right: 10px;
}

.contactus-addresses {
    font-size: 1.1rem;
    line-height: 1.6;
    cursor: pointer;
}

hr {
    border-color: #03ae57;
    margin: 1.5rem 0;
}

/* Map section */
.map-container {
    margin: 4rem auto;
    width: 95%;
    max-width: 1300px;
}

/* Contact Form section */
#contact-us .container {
    max-width: 800px;
    margin: 4rem auto;
}

.contactus-btn {
    background-color: #03ae57;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

    .contactus-btn i {
        color:#fff;
    }

    .contactus-btn:hover {
        background-color: #028c46;
    }

.contactus-from-label{
    color:#fff;
}
/* Responsive behavior */
@media (max-width: 992px) {
    .contactus-row {
        flex-direction: column;
    }

    .image-contactus-container {
        height: 300px;
    }
}

/* General container setup */
.contactus-container,
.map-container,
#contact-us .container {
    max-width: 1750px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Layout adjustments */
.contactus-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.contactus-col.info-side {
    /*flex: 1 1 100%;*/
}

.info-block {
    background: #192230;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contactus-icon {
    color: #03ae57;
    margin-right: 0.5rem;
}

.contactus-addresses {
    cursor: pointer;
    transition: color 0.3s ease;
}

    .contactus-addresses:hover {
        color: #03ae57;
    }

/* Map section consistency */
.map-container .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Contact form (already styled previously, but included here for context) */
#contact-us {
    background-color: #f8f9fa;
}

    #contact-us .container {
        background-color: #ffffff;
        padding: 3rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #03ae57;
        outline: none;
        box-shadow: 0 0 0 2px rgba(3, 174, 87, 0.2);
    }

.contactus-btn {
    background-color: #03ae57;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contactus-btn:hover {
        background-color: #028c46;
    }

    .map-side .image-block {
    height: 100%;
}

.image-contactus-container {
    height: 100%;
    min-height: 400px;
}

.contactus-header {
    text-align: center;
    background-color: #192230;
    color: #ffffff;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contactus-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contactus-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Info and Map Block */
.contactus-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-top: 3rem;
}

.contactus-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.contactus-col {
    flex: 1; /* Equal width for both info and map */
    min-width: 0; /* Prevent columns from shrinking too small */
}

.info-side {
    padding: 2rem;
    background-color: #192230;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-side .image-block {
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-contactus-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.contactus-icon {
    color: #03ae57;
    margin-right: 10px;
}

.contactus-addresses {
    font-size: 1.1rem;
    line-height: 1.6;
    cursor: pointer;
}

hr {
    border-color: #03ae57;
    margin: 1.5rem 0;
}

/* Map height to match info block */
.map {
    height: 100%;
}

/* Contact Form section */
#contact-us {
    background-color: #f8f9fa;
    padding: 4rem 1rem;
}

    #contact-us .container {
        max-width: 1700px;
        margin: 0 auto;
        background-color: #192230;
        padding: 3rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

/* Responsive behavior */
@media (max-width: 992px) {
    .contactus-row {
        flex-direction: column;
    }

    .image-contactus-container {
        height: 300px;
    }
}

.contactus-title, .contactus-title i{
    font-size: 2rem !important;
}

.contactus-title {
    color: #fff;
}
    /*contact us end */

