html {
  scroll-behavior: smooth;
}

/* Theme */
:root {
  --primary: #80780e;
  --muted: #337dbd;
  --bg: #387ed9;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #222;
  background: #fff;
}

/* Header */
header {
  background: #ffffff;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #f4fbc2;
}

.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
}

.bottom-footer p {
  margin: 0;
}


/* --------------------
   Navbar
---------------------*/
.logo {
  height: 70px;
  width: auto;
}
/* Logo styling */
.logo {
  height: 70px;              /* clean size */
  width: auto;
  display: block;
}

/* Navbar brand alignment */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;                /* space between logo & text */
}

/* Improve text beside logo */
.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #0a5c5c;           /* match your theme */
  letter-spacing: 0.5px;
}

/* Fix vertical alignment */
.navbar {
  padding: 10px 20px;
}





/* Fix navbar height */
.navbar {
  height: 88px;
  padding: 0 15px;
}

/* Proper logo fit inside navbar */
.navbar-brand img.logo {
  height: 90px;        /* smaller than navbar */
  width: auto;
  object-fit: contain;
}

/* Center everything vertically */
.navbar-brand {
  display: flex;
  align-items: center;
}



/* Mobile optimization */
@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .navbar-brand span {
    font-size: 18px;
  }
}


.hero {
  /* Background image */
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), /* optional overlay for better text contrast */
    url('../images/background.jpg') no-repeat center center; /* replace with your image path */
  
  background-size: cover; /* makes image cover entire hero section */
  padding: 60px 0;
  width: 100%;
}

.hero {
  width: 100%;
  min-height: 60vh;
  padding: 60px 20px;
  text-align: center;
  

  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../images/background.jpg') no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
}


/* Hero slider */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* Sticky navbar scroll effect */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: #0a1a2f !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.locations-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px 40px;
list-style:none;
padding:0;
}

.locations-grid li{
font-size:16px;
}

/* Location animation */

.locations-grid li{
opacity:0;
transform:translateX(-40px);
transition:all 0.6s ease;
}

.locations-grid li.show{
opacity:1;
transform:translateX(0);
}



.section-heading{
    font-size: 36px;
    font-weight: 700;
    color: #1f3b5c;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-heading::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #1f3b5c;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}



.navbar-nav .dropdown-menu {
  max-height: 300px;   /* control height */
  overflow-y: auto;    /* enable vertical scroll */
}










.hero .display-5 {
  color: #fff;
}

.hero .lead {
  color: rgba(255,255,255,0.9);
}
/* --------------------
   Cards
---------------------*/
.card {
  border-radius: 10px;
}

/* --------------------
   Contact Form
---------------------*/
.form-label {
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

/* --------------------
   Footer
---------------------*/
footer {
  width: 100%;
  background: #1f2a3a;
  color: #ffffff;
  text-align: center;

  /* FLEX SAFE */
  display: flex;
  align-items: center;
  justify-content: center;

  /* RESPONSIVE PADDING */
  padding: 20px 10px;

  /* IMPORTANT */
  margin: 0;
  box-sizing: border-box;
}


/* --------------------
   Responsive Fixes
---------------------*/
@media (max-width: 767px) {
  .hero {
    padding: 40px 0;
    text-align: center;
  }

  .hero img {
    margin-top: 20px;
    max-width: 80%;
  }
}

/* --- Service Card Image Fix --- */
.card-img-top {
  width: 100%;
  height: 230px;   /* minimum preferred height */
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* NAVBAR STYLING */
.navbar {
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}
.navbar-collapse .d-flex {
    margin-left: 100px; /* Space between nav links and buttons */
    gap: 10px; /* Space between the buttons themselves */
}
.navbar-nav {
    margin-left: 20px; /* adjust as needed */
}

.navbar .navbar-brand {
  font-size: 30px;
  font-weight: 700;
  color: #21984f !important;
}

.navbar .logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  margin: 0 10px;
  font-size: 20 px;
  font-weight: 500;
  color: #333333 !important;
  transition: 0.25s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1f2a3a !important;
  transform: translateY(-2px);
}


/* ================= NAVBAR BACKGROUND FIX ================= */

/* Main Navbar */
.navbar {
  background-color: #ffffff;
}

/* Mobile Menu (when opened) */
.navbar-collapse {
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Dropdown Items */
.dropdown-item {
  color: #000;
}

/* Hover Effect */
.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #000;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #000;
}

/* Fix for transparent/overlay issue */
.navbar,
.navbar-collapse,
.dropdown-menu {
  background-color: #fff !important;
}



/*call button*/
.call-btn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #95c189;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.22);
  transition: 0.3s;
  margin-right: 30px;
}

.call-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

/* Red text for last paragraph */
.hero-content p:last-of-type {
  color: red;
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px; /* space from above */
}

/* Styling <h> like a button */
.hero-content h {
  display: inline-block;
  background: #f03333;
  color: #fffdfd;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px; /* space between p and button */
  text-decoration: none;
}

/* Blinking effect */
@keyframes blinkBtn {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-content h {
  animation: blinkBtn 2s infinite;
}





.call-btn:hover {
  transform: scale(1.12);
  background: #e7eefc;
}
@keyframes blinkCall {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.call-btn {
  animation: blinkCall 1.4s infinite ease-in-out;
}

/*whatsapp button*/
.whatsapp-btn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #7290ba;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.22);
  transition: 0.3s;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}


.whatsapp-btn:hover {
  transform: scale(1.12);
  background: #417e88;
}
@keyframes blinkWhatsApp {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.whatsapp-btn {
  animation: blinkWhatsApp 1.4s infinite ease-in-out;
}
/* --------------------
   About Section
---------------------*/
#about {
  background: #f8fafc; /* soft light background */
  padding: 80px 0;
}

#about h1 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2a3a; /* elegant dark blue */
  margin-bottom: 20px;
  text-align: center;
}
.about-heading{
    position: relative;
    text-align: center;
}

.about-heading::after{
    content: "";
    width: 70px;
    height: 4px;
    background: #1f3b5c;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}
#about .lead {
  font-size: 20px;
  line-height: 1.7;
  color: #1b3b5e;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

#about h4 {
  font-size: 38px;
  font-weight: 700;
  color: #1b3b5e;
  margin-bottom: 12px;

}

#about p,
#about ul li {
  font-size: 20px;
  color: #1b3b5e;
  font-weight: 400;
  line-height: 1.6;
}

#about ul {
  padding-left: 20px;
}

#about ul li {
  margin-bottom: 6px;
}

#about a.btn {
  background: #1f2a3a;
  border-radius: 8px;
  font-size: 17px;
  padding: 10px 26px;
  margin-top: 15px;
  transition: 0.3s;
}

#about a.btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}
.mission-list {
  list-style: none;
  color: #1eb355;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: 18px;
  color: #1f2a3a; 
  font-weight: 600;
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}

/* Yellow Arrow Icon */
.mission-list li::before {
  content: "▶";
  font-size: 22px;
  color: #1b3b5e; /* yellow */
  position: absolute;
  left: 0;
  top: 2px;
}

/* Hover animation */
.mission-list li:hover {
  color: #0848b0;
  transform: translateX(4px);
}
/* .why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin: 12px 0;
  padding-left: 34px;
  position: relative;
  transition: 0.3s;
} */





/* =========================
   LIST STYLES (YOUR STYLE)
========================= */

.mission-list,
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li,
.why-choose-list li {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin: 12px 0;
  padding-left: 34px;
  position: relative;
}

/* =========================
   SCROLL ANIMATION
========================= */

.scroll-animate {
  opacity: 0;
  transition: all 0.9s ease;
}

.slide-left {
  transform: translateX(-80px);
}

.slide-right {
  transform: translateX(80px);
}

.scroll-animate.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   STAGGER LIST ANIMATION
========================= */

.scroll-animate.show li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

.scroll-animate.show li:nth-child(1) { animation-delay: 0.1s; }
.scroll-animate.show li:nth-child(2) { animation-delay: 0.2s; }
.scroll-animate.show li:nth-child(3) { animation-delay: 0.3s; }
.scroll-animate.show li:nth-child(4) { animation-delay: 0.4s; }
.scroll-animate.show li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* yellow arrow icon */
.why-choose-list li::before {
  content: "\25B6"; /* ► symbol */
  color: #1b3b5e; /* yellow */
  font-size: 22px; /* arrow size increased */
  position: absolute;
  left: 0;
  top: 0;
}

/* hover effect (optional but looks good) */
.why-choose-list li:hover {
  color: #000; /* darker on hover */
  transform: translateX(3px);
}



/* ===== Services Section ===== */
#services {
  background-color: #f8f9fa;
}

#services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}

#services h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #1f2a3a;
  margin: 10px auto 0;
  border-radius: 2px;
}

#services .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

#services .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#services .card:hover .card-img-top {
  transform: scale(1.05);
}

#services .card-body {
  padding: 1.5rem;
  text-align: center;
}

#services .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2a3a;
  margin-bottom: 0.8rem;
}

#services .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

#services .btn-primary {
  background-color: #1f2a3a;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#services .btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #services .card-img-top {
    height: 200px;
  }
}

@media (max-width: 768px) {
  #services h2 {
    font-size: 2rem;
  }
  
  #services .card-img-top {
    height: 180px;
  }
}


/*remove underline from link*/
.service-title {
  text-decoration: none !important;
  color: #333 !important;
}

.service-title:hover {
  text-decoration: none !important;
  color: #333 !important;
}


/* ===== Gallery Section ===== */
#gallery {
  background-color: #ffffff;
}

#gallery h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

#gallery p {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

#gallery .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  position: relative;
}




.gallery-video{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
}


#gallery .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(235, 235, 233, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

#gallery .card:hover::after {
  opacity: 1;
}

#gallery .card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

#gallery .card:hover .card-img-top {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.1);
}

/* Smooth fade-in animation on scroll */
#gallery .card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

#gallery .card:nth-child(1) { animation-delay: 0.1s; }
#gallery .card:nth-child(2) { animation-delay: 0.2s; }
#gallery .card:nth-child(3) { animation-delay: 0.3s; }
#gallery .card:nth-child(4) { animation-delay: 0.4s; }
#gallery .card:nth-child(5) { animation-delay: 0.5s; }
#gallery .card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #gallery .card-img-top {
    height: 180px;
  }
}

@media (max-width: 576px) {
  #gallery .card-img-top {
    height: 150px;
  }
}



.heading-container{
    text-align: center;
}

.section-title{
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after{
    content: "";
    width: 60px;
    height: 3px;
    background-color: #1f2a3a;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 70px 0;
  background: #eaeaeb;
  overflow: hidden;
}

.testimonials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2a3a;
}

.testimonial-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: moveRight 35s linear infinite;
}

.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: #89b299;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #070707;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2a3a;
}

.testimonials-title{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.testimonials-title::after{
    content: "";
    width: 70px;
    height: 3px;
    background-color: #1f2a3a;
    display: block;
    margin: 10px auto;
    border-radius: 3px;
}

/* RIGHT moving animation */
@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Pause animation on hover */
.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}








/* Contact Section */
#contact {
  background: #eaecee;
}

#contact .card {
  border: none;
  border-radius: 12px;
  transition: 0.3s;
}

#contact .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

#contact .card-title,
#contact h5 {
  font-weight: 700;
  color: #1f2a3a;
}

#contact label {
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

#contact input,
#contact textarea {
  border-radius: 8px;
  border: 1px solid #d2d6dc;
  background: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #0d47a1;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
}

#contact button {
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

#contact button.btn-primary {
  background: #1f2a3a;
  border: none;
}

#contact button.btn-primary:hover {
  background: #09367b;
  transform: scale(1.03);
}

#contact button.btn-outline-secondary:hover {
  background: #e9ecef;
  transform: scale(1.03);
}




/* MAP */

.map-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}

.map-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  margin-top: 10px;
  font-size: 14px;
  color: #1f2a3a;
  text-align: center;
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.map-btn:hover {
  background-color: #084298;
}
.map-container {
  position: relative;
}

.map-btn-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}






/* Contact Info Text */
/* #contact a {
  color: #0d47a1;
  text-decoration: none;
  font-weight: 500;
}

#contact a:hover {
  text-decoration: underline;
} */

/* Mobile Improvements */
@media (max-width: 768px) {
  #contact .card {
    margin-bottom: 18px;
  }
  #contact .btn-success {
    margin-top: 10px;
  }
}



/*side buttons or floating buttons*/

.side-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.side-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.side-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
}


.side-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}






/* =====================
   PRE FOOTER (MODERN)
===================== */

.pre-footer {
  background-color: #1f2a3a;
  padding: 70px 0 40px;
  color: #cfd6e1;
  font-size: 17px;
}

.footer-box {
  height: 100%;
}

.footer-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #f5d11c;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}


.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f5d11c;
  color: #0f0e0e;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
}




.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #f5d11c; /* yellow on hover */
}













/* =======================
   PREMIUM DROPDOWN MENU
======================= */

/* Base dropdown */
.dropdown-menu {
  min-width: 270px;
  padding: 6px 0;                 /* reduced gap */
  border-radius: 12px;
  border: none;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);

  transition: all 0.3s ease;
}

/* Show dropdown */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Dropdown items */
.dropdown-item {
  padding: 4px 7px;              /* reduced vertical space */
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  margin: 2px 8px;

  transition: all 0.25s ease;
}

/* Hover effect – premium */
.dropdown-item:hover {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #fff;
  padding-left: 24px;
  transform: translateX(4px);
  box-shadow: 0 6px 15px rgba(13,110,253,0.35);
}

/* Active click */
.dropdown-item:active {
  transform: scale(0.97);
}

/* Arrow animation */
.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

/* ==============================
   HOVER DROPDOWN (DESKTOP ONLY)
============================== */
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block;                /* IMPORTANT for hover */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* CONTACT LINKS (FINAL CLEAN STYLE) */
.footer-contact a {
  color: white !important;
  text-decoration: none !important;
}

/* optional hover effect */
.footer-contact a:hover {
  color: #ffc107;   /* nice highlight on hover */
}

/* ================================
   MOBILE RESPONSIVE FIX
================================ */

@media (max-width: 768px) {

  /* Navbar spacing */
  .navbar .container {
    padding: 10px 15px;
  }

  .navbar-nav {
    margin-top: 10px;
  }

  /* Dropdown menu mobile look */
  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .dropdown-item {
    padding: 10px 0;
    font-size: 15px;
  }

  /* Hero section text resize */
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content .btn {
    margin-top: 10px;
    width: 100%;
  }

  /* Services cards spacing */
  .card {
    margin-bottom: 15px;
  }

  /* Floating side buttons resize */
  .side-buttons img {
    width: 40px;
    height: 40px;
  }

  /* Footer spacing */
  .pre-footer .row > div {
    margin-bottom: 20px;
  }
}


/* ================================
   EXTRA SMALL DEVICES FIX
================================ */

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .brand-text {
    font-size: 16px;
  }
}







/* ================================
   NAVBAR STICKY + SCROLL EFFECT
================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Dark background when scrolling */
.navbar.scrolled {
  background: #1f2a3a !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Change text color on scroll */
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: #fff !important;
}


/* Prevent content hiding under fixed navbar */
body {
  padding-top: 90px;
}






/* ==============================
   CLEAN MOBILE NAVBAR DESIGN
============================== */
@media (max-width: 768px) {

  /* Reduce navbar height */
  .navbar {
    padding: 10px 15px !important;
  }

  /* Align logo + title properly */
  .navbar-brand {
    display: flex;
    align-items: center;
    font-size: 20px !important;
    font-weight: 600;
  }

  /* Logo size smaller */
  .navbar .logo {
    height: 38px;
    margin-right: 8px;
  }

  /* Menu toggle button position */
  .navbar-toggler {
    padding: 6px 10px;
    font-size: 16px;
  }

  /* Mobile menu items spacing */
  .navbar-nav {
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 18px !important;
    padding: 12px 0;
  }

  /* Dropdown spacing */
  .dropdown-menu {
    border-radius: 8px;
    margin-top: 5px;
  }
}



















/* ===== LAST LINE OF FILE — MOBILE NAVBAR ===== */

@media (max-width: 768px) {

  .navbar {
    padding: 10px 15px !important;
  }

  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
  }

  .navbar .logo {
    height: 38px !important;
    margin-right: 8px !important;
  }

  .navbar-toggler {
    padding: 6px 10px !important;
  }

  .navbar-nav .nav-link {
    font-size: 18px !important;
    padding: 12px 0 !important;
  }
}






/* ===== CLEAN MOBILE NAVBAR ===== */
@media (max-width: 768px) {

  .navbar {
    padding: 8px 15px !important;
  }

  .navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 !important;
  }

  .navbar .logo {
    height: 35px !important;
    margin-right: 6px !important;
  }

  .navbar-toggler {
    border: none !important;
  }

  .navbar-collapse {
    margin-top: 10px;
  }
}






/* ===============================
   MOBILE NAVBAR FIX
=============================== */

.logo {
  height: 60px;
  width: auto;
}

/* brand text */
.brand-text {
  font-size: 26px;
  font-weight: 700;
  color: #0b5d4f;
}

/* mobile view */
@media (max-width: 768px) {

  .logo {
    height: 45px;
  }

  .brand-text {
    font-size: 18px;
  }

  .navbar-brand {
    gap: 8px;
  }

}

@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
  }
}


/* Scroll To Top Button */

.scroll-top{
  position: fixed;
  right: 25px;
  bottom: 20px; /* above whatsapp button */
  width: 45px;
  height: 45px;
  background: #1b7f5b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-top:hover{
  background:#145c43;
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}





/* contact form*/
/* SECTION */
.contact-section {
  padding: 60px 0;
  background: #f5f7fa;
}

/* BOX STYLE */
.contact-box,
.map-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* TITLE */
.contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233,30,99,0.15);
  outline: none;
}

/* BUTTONS */
.form-buttons {
  display: flex;
  gap: 10px;
}

.btn-send {
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
}

.btn-reset {
  background: #eee;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
}

/* MAP */
.map-box h4 {
  margin-bottom: 10px;
}

.map-text {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
  .form-buttons {
    flex-direction: column;
  }

  .contact-title {
    text-align: center;
  }
}







.side-buttons {
    position: fixed !important;
    right: 20px !important;
    bottom: 90px !important;
    top: auto !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999 !important;
}