/* GLOBAL COLORS */
:root {
  --navy: #1e9aff;
  --navy-dark: #061024;
  --yellow: #1e9aff;
  --yellow-soft: #ffe94a;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --bg-alt: #f8f9fc;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --transition-fast: all 0.25s ease;
}

/* FONTS */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth;
}

.brand-name,
.section-title,
.navbar-brand .brand-name,
.footer-title {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* TOP BAR */
.top-bar {
  background-color: var(--navy);
  font-size: 1.02rem;
}
.top-bar i {
  color: #ffffff;
  margin-right: 4px;
}

/* NAVBAR */
.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background-color: var(--navy);
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(10, 26, 51, 0.4);
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--navy);
}

.nav-link {
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: #1e9aff;
}
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background-color: #1e9aff;
  animation: linkFade 0.25s ease forwards;
}
@keyframes linkFade {
  from { opacity: 0; width: 0; margin: 0 auto; }
  to   { opacity: 1; width: 100%; margin: 0; }
}

/* COMMON SECTIONS */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bg-alt {
  background-color: var(--bg-alt);
}
.section-head .section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--navy);
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-title {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.6vw + 1rem, 2rem);
  margin-top: 0.75rem;
}
.section-subtext {
  max-width: 600px;
  font-size: 0.9rem;
  color: #64748b;
}

/* BUTTONS */
.btn-yellow {
  background-color: #1e9aff;
  color: white;
  border: 2px solid #1e9aff;
}
.btn-yellow:hover {
  background-color: var(--navy);
  color: #ffffff;
  border-color: #000000;
}
.btn-outline-light:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--navy) !important;
}
.btn-outline-yellow {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: var(--navy);
} 
.btn-outline-yellow:hover {
  background-color: #ffffff;
  color: var(--navy);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
}
.hero-slide-bg {
  height: clamp(420px, 35vw, 600px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}
.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(248,217,0,0.22) 0%, rgba(0,0,0,0.7) 60%);
  pointer-events: none;
}
.carousel-caption {
  bottom: auto;
  top: 0;
  left: 0;
  right: 0;
  padding: min(4vw,3rem);
  max-width: 600px;
}
.text-shadow {
  text-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

/* ABOUT */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
}
.about-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  min-width: 120px;
  text-align: center;
}
.badge-number {
  font-size: 1.6rem;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.icon-box {
  width: 44px;
  height: 44px;
  background-color: #1e9aff;
  color: white;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(248,217,0,0.45);
}

/* WHY CHOOSE US */
.choose-img-wrapper {
  position: relative;
}
.floating-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  min-width: 220px;
  display: inline-block;
  border: 2px solid #1e9aff;
  border: 2px solid #1e9aff;
}
.floating-icon {
  background-color: #ffffff;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248,217,0,0.4);
}
.why-box {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.why-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background-color: var(--navy);
  color: #1e9aff;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

/* ACHIEVEMENTS */
.achievements-section {
  position: relative;
  background-image: linear-gradient(rgba(6,16,36,0.85), rgba(6,16,36,0.85)), url('../img/achievement-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.achievements-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.2) 0%, rgba(0,0,0,0) 60%);
}
.stat-box {
  position: relative;
  padding: 1rem 0;
}
.stat-number {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
}
.stat-label {
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* GALLERY */
.gallery-item {
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 30px #e2eaff;
  overflow: hidden;
  position: relative;
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,16,36,0.6);
  opacity: 0;
  transition: var(--transition-fast);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.view-btn {
  font-size: 0.8rem;
}

/* CONTACT */
.contact-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-icon {
  background-color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  display: grid;
  place-items: center;
}
.form-control-custom {
  border-radius: var(--radius-lg);
  border: 2px solid #092141;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}
.form-control-custom:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.15rem rgba(248,217,0,0.4);
  outline: none;
}

/* MAP */
.map-wrapper {
  height: 350px;
  overflow: hidden;
  filter: grayscale(0.2);
  border-top: 4px solid #1e9aff;
}
.map-iframe {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.footer-section {
  background-color: var(--navy-dark);
  background-image: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.15) 0%, rgba(0,0,0,0) 60%);
  font-size: 0.9rem;
}
.footer-icon {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  color: var(--navy-dark);    
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248,217,0,0.4);
}
.footer-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.1;
}
.text-yellow {
  color: #ffffff !important;
}
.footer-links li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}
.footer-link i {
  color: #ffffff;
  margin-right: 6px;
}
.footer-link:hover {
  color: #ffffff;
}
.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-icon:hover {
  background-color: #ffffff;
  color: var(--navy-dark);
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
}

/* BACK TO TOP BTN */
.back-to-top {
  width: 42px;
  height: 42px;
  border: 0;
  background-color: #ffffff;
  color: var(--navy);
  font-size: 1rem;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-fast);
}
.back-to-top.show {
  display: flex;
}
.back-to-top:hover {
  background-color: var(--navy);
  color: #ffffff;
}

/* UTILS */
.shadow-hover {
  transition: var(--transition-fast);
}
.shadow-hover:hover {
  box-shadow: 0 25px 50px rgba(10,26,51,0.18);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 767.98px) {
  .carousel-caption {
    max-width: 90%;
  }
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .carousel-caption .lead {
    font-size: 0.9rem;
  }
  .hero-slide-bg {
    height: 420px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tagline {
    font-size: 0.6rem;
  }
  .top-bar {
    font-size: 0.7rem;
  }
  .about-badge {
    min-width: 100px;
    padding: .8rem 1rem;
  }
  .badge-number {
    font-size: 1.4rem;
  }
  .floating-card {
    min-width: 180px;
  }
}


  
    /* ====== Services Section Styling ====== */
.service-card {
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #eaeaea;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
}

/* Equal image height */
.service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

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

.service-card:hover .service-img img {
  transform: scale(1.05);
}

/* Text alignment & spacing */
.service-text {
  text-align: justify;
  min-height: 80px;
}
#callme {
    position: fixed;
    right: 16px;
    bottom: 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 ;}
    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);}
}
/* Responsive tweak */
@media (max-width: 767px) {
  .service-img {
    height: 180px;
  }
}
