html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: black;
}

a:hover,
.dropbtn:hover {
  color: #092df0; /* Hover color stays bold blue */
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0% 110px;
}

.logo {
  height: 120px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 15px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  padding: 10px 14px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  top: 100%;
  left: 0;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.dropdown-content a {
  padding: 10px 16px;
  display: block;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Desktop hover effect */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Show class triggered by JS */
.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* Hero Section */
.hero {
  position: relative;
  height: 620px;
  background: url('Assets/hero_bg\ -\ Copy.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 120px;
}

.slides {
  width: 100%;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: black;
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #dbe5ff; /* Lighter blue background */
  color: black;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #092df0;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #092df0;
  color: white;
}

/* Indicators */
.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
}

.dot.active {
  background-color: #092df0;
  opacity: 1;
}

/* Trusted Section */
.trusted {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #091f58;
  color: rgb(255, 255, 255);
  padding: 30px 120px;
}


.trusted-left {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.trusted-right {
  display: flex;
  align-items: center;
 
}

.email-icon {
  width: 110px;
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .logo {
    height: 60px;
    margin-bottom: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
  }

  /* Hero */
  .hero {
    padding-left: 20px;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: left;
  }

  .slide h1 {
    font-size: 32px;
    max-width: 90%;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .indicators {
    bottom: 20px;
  }

  /* Trusted Section */
  .trusted {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 40px 20px;
  }

  .trusted-left {
    font-size: 22px;
  }

  .trusted-right {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Section Styling */
.our-services-section {
  background-color: #e6e6e6;
  padding: 100px 20px;
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin-left: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.services-left {
  flex: 1 1 55%;
  min-width: 300px;
}

.services-right {
  flex: 1 1 40%;
  min-width: 280px;
  padding-top: 10px;
}

.section-title {
  font-size: 30px;
  font-weight: 500;
}

.services-heading {
 font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #000;
  text-align: left;  /* keep alignment for desktop */
  word-break: break-word; /* prevent overflow */
}

.services-heading .nowrap {
  white-space: nowrap;
}

.services-right p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    margin: 0 auto; /* Center it properly */
    gap: 25px;
    width: 90%;
    padding: 20px;
  }

  .services-heading {
   font-size: 28px;   /* scale down text for mobile */
    text-align: center; /* center on small screens */
    padding: 0 10px;   /* add some breathing room */
  }

  .services-right p {
    font-size: 16px;
  }

   .partner-tile {
    width: 120px;
    margin-right: 12px;
  }
  .carousel-track {
    animation: scrollLeft 12s linear infinite; /* faster scroll */
  }
}

/* ==== Partners Section ==== */

.partners-section {
  background-color: #f6f6f6;
  padding: 60px 40px;
  text-align: center;
}

.partners-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Carousel Container */
.partners-carousel {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  gap: 40px; /* Adjust spacing between logos */
  animation: scrollLeft 40s linear infinite;
}

.partner-tile {
  flex: 0 0 auto;
  width: 200px;
  height: 150px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-tile img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

.partner-tile:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Keyframes for scrolling */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }

  


}/* Footer styling */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px 30px;
  
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.footer-col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #777;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #fff;
}



/* Services Page CSS */

/* === New Two-Column Hero Styles === */

.services-hero {
  /* We use a subtle gradient for the overall background */
  background: linear-gradient(to right, #f2f6ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px; /* Adjusted padding */
  min-height: 550px; /* Ensures the section has enough height */
  overflow: hidden; /* Prevents image from spilling out */
}

.hero-container {
  display: flex; /* This is the key to creating side-by-side columns */
  align-items: center;
  max-width: 1200px; /* Controls the max width of the content */
  width: 100%;
  gap: 40px; /* Space between the text and image */
}

/* Styling for the left (text) column */
.hero-text-column {
  flex: 1; /* Allows the column to grow */
  padding-right: 20px;
}

/* We re-apply the h1 and p styles here */
.hero-text-column h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #092df0;
  line-height: 1.3;
}

.hero-text-column p {
  font-size: 20px;
  color: #444;
  font-weight: 400;
  margin-top: 15px;
}

/* Styling for the right (image) column */
.hero-image-column {
  flex: 1; /* Allows the column to grow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-column img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* === Responsive styles for mobile === */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse; /* Stacks image on top of text on small screens */
    text-align: center;
  }

  .hero-text-column {
    padding-right: 0;
  }
  
  .hero-text-column h1 {
    font-size: 36px; /* Smaller font for mobile */
  }
}
/* Services Intro */
.services-intro {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.services-intro-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-intro p {
  font-size: 18px;
  color: #444;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
}

/* Services  Tiles */

.services-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.services-grid {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  max-height: 300px;
  transition: max-height 0.4s ease-in-out;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.title {
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  background-color: #fff;
}

.details {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #444;
  text-align: left;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.card.active {
  max-height: 1000px; /* Enough to show full content */
}

.card.active .details {
  height: auto;
  opacity: 1;
  padding-top: 10px;
}


/* Modal Styling */

/* Modal base */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show modal */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal content with zoom effect */
.modal-content {
  background: white;
  padding: 24px;
  max-width: 600px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Zoom & fade in when shown */
.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
#service-modal .scale-95 {
  transform: scale(0.95);
}
#service-modal .scale-100 {
  transform: scale(1);
}
#service-modal .opacity-0 {
  opacity: 0;
}
#service-modal .opacity-100 {
  opacity: 1;
}



.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.modal-content p, .modal-content ul {
  font-size: 15px;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
}

.close-btn:hover {
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.read-more-btn {
  background-color: #007bff;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0056b3;
}



/* === NEW CONTACT PAGE STYLES === */

/* --- Section 1: Hero Banner (Final Style with Clip-Path) --- */

.contact-hero {
  background: linear-gradient(to right, #f2f6ff, #ffffff);
  width: 100%;
  padding: 60px 20px;
  overflow: hidden; /* Important for preventing overflow issues */
}

.contact-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  min-height: 450px;
  margin: 0 auto;
}

.contact-hero-image {
  flex-basis: 75%; /* Image takes up slightly more space */
  height: 500px;
  
  /* THIS IS THE KEY: Creates the large, offset circle shape */
  clip-path: circle(80% at 20% 35%);
  
  /* We add a transition for a smooth effect on resize */
  transition: clip-path 0.3s ease;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-text {
  flex-basis: 40%; /* Text takes up the remaining space */
  padding-left: 50px; /* Pushes text away from the image edge */
}

.contact-hero-text h2 {
  font-size: 52px;
  font-weight: 700;
  color: #092df0;
}

.contact-hero-text h2 span {
  color: #092df0; /* Using the orange accent color */
}


/* --- Responsive Adjustments for Final Hero --- */

@media (max-width: 992px) {
  .contact-hero-container {
    flex-direction: column; /* Stack on smaller screens */
    min-height: auto;
  }
  
  .contact-hero-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    
    /* Adjust the clip-path for a nice top-circle effect on mobile */
    clip-path: circle(60% at 50% 0%);
  }
  
  .contact-hero-text {
    flex-basis: 100%;
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
    .contact-hero-text h2 {
        font-size: 44px;
    }
}

/* --- Section 2: Contact Details --- */
/* --- Section 2: Contact Details (Updated Styles) --- */
.reach-out-section {
  background-color: #f1f1f1; /* Lighter, more subtle background */
  padding: 80px 20px;
  text-align: center;
}

.reach-out-section h3 {
  font-size: 36px;
  font-weight: 600;
  color: #111;
}

.reach-out-section > p {
  max-width: 500px;
  margin: 15px auto 40px;
  color: #666;
  line-height: 1.7;
}

.office-info-card {
  background-color: #fff;
  border: 1px solid #eaeaea; /* Thinner, lighter border */
  border-radius: 36px;
  padding: 60px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Softer shadow */
  text-align: left; /* Align text inside card to the left */
}

.office-info-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #092df0; /* Orange accent color from reference */
}

.office-info-card .address {
  font-size: 18px;
  color: #555;
  margin: 15px 0;
}

.office-info-card .phone {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex; /* To align icon and text */
  align-items: center;
}

.office-info-card .phone svg {
  margin-right: 12px;
  color: #092df0; /* Orange accent color */
}

.email-btn {
  display: inline-flex; /* Use inline-flex to align icon and text */
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between icon and text */
  margin-top: 40px;
  padding: 12px 40px;
  border: 1px solid #ccc; /* Lighter border */
  border-radius: 8px;
  color: #555; /* Dark gray text color */
  font-weight: 600;
  background-color: #fff; /* White background */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.email-btn svg {
  color: #092df0; /* Orange accent color for icon */
  transition: color 0.3s ease;
}

.email-btn:hover {
  border-color: #092df0;
  color: #092df0;
}


/* --- Section 3: Form & Map --- */
.form-map-section {
  background-color: #091f58;
  padding: 40px 20px 80px;
}

.form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.form-wrapper h4 {
  font-size: 24px;
  font-weight: 600;
}
.form-wrapper p {
  margin-bottom: 30px;
  color: #666;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-wrapper input, .form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.form-wrapper input:focus, .form-wrapper textarea:focus {
  outline: none;
  border-color: #092df0;
}

.form-wrapper textarea {
  height: 120px;
  resize: vertical;
}

.form-submit-btn {
  background-color: #092df0;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
  background-color: #0724b5;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .contact-hero-image {
    display: none; /* Hide hero image on smaller screens for simplicity */
  }
  .contact-hero-text {
    text-align: center;
    padding: 40px 0;
  }
  .form-map-container {
    grid-template-columns: 1fr; /* Stack form and map */
  }
}

@media (max-width: 768px) {
  .contact-hero-text h2 {
    font-size: 40px;
  }
  .reach-out-section h3 {
    font-size: 28px;
  }
  .form-map-container {
    padding: 30px;
  }
}






/* === About Us Page Styles === */

/* --- Hero Section --- */
/* --- Hero Section --- */
.about-hero {
    background: linear-gradient(120deg, #f3f6ff 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative; /* Needed for the divider */
    padding-bottom: 150px; /* Extra padding to make space for the curve */
}
.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}
.about-hero-content p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Overview Section --- */
.overview-section {
    padding: 80px 20px;
    background-color: #ffffff;
}
.overview-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.overview-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.overview-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}
.overview-credentials {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #092df0; /* Blue accent color */
    padding: 25px;
    border-radius: 8px;
}
.overview-credentials h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
.overview-credentials ul {
    list-style: none;
    padding: 0;
}
.overview-credentials li {
    margin-bottom: 10px;
    color: #4a5568;
    font-weight: 500;
}

/* --- Values Section --- */
.values-section {
    background-color: #f7fafc;
    padding: 80px 20px;
}
.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px; /* This is the key change for the curve */
}
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #eaf0ff;
    color: #092df0; /* Blue accent color */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* --- Team Section (Corrected) --- */
.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}
.team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.team-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.team-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}
.chairman-profile {
    display: flex;
    gap: 40px;
    text-align: left;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    align-items: center;
    margin-bottom: 50px;
}

/* --- The Fix is Here --- */
.chairman-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Makes the container a perfect circle */
    overflow: hidden;    /* Clips the image to the circle's shape */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;      /* Prevents the circle from being squished */
}
.chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Ensures the image fills the circle without distortion */
}

.chairman-bio h3 {
    font-size: 24px;
    font-weight: 700;
}
.chairman-bio h4 {
    font-size: 16px;
    color: #092df0; /* Blue accent color */
    font-weight: 600;
    margin-bottom: 15px;
}
.chairman-bio p {
    color: #4a5568;
    line-height: 1.7;
}
/* --- Directors List Styles (Updated with Circular Tiles) --- */
.directors-list h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.directors-grid {
    display: flex; /* Aligns tiles side-by-side */
    justify-content: center; /* Centers the tiles */
    gap: 50px; /* Space between the tiles */
    flex-wrap: wrap; /* Allows tiles to wrap on smaller screens */
}

.director-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px; /* Gives each tile a consistent width */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px 20px;
    border-radius: 12px; /* This is the key change for the curve */
}

.director-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%; /* This makes the container a perfect circle */
    overflow: hidden; /* This clips the square image to the circle's shape */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle without distortion */
}

.director-tile h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-align: center;
}

.director-tile p {
    color: #092df0; /* Blue accent color */
    font-weight: 500;
    margin: 0;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: #f7fafc;
    padding: 80px 20px;
}
.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 992px) {
    .overview-container {
        grid-template-columns: 1fr;
    }
    .values-container {
        grid-template-columns: 1fr;
    }
    .chairman-profile {
        flex-direction: column;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .directors-list ul {
        flex-direction: column;
        gap: 15px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* === Page Polish & Animation Styles === */

/* --- 1. Scroll Animation Styles --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- 2. Shaped Divider Styles --- */

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #ffffff; /* Should match the background of the NEXT section */
    /* This creates the curve */
    clip-path: ellipse(75% 100% at 50% 100%); 
}

/* --- 3. Enhanced Hover Effect Styles --- */
.value-card, .director-tile, .card, .office-info-card, .email-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover, .director-tile:hover, .card:hover, .office-info-card:hover, .email-btn:hover {
    transform: translateY(-8px); /* Lifts the element up */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Adds a more prominent shadow */

}










