.hero {
  position: relative;
  height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(
      to right,
      rgba(255, 0, 128, 0.4),
      rgba(0, 0, 128, 0.2)
    ),
    url("./images/hero_image1.webp")
      no-repeat center center / cover;
  filter: blur(8px);
  z-index: -1;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffdd;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffdd;
  }
}

.hero p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.card {
  border-radius: 12px;
}

.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-right: 15px;
  color: white;
}
@media (max-width: 1200px) {
  .navbar-nav .nav-link {
    font-weight: 500;
    margin-right: 5px;
    color: white;
  }
}

.navbar-nav .nav-link:hover {
  color: #ff007f;
}

a.nav-link[href^="tel:"] {
  font-weight: bold;
  color: white;
}

a.nav-link[href^="tel:"]:hover {
  color: #ffc107;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  .form-card {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 0px 0 60px;
  }
}

.form-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333;
}

.form-card h4 {
  color: #333;
}

.form-card input,
.form-card textarea {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #ff007f;
  box-shadow: 0 0 5px rgba(255, 0, 128, 0.6);
}

.btn-primary {
  background-color: #ff007f;
  border: none;
}

.btn-primary:hover {
  background-color: #d40066;
}

@media (max-width: 767px) {
  .form-card {
    margin-top: 30px;
  }
}

.form-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #3e3e3e;
}

.form-card h4 {
  color: #ff69b4;
}

.form-card input,
.form-card textarea {
  background-color: rgba(255, 182, 193, 0.4);
  border: 1px solid #ff69b4;
  color: #3e3e3e;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #ff1493;
  box-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
}

.btn-primary {
  background-color: #384ea9;
  border: none;
}

.btn-primary:hover {
  background-color: #fa0303;
}

.form-card {
  max-width: 400px;
}
.get {
  color: white !important;
}

@media (max-width: 400px) {
  .logo {
    max-width: 239px;
  }
}
@media (max-width: 991px) {
  .logo {
    max-width: 265px;
  }
}
@media (max-width: 1189px) {
  .logo {
    max-width: 240px;
  }
}
@media (min-width: 768px) {
  .carousel-inner {
    margin-top: 150px !important;
  }
}
@media (min-width: 300px) {
  .carousel-inner {
    margin-top: 100px !important;
  }
}

/* Submenu container positioning */
.dropdown-submenu {
  position: relative;
}

/* Submenu (right side) positioning */
.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
  position: absolute;
  background-color: #0C0950;
  border-radius: 0;
  min-width: 200px;
}

/* Show submenu on hover */
.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* Style submenu items */
.dropdown-menu .dropdown-item {
  color: #fff; /* default text color */
  transition: color 0.3s ease, background 0.3s ease;
}

/* Hover effect for all dropdown items */
.dropdown-menu .dropdown-item:hover {
  color: #ff007f;
  background-color: #0C0950;
}

/* Make only top-level nav links bold */
.navbar-nav .nav-link {
  font-weight: 600; /* bold */
}

/* Keep dropdown items normal weight */
.dropdown-menu .dropdown-item {
  font-weight: 600; 
  /* color: white; */
}
.offcanvas-end{
  background-color: #0C0950;
}

/* this code is for navbar us go to next line Start */
/* @media (max-width: 1199px) {  */
  .navbar-nav {
    /* overflow-x: auto; */
    white-space: nowrap;
  }

  /* .navbar-nav::-webkit-scrollbar {
    display: none; 
  } */
/* } */
/* this code is for navbar us go to next line END*/



/* Section 1 Start*/
.company-profile {
  background-color:#ebe0ce;
}
.dropdown-menu {
  min-width: 321px;
  background-color: #0c0950;
}
/* Section 2 Start */

/* For the image container */
.image-container {
  opacity: 0;
  transform: translateY(20px); /* Start from below */
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
  position: relative;
  overflow: hidden; /* Ensures the image doesn't go outside the container */
}

/* Add the 'visible' class when the image enters the viewport */
.image-container.visible {
  opacity: 1;
  transform: translateY(0); /* Move up to the original position */
}

/* Hover effect on the image */
.image-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease, transform 1s ease;
  will-change: transform;
  position: relative;
}

/* Hover effect */
.image-container img:hover {
  transform: scale(1.1) rotate(360deg); /* Rotate the image when hovered */
  filter: brightness(1.2); /* Brighten the image */
}

.image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.image-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.image-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease, transform 1s ease;
  will-change: transform;
  position: relative;
}

.image-container img:hover {
  transform: scale(1.1) rotate(360deg);
  filter: brightness(1.2);
}

@media (max-width: 1800px) {
  .image-container {
    max-width: 22%;
  }
}

@media (max-width: 768px) {
  .image-container {
    max-width: 100%;
  }
}

.image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between images */
  justify-content: center;
  padding: 20px;
  background-image: url("https://cdn.pixabay.com/photo/2016/12/15/20/17/color-1909977_1280.jpg"); /* Add the background image */
  background-size: cover; /* Make sure the background covers the entire section */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}
/*  Section 3 Start */
.contact-us-section {
  background-image: url("https://images.pexels.com/photos/1169754/pexels-photo-1169754.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"); /* Add the background image */
  background-size: cover; /* Make sure the background image covers the entire section */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  padding: 40px 20px; /* Add padding for spacing */
  text-align: center; /* Center the text */
}

.contact-us-section .container {
  position: relative; /* To ensure the text appears correctly over the background */
  z-index: 1; /* Makes sure the text is above the background image */
}

.contact-us-section h2,
.contact-us-section p {
  color: #fff; /* Set text color to white */
  font-family: Arial, sans-serif; /* Optional: Choose a font */
}

@media (max-width: 768px) {
  .contact-us-section {
    padding: 30px 15px; /* Adjust padding for smaller screens */
  }

  .contact-us-section h2 {
    font-size: 24px; /* Make the text slightly smaller on small screens */
  }

  .contact-us-section p {
    font-size: 18px; /* Adjust text size for smaller screens */
  }
}

@media (max-width: 480px) {
  .contact-us-section h2 {
    font-size: 20px; /* Further adjust text size for very small screens */
  }

  .contact-us-section p {
    font-size: 16px; /* Adjust text size for very small screens */
  }
}
.gun-icon {
  position: relative;
  /* top: -1px;     */
  left: -10px;   /* Move left */
}
/* .nu{
  font-size: 100px !important;
} */

/* Section 3 END */

/* Section 4 Start */
.video-section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  padding: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 20.25%; /* 16:9 aspect ratio for the videos */
  height: 0;
  overflow: hidden;
  max-width: 31%;
  flex: 1 1 31%;
  background-color: #000;
  border-radius: 10px;
  margin: 0 15px;
}

/* For responsive height across devices */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .video-container {
    max-width: 48%; /* Adjusting video container to be 2 in a row on medium screens */
    flex: 1 1 48%;
  }
}

@media (max-width: 576px) {
  .video-container {
    max-width: 100%; /* Adjusting video container to be 1 in a row on small screens */
    flex: 1 1 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio, same as desktop */
  }
}

/* Background Image Section */
.youtube-videos-section {
  background-image: url("https://cdn.pixabay.com/photo/2016/12/18/10/19/background-1915341_1280.jpg"); /* Replace with your actual image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0; /* Adjust padding as needed */
  color: white; /* Ensures the text is visible on the background */
  position: relative;
}

.youtube-videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.4
  ); /* Dark overlay for better text visibility */
  z-index: -1; /* Keeps the overlay behind the content */
}

.container {
  position: relative;
  z-index: 1; /* Ensures the content appears above the background */
}

.text-center h3,
.text-center h4 {
  z-index: 2; /* Ensures text stays above the overlay */
}

.sectiond{
  background-color: #f8f5f0;
}

/* Section 6 Start */
.contact-section {
  background-image: url('https://cdn.pixabay.com/photo/2022/07/19/22/11/wallpaper-7333087_1280.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

/* Optional: Add an overlay for better text readability */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.5);  */
  z-index: -1;
}

/* Section 6 END */

/* Float Whatsapp Start */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 9999;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Float Whatsapp END */

/* Footer Start */
/* .footer-area {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('https://cdn.pixabay.com/photo/2022/06/16/18/07/banner-7266577_1280.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
} */
.footer-area {
  background: linear-gradient(135deg, 
              #FFA500,   /* Orange */
              #FF69B4,   /* Pink */
              #FFFF00,   /* Yellow */
              /* #800080,  /*   Purple*/
              #1E90FF    /* Blue */
            );
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  color: white; /* Optional: text color for contrast */
}

/* Optional animation for dynamic gradient effect */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* .footer-area {
  background: url('https://cdn.pixabay.com/photo/2018/09/06/18/42/emotions-3658967_1280.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
} */



.footer-area a.footer-link {
  /* color: #ccc; */
  color: white;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-area a.footer-link:hover {
  /* color: #3498db; */
}

.footer-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.footer-btn:hover {
  background-color: #e0a800;
  color: #fff;
}
.list-unstyled{
  color: white  !important  ;
}
.footer-area a.text-light:hover,
.footer-area a.text-white:hover {
  color: white !important;
  text-decoration: underline;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  margin: 0 10px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2);
}






/* Footer END */

/* Question Answer Start */
      /* Section 3 Start */
      .accordion-button {
        font-weight: 600;
        background-color: #f8f9fa;
        color: #212529;
        border: none;
        box-shadow: none;
        transition: background-color 0.3s ease;
      }

      .accordion-button:hover {
        background-color: #e9ecef;
      }

      .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
      }

      .accordion-item {
        border: none;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      .accordion-body {
        background-color: #ffffff;
        border-top: 1px solid #dee2e6;
      }
      /* Section 3 END*/
/* Question Answer END */

/* Enquiry now Start */
/* Sticky Button */
  #enquiry-button {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background-color: #28c70b;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    z-index: 1001;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    margin-right: 20px;
  }



/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  position: relative;
  border-radius: 8px;
}

/* Close Button */
.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

/* Download Button */
.download-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #0c0950;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.download-btn:hover {
  background-color: red;
}

/* Enquiry now END */
