:root {
  --royal-green: #0b7c3b;
  --royal-green-dark: #06542a;
  --light-green: #b5f2bf;
  --accent-green: #13a455;
  --black: #111111;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --bg-soft: #f4fff7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, var(--royal-green-dark), var(--royal-green));
  color: var(--text-light);
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--light-green);
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.main-navbar {
  background: #000;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--light-green), var(--royal-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.brand-title {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #c9ffd5;
}

.nav-link {
  position: relative;
  padding: 0.6rem 1rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-green), var(--accent-green));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 40%;
}


.navbar-logo {
  height: 70px;
  /* Adjust size as needed */
  width: auto;
  object-fit: contain;
}


/* Hero / Carousel */
.hero-section {
  position: relative;
}

.hero-slide {
  height: 80vh;
  min-height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/image-1.jpg");
}

.hero-slide-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/image-2.jpg");
}

.hero-slide-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/image-3.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(6, 84, 42, 0.85), rgba(0, 0, 0, 0.4)); */
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
}

.btn-royal {
  background: linear-gradient(135deg, var(--light-green), var(--accent-green));
  border: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.35);
}

.btn-royal:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--royal-green-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* About */
.pattern-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 124, 59, 0.12) 1px, transparent 0);
  background-size: 18px 18px;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(11, 124, 59, 0.1), transparent 60%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: #000;
  color: var(--light-green);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.about-item {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.about-item i {
  font-size: 1.8rem;
  color: var(--royal-green);
}

.about-item h5 {
  margin-top: 10px;
  font-size: 0.95rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  margin-bottom: 8px;
}

.icon-list i {
  color: var(--royal-green);
  margin-right: 6px;
}

.about-img {
  border-radius: 4%;
}

/* Services */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(11, 124, 59, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  /* ensure left alignment */
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(11, 124, 59, 0.4);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--royal-green), #000);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.6s ease;
  /* for rotation */
  transform-origin: center;
}

/* 360° rotation on card hover */
.service-card:hover .service-icon {
  transform: rotate(360deg);
}

/* Service image styling */
.service-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* Why Choose Us */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px dashed rgba(11, 124, 59, 0.3);
  background-image: linear-gradient(135deg, rgba(181, 242, 191, 0.4), transparent);
}

.why-card i {
  font-size: 2rem;
  color: var(--royal-green);
  margin-bottom: 10px;
}

/* Achievements */
.achievements-section {
  background: radial-gradient(circle at top, var(--royal-green-dark), #000);
}

.achievement-card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--light-green);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 124, 59, 0.1), rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 500px;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(11, 124, 59, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-info p {
  margin-bottom: 8px;
}

/* Map */
.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer-section {
  background: #000;
  color: #ccc;
  padding: 50px 0 25px;
  font-size: 0.9rem;
}

.footer-section h5 {
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #c9ffd5;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.6);
  animation: pulseGlow 1.7s infinite;
  font-size: 1.5rem;
}

.floating-whatsapp {
  right: 16px;
  bottom: 88px;
  background: #25d366;
  color: #fff;
}

.floating-call {
  right: 16px;
  bottom: 24px;
  background: #0b7c3b;
  color: #fff;
}

.floating-top {
  right: 16px;
  bottom: 152px;
  background: #000;
  color: #fff;
  display: none;
  font-size: 1.2rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(19, 164, 85, 0.8);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(19, 164, 85, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(19, 164, 85, 0);
  }
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

[data-animate].animate-active {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateX(-25px);
}

[data-animate="fade-right"].animate-active {
  transform: translateX(0);
}

[data-animate="fade-left"] {
  transform: translateX(25px);
}

[data-animate="fade-left"].animate-active {
  transform: translateX(0);
}

[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate="zoom-in"].animate-active {
  transform: scale(1);
}

/* Achievements color */
.achievements-section .section-subtitle,
.achievements-section .section-heading {
  color: #fff;
}

#callme {
  position: fixed;
  right: 30px;
  top: 190px;
  width: 70px;
  height: 70px;
  cursor: pointer;

  z-index: 99990;
}

#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(40 167 69);
  width: 60px;
  height: 60px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}

#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -6px;
  left: -6px;
  background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@media(max-width:991px) {
  .cu-ds-nn {
    Display: none !important
  }

  .jf-cn-cntr {
    justify-content: center;
  }

  .sticky-top {
    position: relative;
  }
}

/* Responsive */
@media (max-width: 767.98px) {
  .hero-slide {
    height: 70vh;
  }

  .section-padding {
    padding: 60px 0;
  }

  .top-bar {
    font-size: 0.8rem;
  }
}




/* video */
.video-card {
  position: relative;
  width: 100%;
  height: 250px;
  aspect-ratio: 16 / 9;
  /* Same size for all videos */
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Proper fit without distortion */
  display: block;
}