.tabs {
  display: flex;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ddd;

  margin-right: 5px;
  transition: 0.3s;
}

.tab.active {
  background: #00a0e2;

  color: white;
  border: 1px solid #00a0e2;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.numbers {
  color: white;

  font-size: 25px;
}

@media (min-width: 992px) {
  /* Adjust breakpoint if needed */
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    /* Adjust spacing */
  }

  .w-lg-50 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .dsn-container article {
    margin-left: 0px !important;
    margin-bottom: 30px;
  }
}

.amenities {
  width: 50px !important;
}

.video-container {
  position: relative;
  display: inline-block;
  width: 50px;

  /* Adjust based on your design */
}

.video-container2 {
  width: 100%;

  /* Adjust based on your design */
}

.video-bg {
  width: 100%;
  height: auto;
  display: block;
}

.dsn-btn-play2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: rgba(0, 0, 0) !important;
  border: 1px solid rgba(0, 0, 0) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsn-btn-play3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.8) !important;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsn-btn-play3 i {
  font-size: 30px;
  color: white;
}

.dsn-btn-play2 i {
  font-size: 10px;
  color: white;
}

.theme-color2 {
  background-image: linear-gradient(90deg, #00a0e2, #6bb536) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 500;
}

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  /* Adjust as needed */
}

.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail img {
  width: 100%;
  display: block;
  /* Optional rounded corners */
}

.para {
  font-size: 13px;
}

.headbtn {
  font-family: "Poppins", sans-serif;
}

@media (min-width: 994px) {
  .headbtn {
    margin-left: 50px;
  }
}

@keyframes underlineMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.headbtn .title-btn span {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.headbtn .title-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;

  background-color: #ffffff;
  /* Change to your preferred color */
  transform: translateX(-100%);
  animation: underlineMove 3s infinite linear;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: #171717;
  padding: 20px;
  border-radius: 10px;
  min-width: 300px;
  text-align: center;
  position: relative;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .popup-content {
    width: 50%;
  }
}

.mr-5 {
  margin-right: 10px;
}

.mmt-2 {
  margin-top: 5px;
}

/* gallery page desigining*/

.hidden {
  display: none;
}

#mainCategories {
  text-align: center;
  background-color: #00a0e2;
  border-radius: 30px;
}

#mainCategories button {
  padding: 10px 20px;
  cursor: pointer;

  margin-bottom: 5px;
  margin-top: 5px;
  color: white;
  margin-right: 5px;
  transition: 0.3s;
  border-radius: 30px;
  font-size: 15px;
}

.main-category:hover {
  background-color: white;
  color: black !important;
}

.main-category.active {
  background-color: white;
  color: black !important;
  font-weight: 500;
}

.sub-category {
  color: white;
  margin-bottom: 10px;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.sub-category h3:hover {
  color: #00a0e2;
}

.sub-category.active h3 {
  /* Blue for active */
  color: #00a0e2;

  font-weight: bold;
  /* Subtle glow effect */
}

/* Filter button container */
.filter-wrapper {
  display: flex;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

/* Default button styling */
.filter {
  background-color: #f0f0f0;

  padding: 8px 24px;
  font-size: 15px;
  border-radius: 30px;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.filter:hover {
  background-color: #00a0e2;
  color: white;
}

/* Active2 state */
.filter.active {
  background-color: #00a0e2;
  color: white;
  font-weight: 400;
}

.gallerycontainer {
  text-align: center;
}

.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  /* Semi-transparent background */
  color: white;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.gallery-position-relative:hover .gallery-play-icon {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-position-relative {
  position: relative;
}

.cicon {
  color: #00a0e2;
}

/* Custom Styling for Select Field */
.custom-select {
  width: 100%;
  padding: 10px 0px;
  border: none;
  border-bottom: 0.5px solid grey;
  background: transparent;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease-in-out;
  color: #fff;
  /* Text color to match other fields */
}

/* Change border color on hover and focus */

/* Wrapper for custom styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

/* Custom dropdown arrow */
.custom-select-wrapper::after {
  content: "\f078";
  /* FontAwesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
  /* Matches the text color */
}

/* Style the dropdown options */
.custom-select option {
  background: #fff;
  /* White background for options */
  color: #000;
  /* Black text for better readability */
}

.enquiry-container {
  width: 100%;
}

.enquiry-options {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 2px solid #ddd;
}

.enquiry-option {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.enquiry-option.active {
  color: #00a0e2;
  border-bottom: 3px solid #00a0e2;
}

.enquiry-section {
  display: none;
}

.enquiry-section.active {
  display: block;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

input[type="date"] {
  color: white;
  /* Text color */
  background-color: transparent;
  /* Background transparent */
  border: 1px solid white;
  /* White border */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  /* Inverts the color to white */
}

input[type="time"] {
  color: white;
  /* Text color */
  background-color: transparent;
  /* Background transparent */
  border: 1px solid white;
  /* White border */
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  /* Makes the clock icon white */
}

.testi-img {
  width: 70px;
  height: 70px !important;
  border-radius: 70px !important;
  margin-bottom: 20px;
}

/* advantages of nri*/
.adv-info-item {
  background: #00a0e2;
  padding: 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
 
  margin-bottom: 20px;
  text-transform: capitalize;
}

.adv-info-item i {
  margin-right: 10px;
  font-size: 20px;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  /* Light transparent background */
  backdrop-filter: blur(10px);
  /* Blur effect */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  /* Soft shadow */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Transparent border */
  padding: 20px;
  border-radius: 10px;
}

@media (min-width: 991px) {
  .contact-links p {
    width: 70% !important;
  }
}

.glass-effect-dark {
  background: rgba(0, 0, 0, 0.3);
  /* Light transparent background */
  backdrop-filter: blur(10px);
  /* Blur effect */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Soft shadow */
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* Transparent border */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.glass-effect-dark .info-item i {
  margin-right: 10px;
  margin-top: 5px;
}

.glass-effect-dark .border-bottom {
  border-bottom: solid 1px grey;
}

.call-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  /* Green */
  border: 2px solid #00a0e2;
  transition: all 0.3s ease-in-out;
}

.call-button i {
  font-size: 20px;
}

/* Hover effect */
.call-button:hover {
  background: #00a0e2;
  color: white;
  transform: scale(1.05);
}

.glass-effect-dark form input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid grey;
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}

.glass-effect-dark form .submit-btn {
  width: 100%;
  padding: 15px;
  background: #00aeef;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.glass-effect-dark form .submit-btn:hover {
  background: #008ecf;
}

@media (max-width: 991px) {
  .small-mb {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

/* Styling for filter buttons */
.btn-group .filter-btn {
  color: white;
  margin-right: 5px;
  text-transform: uppercase;
}

/* Default button styling */
.btn-group .filter-btn:hover {
  color: #00a0e2;
  text-decoration: underline;
}

/* Active button styling */
.btn-group .filter-btn.active {
  color: #00a0e2;
  /* Darker blue */
  text-decoration: underline;
}

/* Dropdown styling */
/* Style for the dropdown select box */
/* Target only the specific dropdown with a custom class */
.custom-dropdown {
  background-color: transparent;
  /* Black background */
  color: white;
  /* White text */
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  /* Minimum height */
  overflow: hidden;
}

/* Style for the dropdown options */
.custom-dropdown option {
  background-color: black;
  /* Black background */
  color: white;
  /* White text */
  padding: 5px;
}

/* Highlight selected option */
.custom-dropdown option:checked,
.custom-dropdown option:hover {
  background-color: #00a0e2;
  /* Blue background for selected */
  color: white;
}

/* Customizing the dropdown list */
.custom-dropdown::-webkit-scrollbar {
  width: 8px;
}

.custom-dropdown::-webkit-scrollbar-track {
  background: #333;
}

.custom-dropdown::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 5px;
}

/* Making the dropdown list scrollable */
.custom-dropdown[multiple] {
  height: 200px;
  /* Maximum height before scrolling */
  overflow-y: auto;
}

.completed-projects-btn {
  display: block;
  /* Ensure it's visible when needed */
  margin: 20px auto;
  /* Center it horizontally */
  padding: 12px 54px;
  font-size: 16px;
  background-color: transparent;
  border: solid 1px white;
  color: #fff;
  width:100%;
  
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.completed-projects-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 187, 255, 0.4); /* Classy blue glow */
  border-color: rgba(0, 187, 255, 0.7);
}

.ongoingprojects {
  margin-bottom: 30px;
}

.completedprojects {
  margin-bottom: 30px;
}

/* stciky icons */
.sticky-icons {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.sticky-icons .icon {
  position: relative;
  background-image: linear-gradient(90deg, #00a0e2, #6bb536);
  color: white;
  padding: 12px 10px;
  margin: 2px 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 10px 0px 0px 10px;
  transition: all 0.3s ease;
}

.sticky-icons .icon:hover {
  background: #171717;
  border-radius: 0px 0px 0px 0px;
}

.sticky-icons .icon .label {
  position: absolute;
  right: 100%;
 
  white-space: nowrap;
  background-color: #171717;
  color: white;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 10px;
 
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 14px;
  pointer-events: none;
}

/* Show label on hover */
.sticky-icons .icon:hover .label {
  opacity: 1;
  transform: translateX(0);
}

.project-card {
  position: relative;

  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.projectsoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.project-card :hover img {
  transform: scale(1.1);
}

.project-card :hover .projectsoverlay {
  opacity: 1;
  transform: translateY(0);
}

.projectsoverlay h6 span {
  text-decoration: underline;
}

.background-section-funfact {
  background-color: rgba(255, 255, 255, 0.3);
}

.about-has-image .box-move .info .info-item:not(:last-of-type) {
  padding-bottom: 0px !important;
  margin-bottom: 10px;
}

.services-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Black overlay with 50% opacity */
  z-index: 1;
}

.services-item * {
  position: relative;
  z-index: 2;
  /* Ensures text and icons appear above the overlay */
}

.service1 {
  background-size: cover;
}

.service2 {
  background-size: cover;
}
.service3 {
  background-size: cover;
}
.service4 {
  background-size: cover;
}
.service5 {
  background-size: cover;
}

#cookie-consent{
  background-color: white;
  display: none;
  padding: 20px 30px;
  position: fixed;
  bottom: 0;
  max-width: 600px;
  right: 0;
  text-align: left;
  z-index: 1000 !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  
}
#cookie-consent p{
    color:black;
   
}

.acpt-btn {
  background-color: #00a0e2;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

/* calculator */
.slider-group {
  margin-bottom: 25px;
  text-align: left;
}


input[type="range"] {
  width: 100%;
  margin-top: 15px;
}



.result {
  margin-top: 20px;
  padding: 15px;
  background: transparent;
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 8px 0px;
}

.result h3{
  margin-bottom:30px;
 
}

.slider-group label span{
  color:#00a0e2;
 
  font-size:16px;
}

.tab-title{
  font-family: "Poppins", sans-serif;
  font-weight:400;
  font-size:17px;
}

.brand-item {
  
  
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 transparent;
}

.brand-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 187, 255, 0.4); /* Classy blue glow */
  border-color: rgba(0, 187, 255, 0.7);
 
}


@keyframes bounceInfinite {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}



.brand-item:hover img {
  animation: bounceInfinite 0.6s ease-in-out infinite;
}




.accordion__answer .text p{
    color: #00a0e2;
}



  .project-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
   
  }

  .project-table th, .project-table td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
  }

  .project-table th {
    background-color: #00a0e2;
    font-weight: 500;
  }

  .project-table tr:nth-child(even) {
    background-color: #343434;
  }

 

  @media (max-width: 768px) {
    .project-table thead {
      display: none;
    }

    .project-table, .project-table tbody, .project-table tr, .project-table td {
      display: block;
      width: 100%;
    }

    .project-table td {
      position: relative;
      padding-left: 50%;
      text-align: right;
    }

    .project-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 15px;
      font-weight: bold;
      text-align: left;
    }

    .project-table tr {
      margin-bottom: 20px;
    }
  }

  strong{
    background-image: linear-gradient(90deg, #00a0e2, #6bb536) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 500;
    
  }

  .background-theme2{
    background:linear-gradient(90deg, #00a0e2, #6bb536) ;
    
  }

  .sticky-bottom-btn {
    position: fixed;
    bottom: 1px;
    right:1px;
   
    background:linear-gradient(90deg, #00a0e2, #6bb536) ;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }

  .sticky-bottom-btn:hover {
    background: #171717;
  }

  @media(min-width:990px){
    .mb-lg-50{
      margin-bottom:50px;
    }
  }

  .youtubevideo-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.youtubevideo-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00a0e2;
  /* Semi-transparent background */
  color: white;
  font-size: 30px;
  padding: 10px 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;

}

.check-mark{
  width:80px !important;
  border-radius:50%;
}

/* Overlay */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Box */
.welcome-modal-box {
    position: relative;
    padding:20px;
    background-color: white;
    overflow: hidden;
   margin-top:30px;
}

/* Close Button */
.welcome-modal-close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 20px;
    font-weight: 600;
    
    padding: 0px 3px;
    cursor: pointer;
    color: #ffffff;
    z-index: 10;
    background-color: #00a0e2;
}

/* Image */
.welcome-modal-box img {
     width: auto;
    height: auto;
    
    max-width: 80vw;   /* So it fits on screen */
    max-height: 80vh;  /* Prevents overflow on small screens */
    display: block;
}
