/* General Styles */
 body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} 



/* Hero Section */
.hero {
    background-image: url('/assests/image/Contact_us.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    padding: 0 20px;
    z-index: 1;
    margin-left: 10%;
    max-width: 90%;
}

.hero h1 {
    font-size: 4em;
    margin-top: 20px !important;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.about-text {
    flex: 1 1 60%;
    padding-right: 20px;
    text-align: justify;
    min-width: 300px;
}

.progress-bars {
    flex: 1 1 35%;
    min-width: 250px;
}

.progress-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.progress-item label {
    flex: 0 0 150px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.progress-bar {
    flex: 1;
    background-color: #eee;
    height: 5px;
    margin: 0 10px;
}

.progress {
    background-color: #00bcd4;
    height: 100%;
}

.progress-item span {
    flex: 0 0 50px;
}

/* Services Section */
.services-section {
    padding: 0;
}

.parallax-container {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assests/image/Contact_us.jpg');
    background-size: cover;
    object-fit: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-content {
    position: relative;
    width: 50%;
    padding: 40px;
    height: 100%;
    background-color: #f9f9f9;
}

.left-column h2 {
    font-size: 2em;
}

.left-column ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-services {
    background-color: #fff;
}

.about-services .container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.features {
    flex: 1 1 50%;
    background-color: #eb5e28;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.feature-item img {
    width: 50px;
    height: 50px;
}

.services-text {
    flex: 1 1 44.5%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin: auto;
    min-width: 300px;
}

.services-text button {
    background-color: #eb5e28;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.services-text button:hover {
    background-color: #d9480f;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-card h3 {
    margin: 10px 0 5px;
}

.team-card p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        margin-left: 5%;
    }

    .hero h1 {
        font-size: 3.5em;
    }

    .about-text,
    .progress-bars {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .services-content {
        width: 60%;
    }

    .features,
    .services-text {
        flex: 1 1 50%;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.3em;
    }

    .services-content {
        width: 100%;
        padding: 20px;
    }

    .parallax-container {
        height: auto;
    }

    .parallax-img {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .col-md-6 {
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .about-section .container,
    .about-services .container {
        flex-direction: column;
    }

    .about-text,
    .progress-bars,
    .services-text,
    .features {
        padding: 20px;
        margin-bottom: 20px;
        width: 100%;
    }

    .progress-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .progress-item label {
        flex: none;
        margin-bottom: 5px;
    }

    .progress-bar {
        margin: 0 0 5px 0;
    }

    .parallax-img {
        height: 250px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .navbar-brand img {
        width: 150px;
        height: auto;
    }

    .contact-info a {
        display: block;
        margin: 5px 0;
    }

    .social-icons a {
        margin: 0 5px;
    }

    .team-grid {
        grid-template-columns: 1fr; /* Show only one card on mobile */
    }

    .team-card h3 {
        font-size: 1.2em;
    }

    .team-card p {
        font-size: 0.8em;
    }

    .services-text button {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .feature-item img {
        width: 40px;
        height: 40px;
    }
}