/* Global Styles */
:root {
  --primary:#11636a;
  --primary-light:#2892a3;
  --primary-dark:#10494e;
  --accent:#f7b733;
  --text-dark:#122126;
  --text-muted:#7b8a92;
  --bg-light:#f6fafb;
}

* {
  box-sizing:border-box;
}

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

h1,h2,h3,h4,h5,h6 {
  font-family:'Playfair Display', serif;
}

/* Top Bar */
.top-bar {
  background:var(--primary-dark);
  color:#ffffff;
}

/* Navbar */
.main-navbar {
  background:linear-gradient(90deg,var(--primary-dark),var(--primary));
}

.navbar-brand {
  font-weight:600;
}

.logo-circle {
  width:48px;
  height:48px;
  border-radius:50%;
  border:2px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color:#fff;
}

.brand-text .brand-en {
  font-size:1.05rem;
  font-weight:600;
  color:#fff;
}

.brand-text .brand-hi {
  font-size:0.8rem;
  color:#f8f9fa;
}

.navbar-nav .nav-link {
  color:#e1f5f7;
  font-weight:500;
  text-transform:uppercase;
  font-size:0.9rem;
  margin-left:1rem;
  position:relative;
}

.navbar-nav .nav-link::after {
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--accent);
  transition:width 0.3s ease;
}

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

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

.hero-slide {
  min-height:75vh;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  position:relative;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(16, 73, 78, 0.35),
    rgba(40, 146, 163, 0.28)
  );
}



.hero-slide .carousel-caption {
  position:absolute;
  inset:0;
  padding:0 12%;
}

.hero-title {
  text-shadow:0 8px 20px rgba(0,0,0,0.35);
}

.hero-subtitle {
  max-width:480px;
}

.slide-1 {
  background-image:url('../img/banner-1.jpg');
}
.slide-2 {
  background-image:url('../img/banner-2.jpg');
}
.slide-3 {
  background-image:url('../img/banner-3.jpg');
}

/* Buttons */
.btn-cta,
.btn-outline-cta {
  border-radius:50px;
  padding:0.55rem 1.75rem;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  font-size:0.85rem;
}

.btn-cta {
  background:var(--accent);
  color:#10494e;
  border:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.btn-cta:hover {
  background:#ffc956;
  color:#10494e;
}

.btn-outline-cta {
  background:transparent;
  border:2px solid #fff;
  color:#fff;
}

.btn-outline-cta:hover {
  background:#fff;
  color:var(--primary-dark);
}

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

.section-heading .section-tag,
.section-tag {
  display:inline-block;
  text-transform:uppercase;
  font-size:0.8rem;
  letter-spacing:2px;
  color:var(--primary-light);
  font-weight:600;
}

.section-title {
  margin-top:0.5rem;
  font-size:2rem;
  color:var(--primary-dark);
}

.section-subtitle {
  max-width:640px;
  margin:0.75rem auto 0;
  color:var(--text-muted);
}

/* About */
.bg-light {
  background: var(--bg-light) !important;
}

/* ===== ABOUT SECTION ===== */

.about-image-wrapper {
  position: relative;
  min-height: 260px;
  padding: 18px;
  border-radius: 26px;
  overflow: visible;
}

/* Soft gradient blob behind images */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 30px;
  background: radial-gradient(circle at top left,
              rgba(40,146,163,0.45),
              rgba(16,99,106,0.1));
  filter: blur(6px);
  z-index: 0;
}

/* main + floating images */
.about-image {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  transition: transform 0.6s cubic-bezier(0.19,1,0.22,1),
              box-shadow 0.6s cubic-bezier(0.19,1,0.22,1);
  position: absolute;
  z-index: 1;
}

.main-img {
  inset: 0 20% 20% 0;
  background-image: url('../img/about-1.jpg');
}

.floating-img {
  inset: 35% 0 0 35%;
  background-image: url('../img/about-2.jpg');
  border: 6px solid #fff;
  animation: floatY 5s ease-in-out infinite;
}

/* Hover: subtle parallax zoom */
.about-image-wrapper:hover .main-img {
  transform: translate(-8px, -8px) scale(1.03);
  box-shadow: 0 26px 55px rgba(0,0,0,0.28);
}

.about-image-wrapper:hover .floating-img {
  transform: translate(10px, -12px) scale(1.05);
}

/* badge on image */
.about-badge {
  position: absolute;
  top: 6%;
  right: 5%;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 10px 14px;
  border-radius: 18px;
  text-align: right;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-badge span {
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
}

/* underline animation under heading */
.about-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 70px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease-out;
}

#about:hover .about-underline {
  transform: scaleX(1);
}

/* List items animation + hover */
.about-list li {
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 4px;
  opacity: 0;
  transform: translateX(-10px);
  animation: listFade 0.6s ease forwards;
}

/* staggered reveal */
.about-list li:nth-child(1) { animation-delay: 0.1s; }
.about-list li:nth-child(2) { animation-delay: 0.25s; }
.about-list li:nth-child(3) { animation-delay: 0.4s; }

.about-list li i {
  color: var(--primary);
  transition: transform 0.25s ease, color 0.25s ease;
}

.about-list li:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.about-list li:hover i {
  transform: scale(1.15);
  color: var(--primary-light);
}

/* Keyframes */
@keyframes floatY {
  0%   { transform: translateY(14px); }
  50%  { transform: translateY(2px); }
  100% { transform: translateY(14px); }
}

@keyframes listFade {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* Services */
/* SERVICES SECTION UPGRADE */
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.35s ease-in-out;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* SERVICE IMAGE WRAPPER */
.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

/* IMAGE HOVER EFFECT */
.service-card:hover .service-img img {
  transform: scale(1.08);
  filter: brightness(0.88);
}

/* ICON DESIGN */
.icon-wrapper {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-light);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.8s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ICON ROTATION HOVER */
.service-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.15);
}


/* Why Us */
.why-card {
  background:#fff;
  border-radius:18px;
  padding:18px 18px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card i {
  font-size:1.7rem;
  color:var(--primary-light);
  margin-bottom:8px;
}

.why-card h6 {
  font-weight:600;
}

.why-card p {
  font-size:0.9rem;
  color:var(--text-muted);
}

.why-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 34px rgba(0,0,0,0.12);
}

/* Achievements */
.achievements-section {
  background:radial-gradient(circle at top,var(--primary-light),var(--primary-dark));
  color:#fff;
}

.counter-card {
  background:rgba(0,0,0,0.12);
  border-radius:18px;
  padding:18px 12px;
}

.counter-card .counter {
  display:block;
  font-size:2rem;
  font-weight:700;
}

/* Gallery */
.gallery-item {
  overflow:hidden;
  border-radius:18px;
  position:relative;
  box-shadow:0 10px 24px rgba(0,0,0,0.16);
}

.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.gallery-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(16,73,78,0.1),rgba(2,0,36,0.7));
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:0.9rem;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:opacity 0.3s ease;
}

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

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


/* Lightbox Modal Styling */
.lightbox-modal .modal-content {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 5;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  border-radius: 16px;
}

/* prev / next arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-prev {
  left: -8px;
}

.lightbox-next {
  right: -8px;
}

.lightbox-nav i {
  font-size: 1.2rem;
}

.lightbox-nav:hover {
  background: rgba(40, 146, 163, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-caption {
  color: #e2f4f6;
}

/* small screens – bring arrows inside */
@media (max-width: 575.98px) {
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}


/* Contact */
.contact-form .form-control {
  border-radius:12px;
  border:1px solid #d5e1e4;
  box-shadow:none;
}

.contact-form .form-control:focus {
  border-color:var(--primary-light);
  box-shadow:0 0 0 0.15rem rgba(40,146,163,0.25);
}

.contact-info-card {
  background:linear-gradient(145deg,#ffffff,#eaf5f7);
  border-radius:20px;
  padding:22px 23px;
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* Map */
.map-section iframe {
  transition: filter 0.4s ease, transform 0.3s ease;
  filter: grayscale(10%);
}

.map-section iframe:hover {
  filter: grayscale(0%);
  transform: scale(1.01);
}


/* Footer */
.footer-section {
  background:#0b3033;
  color:#d1e5e7;
}

.footer-title {
  font-family:'Playfair Display',serif;
  font-size:1.4rem;
}

.footer-subtitle {
  font-size:1.05rem;
  margin-bottom:0.6rem;
}

.footer-links li {
  margin-bottom:0.3rem;
}

.footer-links a {
  color:#cbdde0;
  text-decoration:none;
  font-size:0.9rem;
}

.footer-links a:hover {
  color:#ffffff;
}

.footer-bottom {
  background:#06191b;
  color:#a7c3c6;
}

/* Floating Action Buttons */
.fab-btn {
  position:fixed;
  right:16px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.6rem;
  z-index:999;
  box-shadow:0 0 18px rgba(0,0,0,0.55);
  animation:pulseGlow 2s infinite;
}

.whatsapp-fab {
  bottom:90px;
  background:#25d366;
}

.call-fab {
  bottom:25px;
  background:var(--accent);
  color:#10494e;
}

.fab-btn:hover {
  transform:translateY(-3px) scale(1.02);
}

@keyframes pulseGlow {
  0% { box-shadow:0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow:0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* Scroll Animations (fade-up) */
.fade-up {
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media (max-width:991.98px) {
  .hero-slide {
    min-height:70vh;
  }
  .hero-slide .carousel-caption {
    padding:0 2rem;
  }
  .hero-title {
    font-size:1.9rem;
  }
}

@media (max-width:767.98px) {
  .section-padding {
    padding:60px 0;
  }
  .about-image-wrapper {
    margin-top:20px;
    min-height:220px;
  }
  .main-img {
    inset:0 10% 30% 0;
  }
  .floating-img {
    inset:45% 0 0 25%;
  }
  .fab-btn {
    width:48px;
    height:48px;
    font-size:1.4rem;
  }
}
#callme {
    position: fixed;
    right: 16px;
    top: 200px;
    width: 55px;
    height: 55px;
    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: #4caf50;
    width: 55px;
    height: 55px;
    -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: 0;
    left: 0;
    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 ;}
}
@media(max-width:991px)
{
    .mb-ds-nn{
        display:none;
    }
    .jf-cnt-cnter{
        justify-content:center!important
    }
    .sticky-top{
        position:relative;
    }
}
@media (max-width:575.98px) {
    .mb-ds-nn1{
        display:none;
    }
  .top-bar {
    
  }
}
