* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: clip; 
}
.row {
  margin-left: 0;
  margin-right: 0;
}
section, header, .hero-section {
  overflow-x: clip;
}
[class*="slide"],
[class*="animate"],
.carousel-track {
  will-change: transform;
  overflow-x: clip;
}
.position-absolute,
.position-relative {
  max-width: 100%;
  overflow-x: clip;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.logo-shine {
  transition: filter 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo-shine:hover {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 20px rgba(255, 200, 50, 0.6));
}

@keyframes logoGlow {
  0%,  100% { 
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 8px rgba(255, 200, 50, 0.2)); 
  }
  50% { 
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 18px rgba(255, 200, 50, 0.5)); 
  }
}
  .font-ui {
  font-family: 'Poppins', sans-serif;
  
}
.card-title {
    font-weight: 500;
    color: #111827;
}
.card-desc {

    color: #6b7280;
    line-height: 1.5;
}
.card-link {
    font-weight: 500;
}
.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E1F5EE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-item-title {
    font-weight: 500;
    color: #111827;
}

.carousel-wrapper {
  background: #fdfcfc;
  padding-top: 20px;
}

.infinite-carousel {
  position: relative;
   overflow-x: clip;
      backface-visibility: hidden;
}

.carousel-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 25s linear infinite;
  z-index: 10;
    will-change: transform;
  transform: translateZ(0); 
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CARD DESIGN */
.custom-card {
  width: 260px;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  background: #fdfbfb;
  
}

.custom-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

/* Professional Hover Effect */
.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* BUTTON STYLE */
.custom-btn {
  background-color: #f50d0d;
  color: rgb(247, 244, 244);
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

/* Button changes when card is hovered */
.custom-card:hover .custom-btn {
  background-color: #1e88e5;
  color: #d2e4f3;
}
/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-floating-btn {
    position: fixed;
    top: 120px;
    right: -200px;
    z-index: 999;
    animation: slideInFromRight 0.8s ease-out 0.5s forwards;
}

.whatsapp-float-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 12px 20px 12px 16px;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    box-shadow: 
        -4px 4px 15px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.whatsapp-float-link:hover {
    transform: translateX(-10px) scale(1.05);
    box-shadow: 
        -6px 6px 25px rgba(37, 211, 102, 0.5),
        0 0 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-float-link:hover .whatsapp-text {
    letter-spacing: 1px;
}

/* Text Styling */
.whatsapp-text {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: letter-spacing 0.3s ease;
}

/* Icon Styling */
.whatsapp-float-link svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: rotate 3s linear infinite;
}

/* Online Dot */
.online-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Shimmer Effect on Button */
.whatsapp-float-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.whatsapp-float-link:hover::before {
    left: 100%;
}
/* Top Section Main Image - Medium Size */
.works-section .works-img img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}

/* Bottom 4 Container Images - Same Small Size */
.works-section .row.align-items-center.g-4 img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .works-section .works-img img {
        max-height: 350px;
    }
    
    .works-section .row.align-items-center.g-4 img {
        max-height: 250px;
    }
}

@media (max-width: 767px) {
    .works-section .works-img img {
        max-height: 300px;
    }
    
    .works-section .row.align-items-center.g-4 img {
        max-height: 220px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes slideInFromRight {
    from {
        right: -200px;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ========================================
   RESPONSIVE - NAVBAR EXPANDED STATE
======================================== */
@media (max-width: 991.98px) {
    /* When navbar is expanded, move button down */
    .navbar-collapse.show ~ .whatsapp-floating-btn,
    .navbar-collapse.collapsing ~ .whatsapp-floating-btn {
        top: 350px;
        transition: top 0.3s ease;
    }
    
    .whatsapp-floating-btn {
        top: 80px;
    }
    
    .whatsapp-float-link {
        padding: 10px 16px 10px 12px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
    
    .whatsapp-float-link svg {
        width: 22px;
        height: 22px;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .whatsapp-floating-btn {
        top: 70px;
    }
    
    .whatsapp-float-link {
        padding: 8px 14px 8px 10px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
}
.appointment-card {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fdfeff;
}

.appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.custom-input {
  border-radius: 12px;
  padding: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 0.2rem rgba(229,57,53,0.15);
}

.submit-btn {
  background: linear-gradient(45deg, #e53935, #f73b02);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #1e88e5, #42a5f5);
  transform: scale(1.03);
}
.dropdown-menu-dark .dropdown-item {
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu-dark .dropdown-item:hover {
  background-color: #fd1814; /* Red */
  color: #fff;
}
.about-section {
  min-height: auto;
  background: url('../images/36f8f80ef0c723777ccf1e631145f1c8\ \(2\).webp') center/cover no-repeat;
  position: relative;
  padding: 80px 15px;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* Glass Effect Card */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.highlight-card h3 {
  color: #ffcc00;
}

.feature-item h6 {
  color: #ffffff;
}

.feature-item p {
  font-size: 0.95rem;
}.glass-card .text-muted {
  color: #ffffff !important;
  font-weight: 400;
  text-shadow: 
    0 0 4px rgba(252, 246, 246, 0.884),
    0 0 4px rgba(242, 245, 250, 0.4);
}
.modern-faq .faq-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.modern-faq .faq-header h6 {
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
  
}

/* Hover heading + entire item */
.modern-faq .faq-item:hover {
 background: linear-gradient(
    135deg,        /* Angle for professional look */
    #1e88e5 0%,    /* Blue start */
    #42a5f5 40%,   /* Lighter blue blending */
    #ef5350 60%,   /* Light red blending */
    #e53935 100%   /* Red end */
  ); /* blue hover background */
  color: #fff;
}

.modern-faq .faq-item:hover h6 {
  color: #fff;
}

/* Plus sign styling */
.modern-faq .faq-plus {
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #fff;
}

/* Body paragraph */
.modern-faq .faq-body {
  display: none;
  padding: 10px 0 0 0;
  font-size: 0.95rem;
  color: #fff;
  border-radius: 8px;
}

/* Open FAQ background */
.modern-faq .faq-item.open {
  background: linear-gradient(
    135deg,        /* Angle for professional look */
    #1e88e5 0%,    /* Blue start */
    #42a5f5 40%,   /* Lighter blue blending */
    #ef5350 60%,   /* Light red blending */
    #e53935 100%   /* Red end */
  );
  color: #fff;
}

.faq-image-box img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 15px;
}.footer-section {
  background-color: #ffffff;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-section .footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section .footer-link:hover {
  color: #1e88e5;
 font-weight: 600;
}

.footer-section .social-icon svg {
  transition: all 0.4s ease;
  color: #333;
}

.footer-section .social-icon:hover svg {
  color: #1e88e5;
  transform: scale(1.4) rotate(10deg); /* Slight rotation + scale for pro shine effect */
  filter: drop-shadow(0 0 8px #1e88e5); /* Glow effect */
}

.footer-section img {
  max-height: 80px;
}

.footer-section small, .footer-section p {
  color: #555;
}

.hero-image {
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;

}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills area without distortion */
  display: block;
}

@media (max-width: 768px) {
  .footer-section .row {
    text-align: center;
  }

  .footer-section .col-md-3,
  .footer-section .col-md-4,
  .footer-section .col-md-5 {
    justify-content: center !important;
  }

  .footer-section .d-flex {
    justify-content: center !important;
  }

  .footer-section .social-icon {
    margin: 0 5px;
  }
}

.appointment-section {
   /* ye value adjust karke overlap control kar sakte ho */
  position: relative;
  z-index: 5;
  bottom: 0;
}

/* Remove extra space from section */
.appointment-section {
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove container default Bootstrap padding */
.appointment-section .container {
  padding-left: 10px;
  padding-right: 10px;
}

/* Reduce card internal spacing slightly but keep layout */
.appointment-card {
  
  margin: 0 !important;
} 
@media (max-width: 991px) {
    #mainNavbar {
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 10px;
        margin-top: 8px;
    }

    #mainNavbar .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Dropdown mobile pe hidden rakho jab tak click na ho */
    #mainNavbar .dropdown-menu {
        display: none;
        background: rgba(20, 20, 20, 0.95);
        border: none;
        padding-left: 15px;
        position: static !important;
        transform: none !important;
    }

    #mainNavbar .dropdown-menu.show {
        display: block;
    }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .custom-card {
    width: 200px;
  }
  .custom-card img {
    height: 150px;
  }
}

@media (max-width: 490px) {
  .infinite-carousel {
    overflow: hidden;
    margin-top: -50px; 
  }
}
@media (max-width: 476px) {
  .appointment-section {
    top: -160px;
    bottom: -50px;
  }

  .appointment-card {
    max-width: 100%;
  }
}

.phone {
  color: #e63946;
  font-weight: 600;
}

.email {
  color: #e63946;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e63946;
  color: #fff;
}
.hover-blue {
  transition: all 0.3s ease-in-out; /* smooth animation */
  cursor: default; /* click effect disable look */
}

.hover-blue:hover {
  background-color: #0d6efd; /* Bootstrap primary blue */
  color: white; /* text color change for contrast */
  transform: translateY(-6px); /* subtle lift effect */
  box-shadow: 0 12px 35px rgba(0,0,0,0.15); /* noticeable but clean */
  font-weight: bold;
}
.map-container {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  overflow: hidden;
}
.font-ui {
  font-family: 'Poppins', sans-serif;
font-size: larger;
}

/* LEFT SIDE */
.hero-left {
  background-color: #0a7c8c;
  color: white;
}
.hero-right {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* optional (empty space clean lage) */
}
/* Nav Links */
.navbar .nav-link {
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover Red */
.navbar .nav-link:hover {
  color: #fc0720;
}

/* Active Link Red */
.navbar .active-nav {
  color: #f7f6f6 !important;
}

/* Underline Animation */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #dc3545;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .active-nav::after {
  width: 100%;
}

/* Dropdown Styling */
.dropdown-menu {
  border-radius: 10px;
  padding: 5px 0;

}

.dropdown-item {
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #dc3545;
  color: #fff;
}

.dropdown-menu {
  border: none !important;
  margin-top: 8px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, margin-top 0.2s ease;
}

.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.image-box{
  width: 100%;
  overflow: hidden;
}
.image-box img{
  transition: opacity 0.45s ease-in-out;
}

.image-box img.fade-out{
  opacity: 0;
}

.image-box img{
  width: 100%;
  height: 100%;
  max-height: 690px;   /* tum change kar sakte ho */
  object-fit: cover;  /* 🔥 ye hi main cheez hai */
  display: block;
}
.image-grid{
  height: 100%;
}

.img-box{
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

 
    .carousel-container {
      position: relative;
    z-index: 10;
      width: 100%;
      padding: 50px 0;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.5s linear;
    }

    .carousel-card {
      flex: 0 0 16.66%; /* 6 cards per view */
      max-width: 200px;  /* max width for professional look */
      height: 250px;     /* fixed height */
      background: #ecebeb;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .carousel-card img {
      width: 100%;
      height: 90%;
      object-fit: cover;
    }

    .carousel-card h5 {
      margin: 10px 0;
      font-size: 1rem;
    }

    .carousel-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
  
  /* Only darken images */
  .img-dark {
    width: 100%;
    height: auto;
    display: block;
    /* Darken the image */
    filter: brightness(60%);
    transition: filter 0.3s;
  }

  /* Optional: lighten slightly on hover */
  .carousel-card:hover .img-dark {
    filter: brightness(70%);
  }


  /* Professional Hover Effect - reusable class */
  .hover-professional {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .hover-professional:hover {
    transform: translateY(-8px); /* slight lift */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* smooth shadow */
  }

.scroll-pro {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: 
    opacity 0.8s ease-out,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.scroll-pro.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.2,.65,.3,1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
.mission-vision-card {
  background-color: #fff;
  transition: all 0.35s ease;
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  border-color: #0d6efd; /* Bootstrap primary */
  box-shadow: 0 14px 35px rgba(13, 110, 253, 0.15);
}

.mission-vision-card h4 {
  transition: color 0.3s ease;
}

.mission-vision-card:hover h4 {
  color: #0d6efd;
}

/* Optional hover lift */
.hover-lift:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}
/* ========================================
   SECTION HEADER STYLING
======================================== */
.section-header {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.works-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    letter-spacing: 2px;
}

.title-word {
    display: inline-block;
    color: #2c3e50;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease-out;
}

.title-word.highlight {
    background: linear-gradient(135deg, #2573e9 0%, #ee2005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #df5a02);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.4s backwards;
}

/* Animated Underline */
.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #a24e4b, transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: shimmerLine 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

/* Subtitle */
.works-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
    font-style: italic;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1.1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .works-title {
        gap: 10px;
        letter-spacing: 1px;
    }
    
    .title-word.highlight::after {
        height: 3px;
        bottom: -3px;
    }
    
    .title-underline {
        width: 80px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .works-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
   .section-header {
        margin-top: -130px;
        margin-bottom: 10px;
      
    }
    .works-title {
        gap: 8px;
        letter-spacing: 0.5px;
    }
    
    .title-underline {
        width: 60px;
    }
    
    .works-subtitle {
        font-size: 0.85rem;
    }
}

/* Hover Effect on Title */
.title-word:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.title-word.highlight:hover {
    filter: brightness(1.2);
}
.common{
  position: absolute;
  z-index: 10;
  background: transparent;
  font-size: large;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* LEFT SIDE */
.hero-left {
  background: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* FORM CARD */
.form-card {
  background: #fff;
  padding: 30px;
  width: 80%;
  max-width: 420px;
  border: 1px solid #ddd;
  border-radius: 14px;
}
.specialists-section {
  background: rgba(0,0,0,0.05);
  padding: 40px 15px;
}

.specialist-img-box {
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.specialist-img-box .specialist-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid rgba(0,0,0,0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.specialist-img-box:hover .specialist-img {
  transform: scale(1.08);
}

.specialist-img-box.active .specialist-img {
  opacity: 1;
  transform: scale(1.1);
  border-color: #d2e4f3;
}

.specialist-img-box.inactive .specialist-img {
  opacity: 0.4;
  transform: scale(0.95);
}

.specialist-data {
  background: rgba(255,255,255,0.12);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.specialist-info h4 {
  font-weight: 800;
  margin-bottom: 10px;
}

.specialist-info p {
  font-size: 0.95rem;
  color: #1a64ec;
}
/* RIGHT SIDE */
.hero-right {
  position: relative;
  width: auto;
  height: auto; /* 🔥 FIXED VISUAL HEIGHT */
  overflow: hidden;
}


.hero-left {
  background: #0d6efd;
  display: flex;
  flex-direction: column; /* 🔥 IMPORTANT */
  align-items: center;
  justify-content: center;
}/* PERFECT IMAGE FIX */
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* industry standard */
 /* smart crop */
  display: block;
}/* HERO IMAGE */
/* HERO IMAGE */
.hero-section {
  height: 100vh;
  min-height: 600px;
}

.hero-image {
  background: url("../images/ Abandoned\ car\ factory\ old\ steel\ machinery\,\ ruined\ workshop\,\ unhygienic\ occupation\ generated\ by\ AI\ for\ free.jpg") center center / cover no-repeat;
  height: 80%;
  width: 100%;
}

.slide-left,
.slide-right {
  opacity: 0;
  transition: all 0.9s cubic-bezier(.2,.65,.3,1);
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-80px);
}

.slide-right {
  transform: translateX(80px);
}

.slide-left.active,
.slide-right.active {
  opacity: 1;
  transform: translateX(0);
}
/* Bouncy keyframes */
@keyframes bounceY {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }   /* bounce up */
  60% { transform: translateY(-10px); }   /* smaller bounce */
}


/* ========================================
   HERO IMAGE CONTAINER - FULLY RESPONSIVE
======================================== */
.hero-image {
   
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) contrast(1.1);
}

/* Dark gradient overlay at top for navbar visibility */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Additional vignette effect for overall image depth */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* ========================================
   HERO TEXT OVERLAY - RESPONSIVE
======================================== */
.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  
    backdrop-filter: blur(1px);
    padding-top: 140px;
  
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
    width: 100%;

}
.brand-badge .elfsight-app-626bae25-7b87-4b87-95b9-4452c96330ea {
    transform: scale(0.90);
    transform-origin: left center;
}
/* ========================================
   MAIN TITLE - RESPONSIVE
======================================== */
.hero-main-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

/* ========================================
   ROTATING TEXT CAROUSEL - RESPONSIVE
======================================== */
.carousel-text-wrapper {
    margin-bottom: clamp(20px, 4vw, 25px);
}

.rotating-text-container {
    height: clamp(50px, 10vw, 80px);
    overflow: hidden;
    position: relative;
}

.rotating-text {
    display: flex;
    flex-direction: column;
    animation: rotateText 12s infinite;
    
    
}

.text-item {
    font-size: clamp(1rem, 3.5vw, 2rem);
    font-weight: 600;
    height: clamp(50px, 10vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f8fa 0%, #fd3402 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    padding: 0 4px;
    line-height: 1.3;
}

/* ========================================
   TAGLINE - RESPONSIVE
======================================== */
.hero-tagline {
    font-size: clamp(0.85rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    
    letter-spacing: clamp(0.5px, 0.15vw, 1px);
    animation: fadeIn 1s ease-out 1s backwards;
    padding: 0 5px;
    line-height: 1.5;
}

/* ========================================
   CTA BUTTONS - RESPONSIVE
======================================== */
.hero-cta-buttons {
    display: flex;
    gap: clamp(12px, 2.5vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s backwards;
    padding: 0 5px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 10px);
    padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(13px, 2vw, 16px);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    top: 0;
}

.primary-cta {
    background: linear-gradient(135deg, #e23d14 0%, #ec0303 100%);
    color: white;
 
}

.primary-cta:hover {
    transform: translateY(-5px);
   
    color: rgb(252, 252, 253);
}

.primary-cta svg {
    transition: transform 0.3s ease;
    width: clamp(16px, 2.5vw, 20px);
    height: clamp(16px, 2.5vw, 20px);
}

.primary-cta:hover svg {
    transform: translateX(5px);
}

.secondary-cta {
    background: rgba(105, 126, 219, 0.212);
   
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.863);
    border-color: rgba(255, 255, 255, 0.603);
    transform: translateY(-5px);
    color: rgb(247, 8, 8);
}
.map-section {
  margin-top: 60px;
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 400px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(105%);
}

    .contact-section {
  background: #f8f9fa;
}

/* LEFT SIDE */
.contact-info {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.info-card {
  padding: 14px 16px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-4px);
}

.info-card:hover p {
  color: #fff;
}

/* RIGHT SIDE */
.contact-form {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* INPUT STYLE */
.custom-input {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.15);
}

/* BUTTON */
.submit-btn {
  background: #0d6efd;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.glass-card {
  backdrop-filter: blur(8px);
  background: rgba(55, 57, 68, 0.432);
  transition: 0.3s ease;
}

.glass-card:hover {
  background: rgba(85, 79, 79, 0.007);
  box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}/* More noticeable float */
@keyframes floatY {
  0%   { transform: translateY(0px); }
  25%  { transform: translateY(-15px); }  /* more lift */
  50%  { transform: translateY(0px); }
  75%  { transform: translateY(15px); }   /* move down too */
  100% { transform: translateY(0px); }
}

/* Apply animation */
.float-animate {
  animation: floatY 5s ease-in-out infinite;  /* slower & smoother */
  will-change: transform;
}



@media (max-width: 768px) {
  .map-responsive { height: 350px; }
}

@media (max-width: 500px) {
  .map-responsive { height: 280px; }
}


/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotateText {
    0%, 25% { transform: translateY(0); }
    30%, 55% { transform: translateY(calc(-1 * clamp(50px, 10vw, 80px))); }
    60%, 85% { transform: translateY(calc(-2 * clamp(50px, 10vw, 80px))); }
    90%, 100% { transform: translateY(calc(-3 * clamp(50px, 10vw, 80px))); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 991px) {
    #mainNavbar {
        background: rgba(0, 0, 0, 0.92);
        border-radius: 10px;
        padding: 10px;
        margin-top: 8px;
    }

    #mainNavbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none !important;
        background: transparent !important;
        padding-left: 15px !important;
        display: none !important;
        float: none !important;
        min-width: unset !important;
        box-shadow: none !important;
    }

    #mainNavbar .dropdown-menu.show {
        display: block !important;
    }

    #mainNavbar .dropdown-item {
        color: #fff !important;
        font-size: 14px !important;
        padding: 6px 10px !important;
    }
}

/* ========================================
   TABLET RESPONSIVE (768px - 1024px)
======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-image {
        height: 85vh;
        min-height: 550px;
    }
    
    .hero-text-overlay {
        padding-top: 100px;
    }
    
    .hero-image::before {
        height: 220px;
    }
}

/* ========================================
   MOBILE LANDSCAPE (481px - 767px)
======================================== */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-image {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-text-overlay {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .hero-image::before {
        height: 200px;
    }
    
    .brand-badge {
        margin-bottom: 20px;
        padding: 6px 16px;
    }
    
    .hero-cta-buttons {
        gap: 15px;
    }
}

/* ========================================
   MOBILE PORTRAIT (320px - 480px)
======================================== */
@media (max-width: 480px) {
    .hero-image {
        height: 70vh;
        min-height: 450px;
        
    }
    
    .hero-image::before {
        height: 180px;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            transparent 100%
        );
    }
    
    .hero-text-overlay {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .brand-badge {
        margin-bottom: 15px;
        padding: 5px 14px;
        gap: 6px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .text-item {
        padding: 0 10px;
    }
}
/* ========================================
   NAVBAR - VISIBLE & RESPONSIVE
======================================== */
.navbar {
    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.3) !important;
   
    
    transition: all 0.3s ease;
}
/* Make navbar text more visible with better contrast */
.navbar-brand {

    position: relative;
    z-index: 10000;
}

.navbar-brand .shop-name {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    font-weight: 600 !important;
}

.navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* NAVBAR LINKS */
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Underline always for active */
.active-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff4d4d;
}

/* Hover underline for others */
.navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff4d4d;
  transition: 0.3s ease;
}

/* Hover color */
.navbar .nav-link:hover {
  color: #ff4d4d;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
}

/* TOGGLER RED FOR SMALL SCREENS */
.red-toggler {
  border: none;
}

.navbar-toggler.red-toggler .navbar-toggler-icon {
  background-color: #ff4d4d; /* red toggler */
}


/* Dropdown menu visibility */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: rgba(245, 241, 241, 0.9) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(248, 4, 4, 0.932) !important;
    color: #f5f2f2 !important;
}

/* ========================================
   NAVBAR MOBILE RESPONSIVE
======================================== */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(0, 0, 0, 0.5) !important;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    
    .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
}

@media (max-width: 576px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-brand img {
        height: 45px !important;
    }
}

/* ========================================
   ENSURE NAVBAR STAYS ABOVE HERO
======================================== */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-text-overlay {
    z-index: 2;
}

.navbar {
    z-index: 9999 !important;
}

/* ========================================
   EXTRA SMALL MOBILE (< 360px)
======================================== */
@media (max-width: 360px) {
    .hero-image {
        height: 65vh;
        min-height: 400px;
      
    }
    
    .hero-text-overlay {
        padding-top: 70px;
    }
    
    .hero-image::before {
        height: 160px;
    }
    
    .brand-badge {
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .hero-cta-buttons {
        max-width: 260px;
    }
}

/* ========================================
   LARGE SCREENS (> 1400px)
======================================== */
@media (min-width: 1400px) {
    .hero-text-overlay {
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ========================================
   EXTRA LARGE SCREENS (> 1920px)
======================================== */
@media (min-width: 1920px) {
    .hero-image {
        height: 90vh;
    }
    
    .hero-text-overlay {
        padding-top: 160px;
    }
    
    .hero-content {
        max-width: 1400px;
    }
}
@media (max-width: 551px) {
  .col-md-3 img {
    height: 110px;
  }
}

@media (min-width: 1200px) {
  .col-md-3 img {
    height: 110px;
  }
}

/* RESPONSIVE FIX (MOBILE) */

/* ---------------- Mobile Responsive ---------------- */
@media (max-width: 576px) {
  .specialist-card {
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  .specialist-card img {
    width: 150px;
    height: 150px;
    margin: 0 0 10px 0;
  }
  .specialist-info ul {
    padding-left: 0;
    list-style-position: inside;
  }
}

  /* Medium screens: slightly smaller height */
  @media (min-width: 768px) {
    .img-mini {
      height: 90px;
    }
  }
  /* FAQ accordion default state */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 0;
}

/* Open state */
.faq-item.active p {
  max-height: 200px; /* 3–4 lines ke liye enough */
}

/* Plus rotate (professional touch) */
.faq-plus {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
}


  .img-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .shop-name {
  font-size: 20px; /* default desktop size */
}

/* Tablets */
@media (max-width: 992px) {
  .shop-name {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .shop-name {
    font-size: 13px;
  }
}

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .carousel-card { flex: 0 0 20%; max-width: 180px; }
    }

    @media (max-width: 992px) {
      .carousel-card { flex: 0 0 25%; max-width: 160px; }
    }

    @media (max-width: 768px) {
      .carousel-card { flex: 0 0 33.33%; max-width: 140px; }
    }

    @media (max-width: 576px) {
      .carousel-card { flex: 0 0 50%; max-width: 120px; }
      
    }   
/* Default: jo tum already use kar rahe ho – untouched */

/* Small screens fix */
@media (max-width: 576px) {
  .form-card {
    width: 100%;
    max-width: 100%;
  }
}
/* Small screens fix */
@media (max-width: 576px) {
  .form-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 490px) {
  .carousel-track {
    animation: scrollMobile 18s linear infinite;
  }
}

@keyframes scrollMobile {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 991.98px) {
  .whatsapp-floating-btn {
    top: 110px !important;
    z-index: 1031 !important;
  }
}

@media (max-width: 576px) {
  .whatsapp-floating-btn {
    top: 100px !important;
    z-index: 1031 !important;
  }
}