/* =========================================
   Global Styles
========================================= */
:root {
  --brand: #0381BF;       /* main blue from logo */
  --brand-dark: #0B6AA1;  /* darker shade for hover and active */
  --accent: #14B8A6;      /* aqua accent */
  --ink: #0b1220;         /* body text */
  --muted: #6b7280;       /* secondary text */
  --surface: #f8fafc;     /* light bg */
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  scroll-behavior: smooth;
  color: var(--ink);
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2px;
   margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .text-brand {
  font-family: "Poppins", sans-serif;
}




/* ===== WATER GLASS NAVBAR ===== */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
  z-index: 9999;
}


.glass-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
}

/* ===== SCROLLED STATE ===== */
.nav-scrolled {
  background: rgba(3, 129, 191, 0.95);
  backdrop-filter: blur(14px) saturate(200%);
  -webkit-backdrop-filter: blur(14px) saturate(200%);
  box-shadow: 0 4px 18px rgba(3, 129, 191, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo swap */
.logo-img {
  transition: all 0.4s ease;
  background: transparent;
  
  padding: 4px;
}
.nav-scrolled .logo-img {
  background: #ffffff; /* white patch */
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

/* Menu link style */
.navbar-nav .nav-link {
  color: #0a0a0a;
  font-weight: 500;
  position: relative;
  padding: 0.75rem 0.25rem;
  transition: all 0.3s ease;
}

/* Default (top) state underline – Blue */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #0381bf;
  border-radius: 3px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

/* Hover / active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0381bf;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* SCROLLED: text + underline white */
.nav-scrolled .nav-link {
  color: #ffffff !important;
}
.nav-scrolled .nav-link:hover,
.nav-scrolled .nav-link.active {
  color: #ffffff !important;
}
.nav-scrolled .nav-link::after {
  background: #ffffff !important;
}

/* Call Button */
.btn-brand {
  background: linear-gradient(180deg, #0381bf, #056ca2);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(3, 129, 191, 0.25);

}

.cls{
  display: flex;
  justify-content: center;
}
.btn-brand:hover {
  background: linear-gradient(180deg, #056ca2, #0273b7);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(3, 129, 191, 0.35);
}




/* =========================================
   Hero Carousel Styles
========================================= */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero .carousel-item {
  height: 100vh;
  min-height: 500px;
}

#hero .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(60%);
  transition: transform 5s ease;
}

/* Smooth zoom animation */
#hero .carousel-item.active img {
  transform: scale(1.1);
}

/* Caption Content */
#hero .carousel-caption {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3);
}

#hero .carousel-caption h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  animation: fadeInUp 1.2s ease forwards;
}

#hero .carousel-caption p {
  font-size: 1.1rem;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-btn {
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #hero .carousel-caption h1 {
    font-size: 1.8rem;
  }
  #hero .carousel-caption p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 10px 25px;
  }
}


/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #f9fbfd;
  position: relative;
}

.section-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 2rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--brand);
  margin-top: 8px;
  border-radius: 2px;
}

.text-brand {
  color: var(--brand);
}


.lead{
  text-align: justify;
}


.services-section .section-title span {
  color: var(--brand);
}

/* Icon Circle */
.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(3, 129, 191, 0.3);
}

/* Card Hover Animation */
.service-box {
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(3, 129, 191, 0.2);
}

.service-box:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

/* Small devices */
@media (max-width: 767px) {
  .service-box {
    padding: 2rem 1rem;
  }
}
/* ===== PARALLAX SHOWCASE SECTION ===== */
.showcase-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background image inside HTML */
.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.parallax-bg .bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Black overlay */
.showcase-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.showcase-section .content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 20px;
  animation: fadeSlide 1.5s ease forwards;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.underline {
  width: 100px;
  height: 4px;
  background: var(--brand, #0381bf);
  border-radius: 4px;
  margin: 1rem auto;
}

.subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f2f2f2;
}

/* Button */
.btn {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--brand, #0381bf);
  color: #fff;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section .section-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.text-brand {
  color: var(--brand, #0381bf);
}

.review-card {
  background: #fff;
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.stars {
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--brand, #0381bf);
  border-radius: 50%;
  padding: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
  .review-card {
    margin: 0 10px;
  }
}

/* ===== CLASSIC FOOTER ===== */
.footer-classic {
  background: linear-gradient(180deg, #0b1220 0%, #030712 100%);
  color: #bdaaaa;
  position: relative;
  
}

.footer-classic::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0381bf, #0b6aa1);
}

.footer-logo {
  max-width: 150px;
  filter: brightness(0) invert(1);
}

/* Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  font-size: 0.85rem;
  margin-right: 6px;
  color: var(--brand, #0381bf);
}

.footer-links a:hover {
  color: var(--brand, #0381bf);
  transform: translateX(4px);
}

/* Contact */
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--brand, #0381bf);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.designer-link {
  color: var(--brand, #0381bf);
  font-weight: 600;
  text-decoration: none;
}

.designer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-classic {
    text-align: center;
  }
  .footer-links a:hover {
    transform: none;
  }
}

.footer-logo {
  padding: 0px !important;
  width: 120px;
}




/* Adjust section to start right under navbar */
.page-header-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
 
  padding: 300px 0 60px; /* Adjust height */
}

/* If navbar is fixed */
.navbar.fixed-top + .page-header-section {
  margin-top: 80px; /* equal to your navbar height */
}

/* Overlay */
.page-header-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.page-header-section .container {
  position: relative;
  z-index: 1;
}

.page-header-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.page-header-section .breadcrumb-item a {
  color: #14B8A6;
  text-decoration: none;
}

.page-header-section .breadcrumb-item.active {
  color: #fff !important;
}


/* ===== About Section ===== */
.about-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand, #0381BF);
  position: relative;
  margin-bottom: 20px;
}

.about-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--brand, #0381BF);
  margin-top: 10px;
  border-radius: 2px;
}

.about-section p {
  color: #333;
  line-height: 1.8;
}

.about-section .btn-brand {
  background: var(--brand, #0381BF);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-section .btn-brand:hover {
  background: var(--brand-dark, #0B6AA1);
  transform: translateY(-3px);
}

/* Image Styling */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-wrapper .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 129, 191, 0.15);
  border-radius: 15px;
}

/* ===== Mission & Vision Section ===== */
.mission-vision-section {
  background: #ffffff;
  position: relative;
}

.mission-vision-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand, #0381BF);
  position: relative;
  display: inline-block;
}

.mission-vision-section .section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--brand, #0381BF);
  margin: 10px auto 0;
  border-radius: 3px;
}

.mv-card {
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
  transition: all 0.4s ease;
}

.mv-card:hover {
  background: var(--brand, #0381BF);
  color: #fff;
  transform: translateY(-6px);
}

.mv-card:hover .text-muted {
  color: #fff !important;
}

.mv-card .icon i {
  transition: all 0.4s ease;
}

.mv-card:hover .icon i {
  transform: scale(1.2);
}

.mara-services-section {
  background: #f8fafc;
}

.service-box {
  background: #fff;
  border: 1px solid rgba(3, 129, 191, 0.1);
  transition: all 0.4s ease;
  border-radius: 12px;
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 129, 191, 0.3);
  box-shadow: 0 10px 25px rgba(3, 129, 191, 0.15);
}

.service-box i {
  color:  var(--brand-dark) !important;
  

  
  transition: all 0.3s ease;
}

.service-box1 i{
  color:  var(--surface) !important;
}
.service-box:hover i {
  transform: scale(1.15);
}

.text-brand {
  color: #0381bf;
}


/* ===== GALLERY UNIFORM SIZE ===== */
.gallery-section .gallery-item,
.gallery-section .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1; /* Keeps all square; change to 16/9 for rectangular */
  width: 100%;
}

.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops nicely */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

.gallery-section img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===== VIDEO PLAY ICON ===== */
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-thumb:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  background: rgba(0, 0, 0, 0.75);
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {
  .gallery-section .gallery-item,
  .gallery-section .video-thumb {
    aspect-ratio: 4 / 3; /* Slightly taller on mobile */
  }
}



.text-brand {
  color: var(--brand);
}

.contact-section {
  background: #f9fbfe;
}

.contact-info-card,
.contact-form {
  transition: 0.3s ease;
}

.contact-info-card:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}

.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.map-section {
  width: 100%;
  position: relative;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ===== WHATSAPP FLOAT BUTTON (IMAGE VERSION) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 999;
  animation: floatAir 3s ease-in-out infinite;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* WhatsApp icon image */
.whatsapp-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Floating up and down effect */
@keyframes floatAir {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Mobile view adjustments */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}
