/* Force all elements to respect borders/padding */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent horizontal overflow on all devices */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}



/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* White background */
    color: #333;
    margin: 0;
}


/* ================================================== */
/*            About Us section */
/* ================================================== */
/* General body styling to remove default margin */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section Styling */
.hero-section {
    width: 100%;
    height: 200px; /* Default height for desktop */
    position: relative; /* Needed for the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;

    
    background-image: 
        /* Red/Orange gradient overlay */
        linear-gradient(45deg, rgba(44, 49, 57, 0.685), rgba(29, 31, 33, 0.826)),
        /* Your background image */
        url('/Images/hero-section-photo.webp');
    
    background-size: cover; 
    background-position: center; 
    transition: height 0.3s ease-in-out; 
}

.hero-content {
    /* This container holds the text content */
    padding: 20px;
}

.hero-title {
    margin: 0;
    font-size: 3rem; 
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
    color: #fff;
}

.breadcrumb {
    margin: 10px 0 0;
    font-size: 1rem; 
    font-weight: 400;
    letter-spacing: 1px;
    color: antiquewhite;
}

.Home-link{
    color: white;
    text-decoration: none;
}
.aboutUs-link{
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}
.Home-link:hover, .aboutUs-link:hover{
    color:#007bff;
}

/* --- Responsive Design --- */

/* For Tablets */
@media (max-width: 800px) {
    .hero-section {
        height: 160px; 
    }

    .hero-title {
        font-size: 2.5rem; 
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}

/* For Mobile Phones */
@media (max-width: 480px) {
    .hero-section {
        height: 140px; 
    }

    .hero-title {
        font-size: 2rem; 
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* End About US */

/* Section Content Wrapper */
.section-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px; /* For spacing on smaller screens */
}

/* General Section Styles */
section {
    padding: 60px 0;
    width: 100%;
}

/* Headings and Paragraphs */
h2, h4 {
    color: #212529;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 0;
}

/* Who We Are Section */
.who-we-are {
    text-align: center;
}

.who-we-are p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


/* Vision & Mission Section */
.vision-mission-section {
    background-color: #f8f9fa;
}

.vision-mission {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vision-mission-image {
    flex: 1;

}

.vision-mission-image img {
    width: 90%;
    /* height: auto; */
    border-radius: 8px;
    display: block;
    box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.5);
}
.vision-mission-image img:hover{
    transform: translateY(-8px);
}

.vision-mission-text {
    flex: 1.2;
}

.vision-mission-text h3 {
    text-align: left;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-mission {
        flex-direction: column;
        text-align: center;
    }

    .vision-mission-text h3, .feature-item h4 {
        text-align: center;
    }
    
    .feature-item p {
        text-align: center;
    }

    .vision-mission-image {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 800px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    section {
        padding: 40px 0;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }
    .vision-mission-image {
        width: 90%;
        padding: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* =================================================================
   Experience Section Styles
   ================================================================= */

/* This is the main wrapper for the section, covering 100% width */
.experience-section {
    width: 100%;
    background-color: #efefef; /* A light, professional background color */
    padding: 80px 0; /* Vertical spacing for the section */
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* This container holds the content and centers it with a max-width */
.experience-container {
    max-width: 1050px; /* The maximum width for the content */
    margin: 0 auto; /* This centers the container horizontally */
    padding: 0 20px; /* Adds some padding on smaller screens */
    box-sizing: border-box;
}

/* Styles for the header area of the section */
.experience-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 16px 0;
}

.experience-section-subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto; /* Center the subtitle text block */
}

/* Grid layout for the feature cards */
.experience-grid {
    display: grid;
    /* Creates 4 responsive columns on desktop, which wrap to 2 then 1 */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; /* Space between the grid items */
}

/* Individual card styling */
.experience-experience-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the cards */
/* .experience-experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
} */
.experience-experience-card:hover{
    transform: translateX(-8px);
    background-color: #dddddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Styling for the SVG icons */
.experience-card-icon {
    margin-bottom: 20px;
    color: #007bff; /* A professional blue color for the icons */
}

.experience-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #343a40;
    margin: 0 0 10px 0;
}

.experience-card-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* =================================================================
   Responsive Adjustments
   ================================================================= */
@media (max-width: 800px) {
    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .experience-section {
        padding: 60px 0;
    }
}
        /* ========================================================== */
        /* TEAM MEMBER SECTION */
        /* ========================================================== */
/* --- Team Section --- */
.team-section {
  padding: 60px 20px;
  background-color: #fff; /* adjust if needed */
  color: #333;
}

.team-container {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.team-section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

/* Team Members Grid */
.team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in a row on desktop */
  gap: 25px;
}

/* Team Member Card */
.team-member-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;   /* stack content vertically */
  justify-content: space-between; /* push socials to bottom */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.team-member-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.member-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #0056B3;
}

.member-description {
  flex-grow: 1;  /* take up remaining space */
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}



/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: auto;   /* push to bottom */
}

.social-links a {
  color: #0077b5; /* LinkedIn blue */
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #005582;
}

/* Ensure SVG icons take the link color */
.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* --- Responsive Queries --- */

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
  .team-members {
    grid-template-columns: 1fr;
  }

  .team-section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}
