﻿ /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      overflow-x: hidden;
    }

  
       /* Main background color from the image */
.header-section-wrapper {
    background-color: #000a1f; 
    padding-bottom: 30px; /* Add padding at the bottom for separation */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar Styling --- */
.top-bar-container {
    display: flex;
    justify-content: flex-start;
    padding-top: 30px; 
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
    /* This ensures the top bar starts from the left edge of the content area */
    padding-left: 20px; 
}

.top-bar {
    /* Main Pink Color: #ff4a88 */
    background: #d13f13; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 74px;
    height: 35px;
    
    /* Width adjusted for better visual match */
    width: 75%; 
    max-width: 900px;
    
    position: relative;
    /* The key to the curved corner */
    border-radius: 0 35px 35px 0; 
    box-sizing: content-box;
    /* Move it left to align the start of the pink bar to the content area */
    margin-left: 45px;
    margin-top: -32px; 
}

.contact-info {
    display: flex;
    gap: 40px;
    padding-left: 30px; 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-style: oblique;
}

.contact-item i {
    color: #fff;
    font-size: 14px;
}

/* Social Icons Section (positioned outside the pink bar) */
.social-icons {
    display: flex;
    position: absolute; 
    /* Position exactly where the pink bar ends and the circles begin */
    right: 27px; 
    align-items: center;
}

.icon-link {
    width: 35px; /* Slightly larger circles */
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    font-size: 16px; /* Slightly larger icons */
}

/* Specific colors for social icon circles - EXACT MATCH */
.social-icons .facebook { background-color: #fff; color: #000a1f; } 
.social-icons .twitter { background-color: #fff; color: #000a1f; } 
.social-icons .instagram { background-color: #fff; color: #000a1f; border: 1px solid #fff; } 
.social-icons .linkedin { background-color: #fff; color: #000a1f; border: 1px solid #fff; } 


@media(max-width: 992px) {
    /* Top Bar Container */
    .top-bar-container {
        padding-top: 15px;
        padding-left: 10px;
        max-width: 100%;
        justify-content: center;
    }

    /* Top Bar */
    .top-bar {
        width: 100%;
        max-width: none;
        padding: 10px 20px;
        height: auto; /* let content adjust height */
        flex-direction: column; /* stack content vertically */
        align-items: flex-start;
        border-radius: 0; /* remove curved corner for mobile */
        margin-left: 0;
        margin-top: 0;
    }

    /* Contact info inside top bar */
    .contact-info {
        flex-direction: column;
        gap: 5px;
        padding-left: 0;
    }

    .contact-item {
        font-size: 14px;
        gap: 5px;
    }

    /* Social icons below contact info */
    .social-icons {
        position: static;
        margin-top: 10px;
        justify-content: flex-start;
        gap: 8px;
    }

    .icon-link {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* --- Main Header/Navbar Styling --- */
.main-header {
    padding-top: 0px;
    height: 63px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 20px; /* Space below the top bar */
}

/* Logo/Brand Name */
.logo {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    padding-right: 20px;
}

.logo-baby {
    color: #ff4a88; /* Bright pink for 'Baby' */
}

.logo-care {
    color: #5d5dff; /* Blue/Purple for 'Care' */
}


/* Navbar Links */
.navbar-area {
    flex-grow: 1; 
    display: flex;
    justify-content: flex-start;
    padding-left: 50px; 
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff; 
    padding: 10px 0;
}

.nav-links li a.active {
    color: #d13f13; 
}


/* Header Contact Phone and Search */
.header-contact-search {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #ffafc9; 
    padding-right: 15px;
    height: 50px;
    line-height: 1.2;
}

.phone-contact i {
    color: #d13f13; 
    font-size: 28px;
}

.phone-contact span {
    font-size: 12px;
    color: #d13f13; 
    font-weight: 600;
}

.phone-contact strong {
    font-size: 16px;
    display: block;
    color: #fff; 
    font-weight: 700;
}

/* Search Button */
.search-btn {
    background-color: #d13f13; 
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px; 
    font-size: 18px;
    cursor: pointer;
}
/* Hamburger */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 2001; /* must be above everything */
}

.hamburger-menu span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Animate hamburger */
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px);}
.hamburger-menu.active span:nth-child(2) { opacity: 0;}
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px);}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;  /* fixed ensures it overlays everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;    /* full screen menu */
    background-color: #071231;
    z-index: 2000;
    overflow-y: auto;
    padding-top: 80px; /* space for header */
    transition: all 0.3s ease;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Mobile only */
@media(max-width: 992px){
    .hamburger-menu { display: flex; }
    .navbar-area { display: none; }
}

/* --- Basic Responsive adjustments --- */
@media(max-width: 1200px) {
    .top-bar {
        width: 65%; /* Adjusted width */
    }
    .social-icons {
        right: -100px;
    }
    .header-container {
        padding: 0 15px;
    }
}

@media(max-width: 992px) {
    .top-bar-container {
        padding-left: 0;
    }
    .top-bar {
        width: 100%;
        max-width: none;
        border-radius: 0;
        justify-content: space-around;
        margin-left: 0;
    }
    
    .social-icons {
        position: static;
        margin-left: 20px;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .navbar-area {
        order: 3; 
        width: 100%;
        justify-content: center;
    }
    
    .phone-contact {
        border-right: none;
        padding-right: 0;
    }
}










/* ===== Slider ===== */
.slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 85vh;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 550px;
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.btn {
  display: inline-block;
  background: #FFCE0A;
  color: #000a1f;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #d1a708;
}

/* Navigation Arrows */
.slider-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: 0.3s;
}

.slider-nav .prev {
  left: 20px;
}
.slider-nav .next {
  right: 20px;
}
.slider-nav span:hover {
  color: #FFCE0A;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dots span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dots .active {
  background: #FFCE0A;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}



.scrolling-text {
  width: 100%;
  overflow: hidden;
  background: #222; /* dark background */
  color: #ffce0a;   /* text color */
  padding: 33px 0;
  position: relative;
  box-sizing: border-box;
}

.scrolling-text p {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  will-change: transform;
  animation: scroll-text 25s linear infinite;
  font-size: 18px;
  padding-left: 100%; /* start from right */
  margin-top: -12px;
}

/* Animation */
@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .scrolling-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .scrolling-text p {
    font-size: 14px;
  }
}


















/*about us*/
.about-section {
  color: #000000;
  padding: 0px 20px;
  margin-bottom: 27px;   
  font-family: 'Arial', sans-serif;
}
.about-title {
  text-align: center; 
  font-size: 2.5rem; 
  font-weight: bold; 
  margin: 20px 0; 
  color: #000a1f;
  text-decoration-line: underline;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.about-text {
  flex: 1 1 500px;
}
.about-text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #d13f13;
}
.about-text h2 span {
  color: #000a1f;
}
.about-text p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Feature Boxes */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-box {
  display: flex;
  align-items: center;
  background: #eee;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  margin-left: 56px;
  min-width: 220px;
}
.feature-box i {
  font-size: 24px;
  color: #d13f13;
  margin-right: 12px;
}
.feature-box p {
  margin: 0;
  font-weight: 500;
}
.feature-box:hover {
  background: #ffce0a;
  color: #fff;
}
.feature-box:hover i,
.feature-box:hover p {
  color: #000000;
}

/* Read More Button */
.btn-read-more {
  display: inline-block;
  padding: 12px 25px;
  background: #000a1f;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 101px;
}
.btn-read-more:hover {
  background: #FFD700;
  color: #020030;
}

/* Image Collage */
.about-images {
  flex: 1 1 450px;
  position: relative;
}
.image-collage {
  position: relative;
  width: 100%;
  height: 500px;
}
.image-collage img {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.image-grid img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* Center design on top of images */
.center-design {
  position: absolute;
  top: 54%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
  z-index: 10; /* ensures it's on top */
}
/* Top Left */
.img-1 { width: 325px; top: 16px; left: 6px; z-index: 4; }
/* Top Right */
.img-2 { width: 366px; top: 14px; height: 249px; right: -157px; z-index: 3; }
/* Bottom Left */
.img-3 { width: 322px; bottom: -26px; left: 7px; z-index: 2; }
/* Bottom Right */
.img-4 { width: 344px; height: 231px; bottom: -23px; right: -140px; z-index: 1; }
/* Hover effect */
.image-collage img:hover { transform: scale(1.05); z-index: 5; }

/* ===================== */
/* Animation from left and right */
.animate-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}
.animate-left.active {
  opacity: 1;
  transform: translateX(0);
}
.animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===================== */
/* Responsive Fixes */
/* ===================== */
/* Responsive Fixes */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px; /* space between text and images */
  }

  .about-text, .about-images {
    flex: 1 1 100%;
    margin: 0;
    width: 100%; /* full width */
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center; /* optional for mobile */
  }

  .about-features {
    justify-content: center;
    gap: 15px;
  }

  .image-collage {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    position: relative;
  }

  .image-collage img {
    position: relative; /* remove absolute positioning */
    width: 80%; /* full width for mobile */
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 10px auto;
    display: block;
  }
}

@media (max-width: 500px) {
  .about-text h2 {
    font-size: 15px;
    margin-left: 50px;
  }
  .about-text p {
    font-size: 12px;
    margin-left: 47px;
  }
  .image-collage img {
    width: 90%; /* almost full width */
  }
}

/*features*/
 .location-cards-section {
      width: 100%;
      padding: 80px 10px;
      background: #fff;
    }

    .location-cards-section .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .location-cards-section .section-title h2 {
      font-size: 36px;
      color: #0C1844;
      margin-bottom: 10px;
    }

    .location-cards-section .section-title p {
      font-size: 16px;
      color: #555;
    }

    .location-cards {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .location-card {
      background: var(--surface-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      flex: 1 1 30%;
      max-width: 350px;
      display: flex;
      flex-direction: column;
    }

    .location-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .location-card .location-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .location-card:hover .location-image {
      transform: scale(1.05);
    }

    .location-content {
      padding: 25px;
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .location-icon {
      width: 60px;
      height: 60px;
      background: #0c1844;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      top: -30px;
      margin-bottom: 20px;
      border: 4px solid var(--surface-color);
    }

    .location-icon i {
      font-size: 24px;
      color: #fff;
    }

    .location-content h4 {
      font-size: 22px;
      color: #d13f13;
      margin-bottom: 12px;
      margin-top: -42px;
    }

    .location-content p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
      flex: 1;
    }

    .nearby-places {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .nearby-places li {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #555;
      margin-bottom: 5px;
    }

    .nearby-places li i {
      color: #0C1844;
      margin-right: 8px;
    }

    .explore-btn {
      display: inline-block;
      background: #0c1844;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
    }

    .explore-btn:hover {
      background: #0C1844;
      color: #fff;
    }

    @media (max-width: 1200px) {
      .location-card {
        flex: 1 1 45%;
      }
    }

    @media (max-width: 768px) {
      .location-card {
        flex: 1 1 100%;
      }
      .location-icon {
        width: 50px;
        height: 50px;
      }
      .location-icon i {
        font-size: 20px;
      }
      .location-content h4 {
        font-size: 20px;
      }
    }
    
    

   /*event*/
    .events-cards-section {
      width: 100%;
      padding: 80px 10px;
      background: #fff;
    }

    .events-cards-section .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .events-cards-section .section-title h2 {
      font-size: 36px;
      color: #0C1844;
      margin-bottom: 10px;
    }

    .events-cards-section .section-title p {
      font-size: 16px;
      color: #555;
    }

    .events-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .event-card {
      position: relative;
      width: 100%;
      max-width: 350px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .event-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .event-image {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
    }

    .event-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .event-card:hover .event-image img {
      transform: scale(1.1);
    }

    .event-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.55);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 30px;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .event-card:hover .event-overlay {
      opacity: 1;
    }

    .event-overlay h4 {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      transform: translateY(20px);
      transition: transform 0.3s ease 0.1s;
    }

    .event-card:hover .event-overlay h4 {
      transform: translateY(0);
    }

    .event-overlay p {
      color: rgba(255,255,255,0.9);
      font-size: 16px;
      margin-bottom: 25px;
      transform: translateY(20px);
      transition: transform 0.3s ease 0.2s;
    }

    .event-card:hover .event-overlay p {
      transform: translateY(0);
    }

    .event-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: var(--contrast-color);
      color: var(--accent-color);
      border-radius: 50%;
      text-decoration: none;
      font-size: 20px;
      transform: translateY(20px) scale(0.8);
      transition: all 0.3s ease;
    }

    .event-card:hover .event-btn {
      transform: translateY(0) scale(1);
    }

    .event-btn:hover {
      background-color: rgba(255,255,255,0.9);
      color: var(--accent-color);
      transform: scale(1.1);
    }

    @media (max-width: 1200px) {
      .event-card {
        max-width: 45%;
      }
    }

    @media (max-width: 768px) {
      .event-card {
        max-width: 100%;
        height: auto;
      }
      .event-image {
        height: 250px;
      }
      .event-overlay {
        padding: 20px;
      }
      .event-overlay h4 {
        font-size: 20px;
      }
      .event-overlay p {
        font-size: 14px;
        margin-bottom: 20px;
      }
      .event-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }
    }
    
    
    .activity-report-title {
    width: 100%;
    text-align: center;
    margin: 40px 0;
}

.activity-report-title h2 {
    font-size: 13px;
    font-weight: 600;
    color: #000a1f;
    margin-top: -93px;
    margin-right: 465px;
}


/* Mobile View */
@media (max-width: 768px) {
    .activity-report-title {
        margin: 20px 0;
        text-align: center;
    }

    .activity-report-title h2 {
        font-size: 16px;
        margin-top: 0;        /* remove negative margin */
        margin-right: 0;      /* remove desktop offset */
        color: #000a1f;
    }
}

    

    
    
    
    
    
    
 /* background video full width & full height */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-section .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* covers entire screen */
  transform: translate(-50%, -50%);
  z-index: 0;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.video-section .content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.video-section .content h2 {
  font-size: 40px;
  color: #ffce0a;
}



/*objective*/
.objectives-timeline {
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
  position: relative;
  background: url('assets/image/7.png') center center / cover no-repeat;
  color: #fff; /* make text white for contrast */
  overflow: hidden;
}

.objectives-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 0;
}

.timeline-title,
.timeline-container,
.timeline-item,
.timeline-content,
.timeline-number {
  position: relative; /* keep above overlay */
  z-index: 1;
}

/* You can keep the rest of your CSS as it is */


.timeline-title {
  font-size: 2.5rem;
  color: #000a1f;
  margin-bottom: 50px;
  position: relative;
}

.timeline-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #000a1f;
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background: #d13f13;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #d13f13;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.timeline-content:hover {
  transform: translateX(10px);
}

.timeline-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000a1f;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .objectives-timeline {
    padding: 60px 15px;
  }

  .timeline-title {
    font-size: 2rem;
  }

  .timeline-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline-container::before {
    left: 20px; /* shift timeline line slightly */
  }

  .timeline-item {
    padding-left: 70px;
    margin-bottom: 40px;
  }

  .timeline-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    left: 10px;
    
  }

  .timeline-content {
    padding: 15px 20px;
  }
}

@media (max-width: 600px) {
  .objectives-timeline {
    padding: 50px 10px;
  }

  .timeline-title {
    font-size: 1.8rem;
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 60px;
    margin-bottom: 30px;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    left: 10px;
  }

  .timeline-content {
    padding: 12px 15px;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .timeline-item {
    padding-left: 50px;
  }

  .timeline-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 10px 12px;
    font-size: 14px;
  }
}



/* Fixed contact buttons */
.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #00aff5;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, background-color 0.3s;
}

.contact-btn:hover {
  transform: scale(1.1);
  background-color: #008ecf;
}

.contact-btn.whatsapp {
  background-color: #25d366;
}

.contact-btn.whatsapp:hover {
  background-color: #1ebe5b;
}


/*footer*/
.jurilex-footer {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

.jurilex-footer h5 {
  color: #00aff5;
  margin-bottom: 15px;
  font-weight: 600;
}

.jurilex-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.jurilex-footer a:hover {
  color: #00aff5;
  text-decoration: underline;
}

.jurilex-footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .jurilex-footer iframe {
    height: 150px;
  }
}


.custom-footer {
  background: #000a1f;
  color: #ccc;
  padding-top: 40px;
  font-family: Arial, sans-serif;
}

/* Flex container for 5 columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 40px;
}

.footer-col {
  flex: 1;
  min-width: 0;
}

.footer-col h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff9800;
  margin-top: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff9800;
  padding-left: 5px;
}

.footer-col .social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-col .social-links a:hover {
  color: #ff9800;
}

/* Map column style */
.footer-map iframe {
  border-radius: 5px;
  overflow: hidden;
}

.footer-bottom {
  background: #d13f13;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-col img.footer-logo {
  display: block;
  margin-bottom: 10px;
}

.footer-col h5 {
  color: #d13f13;
  margin-bottom: 10px;
  font-style: oblique;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  font-style: revert-layer;
}

/* Keep in one row even on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .footer-col {
    min-width: 250px;
  }
}
.designer-credit {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.designer-credit a {
  color: #006ddb5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.designer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Mobile-friendly footer layout */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: wrap;           /* Allow wrapping to new lines */
    overflow-x: visible;       /* Remove horizontal scroll */
    gap: 20px;
    padding: 0 20px;
  }

  .footer-col {
    flex: 1 1 100%;            /* Full width for each column */
    min-width: 100%;
  }

  .footer-map iframe {
    width: 100%;               /* Make map fit mobile width */
    height: 200px;
  }
}




/* image*/
 h2 {
      text-align: center;
      margin-bottom: 30px;
      margin-top: 21px;
    font-size: 41px;
    }

    .multi-slider .item {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .multi-slider .item img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .multi-slider .item:hover {
      transform: scale(1.05);
    }

    /* Arrows */
    .owl-nav button {
      position: absolute;
      top: 35%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #fff !important;
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      transition: 0.3s;
    }
    
    .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    margin-bottom: 23px;
}
    .owl-nav button:hover {
      background: #ff6600;
    }

    .owl-nav .owl-prev {
      left: -40px;
    }

    .owl-nav .owl-next {
      right: -40px;
    }
    
    
    /* Banner Section */
    .single-banner {
      width: 100%;
      height: 400px; /* 👈 smaller height */
      background-image: url("assets/image/banner.png");
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }

    /* Optional Banner Text */
    .banner-content {
      background: rgba(0, 0, 0, 0.5);
      padding: 20px 40px;
      border-radius: 10px;
    }

    .banner-content h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .banner-content p {
      font-size: 1.2rem;
    }
    
    
    /*About paage*/
     .container {
  max-width: 1447px;
  margin: auto;
  padding: 60px 0; /* removed left-right padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
    /* Left content */
    .info-left h5 {
      color: #000a1f;
      margin-bottom: 10px;
      font-size: 34px;
      text-decoration: underline;
    }

    .info-left h2 {
      font-size: 26px;
      line-height: 1.3;
      margin-bottom: 20px;
      font-weight: 700;
      color: #d13f13;
    }

    .info-left p {
      color: #555;
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 1.7;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .feature-box1 {
      background: #d13f13;
      padding: 20px;
      margin-left: 10px;
      width: 237px;
      border-radius: 12px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 18px rgba(0,0,0,0.12);
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-item i {
      font-size: 24px;
      color: #000a1f;
      background: #e6f7ff;
      padding: 12px;
      border-radius: 50%;
    }

    .feature-item h4 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .feature-item p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #fff;
    }

    /* Right content */
    .info-right {
      position: relative;
      text-align: center;
    }

    .info-right img {
      width: 100%;
      height: 800px;
      border-radius: 10px;
    }

    .experience-label {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #000a1f;
      color: #fff;
      padding: 10px 25px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    }

    .stats-boxes {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      gap: 20px;
      width: 700px;
    }

    .stats-card {
      flex: 1;
      padding: 25px 15px;
      border-radius: 10px;
      color: #fff;
      text-align: center;
    }

    .stats-blue {
      background: #000a1f;
    }

    .stats-dark {
      background: #ffce0a;
    }

    .stats-card i {
      font-size: 26px;
      margin-bottom: 10px;
      display: block;
    }

    .stats-card h3 {
      margin: 5px 0;
      font-size: 22px;
      font-weight: 700;
    }

    .stats-card p {
      font-size: 14px;
      margin: 0;
      color: #eee;
    }

   /* Responsive */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
    padding: 40px 0; /* no left-right padding */
    gap: 40px;
  }


  .info-right img {
    height: auto; /* Adjust height for smaller screens */
  }

  .stats-boxes {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
    padding: 40px 0; /* no left-right padding */
    gap: 40px;
  }

  .info-left h2 {
    font-size: 28px;
  }

  .info-left p {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-card h3 {
    font-size: 20px;
  }

  .stats-card p {
    font-size: 13px;
  }
}

/* Mobile fixes for widths and overflow */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }

  /* Header logo and navbar */
  .top-header, .navbar {
    padding: 10px 5%;
  }

  /* Image Section */
  .image-section {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
  }

  .image-section .content h2 {
    font-size: 24px;
  }

  .image-section .content p {
    font-size: 14px;
  }

  /* About page container */
  .container {
    grid-template-columns: 1fr;
    padding: 30px 5%;
  }

  .info-right img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Image collage */
  .image-collage, .image-grid, .about-images {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .image-collage img, .image-grid img {
    position: relative;
    width: 90%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 10px auto;
  }

  .center-design {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin: 20px auto;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Stats boxes */
  .stats-boxes {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  /* Fixed width issues */
  .image-section, .info-right img, .about-images, .image-collage {
    max-width: 100%;
  }

  /* Footer fixes */
  .footer-container {
    flex-wrap: wrap;
    overflow-x: hidden;
    gap: 20px;
    padding: 0 10px;
  }
}

/*objectives*/
/* Section */
.objectives-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #000a1f 0%, #1a1a1a 100%);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #ff4b2b;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Objectives Grid */
.objectives-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Objective Card */
.objective-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #ff4b2b, #ffce0a);
  opacity: 0;
  transition: 0.4s ease;
  transform: rotate(25deg);
  z-index: 0;
}

.objective-card:hover::before {
  opacity: 0.15;
}

.objective-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff4b2b, #ffce0a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1;
  position: relative;
}

/* Card Text */
.objective-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.objective-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  z-index: 1;
  position: relative;
}

/* Responsive */
@media (max-width: 992px) {
  .objectives-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .objectives-cards {
    grid-template-columns: 1fr;
  }
}


/*facilities*/
    .haat-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('assets/image/background1.png') no-repeat center/cover;
  color: #fff;
  padding: 80px 10%;
}

.haat-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.haat-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  border-left: 
  padding-left: 12px;
}

.haat-content p.intro {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.haat-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #ffcc00;
}

.facilities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facilities li {
  font-size: 20px;
  background: #000a1f;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.facilities i {
  color: #ffcc00;
}

.haat-stats {
  display: grid;
  gap: 20px;
}

.stat-box {
  background: #d13f13;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #ffcc00;
}

.stat-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .haat-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
  }

  .haat-content h2 {
    font-size: 28px;
  }

  .stat-box h3 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .haat-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .facilities {
    grid-template-columns: 1fr;
  }

  .haat-content h2 {
    font-size: 26px;
  }

  .haat-content p.intro {
    font-size: 15px;
  }

  .stat-box {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .haat-section {
    padding: 60px 6%;
  }

  .haat-content h2 {
    font-size: 24px;
  }

  .stat-box h3 {
    font-size: 22px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .haat-section {
    padding: 50px 5%;
  }

  .haat-content h2 {
    font-size: 22px;
  }

  .haat-content p.intro {
    font-size: 14px;
  }

  .facilities li {
    font-size: 16px;
    padding: 6px 10px;
  }

  .stat-box {
    padding: 15px;
  }

  .stat-box h3 {
    font-size: 20px;
  }
}


























   .performance-section {
      padding: 80px 10%;
      background: #fff;
    }

    .performance-section h2 {
      text-align: center;
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #000a1f;
      position: relative;
    }

    .performance-section h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: #ff6600;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .performance-intro {
      text-align: center;
      max-width: 900px;
      margin: auto;
      font-size: 18px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 60px;
    }

    .performance-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .stat-box1 {
      text-align: center;
      padding: 30px 20px;
      background: #0000ff52;
      border-radius: 12px;
      transition: 0.3s ease;
    }

    .stat-box1:hover {
      background: #ff6600;
      color: #fff;
      transform: translateY(-5px);
    }

    .stat-box1 i {
      font-size: 40px;
      color: #ff6600;
      margin-bottom: 15px;
      transition: 0.3s ease;
    }

    .stat-box1:hover i {
      color: #fff;
    }

    .stat-box1 h3 {
      font-size: 24px;
      margin-bottom: 8px;
      font-weight: bold;
    }

    .stat-box1 p {
      font-size: 16px;
      color: inherit;
      margin: 0;
    }
    
    
    /*gallery*/
    /*gallery section*/
.custom-gallery-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.custom-gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 10px;
  box-sizing: border-box;
}

.custom-gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.custom-gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  transition: transform 0.4s ease;
}

.custom-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* + icon overlay */
.custom-gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.custom-gallery-item:hover::after {
  opacity: 1;
}





/* Responsive */
@media (max-width: 992px) {
  .custom-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-gallery-container {
    grid-template-columns: 1fr;
  }
}

/* Modal overlay */
.image-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

/* Modal image */
.image-modal img.modal-content {
  max-width: 90%;
  max-height: 90%;
  width: 600px;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  user-select: none;
}

/* Close button (top-right X) */
.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  z-index: 1010;
}
.modal-close:hover {
  color: #bbb;
}

/* Next and Prev buttons */
.modal-next,
.modal-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  font-size: 48px;
  color: white;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1010;
}

.modal-next:hover,
.modal-prev:hover {
  background: rgba(255,255,255,0.7);
  color: black;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}





.custom-gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
      padding: 20px;
    }

    .custom-gallery-item img {
      width: 100%;
      height: 221px;
      object-fit: cover;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .custom-gallery-item img:hover {
      transform: scale(1.05);
    }



/* Contact Section */
.contact-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-details, .contact-form-box {
  flex: 1 1 0px;
}

.contact-container h2 {
  color: #000a1f
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.detail-item i {
  color: #d13f13;
  margin-right: 10px;
  font-size: 18px;
}

.map-box {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.contact-form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #000a1f;
}

.contact-form-box input, 
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

.contact-form-box button {
  background: #000a1f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.contact-form-box button:hover {
  background: #d13f13;
}












.video-section {
max-width: 1100px;
margin: 0 auto;
padding: 24px;
background: #fff;
border-radius: 10px;
box-shadow: 0 6px 18px rgba(18,30,60,0.06);
}


.video-section h2 {
margin: 0 0 16px 0;
font-size: 22px;
letter-spacing: -0.2px;
}


.videos-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
align-items: start;
}


/* Responsive video wrapper - keeps 16:9 aspect ratio */
.video-wrapper {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 ratio */
overflow: hidden;
border-radius: 8px;
background: #000;
}


.video-wrapper iframe {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%; border: 0;
}


.video-caption {
margin-top: 8px;
font-size: 14px;
color: #555;
}


/* Tablet adjustment — reduce gap & font size */
@media (max-width: 1024px) {
  .video-section {
    padding: 16px;
  }
  .videos-row {
    gap: 14px;
  }
  .video-section h2 {
    font-size: 20px;
  }
}

/* Mobile — stack videos in 1 column */
@media (max-width: 720px) {
  .videos-row {
    grid-template-columns: 1fr;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .video-section {
    padding: 12px;
  }
  .video-section h2 {
    font-size: 18px;
  }
  .video-caption {
    font-size: 13px;
  }
}
