body {
  font-family: 'Andika', sans-serif;
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;

  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
  url('https://pixabay.com/videos/download/x-54756_medium.mp4');
  background-size: cover;
  background-position: center;
}

/* FLOATING BUBBLES */
.hero-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
  background-size: 50px 50px;
  animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(-100px,-100px);
  }
}

/* TEXT FIX */
.hero-text {
  position: relative;
  z-index: 2;
}
/* FILTER */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
}

.filter-container input,
.filter-container select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* CARD ANIMATION */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
}

/* SERVICE IMAGE FIX */
.card img {
  height: 200px;
  object-fit: cover;
}

/* SEE MORE ANIMATION */
.extra {
  transition: all 0.4s ease;
}

/* ENQUIRY ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .navbar-nav {
    text-align: center;
  }
}

/* REVIEW SLIDER */
.review-slider {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  width: calc(250px * 12);
  animation: scrollReviews 20s linear infinite;
}
/* 👇 HOVER pe slider ruk jayega */
.review-slider:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 250px;
  margin: 0 40px;
  background: white;
  padding: 20px 0px;
  min-height: 250px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
}
/* ANIMATION */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* WHY CHOOSE US */
.choose-card {
  background: white;
  padding: 90px 40px;
  border-radius: 15px;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  
}

.choose-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 15px 40px rgba(0,0,0,0.2);
}

/* ICON STYLE */
.choose-card .icon {
  font-size: 40px;
  color: #0D234A;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

.choose-card:hover .icon {
  transform: rotate(10deg) scale(1.2);
}

/* GLOW EFFECT */
.choose-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(13,110,253,0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.choose-card:hover::before {
  left: 100%;
}

/* MOBILE */
@media(max-width:768px){
  .choose-card {
    padding: 20px;
  }
}

/* FOOTER BASE */
.footer-advanced {
  position: relative;
  background: linear-gradient(135deg, #000, #0d6efd);
  overflow: hidden;
}

/* WAVE */
.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: #0d6efd;
}

/* TEXT */
.footer-advanced h4,
.footer-advanced h6 {
  margin-bottom: 15px;
}

.footer-advanced p,
.footer-advanced a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-advanced a:hover {
  color: #fff;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #00c6ff;
}

/* LINKS */
.footer-advanced ul li {
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-advanced ul li:hover {
  transform: translateX(5px);
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  background: rgba(239, 236, 236, 0.1);
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: 10px;
  flex: 1;
  background: transparent;
  color: white;
  outline: none;
}

.newsletter-form button {
  background: #fcfeff;
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #e9ecf0;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-advanced {
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0d6efd;
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  display: none;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}

#topBtn:hover {
  background: #0072ff;
}

/* BACKGROUND ANIMATION */
.why-ultra {
  position: relative;
  background: linear-gradient(270deg, #0d6efd, #00c6ff, #0072ff);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
  overflow: hidden;
}

/* FLOATING GLOW */
.why-ultra::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
  background-size: 60px 60px;
  animation: floatBg 20s linear infinite;
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@keyframes floatBg {
  0% {transform: translate(0,0);}
  100% {transform: translate(-100px,-100px);}
}

/* CARD STYLE */
.ultra-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  color: white;
  transition: 0.4s;
  overflow: hidden;
}

/* BORDER ANIMATION */
.ultra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #fff, transparent, #fff);

    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
  0% {background-position: 0%;}
  100% {background-position: 200%;}
}

/* HOVER EFFECT */
.ultra-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.3);
}

/* ICON */
.ultra-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.ultra-card:hover .icon {
  transform: rotate(10deg) scale(1.2);
}

/* TEXT FIX */
.ultra-card h5,
.ultra-card p {
  position: relative;
  z-index: 2;
}

/* MOBILE */
@media(max-width:768px){
  .ultra-card {
    padding: 20px;
  }
}

/* FONT AWESOME ICON STYLE */
.footer-advanced i {
  color: #00c6ff;
  transition: 0.3s;
}

/* CONTACT LINKS */
.footer-advanced a {
  color: #ccc;
  text-decoration: none;
}

.footer-advanced a:hover {
  color: #fff;
}

/* ICON HOVER */
.footer-advanced p:hover i {
  transform: scale(1.2);
  color: #fff;
}

/* MAP */
.map-container iframe {
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

/* SLIDER */
.featured-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

/* HIDE SCROLLBAR */
.featured-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.featured-card {
  min-width: 250px;
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.featured-card:hover {
  transform: scale(1.05);
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #0D234A;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.left { left: -10px; }
.slider-btn.right { right: -10px; }

/* COMMON CARD STYLE (ALL SECTIONS) */
.card, 
.featured-card, 
.review-card {
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
}

/* HOVER EFFECT */
.card:hover,
.featured-card:hover,
.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* IMAGE STYLE */
.card img,
.featured-card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* FEATURED CARD CUSTOM SHAPE */
.featured-card {
  min-width: 250px;
  margin-right: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
}

/* REVIEW CARD ROUND STYLE */
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 25px;
}

/* SERVICE CARD EXTRA DESIGN */
.service-card .card {
  border-radius: 25px;
}

/* BLOG CARD STYLE */
#blog .card {
  border-radius: 25px;
}

/* GLASS EFFECT */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: #fff;
  transition: 0.4s;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.03);
}
/* 3D EFFECT */
.card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
}

.flip-front {
  background: #fff;
}

.flip-back {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* GLOW EFFECT */
.card:hover {
  box-shadow: 0 0 25px rgba(0,123,255,0.6);
}

/* SMOOTH BUTTON */
.btn {
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

.about-section {
  padding: 90px 20%;
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.about-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.about-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  animation: fadeUp 1.2s ease;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  animation: fadeLeft 1.2s ease;
}

.about-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeRight 1.2s ease;
}

.feature-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  min-height:180px;
  max-height:100%;
}

.feature-box i {
  font-size: 30px;
  color: #00bcd4;
  margin-bottom: 10px;
}

.feature-box h4 {
  margin-bottom: 8px;
  color: #0a3d62;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.05);
  background: #00bcd4;
  color: white;
}

.feature-box:hover i,
.feature-box:hover h4,
.feature-box:hover p {
  color: white;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {opacity:0; transform:translateY(-30px);}
  to {opacity:1; transform:translateY(0);}
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(30px);}
  to {opacity:1; transform:translateY(0);}
}

@keyframes fadeLeft {
  from {opacity:0; transform:translateX(-50px);}
  to {opacity:1; transform:translateX(0);}
}

@keyframes fadeRight {
  from {opacity:0; transform:translateX(50px);}
  to {opacity:1; transform:translateX(0);}
}

/* why to choose us animation  */
.why-ultra { min-height: 600px; }
.ultra-card { min-height: 300px; }


/* /button colo */
/* GLOBAL BUTTON THEME */
.btn-primary,
.btn-success {
  background-color: #0D274C !important;
  border-color: #0D274C !important;
  color: #fff;
}

.btn-primary:hover,
.btn-success:hover {
  background-color: #091c36 !important;  /* thoda darker hover */
  border-color: #091c36 !important;
}

/* NAVBAR BUTTON */
.navbar-custom .btn-light {
  background-color: #0D274C;
  color: #fff;
  border: 1px solid #0D274C;
}

.navbar-custom .btn-light:hover {
  background-color: #091c36;
  border-color: #091c36;
}
.who-we-are img,
.section img {
  width: 100%;        /* 👈 image choti hogi (100% → full width hoti hai) */
  height: 270px;     /* 👈 fixed height */
  object-fit: cover; /* image properly crop hogi */
  margin: auto;
  display: block;
}
/* CSS */
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 15px; /* buttons ke beech ka gap */
}

.submit-btn {
  background: #092144;
  color: #fff;
  border: none;
  padding: 8px 25px; /* chhota size */
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.close-btn {
  background: #ccc;
  color: #333;
  border: none;
  padding: 12px 35px; /* thoda bada close button */
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* AUTO SLIDER */
.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.auto-slider {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollSlider 20s linear infinite;
}

/* SLIDER ANIMATION */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CARD DESIGN */
.featured-card {
  min-width: 250px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.featured-card:hover {
  transform: translateY(-8px);
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.category-btn {
  width:180px;
  border-radius:50px;
  padding:12px;
  text-align:center;
  cursor:pointer;
  border:1px solid #0D274C;
  color:#0D274C;
  transition:0.3s;
}

.category-btn:hover {
  background:#0D274C;
  color:#fff;
}

.active-btn {
  background:#0D274C;
  color:#fff;
}
