
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1020;
            height: 80px;
            display: flex;
            align-items: center;
        }

        .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: center center;
        }
		
	@media (max-width: 768px) {
  .carousel-item img {
    height: 40vh; // now there is no extra space above and bottom of the carousel in mobile 
  }
}

        body {
            margin-top: 80px;
        }

        #services {
            background: url('images/img1.jpg') no-repeat center center/cover;
            background-attachment: fixed;
            color: white;
        }

        .service-card {
            border: none;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 15px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .service-card img {
            height: 250px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        .row.justify-content-center {
            display: flex;
            justify-content: center;
        }




        




        /* Section Styling */
        .benefits-section {
            background-color: #f8f9fa;
            padding: 50px 0;
        }

        /* Benefit Box */
        .benefit-box {
            background-color: #0077c8; /* Blue */
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out, background-color 0.3s;
        }

        .benefit-box:hover {
            background-color: #b7cfe0; /* Darker blue */
            transform: scale(1.05);
        }

        /* Icon Styling */
        .benefit-box i {
            font-size: 40px;
            color: #ff7300; /* Orange */
            margin-bottom: 10px;
            transition: transform 0.5s ease-in-out; /* Smooth Rotation */
        }

        /* Rotate Icon on Hover */
        .benefit-box:hover i {
            transform: rotate(360deg);
        }

        .benefit-box h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .benefit-box p {
            font-size: 14px;
        }
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 15px;
            border-radius: 50px;
            font-size: 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
			z-index:5;
        }
		
			@media (max-width: 768px) {
		
.whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 5px;
			  padding: 10px;
			    font-size: 10px;

    }
	}

        .whatsapp-button img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
			
        }
		
 /* Floating Contact Icon */
    .contact-icon {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: #25D366; /* WhatsApp green color */
        color: white;
        width: 120px;
        height: 50px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        padding: 5px;
        font-weight: bold;
		z-index:5;
    }
	@media (max-width: 768px) {
		
    .contact-icon {
        position: fixed;
        bottom: 20px;
        left: 5px;
        background-color: #25D366; /* WhatsApp green color */
        color: white;
        width: 100px;
        height: 50px;

    }
	}
    .contact-icon:hover {
        background-color: #1DA851;
    }

    .contact-icon span {
        margin-left: 8px;
        font-size: 14px;
    }gallery {
      padding: 60px 0;
    }



    .gallery-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 50px;
      position: relative;
    }

    .gallery-title::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #3498db;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }


.gallery-box {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Default: object-fit: cover for a better desktop view */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Hover zoom effect */
.gallery-box:hover .gallery-img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  z-index: 2;
  text-align: center;
  padding: 10px;
}


.gallery-box:hover .overlay {
  //opacity: 1;
}

/*  Mobile-specific override */
@media (max-width: 768px) {
  .gallery-box {
    height: auto;
    aspect-ratio: 4/4; /* Maintains consistent box shape */
  }

  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows full image without cropping */
  }
}
.modal-content {
  border-radius: 1.5rem;
  border: none;
}

.modal-body p {
  color: #444;
}

.btn-warning:hover {
  background-color: #e66400;
  color: #fff;
}
