 /* Topbar Start */
.topbar {
  background-color: #002b5b;
  color: #ffffff;
  font-size: 14px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: #fdd835;
}

.topbar-social i {
  color: #ffffff;
  transition: transform 0.2s ease;
}

.topbar-social i:hover {
  transform: scale(1.2);
  color: #fdd835;
}

.glass-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 43, 91, 0.3);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.glass-icon:hover {
  background: rgba(0, 123, 255, 0.15);
  transform: scale(1.1);
  color: #00eaff;
}

@media (max-width: 576px) {
  .topbar {
    text-align: center;
  }

  .topbar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .email-only {
    display: none !important;
  }
}

      /* Custom Dropdown */
      .custom-dropdown {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 10px 0;
        animation: dropdownFade 0.3s ease;
        min-width: 220px;
        box-shadow: 0 8px 20px rgba(0, 43, 91, 0.1);
      }

      .custom-dropdown .dropdown-item {
        padding: 10px 20px;
        font-weight: 500;
        color: #002b5b;
        transition: background 0.3s, color 0.3s;
        border-radius: 6px;
      }

      .custom-dropdown .dropdown-item:hover {
        background-color: #f0f6ff;
        color: #0056a3;
        transform: translateX(3px);
      }

      .custom-dropdown hr.dropdown-divider {
        margin: 6px 0;
        border-top: 1px solid #ddd;
      }

      @keyframes dropdownFade {
        from {
          transform: translateY(10px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      /* topbar end */

      /* Carousel Start */
        /* Responsive Image Styling */
    #mainCarousel img {
      width: 100%;
      height: auto;
      max-height: 100vh;
      object-fit: cover;
    }

    /* Height Adjustment for Different Devices */
    @media (max-width: 992px) {
      #mainCarousel img {
        max-height: 75vh;
      }
    }

    @media (max-width: 768px) {
      #mainCarousel img {
        max-height: 60vh;
      }
    }

    @media (max-width: 480px) {
      #mainCarousel img {
        max-height: 50vh;
      }
    }

    /* Control Styling */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 60% 60%;
    }

    .carousel-control-prev,
    .carousel-control-next {
      transition: 0.3s ease;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      transform: scale(1.1);
    }

    /* Dots (Indicators) Styling */
    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #444;
    }

    .carousel-indicators .active {
      background-color: #000;
    }
      /* crousel end */

      /* aboutsection start */
/* Section Background and Base */
.company-profile-section {
  /* padding: 100px 0; */
  background-color: #ffffff; /* Deep dark blue */
  color: #ffffff;
  overflow: hidden;
}

/* Section Title */
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #4da6ff; /* Light blue accent */
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #4da6ff;
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* Text Content */
.text-box {
  padding: 20px 30px;
}

/* .text-box .lead {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

.text-box p {
  font-size: 16px;
  color: #000000;
} */

/* Button Styling */
.cta-btn {
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #003366, #FC2435); /* Dark blue to red */
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 89, 179, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #0059b3, #FC2435); /* Lighter blue to red */
  transform: translateY(-3px);
}

/* Image */
.image-box {
  text-align: center;
  padding: 20px;
}

.profile-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .text-box,
  .image-box {
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
      /* about section end */

      /* stats start */
      .stats-section {
        background: #0b1d3a;
        color: #fff;
        /* padding: 60px 0; */
        padding: 26px 0;
      }

      .stat-box {
        padding: 30px 15px;
        transition: all 0.3s ease;
      }

      .stat-box:hover {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
      }

      .stat-box .icon {
        font-size: 40px;
        margin-bottom: 15px;
        color: #00bcd4;
      }

      .stat-box h3 {
        font-size: 36px;
        margin: 0 0 5px;
        font-weight: 700;
      }

      .stat-box p {
        margin: 0;
        font-size: 16px;
      }
      /* stats end */

      /* services section start */
      .custom-slider-wrapper {
       max-width: 1435px;
       margin: auto;
       padding: 50px 2px;
      }

    .custom-swiper-container {
      padding: 20px 10px 40px;
    }

    .custom-slide {
      display: flex;
      justify-content: center;
    }

    .custom-card {
      width: 320px;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s;
    }

    .custom-card:hover {
      transform: translateY(-5px);
    }

  .custom-card img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: contain; /* Show full image */
  display: block;
  background-color: #f9f9f9; /* Optional: For spacing around smaller images */
}

    .custom-card-body {
      padding: 15px;
      text-align: center;
    }

    .custom-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .custom-text {
      font-size: 0.95rem;
      margin-bottom: 15px;
      color: #555;
    }

    .custom-buttons {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .custom-buttons a {
      flex: 1 1 48%;
      text-align: center;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 50px;
      transition: all 0.3s ease-in-out;
      text-decoration: none;
    }

    .custom-btn-outline {
     border: 2px solid #003366;
      color: #003366;
      background: transparent;
    }

    .custom-btn-outline:hover {
      background: linear-gradient(135deg, #003366, #FC2435);
      color: #fff;
    }

    .custom-btn-filled {
     background: linear-gradient(135deg, #003366, #FC2435);
      border: 2px solid #003366;
      color: #fff;
    }

    .custom-btn-filled:hover {
      background-color: #002244;
      color: #fff;
    }

    .custom-buttons a:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .custom-nav-next,
    .custom-nav-prev {
      color: #003366;
      background: #fff;
      border: 2px solid #003366;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      z-index: 10;
    }

    .custom-nav-next {
      right: 10px;
    }

    .custom-nav-prev {
      left: 10px;
    }

    .custom-nav-next::after,
    .custom-nav-prev::after {
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .custom-nav-next,
      .custom-nav-prev {
        top: 35%;
      }

      .custom-buttons a {
        flex: 1 1 100%;
      }
    }

    .swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
}

@media (max-width: 768px) {
  .custom-slider-wrapper {
    padding: 30px 10px;
  }

  .custom-card {
    width: 100%;
    margin: 0 auto;
  }

  .custom-card img {
    height: 160px;
    object-fit: contain;
  }

  .custom-title {
    font-size: 1.05rem;
  }

  .custom-text {
    font-size: 0.9rem;
  }

  .custom-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .custom-buttons a {
    flex: 1 1 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 12px !important;
    top: 30%;
  }
}

      /* services section end  */


      /* gallery section start */
    
  
      /* gallery section end */

      /* contact section strt */
        h1.page-heading {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: #23435c;
      margin-bottom: 40px;
    }

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: stretch;
      /* background: #ffffff; */
      background: #ebe5e55c;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      animation: fadeInUp 0.7s ease;
    }

    .form-container {
      flex: 1 1 400px;
      padding: 20px;
    }

    .form-title {
      margin-bottom: 25px;
      font-size: 28px;
      font-weight: 700;
      color: #23435c;
      text-align: center;
    }

    .input-box {
      position: relative;
      margin-bottom: 20px;
    }

    .input-box i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #4da6ff;
      pointer-events: none;
      transition: color 0.3s ease;
    }

    .text-field,
    .textarea-field {
      width: 100%;
      padding: 12px 12px 12px 40px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    .text-field:focus,
    .textarea-field:focus {
      outline: none;
      border-color: #4da6ff;
    }

    .textarea-field {
      height: 120px;
      resize: none;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #23435c, #FC2435);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, #23435c, #FC2435);
      transform: scale(1.02);
    }

    .map-box {
      flex: 1 1 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(77, 166, 255, 0.2);
      min-height: 400px;
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      h1.page-heading {
        font-size: 28px;
      }

      .contact-wrapper {
        flex-direction: column;
        padding: 20px;
      }

      .form-container,
      .map-box {
        width: 100%;
      }
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
      /* contact section end */

/* footer start */
  .footer-wrapper {
  background-color: #0c1b2a;
  color: #ffffff;
  padding: 60px 30px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #2d9cdb;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2d9cdb;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #ffffff;
  background-color: #2d9cdb;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
  background-color: #1a6fa5;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2d2d2d;
  font-size: 15px;
  color: #aaaaaa;
}

/* 📱 Responsive Styles for Tablets and Smaller Devices */
@media (max-width: 768px) {
  .footer-wrapper {
    padding: 40px 20px 20px;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}

/* 📱 Small Devices (Mobile Phones) */
@media (max-width: 480px) {
  .footer-wrapper {
    padding: 30px 15px 15px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-social a {
    font-size: 16px;
    padding: 8px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 15px;
  }
}

/* footer end */

/* breadcrumbbanner start */
    
      .banner-section {
        position: relative;
        width: 100%;
        height: 45vh;
        background: url("assets/images/bgbreadcrumb.jpg") center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
        backdrop-filter: blur(2px);
      }

      .banner-content {
        position: relative;
        z-index: 2;
        color: #fff;
        text-align: center;
        padding: 20px;
        max-width: 90%;
      }

      .banner-content h1 {
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
      }

      .custom-breadcrumb {
        font-size: 1.1rem;
        margin-top: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
      }

      .custom-breadcrumb a {
        color: #fff;
        text-decoration: none;
        opacity: 1;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .custom-breadcrumb a:hover {
        opacity: 1;
        text-decoration: none;
        color: #f0f0f0;
      }

      .custom-breadcrumb span {
        margin: 0 10px;
        color: #fff;
        font-weight: 600;
      }

      @media (max-width: 768px) {
        .banner-content h1 {
          font-size: 2.2rem;
        }

        .banner-section {
          height: 40vh;
        }
      }

      @media (max-width: 480px) {
        .banner-content h1 {
          font-size: 1.7rem;
        }

        .custom-breadcrumb {
          font-size: 0.9rem;
        }

        .banner-section {
          height: 35vh;
        }
      }
/* breadcrumbbanner end */

/* about start */
    .info-section {
        padding: 32px 20px;
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
      }

      .info-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .info-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 60px;
        animation: slideUp 1.5s ease-in-out forwards;
        opacity: 0;
        transform: translateY(50px);
      }

      .info-image {
        flex: 1;
        max-width: 500px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.5s ease;
      }

      .info-image img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
        border-radius: 15px;
      }

      .info-image:hover img {
        transform: scale(1.05);
      }

      .info-content {
        flex: 1;
        max-width: 600px;
        color: #23435c;
      }

      .info-content h2 {
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 700;
        color: #23435c;
      }

      .info-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #000000;
      }

      @keyframes slideUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @media (max-width: 768px) {
        .info-wrapper {
          flex-direction: column-reverse;
          text-align: center;
        }

        .info-content h2 {
          font-size: 32px;
        }

        .info-content p {
          font-size: 16px;
        }
      }
/* about end  */

/* contact start */
  .contact-section {
      max-width: 1100px;
      margin: 60px auto;
      padding: 20px;
      border-radius: 16px;
    }

    .contact-heading {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .contact-heading h2 {
      font-size: 38px;
      font-weight: 700;
      color: #4da6ff;
      display: inline-block;
      position: relative;
      padding-bottom: 8px;
    }

    .contact-heading h2::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 70px;
      height: 4px;
      background: #4da6ff;
      border-radius: 5px;
    }

    .contact-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }


    .contact-form {
      flex: 1 1 450px;
      background: #f1f8ff;
      padding: 30px 35px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(77, 166, 255, 0.2);
      transition: box-shadow 0.3s ease;
    }

    .contact-form:hover {
      box-shadow: 0 10px 35px rgba(77, 166, 255, 0.4);
    }

    .contact-form h3 {
      margin-bottom: 25px;
      color: #23435c;
      font-weight: 700;
      font-size: 26px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 18px;
      margin-bottom: 20px;
      border: 1.5px solid #b5d1ff;
      border-radius: 10px;
      font-size: 16px;
      color: #1a2e4a;
      background: #ffffff;
      resize: none;
      transition: border-color 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #4da6ff;
      outline: none;
      box-shadow: 0 0 8px rgba(77, 166, 255, 0.4);
    }

    .contact-form button {
      background: linear-gradient(135deg, #4da6ff, #1f7fe6);
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      border: none;
      padding: 14px 0;
      width: 100%;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-form button:hover {
      background: linear-gradient(135deg, #1f7fe6, #4da6ff);
      box-shadow: 0 10px 25px rgba(77, 166, 255, 0.8);
    }


   .contact-info {
  flex: 1 1 400px;
  padding: 30px 35px;
  background: #f1f8ff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(77, 166, 255, 0.2);
}

.contact-info h3 {
  margin-bottom: 25px;
  color: #23435c;
  font-weight: 700;
  font-size: 26px;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a2e4a;
}

.contact-info p strong {
  min-width: 110px;
  color: #4da6ff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-info p svg {
  fill: #4da6ff;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Map */
.map-container {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(77, 166, 255, 0.25);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
    padding: 20px 22px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 22px;
    text-align: center;
  }

  .contact-info p {
    font-size: 15px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info p strong {
    min-width: unset;
    font-size: 16px;
  }

  .map-container {
    height: 300px;
  }
}

/* contact end */

/* almirah services page  start */
    .almirah-section {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1100px;
      margin: 60px auto;
      padding: 40px 30px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 15px 35px rgba(10, 37, 64, 0.15);
      gap: 50px;
      animation: fadeInUp 1s ease forwards;
    }

    .almirah-image {
      flex: 1;
      max-width: 500px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(10, 37, 64, 0.2);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    .almirah-image:hover {
      transform: scale(1.08);
      box-shadow: 0 20px 50px rgba(10, 37, 64, 0.3);
    }

    .almirah-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
      user-select: none;
    }

    .almirah-content {
      flex: 1;
    }

    .almirah-content h2 {
      font-size: 2rem;  /* Reduced */
      margin-bottom: 20px;
      color: #0a2540;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    /* Underline animation */
    .almirah-content h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 60px;
      height: 4px;
      background: #0a2540;
      border-radius: 3px;
      transition: width 0.4s ease;
    }

    .almirah-content h2:hover::after {
      width: 100px;
    }

    .almirah-content p {
      font-size: 1rem;  /* Reduced */
      line-height: 1.7;
      margin-bottom: 28px;
      color: #394a5a;
    }

    .almirah-content ul {
      list-style: none;  
      padding-left: 0;
      margin-bottom: 35px;
      color: #556674;
    }

    .almirah-content ul li {
      margin-bottom: 14px;
      font-weight: 500;
      font-size: 0.95rem;  /* Reduced */
      transition: color 0.3s ease;
    }

    .almirah-content ul li:hover {
      color: #0a2540;
    }

.almirah-content .btn {
 background: linear-gradient(135deg, #23435c, #FC2435);
  color: #fff;
  padding: 8px 20px;         /* thoda bada padding */
  font-size: 0.95rem;        /* thoda bada font size */
  border: none;
  border-radius: 28px;       /* thoda rounded but elegant */
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(10, 37, 64, 0.25);  /* slightly deeper shadow */
  transition: background 0.35s ease, box-shadow 0.35s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  user-select: none;
  display: inline-block;
  box-sizing: border-box;
}

    .almirah-content .btn:hover {
      background: linear-gradient(135deg, #23435c, #FC2435);
      box-shadow: 0 12px 30px rgba(21, 55, 96, 0.5);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .almirah-section {
        flex-direction: column;
        padding: 30px 20px;
        gap: 35px;
      }
      .almirah-image {
        max-width: 100%;
        border-radius: 16px;
      }
      .almirah-content h2 {
        font-size: 1.8rem;  /* Also smaller on mobile */
        text-align: center;
      }
      .almirah-content p,
      .almirah-content ul {
        text-align: center;
      }
      .almirah-content .btn {
        display: block;
        margin: 0 auto;
      }
    }
/* almirah services page end */

/* heading start */
    .heading {
      font-size: 48px;
      font-weight: bold;
          color: #4DA6FF;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    }

    .heading .highlight {
      background: linear-gradient(to right, #0072bc, #012c55);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .underline {
      height: 5px;
      width: 120px;
      margin: 15px auto 0;
      background: linear-gradient(to right, #00b4ff, #003366);
      border-radius: 10px;
    }
/* heading end */

/*  home gallery start */
    .gallery-wrapper {
      /* padding: 60px 20px; */
      background: #fff;
          margin-top: -337px;
    }

    .wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-heading {
      font-size: 38px;
      font-weight: 700;
      color: #4da6ff;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      text-align: center;
      margin-top: 70px;
    }

    .gallery-heading::after {
      content: '';
      width: 60px;
      height: 3px;
      background: #4da6ff;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .image-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .image-card:hover {
      transform: scale(1.02);
    }

    .image-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .image-overlay {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      width: 100%;
      padding: 10px;
      text-align: center;
    }

    /* Modal Styles */
   /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
      width: 80%;
}

.modal-content img {
  width: 80vw;          /* Adjusted size */
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* home gallery  */


/*fixed button start*/
    /* Fixed Button Container */
    .fixed-buttons {
      position: fixed;
      top: 80%;
      left: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    /* Button Style */
    .fixed-buttons a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      text-decoration: none;
      color: white;
      font-size: 22px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .fixed-buttons a:hover {
      transform: scale(1.15) rotate(8deg);
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

    /* WhatsApp Gradient */
    .whatsapp {
      background: linear-gradient(135deg, #25d366, #128c7e);
    }

    /* Email Gradient */
    .email {
      background: linear-gradient(135deg, #ff9a00, #ff5f6d);
    }

    /* Tooltip */
    .fixed-buttons a span {
      position: absolute;
      left: 70px;
      background: rgba(0,0,0,0.8);
      color: #fff;
      font-size: 13px;
      padding: 5px 10px;
      border-radius: 5px;
      opacity: 0;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: translateY(-50%);
      top: 50%;
    }

    .fixed-buttons a:hover span {
      opacity: 1;
    }
/*fixed button end*/