body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  background-color: #FFFFFF;
}

/* Navbar */
ul.navbar-nav {
  margin-left: auto !important;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  /* or any color you like */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button.navbar-toggler {
  background-color: #fff;
}

.navbar {
  /*background: linear-gradient(90deg, #212528, #212428);*/
  padding: 15px 0;

}

.navbar-brand,
.nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #D3D4D8 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 22px !important;
}

.navbar-collapse {
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1C2526;
    transform: translateX(-100%);
    z-index: 1000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin: 0 auto !important;

  }

  .nav-link {
    font-size: 1.5rem;
    padding: 15px 0 !important;
    text-align: center;
  }

  .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
  }

  /* Overlay effect when navbar is open */
  .navbar-collapse.show::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* Hero Section (Banner) */
.hero-section {
  background: url('images/tabindasanpal.jpg');
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
  padding: 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
  background-color: #D3D4D8;
  border-color: #D3D4D8;
  color: #1C2526;
  transform: translateY(-5px);
}

/* Section Styling */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1C2526;
  margin-bottom: 40px;

  position: relative;
}

.section-title::after {
  content: '';
  width: 133px;
  height: 4px;
  background: #1C2526;
  position: absolute;
  bottom: -10px;
  left: 10%;
  transform: translateX(-50%);
}

.section-padding {
  padding: 100px 0;
}

.card {
  border: none;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0;
  /* Remove padding to control spacing via card-body */
  height: 900px;
  /* Set a minimum height for cards */
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #1C2526;
  font-weight: 600;
}

.card-img-top {
  width: 100%;
  object-fit: cover;
  /* Ensure images scale proportionally */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-body {
  padding: 30px;
  flex-grow: 1;
  /* Allow card-body to grow and fill space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Space content evenly */
}

.btn-primary {
  background-color: #1C2526;
  border-color: #1C2526;
  color: #FFFFFF;
  padding: 10px 30px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #D3D4D8;
  border-color: #D3D4D8;
  color: #1C2526;
}

.ventures-row {
  display: flex;
  flex-wrap: wrap;
  /* Ensure flex items wrap on smaller screens */
}

.ventures-row>div {
  display: flex;
  /* Make the column flex to stretch the card */
}

/* About Section */
.section-title-abouts {
    font-size: 2rem;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 40px;
    position: relative;

}
.section-title-Beyond{
    font-size: 2rem;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 40px;
    position: relative;
}
.section-title-abouts::after {
  content: '';
  width: 133px;
  height: 4px;
  background: #1C2526;
  position: absolute;
  bottom: -10px;
  left: 5%;
  transform: translateX(-50%);
}
.section-title-Beyond::after {
     content: '';
  width: 133px;
  height: 4px;
  background: #1C2526;
  position: absolute;
  bottom: -10px;
  left: 8%;
  transform: translateX(-50%); 
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  animation: fadeIn 1s ease-out;
}

.about-content {
  animation: fadeInUp 1s ease-out;
}

.about-content h4 {
  color: #1C2526;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content ul li {
  color: #1C2526;
  margin-bottom: 10px;
}

/* Vision Section */
.section-title-ventures {
  font-size: 2rem;
  font-weight: 700;
  color: #1C2526;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.section-title-ventures::after {
  content: '';
  width: 133px;
  height: 4px;
  background: #1C2526;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.vision-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.vision-quote {
  color: #1C2526;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0px 0px 30px 0px;
  animation: fadeIn 1s ease-out;
}

.vision-content {
  animation: fadeInUp 1s ease-out;
}

.vision-content ul {
  list-style: none;
  padding: 0;
}

.vision-content ul li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #1C2526;
}

.vision-content ul li::before {
  content: '✔';
  color: #1C2526;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

.vision-image {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  animation: fadeIn 1s ease-out;
}

/* Contact Form */
.contact-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: #1C2526;
  box-shadow: 0 0 5px rgba(28, 37, 38, 0.5);
}

/* Footer */
.footer-col-two {
  padding-left: 70px;
}

footer {
  background: #1C2526;
  color: #FFFFFF;
  padding: 50px 0 20px;
}

footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #D3D4D8;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.column-two-left {
  padding-left: 40px;
}

.column-two-right {
  padding-right: 40px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {

  .hero-content {
    background: #24242473;
  }

  .hero-section {
    background: url(images/24020249-Enhanced-NR-Edit.jpg);
    background-position: center bottom;
    background-size: cover !important;
    align-items: end;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.5rem;
  }

  .hero-section .btn-primary {
    padding: 10px 35px;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .vision-quote {
    font-size: 1.5rem;
    padding: 20px;
  }

  .about-image {
    margin-bottom: 20px;
  }

  .section-title-abouts::after {
    left: 10%;
  }

  section#beyond {
    padding: 60px 0px 0px 0px;
  }
  .section-title-Beyond::after{
     left: 23%;
  }
}

@media (max-width: 767px) {
  .footer-col-two {
    padding-left: 10px;
  }

  .column-two-left {
    padding-left: 10px;
  }

  .column-two-right {
    padding-right: 10px;
  }

  .section-title-abouts::after {
    left: 13%;
  }

  .section-title::after {
    left: 13%;
  }
  .section-title-Beyond::after{
     left: 13%; 
  }
}

@media (max-width: 576px) {
    .section-title-Beyond::after {
      left: 50%
    }
    .section-title-Beyond{
       text-align: center;
    }
  .section-title {
    text-align: center;
  }

  .section-title::after {
    left: 50%;
  }

  .section-title-abouts {
    text-align: center;
  }

  .section-title-abouts::after {
    left: 50%;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-section p {
    font-size: 1.2rem;
  }

  .hero-section .btn-primary {
    padding: 8px 25px;
    font-size: 0.9rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .vision-quote {
    font-size: 1.3rem;
    padding: 15px;
  }

  .vision-content ul li {
    font-size: 1rem;
  }

  .about-image,
  .vision-image {
    margin-bottom: 20px;
  }

  .map-container iframe {
    height: 300px;
  }

  .card {
    height: auto;
    /* Allow cards to adjust naturally on mobile */
  }

  .card-img-top {
    height: 200px;
    /* Reduce image height on mobile */
  }

  footer {
    padding: 30px 0 20px;
  }

  footer h5 {
    font-size: 1rem;
    margin-top: 20px;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}


 #media-archives {
      margin-bottom: 60px;
    }

    .media-arrow {
      height: auto;
      margin-left: 1rem;
    }

    .media-logo {
      width: auto;
    }

    .section-title-media {
      font-size: 44.8px;
      font-weight: 700;
      color: #1C2526;
      margin-bottom: 40px;
      position: relative;
    }

    h2.section-title-media::before {
      content: '';
      width: 161px;
      height: 4px;
      background: #1C2526;
      position: absolute;
      bottom: -10px;
      left: 7%;
      transform: translateX(-50%);
    }

    section#media-archives span {
      font-size: 28px;
      padding-left: 30px;
      line-height: 33.6px;
      font-weight: 500;
    }

    /* Desktop Styles */
    .desktop-media-archive-entry {
      padding: 15px 0;
      border: none;
      transition: background-color 0.2s;
      border-bottom: 1px solid #dee2e6;
      padding: 1.5rem 0;
      transition: background-color 0.2s ease;
    }

    .desktop-media-archive-entry:hover {
      background-color: #f8f9fa;
    }

    .desktop-media-archive-entry:last-child {
      border-bottom: none;
    }

    /* Mobile Styles */
    .mobile-media-archive-entry {
      padding: 30px 0;
      border-bottom: 1px solid #dee2e6;
      transition: background-color 0.2s ease;
    }

    .mobile-media-archive-entry:hover {
      background-color: #f8f9fa;
    }

    .mobile-media-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .mobile-title-row {
      font-size: 0.95rem;
      padding-left: 0;
      margin-top: 0.5rem;
    }

    @media (max-width: 767px) {
      .desktop-media-archive-entry {
        display: none; /* Hide desktop layout on mobile */
      }

      .mobile-media-archive-entry {
        display: block; /* Show mobile layout on mobile */
      }

      .section-title-media {
        font-size: 35px;
      }

      h2.section-title-media::before {
        left: 24%;
      }

      section#media-archives span {
        font-size: 24px;
        line-height: 30.6px;
      }
    }

    @media (min-width: 768px) {
      .mobile-media-archive-entry {
        display: none; /* Hide mobile layout on desktop */
      }

      .desktop-media-archive-entry {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
    }
    
    
       #media-archives {
      margin-bottom: 60px;
    }

    .media-arrow {
      height: auto;
      margin-left: 1rem;
    }

    .media-archive-entry {
      padding: 15px 0;
      border-bottom: 1px solid #dee2e6;
      transition: background-color 0.2s ease;
    }

    .media-archive-entry:hover {
      background-color: #f8f9fa;
    }

   

   
    h2.section-title-media::before {
      content: '';
      width: 161px;
      height: 4px;
      background: #1C2526;
      position: absolute;
      bottom: -10px;
      left: 24%;
      transform: translateX(-50%);
    }

    .media-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .title-row {
      font-size: 0.95rem;
      padding-left: 0;
      margin-top: 0.5rem;
    }



/*mobile responcive */
  #media-archives {
      margin-bottom: 60px;
    }

    .mobile-media-arrow {
      height: auto;
      margin-left: 1rem;
      width: 62px;
    }

    .mobile-media-archive-entry {
      padding: 15px 0;
      border-bottom: 1px solid #dee2e6;
      transition: background-color 0.2s ease;
    }

    .mobile-media-archive-entry:hover {
      background-color: #f8f9fa;
    }

    .mobile-media-logo {
      max-height: 40px;
      width: auto;
    }

    .mobile-section-title-media {
      font-size: 35px;
      font-weight: 700;
      color: #1C2526;
      margin-bottom: 40px;
      position: relative;
    }

    h2.mobile-section-title-media::before {
      content: '';
      width: 161px;
      height: 4px;
      background: #1C2526;
      position: absolute;
      bottom: -10px;
      left: 24%;
      transform: translateX(-50%);
    }

    .mobile-media-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .mobile-title-row {
      font-size: 22px;
      padding-left: 0;
      margin-top: 0.5rem;
    }

    section#media-archives span {
      font-size: 24px;
      line-height: 30.6px;
      font-weight: 500;
    }
    section#media-archives-mobile {
    display: none;
   }
   a.mobile-media-archive-entry {
    text-decoration: none;
    color: #000;
    }
   
   
  @media (max-width: 768px) {   
   section#media-archives-mobile {
    display: block;
    }
    section#media-archives {
    display: none;
   }
  }
    
/*End mmobile REsponcive     */
    
  
