/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #FFFFFF;
    --light-background: #F5F5F5;
    --dark-background: #2C3E50;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;

    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 0 1.5rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
}

/* Add smooth scrolling only for internal links */
a[href^="#"] {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-icon {
    font-size: 35px;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 25px;
    }

}

/* Header Styles */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;


    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: fit-content;
    height: fit-content !important;
    padding: 6px 0 6px 0 !important;
    margin: 0;
}

.logo a {
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: center;
    width: fit-content !important;
    height: fit-content !important;
}

.logo img {
    width: 95px;
    height: 65px;
    margin: 0 !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a.section-active {
    color: var(--primary-color);
}

.nav-links a.section-active::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}


.nav-links a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/towfiqu-barbhuiya-w8p9cQDLX7I-unsplash.jpg');
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/volodymyr-hryshchenko-aXbfOFQ_juU-unsplash.jpg');
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/cytonn-photography-n95VMLxqM2I-unsplash.jpg');
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .split-color-text {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary {
    padding: 0.8rem 3rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0b7dda;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Footer Styles */
.footer {
    background-color: #ddd;
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 130px;
    height: 110px;
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.footer-column ul li a {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    color: gray;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-icons {
        margin-top: 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.7rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-slide:nth-child(1) {
        background-position: right;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero .btn-primary {
        padding: 0.7rem 2rem;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-controls {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 515px) {
    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.2;
    }
}

/* About Section */
.about {
    background-color: var(--light-background);
    padding: 4rem 0;
}



.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-row:nth-child(3) {
    margin-bottom: 2.5rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.02);
}

.about-row:hover .about-image img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    padding: 2rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-background);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.about-text p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-btn .btn-primary {
    display: inline-block;
    padding: 0.8rem 3rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.about-btn .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-stats {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: #FFFFFF;
}

.stat-number {

    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: #FFFFFF;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: -10%;
    right: 20%;
    transform: translateX(20%);
    font-size: 3rem;
    color: #FFFFFF;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-row {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 0rem !important;
        margin-bottom: 1.5rem;
    }

    .about-row:nth-child(1),
    .about-row:nth-child(3) {
        flex-direction: column-reverse;
    }

    .about-text {
        text-align: center;
        padding: 1rem;
    }

    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-stats {
        margin-top: 0rem;
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-number::after {
        font-size: 2.5rem;

    }

    .stat-label {
        font-size: 1.1rem;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image img {
        height: 200px;
    }
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-row {
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-row.reverse {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
        padding: 1rem;
    }

    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-stats {
        margin-top: 0rem;
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 3rem;
        color: #FFFFFF;
    }

    .stat-number::after {
        font-size: 2.5rem;
        color: #FFFFFF;
    }

    .stat-label {
        font-size: 1.1rem;
        color: #FFFFFF;
    }

    .about .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .about-row {
        margin-bottom: 1rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

/* Services Section */
.services {
    background-color: var(--background-color);
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--light-background);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-item:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-item:hover .service-icon {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--dark-background);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.service-item p {
    color: var(--light-text);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-item:hover .service-link {
    color: var(--secondary-color);
}

.service-item:hover .service-link i {
    transform: translateX(5px);
}

/* Responsive Design for Services Section */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-item {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-item {
        padding: 2.5rem;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 2rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
}

/* Infrastructure Section Styling */
.Infrastructure {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.Infrastructure-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.Infrastructure-text {
    flex: 1;
    padding: 0rem 2rem 2rem 2rem;
}

.Infrastructure-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.Infrastructure-text p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.1rem;
    max-height: 230px;
    /* Control paragraph height to align with images */
    overflow: auto;
}

.Infrastructure-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    grid-template-areas: "tall small"
        "tall wide";
}

.Infrastructure-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Infrastructure-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.Infrastructure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Infrastructure-image-tall {
    grid-area: tall;
    height: 400px;
}

.Infrastructure-image-small {
    grid-area: small;
    height: 190px;
}

.Infrastructure-image-wide {
    grid-area: wide;
    height: 190px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .Infrastructure-content {
        gap: 2rem;
    }

    .Infrastructure-image-tall {
        height: 350px;
    }

    .Infrastructure-image-small,
    .Infrastructure-image-wide {
        height: 165px;
    }
}

@media (max-width: 768px) {
    .Infrastructure-content {
        flex-direction: column;
        gap: 1rem;
    }

    .Infrastructure-text {
        text-align: center;
        padding: 1rem 2rem;
    }

    .Infrastructure-icon {
        text-align: center;
    }

    .Infrastructure-gallery {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .Infrastructure-gallery {
        grid-template-columns: 1fr;
        grid-template-areas: "tall"
            "small"
            "wide";
    }

    .Infrastructure-text p {
        line-height: 1.5;
        font-size: 1rem;
        max-height: 240px;
    }

    .Infrastructure-image-tall,
    .Infrastructure-image-small,
    .Infrastructure-image-wide {
        height: 220px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/national-cancer-institute-NFvdKIhxYlU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta {
        padding: 2rem 0;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 1.5rem 0;
    }

    .cta-content {
        padding: 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-color);
    border: none;
    border-bottom: 2px solid var(--light-text);
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--light-text);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:valid~label,
.form-group textarea:valid~label {
    top: -0.8rem;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-item a {
    text-decoration: none;
}

.info-item p {
    color: var(--light-text);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.info-item p:hover {
    color: var(--secondary-color);
}

.contact .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.contact .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .info-item {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* About Section */
.about .section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Services Section */
.services .section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.services .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}



/* CTA Section */
.cta .section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.cta .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Contact Section */
.contact .section-title {
    font-size: 3rem;
    color: var(--dark-background);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Responsive adjustments for section titles */
@media (max-width: 768px) {

    .section-title,
    .about .section-title,
    .services .section-title,
    .cta .section-title,
    .contact .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {

    .section-title,
    .about .section-title,
    .services .section-title,
    .cta .section-title,
    .contact .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

/* Partners Section */
.partners {
    background-color: var(--light-background);
    padding: 4rem 0;
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5 - 4rem * 5));
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .partner-logo {
        flex: 0 0 180px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 3rem;
    }

    .partner-logo {
        flex: 0 0 150px;
        height: 75px;
    }
}

@media (max-width: 576px) {
    .partners-track {
        gap: 2rem;
    }

    .partner-logo {
        flex: 0 0 120px;
        height: 60px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-background);
    padding: 1.5rem 0;
    margin-top: 70px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 1rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .active {
    color: var(--dark-background);
}

/* Vision Section */
.vision {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.vision .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    color: var(--dark-background);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.vision-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.vision-content p {
    color: var(--light-text);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background-color: var(--light-background);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-background);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.values h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(-135deg, var(--secondary-color) 0%, var(--primary-color) 100%);

}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-background);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Leaders Section */
.leaders {
    padding: 4rem 0;
    background-color: var(--white);
}

.leaders h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-background);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.leaders h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-card h3 {
    font-size: 1.5rem;
    color: var(--dark-background);
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.leader-card p {
    color: var(--light-text);
    padding: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {

    .values-grid,
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-content,
    .value-card,
    .leader-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .values-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .vision-content h2,
    .values h2,
    .leaders h2 {
        font-size: 2rem;
    }

    .vision-content p {
        font-size: 1.1rem;
    }

    .leader-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        padding: 1rem 0;
    }

    .breadcrumb li {
        font-size: 0.8rem;
    }

    .vision-content h2,
    .values h2,
    .leaders h2 {
        font-size: 1.8rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-card h3,
    .leader-card h3 {
        font-size: 1.3rem;
    }

    .leader-image {
        height: 200px;
    }
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        margin-top: 3rem;
    }

    .map-section iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .map-section {
        margin-top: 2rem;
    }

    .map-section iframe {
        height: 250px;
    }
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Coming Soon message styling */
.products .coming-soon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 3rem 0;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 30px;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-image {
        height: 120px;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-info .price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .product-image {
        height: 100px;
    }
}