:root {
  --sky-blue: #3db8ff;
  --sky-blue-dark: #1f9ae5;
  --orange: #ff8c24;
  --yellow: #ffd447;
  --dark: #10243e;
  --text: #4e5b6c;
  --white: #ffffff;
  --light-bg: #f4fbff;
  --border: #e7eef5;
  --shadow: 0 10px 30px rgba(16, 36, 62, 0.10);
  --shadow-lg: 0 18px 45px rgba(16, 36, 62, 0.15);
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

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

.bg-light-blue {
  background: linear-gradient(180deg, #f9fdff 0%, #eef8ff 100%);
}

.top-bar {
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.top-bar i {
  margin-right: 6px;
}

.header-area .navbar {
  padding: 14px 0;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-blue), var(--orange));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-title {
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--text);
  font-weight: 500;
}

/* Website Logo */
.site-logo{
  height:60px;
  width:auto;
  object-fit:contain;
}

@media (max-width:768px){
  .site-logo{
    height:50px;
  }
}


.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 600;
  margin: 0 8px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 16px);
}

.btn-brand {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 140, 36, 0.25);
  transition: var(--transition);
}

.btn-brand:hover {
  transform: translateY(-2px);
  color: var(--dark);
}

.btn-outline-brand {
  border: 2px solid var(--sky-blue);
  color: var(--sky-blue-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
}

.btn-outline-brand:hover {
  background: var(--sky-blue);
  color: #fff;
}

.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 92vh;
  position: relative;
  display: flex !important;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.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');
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 47, 0.80), rgba(32, 95, 165, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 212, 71, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-btns .btn {
  min-width: 150px;
}

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

.section-title .sub-title {
  display: inline-block;
  color: var(--orange);
  background: #fff3e8;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 14px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.about-image-card {
  position: relative;
}

.about-image-card img {
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}

.about-badge-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--orange);
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  height: 100%;
}

.mini-feature i {
  color: var(--orange);
  font-size: 20px;
}

/* Service Image */
.service-img-card {
  text-align: center;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

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

/* Image zoom on hover */
.service-img-card:hover .service-image img {
  transform: scale(1.1);
}

/* Icon rotation */
.service-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-blue), var(--orange));
  transition: transform 0.6s ease;
}

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

/* Service card hover */
.service-img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


.service-card,
.choose-card,
.achievement-card,
.contact-info-card,
.contact-form-card,
.gallery-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

.service-card:hover,
.choose-card:hover,
.achievement-card:hover,
.gallery-card:hover,
.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 184, 255, 0.25);
}

.service-icon,
.choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--sky-blue), var(--orange));
  box-shadow: 0 10px 24px rgba(61, 184, 255, 0.28);
}

.service-card h4,
.choose-card h5 {
  margin-bottom: 14px;
}

.achievements-section {
  background: linear-gradient(135deg, rgba(61,184,255,0.08), rgba(255,212,71,0.12));
}

.achievement-card {
  text-align: center;
  padding: 35px 25px;
}

.achievement-card h3 {
  font-size: 2.8rem;
  color: var(--sky-blue-dark);
  margin-bottom: 8px;
}

/* Gallery card */
.gallery-card{
  overflow:hidden;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* Gallery image */
.gallery-img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.5s;
  cursor:pointer;
}

/* Hover zoom effect */
.gallery-card:hover .gallery-img{
  transform:scale(1.1);
}

.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f9fdff 100%);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky-blue), var(--orange));
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4,
.contact-form-card h4 {
  margin-bottom: 15px;
}

.contact-info-card a,
.footer-links a,
.footer-contact a {
  color: var(--text);
}

.contact-info-card a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.form-control {
  border-radius: 14px;
  min-height: 54px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 140px;
}

.form-control:focus {
  border-color: var(--sky-blue);
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer-section {
  background: linear-gradient(135deg, #0c223c, #12345c);
  color: rgba(255,255,255,0.85);
  padding-top: 80px;
}

.footer-widget h5 {
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.82);
}

.footer-contact i {
  color: var(--yellow);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 22px 0;
}

.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-buttons1 {
  position: fixed;
  lef: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 0 0 rgba(0,0,0,0.2);
  animation: glowPulse 2s infinite;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.call-btn {
  background: linear-gradient(135deg, var(--orange), #ff6a00);
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 36, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 140, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 36, 0);
  }
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 27, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.custom-lightbox.active {
  display: flex;
}

.custom-lightbox img {
  max-width: 95%;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 25px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 75px 0;
  }
.sticky-top{
	position:relative;
}
  .hero-slide {
    min-height: 80vh;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .about-image-card img {
    min-height: 380px;
  }

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

  .navbar-nav .nav-link {
    margin: 4px 0;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 13px;
  }
.cu-mb-ds-nn{
	display:none;
}
  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-btns .btn {
    display: block;
    width: 100%;
    margin: 10px 0 0 0 !important;
  }

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

  .service-card,
  .choose-card,
  .achievement-card,
  .contact-info-card,
  .contact-form-card {
    padding: 22px;
  }

  .gallery-card img {
    height: 220px;
  }

  .map-section iframe {
    height: 320px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 65px 0;
  }

  .hero-slide {
    min-height: 74vh;
  }

  .about-badge-card {
    position: static;
    margin-top: 18px;
  }

  .gallery-card img {
    height: 200px;
  }
}