body {
      font-family: "Poppins", sans-serif;
    }
    
    p{
        margin-bottom: 0 !important;
    }

    /* Header with glass effect */
    .navbar {
      background: linear-gradient(90deg, rgba(255,0,0,0.9), rgba(153,0,0,0.9));
      backdrop-filter: blur(8px);
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      text-transform: uppercase;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #ffd700 !important;
      transform: translateY(-2px);
    }
    .navbar-nav .active{
        color: #ffd700 !important;
    }

    /* Banner */
    .banner {
      position: relative;
      background: linear-gradient(to right, #89f7fe, #66a6ff);
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 60px 0;
      overflow: hidden;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(30px); }
    }

    /* Reusable radial white bulb effect */
    .white-bulb {
        position: absolute;            /* makes it float inside parent */
        top: 50%;                      /* adjust placement */
        right: 15%;                    /* adjust placement */
        width: 800px;                  /* bulb size */
        height: 800px;
        background: radial-gradient(
            circle,
            rgba(255, 255, 255, 1) 0%,   /* bright center */
            rgba(255, 255, 255, 1) 20%,  /* soft glow */
            rgba(255, 255, 255, 0.3) 50%,  /* soft glow */
            rgba(255, 255, 255, 0) 60%,  /* soft glow */
            rgba(255, 255, 255, 0) 80%     /* fade out */
        );
        border-radius: 50%;
        transform: translate(50%, -50%); /* keep it inside nicely */
        pointer-events: none;           /* don’t block clicks */
        z-index: 0;                     /* show above gradient */
        opacity: 1; 
        animation: bulbPulse 6s ease-in-out infinite;
        }

        @keyframes bulbPulse {
        0%, 100% { transform: translate(50%, -50%) scale(1); opacity: 0.7; }
        50% { transform: translate(50%, -50%) scale(1.2); opacity: 1; }
        }
    .banner h1 {
      font-size: 4rem;
      font-weight: 800;
      color: #fff;
      text-shadow: 0 4px 10px rgba(0,0,0,0.3);
      margin-bottom: 0 !important;
      line-height: 1;
      position: relative;
    }

    .banner h2 {
      font-size: 32px;
      color: #111;
      position: relative;
    }

    .banner img {
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      transform: scale(1);
      transition: transform 0.4s ease;
    }

    .banner img:hover {
      transform: scale(1.05);
    }
    /* CEO Info Styling */
    .ceo-info{
        position: relative;
    }
    .ceo-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 5px 0 2px;
    color: #222;
    text-transform: uppercase;
    }

    .ceo-info p {
    font-size: 1.5rem;
    color: #555;
    margin: 0;
    font-style: italic;
    }

    /* About */
    .about {
      background: linear-gradient(120deg, #ff9933, #ff7733);
      padding: 100px 20px;
      text-align: center;
      color: #fff;
    }

    .about h2 {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .about p {
      max-width: 850px;
      margin: auto;
      font-size: 1.2rem;
      line-height: 1.8;
    }

    /* Contact Section */
    .contact {
      background: #f8f9fa;
      padding: 100px 20px;
    }

    .contact h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      font-weight: 600;
    }

    .contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 30px;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .contact-card h5 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #990000;
    }

    .contact-card a {
      text-decoration: none;
      font-weight: 500;
      color: #333;
    }

    .contact-card a:hover {
      color: #ff0000;
    }

    /* Footer */
    footer {
      background: #111;
      color: #bbb;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }

    footer a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    footer a:hover {
      color: #ffd700;
    }

    /* Breadcrumb Section */
    .breadcrumb-section {
    position: relative;
    background: linear-gradient(to right, #f3834b, #fa5456);

    color: #fff;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    }

    .breadcrumb-section::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 0;
    }

    .page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    }

    .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    }

    .breadcrumb-item a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    }

    .breadcrumb-item a:hover {
    text-decoration: underline;
    color: #ffe082;
    }

    .breadcrumb-item.active {
    color: #ffd700 !important;
    font-weight: 600;
    }

    .photos-section {
  background: #fff;
}

.photos-section h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.nav-pills .nav-link {
  color: #444;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: .5s;
}
.nav-pills .nav-link:hover{
    color: #fff !important;
    background: linear-gradient(to right, #ff512f, #dd2476); /* matches website color combo */ 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-pills .nav-link.active {
  background: linear-gradient(to right, #ff512f, #dd2476); /* matches website color combo */
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 270px !important;
  object-fit: cover 
}
 

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Enquiry Section */
.enquiry-section {
  background: #fff; /* very light off-white/blue tint */
  padding: 100px 20px;
}

/* Enquiry Card */
.enquiry-card {
  background: #ffffff; /* clean white card */
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* soft premium shadow */
  max-width: 700px;
  margin: auto;
  border-top: 5px solid #ff9933; /* saffron accent line */
}

/* Enquiry Title */
.enquiry-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px !important;
  color: #222 !important;
}

/* Input Fields */
.enquiry-card .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.form-label{
    font-weight: 500;
}

.enquiry-card .form-control:focus {
  border-color: #66a6ff; /* light blue border on focus */
  box-shadow: 0 0 8px rgba(102, 166, 255, 0.25);
}

.enquiry-btn {
  background: linear-gradient(135deg, #ff9933, #ff5722); /* saffron → warm orange */
  border: none;
  border-radius: 50px; /* pill-shape for modern look */
  font-weight: 600;
  font-size: 1rem;
  color: #fff !important;
  padding: 12px 35px;
  letter-spacing: 0.5px;
  transition: .5s
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #ff7e29, #e64a19);
  box-shadow: 0 6px 18px rgba(230, 74, 25, 0.45); 
}




