
/* Navigation Bar */
.custom-navbar { background-color: #262626; padding: 1.2rem 1rem; }
  .nav-middle { background-color: #000; padding: 0.8rem 1rem; border-radius: 2rem;}
  .nav-link {color: white !important; padding: 0.5rem 0.75rem; transition: all 0.3s; }
  .nav-link:hover { color: #cccccc !important; text-decoration: underline; }
  .btn-contact { background-color: #000; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 2rem; }
  .btn-contact:hover { background-color: #333; }
  .navbar-brand { color: white !important; font-weight: bold;}
  .navbar img{ width: 200px; }

  @media (max-width: 991.98px) {.nav-middle, .right-section { flex-direction: column !important; align-items: flex-start !important; gap: 0.75rem; margin-top: 1rem; }
  .navbar-collapse > .row > div { margin-bottom: 1rem;}}

/* About Banner */

  .about-banner-section { background-image: url('banner-bg.jpg'); background-size: cover; background-position: center; height: 60vh; position: relative; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.about-banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; }
.about-banner-heading { font-size: 3rem; font-weight: bold; z-index: 1; margin: 0; }
@media (max-width: 768px) { .about-banner-heading { font-size: 2rem; } }

/* Our Story */ 

.our-story-section { padding: 5rem 1rem; background-color: #fff; }
.our-story-container { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.our-story-image { flex: 1; padding: 1rem; text-align: center; }
.our-story-image img { width: 100%; max-width: 500px; border-radius: 10px; }
.our-story-text { flex: 1; padding: 1rem; }
.our-story-heading { font-size: 2.5rem; margin-bottom: 1rem; }
.our-story-paragraph { font-size: 1rem; line-height: 1.6; color: #333; }
@media (max-width: 768px) { .about-banner-heading { font-size: 2rem; } .our-story-container { flex-direction: column; } .our-story-heading { font-size: 2rem; } }

.approval-coordination-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.approval-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  justify-content: space-between;
}

.approval-box {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.approval-heading {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.approval-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approval-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.approval-icon {
  font-weight: bold;
  font-size: 1.2rem;
  color: #007B8F;
  margin-right: 0.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .approval-box {
    flex: 1 1 100%;
  }
}

/* Mission And Vision*/ 

.mission-vision-section { background-color: #f8f8f8; padding: 5rem 1rem; }
.mission-vision-container { display: flex; justify-content: space-around; align-items: flex-start; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.mv-box { flex: 1; max-width: 300px; text-align: center; margin: 1rem; }
.mv-icon { width: 150px; height: 150px; border-radius: 50%; margin-bottom: 1rem; }
.mv-heading { font-size: 1.5rem; margin-bottom: 0.5rem; }
.mv-description { font-size: 1rem; color: #333; line-height: 1.5; }

@media (max-width: 768px) {
  .about-banner-heading { font-size: 2rem; }
  .our-story-container { flex-direction: column; }
  .our-story-heading { font-size: 2rem; }
  .mission-vision-container { flex-direction: column; align-items: center; }
  .mv-box { max-width: 90%; }
}

/* Team Section */
.team-section { background-color: #262626; color: #fff; padding: 5rem 1rem; text-align: center; }
.team-heading { font-size: 3rem; margin-bottom: 3rem; }
.founder-box { background: #333; padding: 2rem; border-radius: 10px; display: flex; align-items: center; max-width: 1000px; margin: 0 auto 3rem auto; text-align: left; gap: 2rem; flex-wrap: wrap; }
.founder-box img { width: 150px; height: 150px; border-radius: 50%; }
.founder-info h3 { font-size: 1.5rem; margin: 0; }
.founder-info .designation { font-size: 1rem; color: #ccc; margin: 0.5rem 0; }
.founder-info p { font-size: 1rem; line-height: 1.6; }
.team-members { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.team-box { background: #333; padding: 1.5rem; border-radius: 10px; width: 30%; min-width: 250px; text-align: center; }
.team-box img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 1rem; }
.team-box h3 { font-size: 1.2rem; margin: 0.5rem 0; }
.team-box .designation { font-size: 0.9rem; color: #ccc; margin-bottom: 0.5rem; }
.team-box p { font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 768px) {
  .team-box { width: 100%; }
  .founder-box { flex-direction: column; text-align: center; }
  .founder-box img { margin-bottom: 1rem; }
  .founder-info { text-align: left; }
}

/* Contact us form */ 
.parallax-form-section { background: url('scroll-bg.jpg') no-repeat center center fixed; background-size: cover; padding: 6rem 1rem; }
.form-overlay { background-color: rgba(255, 255, 255, 0.9); padding: 4rem 2rem; border-radius: 10px; max-width: 800px; margin: 0 auto; }
.form-container { text-align: center; }
.form-heading { font-size: 2.8rem; margin-bottom: 2rem; color: #262626; }
.line-style-form { display: flex; flex-direction: column; gap: 2rem; }
.input-line input, .input-line textarea {
  width: 100%; background: none; border: none; border-bottom: 2px solid #262626; padding: 0.8rem 0;
  font-size: 1rem; color: #262626; outline: none;
}
.input-line textarea { resize: vertical; min-height: 120px; }
.privacy-policy { font-size: 0.9rem; text-align: left; margin-top: 1rem; color: #333; }
.line-style-form button {
  margin-top: 2rem; padding: 1.2rem; background-color: #262626; color: #fff;
  font-size: 1.2rem; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s;
}
.line-style-form button:hover { background-color: #444; }

@media (max-width: 768px) {
  .form-heading { font-size: 2rem; }
  .form-overlay { padding: 2rem 1.5rem; }
}

  /* Map Section */ 

.map-section { background-color: #262626; padding: 5rem 1rem;}
.map-heading {  font-size: 3rem; margin-bottom: 2rem;}
.map-wrapper {  max-width: 1000px; margin: 0 auto; padding: 0 1rem;}
@media (max-width: 768px) {
  .map-heading {    font-size: 2rem; }
  .map-section {    padding: 3rem 1rem;}}

/* Footer */ 
.footer-section { background-color: #262626; padding: 4rem 2rem 3rem;  color: #fff; font-size: 1.1rem; border-top: 1px solid #ffffff33;}
.footer-divider {  border-top: 1px solid #ffffff33; margin-bottom: 2rem;}
.footer-heading {  font-size: 1.8rem;  margin-bottom: 1rem; font-weight: 600;}
.footer-line {  border: none; border-bottom: 2px solid #fff; width: 60px; margin-bottom: 1rem;}
.footer-line-full { width: 100%; max-width: 300px;}
.footer-links li { margin-bottom: 0.75rem; font-size: 1.1rem;}
.footer-link {  color: #fff; text-decoration: none; transition: all 0.3s ease;  display: inline-block;  position: relative;}
.footer-link:hover {  color: #aaa;}
.footer-link::after { content: ''; display: block; width: 0;  height: 2px; background: #fff; transition: width 0.3s; position: absolute; bottom: -4px; left: 0;}
.footer-link:hover::after {width: 100%;}
.footer-icon {  margin-right: 0.5rem; color: #fff;}
.footer-description {  font-size: 1.05rem; color: #ccc; max-width: 320px;}
.footer-contact .contact-label { font-weight: bold; margin-top: 1.2rem;  font-size: 1.15rem;}
.footer-contact .contact-link { color: #fff; text-decoration: none;  transition: color 0.3s ease;}
.footer-contact .contact-link:hover {  color: #aaa;}
.footer-contact .contact-address { color: #aaa;  font-size: 1rem; max-width: 320px;}

@media (max-width: 768px) {
  .footer-section {  text-align: center;  padding-left: 1rem;  padding-right: 1rem; }
  .footer-links li,
  .footer-contact p {    font-size: 1rem;}
  .footer-line-full {    max-width: 100%;}}

  
  .project-gallery-section {
    padding: 4rem 1rem;
    background: #262626;
    text-align: center;
    color: white;
  }
  
  .project-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .project-gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .project-gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .project-gallery-section .gallery-item:hover img {
    transform: scale(1.08);
  }
  
  .project-gallery-section .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .project-gallery-section .gallery-content {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .project-gallery-section .gallery-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .project-gallery-section .gallery-content p {
    color: white;
    font-size: 1rem;
  }
  
  /* Modal Styling */
  .project-gallery-section .gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .project-gallery-section .gallery-modal.active {
    display: flex;
  }
  
  .project-gallery-section .gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .project-gallery-section .gallery-main {
    max-width: 90%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
  
  .project-gallery-section .gallery-thumbnails {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }
  
  .project-gallery-section .gallery-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: 0.3s;
  }
  
  .project-gallery-section .gallery-thumbnails img.active,
  .project-gallery-section .gallery-thumbnails img:hover {
    opacity: 1;
    border-color: #fff;
  }
  
  @media (max-width: 768px) {
    .project-gallery-section .gallery-item.large {
      grid-column: span 1;
      grid-row: span 1;
    }
  
    .project-gallery-section .gallery-main {
      max-width: 95%;
    }
  
    .project-gallery-section .gallery-thumbnails img {
      width: 60px;
      height: 45px;
    }
  
    .project-gallery-section .gallery-close {
      right: 20px;
    }
  }
  