/* Reset some default styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}



/* Top Bar */
/* .top-bar {

  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

} */

.contact-info span {
  margin-right: 15px;
}

.enquire-btn {
  background-color: rgba(242, 60, 108, 0.899);
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-right: 40px;
}



.navbar {
  position: fixed;
  top: 0px;
  /* Below the top bar */
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  z-index: 1000;
  /* Below top bar but above content */
}

.navbar img {
  width: 110px;
  height: 40px;
  margin-left: 15px;

}

/* Add padding to body so content doesn't go under the navbar */
body {
  padding-top: 60px;
  /* Adjusted for sticky top bar + navbar */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px;
}

.nav-links a:hover {
  color: rgb(214, 168, 15);
  ;
}

/* Dropdown Styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
  /* color: rgba(242, 60, 108, 0.899); */
  color: rgb(214, 168, 15);
}


/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Menu */
.hamburger-menu {
  font-size: 24px;
  margin-right: 15px;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  /* top: 100px; */

  left: 0;
  width: 100%;
  padding: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu li {
  padding: 15px;
  display: block;

}

.mobile-menu a {
  text-decoration: none;
  color: rgb(214, 168, 15);

  display: block;
}



/* Responsive for Mobile */
@media (max-width: 930px) {


  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .spaced {
    margin-top: 590px;
  }

  .navbar img {
    margin-top: 10PX;
    width: 70px;
    height: 50px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
  }



  ;
  /* .hero {
    display: none;
  } */


}

/* Carousel Container */
.carousel {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 99%;
  /* object-fit: cover; */


}



@media (max-width: 768px) {
  .carousel:not(:first-child) {
    display: none;
  }

}

/* Fade Effect */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

/* herosession */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

/* Black Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 50% Black Shade */
  z-index: 1;
}

.carousel1-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
  image-resolution: 10px;
}

/* Fade Effect */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 20px;
  border-radius: 8px;
}



.hero h1 {
  font-size: 40px;
}

.hero p {
  font-size: 18px;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  background: rgb(214, 168, 15);
  color: white;
  /* color: black; */
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border: none;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .hero {
    height: 550px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* About Section */
.about {
  padding: 60px 10%;
  background: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Side Content */
.about-text {
  flex: 1;
  max-width: 55%;
}

.about-badge {
  display: inline-block;
  background: rgb(214, 168, 15);
  color: white;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.about h2 {
  font-size: 32px;
  color: #071952;
  margin-bottom: 10px;
}

.about p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Statistics Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  flex: 1 1 200px;
  text-align: left;
  margin-right: 20px;
}

.stat h3 {
  font-size: 28px;
  color: rgb(214, 168, 15);
  ;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  font-weight: bold;
  color: #071952;
}

/* Right Side Image */
.about-image {
  flex: 1;
  position: relative;
  max-width: 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: -50px;
  background: rgb(214, 168, 15);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.experience-badge h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    max-width: 100%;
  }

  .stat {
    text-align: center;
    flex: 1 1 100px;
  }

  .experience-badge {
    position: static;
    margin-top: 20px;
  }


}

@media (max-width: 600px) {
  .stats {
    flex-direction: column;
  }

  .stat {
    margin-bottom: 10px;
  }

  .about {
    margin-top: 50px;
  }

}

.certification {
  padding: 10px 10%;
  background: #fff;
}

.certification h2 {
  font-size: 32px;
  color: #071952;
  margin-bottom: 10px;
}

.certification h3 {
  color: rgb(214, 168, 15);
}

@media (max-width: 1024px) {
  .certification {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .certification {
    text-align: center;
  }
}

/* Carousel Section */

.carousel1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* Carousel Container */
.carousel1-container {
  display: flex;
  /* transition: transform 0.5s ease-in-out; */
  transition: transform 0.1s;
}

/* Individual Slides */
.carousel1-slide {
  min-width: 35%;
  position: relative;
}

.carousel1-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(60%);
}

/* Text Content Overlay */
.slide1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.slide1-content h3 {
  font-size: 24px;
  font-weight: bold;
}

.slide1-content p {
  font-size: 16px;
  margin: 10px 0;
}

.learn-more {
  color: white;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

/* Navigation Buttons */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide1-content h3 {
    font-size: 20px;
  }

  .slide1-content p {
    font-size: 14px;
  }

  .carousel1-slide img {
    height: 350px;
  }

  .carousel1-container {
    display: flex;
    flex-direction: column;
  }

}

/* Section Styling */
.gallery-section {
  text-align: center;
  padding: 0px 20px;
  padding-top: 50px;
}

/* Portfolio Label */
.portfolio-label {
  background-color: rgb(214, 168, 15);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Title */
.gallery-header h2 {
  font-size: 32px;
  color: #002f6c;
  margin-bottom: 20px;
}

/* Filter Buttons */
.gallery-filters {
  margin-bottom: 20px;
}

.filter-btn {
  background-color: #eee;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.filter-btn.active {
  background-color: rgb(214, 168, 15);
  color: white;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  padding: 20px;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Text */
.overlay {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* Features Section */
.features-section {
  padding: 0px 20px;
  text-align: center;
}

/* Features Label */
.features-label {
  background-color: rgb(214, 168, 15);
  ;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Title */
.features-header h2 {
  font-size: 37px;
  color: #002f6c;
  margin-bottom: 70px;
}

/* Features Grid */
.features-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  margin: 0px 30px;
}

/* Feature Items */
.feature-item {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-item h3 {
  color: #002f6c;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    display: flex;
    flex-direction: column;
  }

  /* Clients Section */
  .clients-section {
    padding: 60px 20px;
    text-align: center;

  }
}


@media (min-width:769px) and (max-width: 1168px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Clients Label */
.clients-label {
  background-color: rgb(214, 168, 15);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
  text-align: center;


}

/* Title */
.clients-header h2 {
  font-size: 28px;
  color: #002f6c;
  margin-bottom: 30px;
  text-align: center;
}

/* Clients Grid */
.clients-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* max-width: 1000px; */
  margin-top: 40px;
  /* margin: auto; */
}

/* Client Items */
.client-item {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.client-item img {
  width: 120px;
  height: 120px;
}

/* @media (max-width: 768px) {

} */

/* Call-to-Action Section */
.cta-section {
  background-color: rgb(214, 168, 15);
  ;
  color: white;
  padding: 15px;
  font-size: 16px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.cta-button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #ddd;
}

.footer {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: left;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0px 50px;

}

/* Footer Section */
.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: #002f6c;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-section p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.footer-section a {
  text-decoration: none;
  color: #002f6c;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {

  background-color: black;
  color: white;
  text-align: center;
  padding: 15px 20px;
  margin-top: 20px;
  position: relative;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

/* Scroll to Top Button */
.scroll-top {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: black;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.scroll-top:hover {
  background-color: #ddd;
}