/* Global Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --light-color: #f1faee;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: #d62839;
    border-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('images/bg.JPG') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
}



.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--gray-color);
}


/* Updated styles for service items */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding-bottom: 15px;
  }
  
  .service-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .service-details {
    padding: 0 15px;
    text-align: center;
  }
  
  .service-details h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
  }
  
  .service-details p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
  }
  
  .service-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .btn-small {
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
  }
  
/* Team Preview Section */
.team-preview {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.9)), url('https://source.unsplash.com/random/1600x900/?mechanics') no-repeat center center/cover;
    text-align: center;
    color: white;
}

.team-preview .section-title {
    color: white;
}



.team-preview p {
    margin-bottom: 30px;
}

/* Call to Action */
.cta {
    background-color: var(--light-gray);
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3, .footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-info h3::after, .footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-info p, .footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a span {
    font-size: 1.2rem;
}



/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        height: calc(100vh - 80px);
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn, .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Page Banner Styles */
.page-banner {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.9)), url('https://source.unsplash.com/random/1600x900/?auto-workshop') no-repeat center center/cover;
    color: white;
    padding: 60px 0;
    text-align: center;
}
.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Mission Vision Goals Section */
.mission-vision-section {
    background-color: var(--light-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: rgb(6, 2, 61);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* Team Carousel Container */
.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Team Carousel */
.team-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
}

/* Team Member Card */
.team-member {
    flex: 0 0 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.25rem;
}

.member-position {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.5;
}



/* Responsive Design */
@media screen and (min-width: 768px) {
    .team-member {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (min-width: 992px) {
    .team-member {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .team-carousel {
        gap: 20px;
    }
    
    .team-member {
        min-width: 200px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .info-card, .feature {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}


.section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f44336;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .contact-flex {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  
  /* Map Container */
  .map-container {
    flex: 1;
    height: 400px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
  }
  
  /* Contact Form */
  .contact-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
  }
  
  .contact-form-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: var(--primary-color, #007bff);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .contact-flex {
      flex-direction: column;
    }
    
    .map-container {
      height: 300px;
      margin-bottom: 20px;
    }
  }

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    
}


.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
    margin-bottom: 10px; /* Added to improve spacing on small screens */
}

.tab-btn:hover {
    background-color: #e0e0e0;
}

.tab-btn.active {
    background-color: #e74c3c;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-title {
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    font-size: 24px;
}

 /* Modified services grid to be horizontal */
 .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 250px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: var(--secondary-color);
    font-size: 2rem;
}

.service-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}



.btn-small {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #003d82;
}

/* Products Section */
.products-section {
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    margin: 15px 0 5px;
    padding: 0 15px;
    color: #333;
    font-size: 18px;
}

.product-card p {
    color: #666;
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    display: block;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Changed for better responsiveness */
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: #333;
}

.center-btn {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c0392b;
}

.btn-small {
    display: inline-block;
    padding: 8px 15px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #c0392b;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}



/* Media query for smaller screens */
@media (max-width: 768px) {
    
    
    /* Fix for service categories */
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 80%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    /* Fix for service items */
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Better spacing for mobile navigation */
    .navbar {
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .hamburger {
        display: block !important; /* Ensure hamburger is visible */
        cursor: pointer;
        font-size: 24px;
        background: none;
        border: none;
    }
}





/* Fix for hamburger menu */
.hamburger {
    display: none; /* Hide by default */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show on mobile */
    }
}

 /* Team Section */
        .team-slider-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 1rem;
        }

        .team-grid {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
            padding: 2rem 0;
        }

        .team-member {
            flex: 0 0 calc(33.333% - 2rem);
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .team-member-top {
            background: #727ad1;
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
        }

        .team-member img {
            width: 190px;
            height: 270px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            object-fit: cover;
            border: 4px solid white;
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin: 0.5rem 0;
        }

        .team-member .position {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .team-member-content {
            padding: 1.5rem;
            background: white;
            color: #333;
        }

        .team-member-content p {
            line-height: 1.6;
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            position: absolute;
            top: 30%; 
            left: 0;
            right: 0;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .slider-control {
            width: 40px;
            height: 40px;
            background-color: #1a237e;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            position: absolute;
            z-index: 10;
            pointer-events: auto;
        }

        .slider-control:hover {
            background-color: #727ad1;
        }

        #prevBtn {
            left: 10px;
        }

        #nextBtn {
            right: 10px;
        }

        .slider-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: #1a237e;
        }

       
       

        @media (max-width: 768px) {
            .row {
                flex-direction: column;
            }

            .team-grid {
                padding: 1rem 0;
            }

            .team-member {
                flex: 0 0 100%;
            }

            .team-member img {
                width: 150px;
                height: 220px;
            }

            .slider-control {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 992px) and (min-width: 769px) {
            .team-member {
                flex: 0 0 calc(50% - 2rem);
            }
        }

        @media (max-width: 480px) {
            .team-member img {
                width: 120px;
                height: 180px;
            }

            .home-section {
                padding: 2rem 0;
            }

            #prevBtn {
                left: 5px;
            }

            #nextBtn {
                right: 5px;
            }
        }

        
