body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
  }
  
  

  .navbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin: 1rem auto;
    padding: 0.75rem 1.5rem;
    max-width: 1100px;
    z-index: 1050; /* Ensure navbar stays on top */
    position: sticky; /* Make navbar sticky */
    top: 0; /* Stick to the top */
    width: 100%;
  }

  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #4a4e69 !important;
  }

  .nav-link,
  .dropdown-toggle {
    position: relative;
    color: white;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px;
  }
  
  .nav-link::after,
  .dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #c32d03; /* your accent color */
    transition: width 0.3s ease-in-out;
  }
  
  .nav-link:hover,
  .dropdown-toggle:hover {
    color: #c32d03;
    background-color: transparent;
    text-decoration: none;
    transform: translateY(-1px);
  }
  
  .nav-link:hover::after,
  .dropdown-toggle:hover::after {
    width: 100%;
  }
  a,
.nav-item a:link,
a:visited,
.nav-link,
.dropdown-item {
  color: black !important;
}
.nav-item a:hover,
.nav-link:hover,
.dropdown-item:hover {
  color: #c32d03 !important; /* or another accent color */
}

  

  .navbar-toggler {
    border: none;
    background: transparent;
  }
  .nav-link.active {
    color: #c32d03 !important;
    font-weight: 700;
    position: relative;
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #c32d03;
  }
  
  .navbar-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #4a4e69;
    margin: 5px auto;
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .navbar-toggler.collapsed .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-toggler.collapsed .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler.collapsed .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Image Box Styles (background) */
  .image-box {
    background-image: url('https://via.placeholder.com/800x400'); /* Example image URL */
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure image box stays in the background */
    margin-top:-50px;
  }

  /* Content inside Image Box */
  .content {
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  /* Main Content Section */
  .main-content {
    padding-top: 60px; /* Push the content below the navbar */
  }
  /* Content inside Image Box */
  .content {
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  /* Main Content Section */
  .main-content {
    padding-top: 60px; /* Push the content below the navbar */
  }

/* Carousel Image */
.carousel-item img {
    height: 300px; 
    object-fit: cover; /* Ensures the image covers the area */
    width: 100%;
}

/* Callback Header */
.callback-header {
    background-color: #c32d03;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.callback-header i {
    font-size: 1.5rem;
}

/* Form Card */
.form-card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1rem;
}

/* Red Button */
.btn-red {
    background-color:  #c32d03;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-red:hover {
    background-color: #b70000;
}

/* Read More Button */
.read-more {
    background-color: #c32d03;
    color: white;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #8f0505;
}

/* Footer */
.footer {
    background-color: #1f1c1c;
    color: #fd4903fe;
    padding: 40px 0 10px;
    font-size: 15px;
}

.footer h5 {
    color:  #fd4903fe;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer a {
    color: #fd4903fe;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}


.footer i {
    margin-right: 8px;
    color:  #fd4903fe;
}

.footer .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    color:  #fd4903fe;
    transition: color 0.3s;
}

.footer .social-icons i:hover {
    color: #8f0505;
    transform: scale(1.1); /* Slight enlarge effect on hover */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 14px;
    color: #fd4903fe;
}

.footer-bottom a {
    color: #fd4903fe;
    text-decoration: none;
}

/* Gallery Image */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    transform-origin: center center; /* Keep the center fixed during scaling */
}

/* Carousel Navigation */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    top: 35%;
    width: auto;
}

/* Carousel Inner */
.carousel-inner {
    padding: 10px;
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.top-bar a {
    color: #444;
    text-decoration: none;
    margin-right: 15px;
}

/* Logo */
.logo {
    height: 60px;
}


/* Enquire Button */
.enquire-btn {
    background-color: #fff;
    color: #004a8f;
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 0;
}



/* Responsive Design */
@media (max-width: 768px) {
    .gallery-img {
        height: 180px;
        margin-bottom: 15px;
    }

    .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
    }

   

   
}






 
  .gallery-img {
    padding: 5px;
    border-radius: 8px;
  }
  @keyframes moveRightToLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(10%); }
  }

  @keyframes moveUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .animate-circle {
    animation: moveRightToLeft 0.3s ease-out forwards;
  }

  .animate-text {
    animation: moveUp 0.3s ease-out forwards;
  }
  .image-box {
    width: 100%;
    height: 300px;
    background-image: url('/images/bg_edited2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }
  
  .image-box:hover {
    background-image: url('/images/bg_edited1.jpg');
  }
  
  /* Media query for screens smaller than 768px (tablets & phones) */
  @media (max-width: 768px) {
    .image-box {
      background-image: url('/images/mobile_bg2.jpg');
    }
  
    .image-box:hover {
      background-image: url('/images/mobile_bg1.jpg');
    }
  }
  
  .header-info-bg {
    background:lightgray;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10px 0;
  }

   .top-info i {
        font-size: 1.2rem;
        color: red;
      }
  
      .top-info span,
      .top-info small {
        color: white;
      }
  
      .social-icon {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
      }
      .facebook { background-color: #1877F2; }
      .instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
      .linkedin { background-color: #0A66C2; }
  /* Stats Section Styling */
  





  .months-section {
    background: url(images/bg2.jpg) no-repeat center center/cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }

  .months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    padding: 5rem 2rem;
    position: relative;
    z-index: 3;
  }

  .month-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    animation: floatIn 1s ease forwards;
    opacity: 0;
  }

  .month-box:hover {
    transform: scale(1.05);
  }

  .icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
  }

  .counter {
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
  }

  .month-box p {
    margin-top: 0.2rem;
    font-size: 0.95rem;
    color: #ddd;
  }

  /* Zig-Zag Positioning */
  .month-box:nth-child(1) { transform: translateY(-40px); animation-delay: 0.2s; }
  .month-box:nth-child(2) { transform: translateY(40px);  animation-delay: 0.4s; }
  .month-box:nth-child(3) { transform: translateY(-40px); animation-delay: 0.6s; }
  .month-box:nth-child(4) { transform: translateY(40px);  animation-delay: 0.8s; }

  @keyframes floatIn {
    from { opacity: 0; transform: translateY(80px); }
    to { opacity: 1; }
  }

  @media (max-width: 600px) {
    .month-box {
      transform: translateY(0) !important;
      animation: fadeIn 1s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  }
  

  @keyframes animateRedWhite {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @keyframes pulseGlow {
    0%, 100% {
      text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    }
    50% {
      text-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
    }
  }

  @keyframes bounceIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    60% {
      transform: scale(1.1);
      opacity: 1;
    }
    80% {
      transform: scale(0.95);
    }
    100% {
      transform: scale(1);
    }
  }
  @media (max-width: 600px) {
    .welcome {
      font-size: 2.5rem;
      margin-left:5%;
     }
     
         
  }
footer a {
  color:red;
}