/* Basic Reset & Body Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding-top: 0;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.5s ease;
  opacity: 1;
}
body.fade-out {
  opacity: 1;
}
body.dark-mode {
  background-color: #0a0a0a;
  color: #ffffff;
}

/* HEADER & NAVIGATION */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
}
.dark-mode .navbar {
  background-color: rgba(10, 10, 10, 0.9);
}
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
}
/* Header Logo */
.logo {
  height: 100px;
}
.logo-light {
  display: inline;
}
.logo-dark {
  display: none;
}
body.dark-mode .logo-light {
  display: none;
}
body.dark-mode .logo-dark {
  display: inline;
}
.nav-link {
  margin: 0 20px;
  color: #000 !important;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
}
.dark-mode .nav-link {
  color: #fff !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
/* Dark/Light Mode Toggle Icons */
#lightIcon {
  display: none;
}
.dark-mode #lightIcon {
  display: inline;
}
.dark-mode #darkIcon {
  display: none;
}
.dark-mode .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/hero2.jpg') no-repeat center center fixed;
  background-size: cover;
}
.hero-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  z-index: 1;
}
.dark-mode .hero-content {
  background: rgba(10, 10, 10, 0.1);
  color: #fff;
}

/* ABOUT SECTION WITH OVERLAY */
.about-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/bannerzeta.jpg') no-repeat center center fixed;
  background-size: cover;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.about-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.dark-mode .about-content {
  color: #fff;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.dark-mode .services-section {
  background-color: #0a0a0a;
}
.services-section .card {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  height: 100%;
}
.dark-mode .services-section .card {
  background-color: #262626;
  color: #fff;
}
.services-section .card:hover {
  transform: translateY(-10px);
}
.services-section .card-img-top {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* SWIPER STYLES */
.swiper-container {
  width: 100%;
  padding: 20px 0;
  overflow: hidden; /* Prevents slides from stretching the page horizontally */
}
.swiper-slide {
  width: 30% !important;
  padding: 0 10px;
}
.swiper-button-prev,
.swiper-button-next {
  color: #6a11cb;
  display: none !important;
}
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: block !important;
  }
}

/* PROJECTS SECTION */
.projects-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  z-index: 1;
}
.dark-mode .projects-section {
  background-color: #1a1a1a;
}
#projectsCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}
#projectsCarousel .carousel-item img {
  object-fit: cover;
  height: 400px;
  border-radius: 10px;
}
#projectsCarousel .carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 5px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
#projectsCarousel .carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#projectsCarousel .carousel-caption p {
  font-size: 1rem;
  margin-bottom: 0;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #6a11cb;
  border-radius: 50%;
  padding: 10px;
}
.explore-more {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}
.explore-more:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #5a0cb1, #1d65e6);
}

/* FOOTER */
.footer {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 40px 0;
}
.dark-mode .footer {
  background-color: rgba(10, 10, 10, 0.9);
  color: #ddd;
}
.footer-top {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer-logo-img {
  max-width: 150px;
}
.footer-logo-light {
  display: inline;
}
.footer-logo-dark {
  display: none;
}
body.dark-mode .footer-logo-light {
  display: none;
}
body.dark-mode .footer-logo-dark {
  display: inline;
}
.footer-members h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.member-logos img {
  max-width: 110px;
  margin-right: 10px;
}
.member-logos img:last-child {
  margin-right: 0;
}
.footer-contact p {
  margin: 5px 0;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
}
.footer-social a {
  color: inherit;
  margin-right: 10px;
  font-size: 1.5rem;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* Override fixed backgrounds on Mobile for cover images */
@media (max-width: 768px) {
  .hero-section,
  .about-section,
  .services-hero-section,
  .quote-section {
    background-attachment: scroll !important;
  }
}







/* SERVICES HERO SECTION */
.services-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/ser-hero-01.webp') no-repeat center center fixed;
  background-size: cover;
}
.services-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}
.services-hero-section .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.services-hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.services-hero-section p {
  font-size: 1.1rem;
}

/* MAIN SERVICES CONTENT */
.services-main {
  padding: 70px 0;
}
.services-main .service-detail {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
.services-main .service-detail:last-child {
  border-bottom: none;
}
.services-main .service-detail .service-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.services-main .service-detail .service-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
  text-align: left;
}
.services-main .service-detail .service-description {
  font-size: 1.1rem;
  margin: 20px 0;
  line-height: 1.3;
  color: #554;
  text-align: left;
}
body.dark-mode .services-main .service-detail .service-description {
  color: #ccc;
}
.services-main .service-detail .btn {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.services-main .service-detail .btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #5a0cb1, #1d65e6);
}

/* For alternating layout (image on right) */
.service-detail-alt .row {
  flex-direction: row-reverse;
}

/* Responsive Adjustments for Desktop/Tablet */
@media (max-width: 767.98px) {
  .services-main .service-detail {
    padding: 20px 0;
  }
  .services-main .service-detail .service-title {
    font-size: 1.75rem;
  }
  .services-main .service-detail .service-description {
    font-size: 1rem;
  }
}

/* About Hero Section */
.about-hero-section {
  padding: 150px 0;
  background-color: #f8f9fa;
}
.dark-mode .about-hero-section {
  background-color: #1a1a1a;
}
.about-hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.about-hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.about-hero-section img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.dark-mode .mission-section {
  background-color: #0a0a0a;
}
.mission-section .card {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.dark-mode .mission-section .card {
  background-color: #262626;
  color: #fff;
}
.mission-section .card:hover {
  transform: translateY(-10px);
}
.mission-section .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.mission-section .card-text {
  font-size: 1rem;
  color: #555;
}
.dark-mode .mission-section .card-text {
  color: #ccc;
}

/* Core Values Section */
.core-values-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.dark-mode .core-values-section {
  background-color: #0a0a0a;
}
.core-values-section .value-card {
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-mode .core-values-section .value-card {
  background-color: #262626;
  color: #fff;
}
.core-values-section .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.core-values-section .value-icon {
  color: #6a11cb;
}
.core-values-section .value-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.core-values-section .value-text {
  font-size: 1rem;
  color: #555;
}
.dark-mode .core-values-section .value-text {
  color: #ccc;
}

/* Responsive Adjustments for Core Values */
@media (max-width: 767.98px) {
  .core-values-section .value-card {
    margin-bottom: 20px;
  }
  .core-values-section .value-title {
    font-size: 1.25rem;
  }
  .core-values-section .value-text {
    font-size: 0.9rem;
  }
  .col-md-4 {
    margin-bottom: 50px;
  }
}

/* Projects Hero Section */
.projects-hero-section {
  padding: 200px 0;
  background: url('images/projects-hero.webp') no-repeat center center/cover;
  color: #fff;
  text-align: left;
}
.dark-mode .projects-hero-section {
  color: #fff;
}
.projects-hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.projects-hero-section p {
  font-size: 1.2rem;
}

/* Project Showcase Section */
.project-showcase-section {
  padding: 80px 0;
}
.project-card {
  margin-bottom: 100px;
}

/* Bootstrap Carousel for Project Images */
.project-carousel {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.project-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Project Details */
.project-details {
  padding: 20px;
}
.project-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.project-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}
.dark-mode .project-description {
  color: #ccc;
}
.btn-primary {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #5a0cb1, #1d65e6);
}

/* Client Review Styling */
.client-review {
  margin-top: 30px;
}
.client-review blockquote {
  border-left: 4px solid #6a11cb;
  padding-left: 15px;
  font-style: italic;
  color: #555;
  margin-bottom: 0;
}
.dark-mode .client-review blockquote {
  color: #ccc;
  border-left-color: #fff;
}

/* Overall Client Reviews Section */
.client-reviews-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.dark-mode .client-reviews-section {
  background-color: #1a1a1a;
}
.review-card {
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-mode .review-card {
  background-color: #262626;
  color: #fff;
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.review-icon {
  color: #6a11cb;
}
.review-text {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}
.dark-mode .review-text {
  color: #ccc;
}
.review-author {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.review-role {
  font-size: 0.9rem;
  color: #6a11cb;
}
.dark-mode .review-role {
  color: #fff;
}







/* Contact Hero Section */
.contact-hero {
  padding: 150px 0;
  background: url('images/contact.webp') no-repeat center center/cover;
  color: #fff;
  text-align: center;
}
/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}
.contact-form {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
body.dark-mode .contact-form {
  background-color: #262626;
}
.contact-form .form-control, .contact-form .bootstrap-select {
  border-radius: 5px;
}
.contact-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 2px solid #6a11cb;
  border-radius: 10px;
  margin-top: 20px;
}

/* Quote Section */
.quote-section {
  position: relative;
  padding: 100px 0;
  background: url('images/bg3.png') no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.quote-section .quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.quote-section .quote-content {
  position: relative;
  z-index: 2;
}
.quote-section .quote-text {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.quote-section .quote-author {
  font-size: 1.5rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .quote-section .quote-text {
    font-size: 1rem;
  }
  .quote-section .quote-author {
    font-size: 0.8rem;
  }
}



