@media (min-width: 320px) and (max-width: 480px) {

  .fullscreen-slider {
      
                  /*height: 0dvh;*/

        /*height: 100vh !important;*/
        min-height: 34vh !important;
        max-height: 34vh !important;
        width: 100% !important;
    }
               .slider-img {
                    top:41px !important;
            height: auto !important;
            width:100% !important;
           
        }

}














    /* WhatsApp Button Styles */
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
      background-color: #128C7E;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
      }
    }






/* *************************************** COMPLETE RESPONSIVE HEADER CSS *************************************** */

/* Reset and Base Styles */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
  padding-top: 140px; /* Space for fixed header */
}

/* Header Container */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(113, 87, 160, 0.1);
  transition: all 0.3s ease;
  animation: slideInFromTop 0.6s ease-out;
  transform: none !important;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(113, 87, 160, 0.15);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(135deg, #7157A0 0%, #8B6BC4 100%);
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.top-bar:hover::before {
  left: 100%;
}

/* Contact Information */
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.contact-info i {
  color: #FFD700;
}

.contact-info span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFD700;
  transition: width 0.3s ease;
}

.contact-info span:hover::after {
  width: 100%;
}

.divider {
  color: rgba(255, 255, 255, 0.6);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.social-icons i {
  font-size: 18px;
  color: white;
  display: block;
  line-height: 1;
  text-align: center;
}

/* Social Icon Colors */
.social-icons .youtube-icon i {
  color: #FF0000;
}

.social-icons .facebook-icon i {
  color: #1877F2;
}

.social-icons .instagram-icon i {
  color: #E4405F;
}

/* Fallback Icons */
.social-icons .youtube-icon i::before {
  content: "▶";
  font-style: normal;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.social-icons .facebook-icon i::before {
  content: "f";
  font-style: normal;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.social-icons .instagram-icon i::before {
  content: "📷";
  font-style: normal;
  font-family: Arial, sans-serif;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.social-icons a:hover::before {
  width: 40px;
  height: 40px;
}

/* Appointment Button */
.top-right-buttons {
  display: flex;
  align-items: center;
}

.appointment-btn {
  background: #FFD700;
  color: #7157A0;
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.appointment-btn::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 ease;
}

.appointment-btn:hover::before {
  left: 100%;
}

.appointment-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Logo and Navigation Container */
.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(113, 87, 160, 0.1));
}

.logo:hover img {
  filter: drop-shadow(0 4px 16px rgba(113, 87, 160, 0.2));
}

/* Desktop Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #7157A0;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(113, 87, 160, 0.1), transparent);
  transition: left 0.5s ease;
}

nav a:hover::after {
  left: 100%;
}

nav a:hover {
  color: #7157A0;
  background: rgba(113, 87, 160, 0.1);
}

nav a:hover::before {
  width: 80%;
}

nav a.active {
  color: #7157A0;
  background: rgba(113, 87, 160, 0.1);
}

nav a.active::before {
  width: 80%;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #7157A0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
  overflow: hidden;
}

.menu-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(113, 87, 160, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.menu-toggle:hover::before {
  width: 40px;
  height: 40px;
}

.menu-toggle:hover {
  background: rgba(113, 87, 160, 0.1);
  transform: scale(1.1);
}

.menu-toggle.active {
  color: #fff;
  background: #7157A0;
}

/* Close Menu Button */
.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #7157A0;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1002;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu:hover {
  background: rgba(113, 87, 160, 0.1);
  transform: scale(1.1);
}

/* Hide close button on desktop */
@media (min-width: 769px) {
  .close-menu {
    display: none !important;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(113, 87, 160, 0.95) 0%, rgba(139, 107, 196, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
  animation: fadeInScale 0.3s ease-out;
}

/* Hide mobile overlay on desktop */
@media (min-width: 769px) {
  .mobile-nav-overlay {
    display: none !important;
  }
  
  .mobile-nav-overlay.active {
    display: none !important;
  }
}

/* Close button in mobile overlay */
.mobile-nav-overlay .close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1002;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .close-menu:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.mobile-nav-overlay .close-menu:active {
  transform: scale(0.95);
}

/* Hide mobile overlay close button on desktop */
@media (min-width: 769px) {
  .mobile-nav-overlay .close-menu {
    display: none !important;
  }
}

/* Mobile Navigation Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.5s ease-out;
  animation-fill-mode: both;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 80%;
  max-width: 300px;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.mobile-nav a:hover::before {
  left: 0;
}

.mobile-nav a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile nav animation delays */
.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav a:nth-child(7) { animation-delay: 0.7s; }

/* Ensure mobile overlay close button is always visible when active */
.mobile-nav-overlay.active .close-menu {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Additional animations for mobile menu */
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #7157A0, #8B6BC4, #7157A0);
  width: 0;
  transition: width 0.3s ease;
}

header.scrolled .scroll-indicator {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info {
    font-size: 0.8rem;
    gap: 10px;
  }
  
  .social-icons {
    gap: 8px;
  }
  
  .social-icons i {
    font-size: 16px;
  }
  
  nav {
    gap: 20px;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 160px;
  }
  
  .top-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 15px;
  }
  
  .contact-info {
    order: 1;
    font-size: 0.75rem;
  }
  
  .social-icons {
    order: 2;
  }
  
  .top-right-buttons {
    order: 3;
  }
  
  .appointment-btn {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  
  .logo-nav {
    padding: 10px 15px;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Hide desktop navigation */
  nav {
    display: none;
  }
  
  /* Show hamburger menu */
  .menu-toggle {
    display: block;
  }
  
  /* Show close menu button on mobile only */
  .close-menu {
    display: flex !important;
  }
  
  /* Show mobile overlay close button on mobile only */
  .mobile-nav-overlay .close-menu {
    display: flex !important;
  }
  
  /* Ensure social icons are visible on mobile */
  .social-icons i {
    font-size: 16px;
    display: block !important;
  }
  
  .mobile-nav a {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInFromLeft 0.5s ease-out forwards;
  }
  
  .mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
  .mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
  .mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
  .mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
  .mobile-nav a:nth-child(6) { animation-delay: 0.6s; }
  .mobile-nav a:nth-child(7) { animation-delay: 0.7s; }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 8px 10px;
  }
  
  .contact-info {
    font-size: 0.7rem;
    gap: 8px;
  }
  
  .social-icons i {
    font-size: 14px;
  }
  
  .logo-nav {
    padding: 8px 10px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .mobile-nav a {
    font-size: 1.3rem;
    padding: 12px 25px;
  }
  
  .close-menu {
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    display: flex !important;
  }
  
  /* Ensure social icons are visible on small mobile */
  .social-icons i {
    font-size: 14px;
    display: block !important;
  }
  
  /* Ensure mobile overlay close button is visible */
  .mobile-nav-overlay .close-menu {
    display: flex !important;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 2px 20px rgba(113, 87, 160, 0.1);
  }
  50% {
    box-shadow: 0 4px 30px rgba(113, 87, 160, 0.2);
  }
}

@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* *************************************** HEADER CSS END *************************************** */

/* Ensure all containers don't overflow */
.container, .container3, .services-section, .doctor-section, .hero-section3 {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Ensure images don't cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all sections don't overflow */
section {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ***************************************  fullscreen-slider Start  ************************* */

.fullscreen-slider {
  position: relative;
  width: 100%;
  /*height: 120vh;*/
  min-height: 600px;
  max-height: 120vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Remove any background or overlay */
  background: #fff !important;
}

.fullscreen-slider::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: none !important;
  z-index: 3;
  pointer-events: none;
}

.slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  background: none !important;
  min-height: 0 !important;
  max-height: none !important;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(135deg, #7157A0 0%, #8B6BC4 100%);
}

.slider-img.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
}

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 15px 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-indicator.active {
  background: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .fullscreen-slider, .slider-img {
    min-height: 500px;
  }
  
  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .slider-indicators {
    bottom: 25px;
    gap: 10px;
  }
  
  .slider-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 900px) {
  .fullscreen-slider, .slider-img {
    min-height: 450px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    padding: 12px 10px;
  }
  
  .slider-indicators {
    bottom: 20px;
    gap: 8px;
  }
  
  .slider-indicator {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 768px) {
  .fullscreen-slider {
    /*height: 100vh;*/
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
  }
  .slider-img {
    /*height: 100vh;*/
    min-height: 100vh;
    max-height: 100vh;
    width: 100vw;
    object-fit: contain;
    object-position: center center;
    background: none !important;
  }
  
  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    padding: 10px 8px;
  }
  
  .slider-nav.prev {
    left: 15px;
  }
  
  .slider-nav.next {
    right: 15px;
  }
  
  .slider-indicators {
    bottom: 15px;
    gap: 6px;
  }
  
  .slider-indicator {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .fullscreen-slider {
    /*height: 100vh;*/
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
  }
  .slider-img {
    /*height: 100vh;*/
    min-height: 100vh;
    max-height: 100vh;
    width: 100vw;
    object-fit:contain;
    object-position: center center;
    background: none !important;
  }
  
  
  
  
  
  .slider-nav {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    padding: 8px 6px;
  }
  
  .slider-nav.prev {
    left: 10px;
  }
  
  .slider-nav.next {
    right: 10px;
  }
  
  .slider-indicators {
    bottom: 10px;
    gap: 5px;
  }
  
  .slider-indicator {
    width: 5px;
    height: 5px;
  }
}

/* Very small mobile devices (320px width) */
@media (max-width: 320px) {
  .fullscreen-slider {
    /*height: 50vh;*/
    min-height: 200px;
    max-height: 40vh;
    width: 100%;
  }
  
  .slider-img {
    /*height: 50vh;*/
    min-height: 250px;
    max-height: 50vh;
    width: 100%;
    object-fit: contain;
    object-position: center center;
    background: linear-gradient(135deg, #7157A0 0%, #8B6BC4 100%);
  }
  
  .slider-nav {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    padding: 6px 4px;
  }
  
  .slider-nav.prev {
    left: 8px;
  }
  
  .slider-nav.next {
    right: 8px;
  }
  
  .slider-indicators {
    bottom: 8px;
    gap: 4px;
  }
  
  .slider-indicator {
    width: 4px;
    height: 4px;
  }
}

/* Handle mobile browsers with dynamic viewport */
@supports (height: 100dvh) {
  .fullscreen-slider {
    /*height: 120dvh;*/
  }
  
  .slider-img {
    /*height: 120dvh;*/
  }
  
  @media (max-width: 768px) {
    .fullscreen-slider {
      /*height: 70dvh;*/
    }
    
    .slider-img {
      height: 70dvh;
    }
  }
  
  @media (max-width: 480px) {
    .fullscreen-slider {
      height: auto !important;
    }
    
    .slider-img {
      /*height: 60dvh;*/
    }
  }
  
  @media (max-width: 320px) {
    .fullscreen-slider {
      /*height: 50dvh;*/
    }
    
    .slider-img {
      /*height: 50dvh;*/
    }
  }
}

/* Handle Safari and older browsers */
@supports not (height: 100dvh) {
  .fullscreen-slider {
    /*height: 120vh;*/
  }
  
  .slider-img {
    /*height: 120vh;*/
  }
  
  @media (max-width: 768px) {
    .fullscreen-slider {
      /*height: 70vh;*/
    }
    
    .slider-img {
      /*height: 70vh;*/
    }
  }
  
  @media (max-width: 480px) {
    .fullscreen-slider {
      /*height: 60vh;*/
    }
    
    .slider-img {
      /*height: 60vh;*/
    }
  }
  
  @media (max-width: 320px) {
    .fullscreen-slider {
      /*height: 50vh;*/
    }
    
    .slider-img {
      /*height: 50vh;*/
    }
  }
}

/* Optional: Add smooth fade for overlay */
.fullscreen-slider::after {
  transition: background 0.5s cubic-bezier(.4,0,.2,1);
}




/* ****************************************fullscreen-slider end ************************************************************* */


/* *******************************************************************Hero Section Start ******************************** */

.hero-section3 {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #7157A0 0%, #8B6BC4 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  /*margin-top: 20px;*/
}

.hero-section3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/image/pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.container3 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-section3 h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 1s ease-out;
}

.hero-section3 h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #FFD700;
  font-weight: 500;
  animation: fadeInUp 1s ease-out;
}

.intro3, .founder3 {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.5s ease-out;
}

.vision-box3 {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 3rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 2s ease-out;
}

.vision-box3 h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.vision-box3 p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section3 {
    padding: 4rem 1rem;
  }

  .hero-section3 h1 {
    font-size: 2.5rem;
  }

  .hero-section3 h2 {
    font-size: 1.5rem;
  }

  .intro3, .founder3 {
    font-size: 1rem;
  }

  .vision-box3 {
    padding: 1.5rem;
  }

  .vision-box3 h3 {
    font-size: 1.5rem;
  }

  .vision-box3 p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section3 {
    padding: 3rem 1rem;
  }

  .hero-section3 h1 {
    font-size: 2rem;
  }

  .hero-section3 h2 {
    font-size: 1.2rem;
  }
}

/* ***************************************************** hero-section  End ***************************************    */







/* **********************************************  Doctor section start  ******************************************** */
.doctor-section {
  padding: 40px 20px;
  text-align: center;
  margin-top: 30px;
}

.doctor-section h1 {
  font-size: 5em;
  margin-bottom: 30px;
  color: #fff;
  color: #7157A0;
}

.doctor-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.card {
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(113,87,160,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 240px;
  min-width: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  height: 240px;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 2px 8px rgba(113,87,160,0.08);
  background: #f8f6fc;
  margin: 0 auto;
  display: block;
}

.card h2 {
  color: #7157A0;
  font-size: 1.2em;
  margin: 16px 0 5px;
}

.card p {
  font-size: 1em;
  margin: 0 0 10px;
}

.card button {
  background-color: #7157A0;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1em;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(113,87,160,0.18);
}

.card button:hover {
  background-color: #5c4291;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 36px 18px 28px 18px;
  border: none;
  width: 96%;
  max-width: 420px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 8px 32px rgba(113,87,160,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
  color: #222;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.12rem;
}

.close {
  color: #7157A0;
  float: right;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
  position: absolute;
  right: 18px;
  top: 10px;
  z-index: 10;
}

.close:hover {
  color: #5c4291;
  transform: scale(1.15) rotate(8deg);
}

#modal-body {
  margin-top: 18px;
}

.doctor-profile {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.doctor-profile img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  background: #f8f6fc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(113,87,160,0.13);
  border: 3px solid #f3f0fa;
  margin-bottom: 10px;
  display: block;
}

.doctor-info {
  flex: 1;
  min-width: 0;
}

.doctor-info h2 {
  color: #7157A0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.doctor-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.doctor-info .timing {
  background: #f3f0fa;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #7157A0;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .doctor-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .card img {
    height: 200px;
    max-width: 180px;
  }
  .doctor-profile img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 900px) {
  .doctor-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .card img {
    height: 160px;
    max-width: 140px;
  }
  .doctor-profile img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 700px) {
  .doctor-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card {
    max-width: 98vw;
    min-width: 0;
  }
  .card img {
    height: 120px;
    max-width: 100px;
  }
  .doctor-section h1.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .doctor-profile img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .card img {
    height: 90px;
    max-width: 70px;
  }
  .card {
    padding: 0 2vw;
  }
  .doctor-profile img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
  }
}

/* ***********************************************************Doctor section end ******************************************* */





/* *****************************************   Services Section    ************************ */
.services-section {
  max-width: 1900px;
  margin: 80px auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, #7157A0 0%, #8e6fc4 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(113, 87, 160, 0.2);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #fff, #e8e4ff);
  border-radius: 2px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  padding: 40px 0;
}

.service-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #7157A0, #8e6fc4);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-box:hover::before {
  transform: scaleX(1);
}

.service-box img {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px auto;
  display: block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(113, 87, 160, 0.3));
  object-fit: cover;
  border-radius: 10px;
}

.service-box:hover img {
  transform: scale(1.15) rotate(5deg);
}

.service-box h3 {
  color: #7157A0;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-box p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-box a {
  color: #4A3C6B !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 20px;
  border: 2px solid #4A3C6B;
  border-radius: 25px;
  display: inline-block;
}

.service-box a:hover {
  color: #fff !important;
  background: #4A3C6B;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 60, 107, 0.3);
}

.center-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.center-eye img {
  width: 280px;
  height: 280px;
  animation: pulse 3s infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@media screen and (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .center-eye img {
    width: 200px;
    height: 200px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
    margin: 40px auto;
  }
  
  .services-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .center-eye {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .service-box {
    padding: 30px 20px;
  }
  
  .service-box img {
    width: 100px;
    height: 100px;
  }
  
  .service-box h3 {
    font-size: 1.5rem;
  }
  
  .service-box p {
    font-size: 1rem;
  }
}

.section-title, .service-title {
  color: #7157A0 !important;
  font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(113, 87, 160, 0.08);
}

.services-section .section-title {
  color: #fff !important;
}

@media (min-width: 769px) {
  .service-box img {
    object-fit: contain;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto 25px auto;
    display: block;
  }
}

/* ****************************************************Services section end ************************************* */





/* *******************************************************Media Section Start *****************************************  */



.media-section {
      padding: 4rem 2rem;
      background: #f8f8f8;
      width: 100%;
    }

    .media-section .container {
      max-width: 1800px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .media-section h2 {
      text-align: center;
      color: #7157A0;
      font-size: 2.8rem;
      margin-bottom: 3rem;
      position: relative;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .media-section h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: #7157A0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      padding: 1rem 0;
    }

    @media (max-width: 1600px) {
      .media-section .container {
        max-width: 1400px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      }
    }

    @media (max-width: 1200px) {
      .media-section .container {
        max-width: 1000px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .media-section {
        padding: 3rem 1rem;
      }

      .media-section .container {
        padding: 0 1rem;
      }

      .media-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .media-section {
        padding: 2rem 0.5rem;
      }

      .media-section .container {
        padding: 0 0.5rem;
      }

      .media-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      aspect-ratio: 4/3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(113, 87, 160, 0.95), rgba(113, 87, 160, 0.8));
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      transform: translateY(20px);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay h3 {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
      font-weight: 600;
    }

    .gallery-overlay p {
      font-size: 1rem;
      margin: 0;
      opacity: 0.9;
    }



/* *******************************************************Media Section ENd ***************************************** */













/* ***********************************************WHy Choose us section start****************************** */




      .why-choose-us-layout-section {
      padding: 4rem 2rem;
      background-color: #7157A0;
      text-align: center;
      overflow: visible;
      color: white;
      min-height: 100vh;
    }

    .why-choose-us-layout-section h2 {
      font-size: 2.8rem;
      color: white;
      margin-bottom: 3rem;
      text-transform: uppercase;
      position: relative;
      font-family: 'BankGothic Md BT', 'Bank Gothic', sans-serif;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      padding-top: 20px;
    }

     .why-choose-us-layout-section h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white;
    }

    .why-choose-us-container-two-col {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1600px;
      margin: 0 auto;
      gap: 2rem;
      padding: 2rem 0;
    }

    .why-choose-us-left-col {
      flex: 1;
      min-width: 300px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .character-image {
      max-width: 80%;
      height: auto;
      margin-bottom: 2rem;
    }

    .arrow-graphics {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .arrow-graphics img {
        max-width: 100px;
        height: auto;
        filter: invert(100%);
    }

    .why-choose-us-right-col {
      flex: 1;
      min-width: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem 0;
    }

    .diagram-container {
      position: relative;
      width: 800px;
      height: 800px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }

    .center-eye-wrapper {
      width: 200px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .diagram-eye {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .diagram-points-wrapper {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    .diagram-point {
      position: absolute;
      background-color: white;
      border-radius: 50%;
      width: 180px;
      height: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #333;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 2;
      padding: 1.2rem;
      text-align: center;
      font-size: 1rem;
      line-height: 1.3;
      pointer-events: auto;
      font-weight: 500;
    }

    .diagram-point:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .diagram-point p {
      margin-top: 0.3rem;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: break-word;
      font-size: 0.9rem;
      font-weight: 600;
      color: #7157A0;
    }

    .icon-circle {
      width: 55px;
      height: 55px;
      background-color: #7157A0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.8rem;
    }

    .icon-circle i,
    .icon-circle img {
      color: white;
      font-size: 2rem;
      max-width: 70%;
      max-height: 70%;
      object-fit: contain;
    }

    /* Improved positioning of points around the circle */
    .point-experience {
      top: 5%; left: 50%; transform: translate(-50%, -50%);
    }

    .point-nabh {
      top: 20%; left: 20%; transform: translate(-50%, -50%);
    }

    .point-hospital {
      top: 20%; right: 20%; transform: translate(50%, -50%);
    }

    .point-patients {
      bottom: 20%; right: 20%; transform: translate(50%, 50%);
    }

    .point-team {
      bottom: 20%; left: 20%; transform: translate(-50%, 50%);
    }

    .point-ethical {
      top: 50%; left: 10%; transform: translate(-50%, -50%);
    }

    .point-trust {
      top: 50%; right: 10%; transform: translate(50%, -50%);
    }

    /* Responsive adjustments for the points */
    @media (max-width: 1200px) {
      .diagram-container {
        width: 700px;
        height: 700px;
      }

      .center-eye-wrapper {
        width: 160px;
        height: 160px;
      }

      .diagram-point {
        width: 160px;
        height: 160px;
        padding: 1rem;
        font-size: 0.9rem;
      }

      .diagram-point p {
        font-size: 0.8rem;
        font-weight: 600;
      }

      .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
      }

      .icon-circle i,
      .icon-circle img {
        font-size: 1.8rem;
        max-width: 65%;
        max-height: 65%;
      }

      .point-experience {
        top: 5%; left: 50%; transform: translate(-50%, -50%);
      }

      .point-nabh {
        top: 20%; left: 20%; transform: translate(-50%, -50%);
      }

      .point-hospital {
        top: 20%; right: 20%; transform: translate(50%, -50%);
      }

      .point-patients {
        bottom: 20%; right: 20%; transform: translate(50%, 50%);
      }

      .point-team {
        bottom: 20%; left: 20%; transform: translate(-50%, 50%);
      }

      .point-ethical {
        top: 50%; left: 10%; transform: translate(-50%, -50%);
      }

      .point-trust {
        top: 50%; right: 10%; transform: translate(50%, -50%);
      }
    }

    @media (max-width: 992px) {
      .why-choose-us-container-two-col {
        flex-direction: column;
        gap: 3rem;
      }

      .why-choose-us-right-col {
        min-width: 100%;
      }

      .diagram-container {
        width: 600px;
        height: 600px;
      }

      .center-eye-wrapper {
        width: 140px;
        height: 140px;
      }

      .diagram-point {
        width: 140px;
        height: 140px;
        padding: 0.8rem;
        font-size: 0.85rem;
      }

      .diagram-point p {
        font-size: 0.75rem;
        font-weight: 600;
        -webkit-line-clamp: 2;
      }

      .icon-circle {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
      }

      .icon-circle i,
      .icon-circle img {
        font-size: 1.6rem;
        max-width: 65%;
        max-height: 65%;
      }
    }

    @media (max-width: 768px) {
      .why-choose-us-layout-section {
        padding: 3rem 1rem;
      }

      .why-choose-us-layout-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
      }

      .why-choose-us-container-two-col {
        gap: 2rem;
      }

      .diagram-container {
        width: 350px;
        height: 350px;
      }

      .center-eye-wrapper {
        width: 80px;
        height: 80px;
      }

      .diagram-point {
        width: 110px;
        height: 110px;
        padding: 0.6rem;
        font-size: 0.75rem;
      }

      .diagram-point p {
        font-size: 0.65rem;
        font-weight: 600;
        -webkit-line-clamp: 2;
        margin-top: 0.2rem;
      }

      .icon-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 0.4rem;
      }

      .icon-circle i,
      .icon-circle img {
        font-size: 1.4rem;
        max-width: 70%;
        max-height: 70%;
      }
    }

    @media (max-width: 480px) {
      .why-choose-us-layout-section {
        padding: 2rem 0.5rem;
      }

      .why-choose-us-layout-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
      }

      .why-choose-us-container-two-col {
        gap: 1.5rem;
      }

      .diagram-container {
        width: 280px;
        height: 280px;
      }

      .center-eye-wrapper {
        width: 60px;
        height: 60px;
      }

      .diagram-point {
        width: 90px;
        height: 90px;
        padding: 0.4rem;
        font-size: 0.65rem;
      }

      .diagram-point p {
        font-size: 0.55rem;
        font-weight: 600;
        -webkit-line-clamp: 2;
        margin-top: 0.15rem;
      }

      .icon-circle {
        width: 35px;
        height: 35px;
        margin-bottom: 0.3rem;
      }

      .icon-circle i,
      .icon-circle img {
        font-size: 1.2rem;
        max-width: 70%;
        max-height: 70%;
      }
    }





    /* ***********************************************WHy Choose us section ENd ****************************** */






 .google-reviews-section {
      padding: 4rem 2rem;
      background: #7157A0; /* Updated background color */
      color: white; /* Text color for the section */
      text-align: center;
      overflow: hidden;
    }

    .reviews-title {
      text-align: center;
      color: white; /* Title color */
      font-size: 2.8rem; /* Adjusted font size */
      margin-bottom: 3rem; /* Adjusted margin */
      position: relative;
      font-weight: 700; /* Added font weight */
      text-transform: uppercase; /* Added uppercase */
      letter-spacing: 2px; /* Added letter spacing */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Adjusted shadow */
      padding-top: 20px; /* Add padding to prevent overlap */
    }

    .reviews-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white; /* White underline for dark background */
    }

    .reviews-content-wrapper {
      max-width: 800px; /* Adjust as needed */
      margin: 0 auto;
    }

    .see-video-link {
      display: inline-block;
      margin-bottom: 2rem;
      font-size: 1.2rem;
      color: white;
      text-decoration: none;
      position: relative;
      padding-bottom: 5px;
    }

    .see-video-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: white;
      transition: width 0.3s ease-in-out;
    }

    .see-video-link:hover::after {
      width: 0;
    }

    .reviews-stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
      gap: 2rem; /* Space between stat items */
      margin-top: 2rem;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      color: white; /* Stat numbers color */
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      color: white; /* Stat labels color */
    }

    .leave-review-link {
      display: inline-block;
      margin-top: 3rem;
      padding: 1rem 2rem;
      background: white;
      color: #7157A0; /* Button text color */
      text-decoration: none;
      border-radius: 25px; /* Rounded corners */
      font-size: 1.1rem;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .leave-review-link:hover {
      background: #f0f0f0; /* Slightly darker on hover */
    }

    /* Responsive adjustments for the new layout */
    @media (max-width: 768px) {
      .google-reviews-section {
        padding: 3rem 1rem;
      }

      .reviews-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }

      .reviews-stats {
        flex-direction: column; /* Stack stats vertically on smaller screens */
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      .stat-label {
        font-size: 0.9rem;
      }

      .leave-review-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .google-reviews-section {
        padding: 2rem 0.5rem;
      }

      .reviews-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
      }

      .reviews-stats {
        gap: 1rem;
      }

      .stat-number {
        font-size: 2rem;
      }

      .stat-label {
        font-size: 0.8rem;
      }

      .leave-review-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }





















/* ***********************************************************Google section start ********************************** */





     /* Add styles for the new Google Review Slider section */
    .google-review-slider-section {
        padding: 4rem 2rem;
        background: #f8f8f8; /* Light background to contrast with purple */
        text-align: center;
        overflow: hidden;
    }

    .review-slider-title {
        text-align: center;
        color: #7157A0; /* Purple title */
        font-size: 2.8rem;
        margin-bottom: 3rem;
        position: relative;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .review-slider-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #7157A0; /* Purple underline */
    }

    .review-slider-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        padding: 0 40px; /* Add padding for navigation arrows */
        overflow: hidden;
    }

    .review-slider-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.5s ease-in-out;
    }

    .review-card-google {
        flex: 0 0 350px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(113, 87, 160, 0.15);
        padding: 1.8rem;
        text-align: left;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 280px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(113, 87, 160, 0.1);
        text-decoration: none;
        color: inherit;
    }

    .review-card-google:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(113, 87, 160, 0.2);
        border-color: #7157A0;
    }

    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.2rem;
        gap: 1rem;
    }

    .reviewer-info h4 {
        margin: 0;
        color: #333;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .reviewer-info p {
        margin: 0.3rem 0 0;
        color: #666;
        font-size: 0.9rem;
    }

    .review-rating {
        color: #FFD700;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .review-text {
        color: #444;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
        flex-grow: 1;
    }

    @media (max-width: 768px) {
        .review-card-google {
            flex: 0 0 300px;
            padding: 1.5rem;
            min-height: 260px;
        }

        .reviewer-img {
            width: 50px;
            height: 50px;
        }

        .reviewer-info h4 {
            font-size: 1.1rem;
        }

        .review-text {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .review-card-google {
            flex: 0 0 280px;
            padding: 1.2rem;
            min-height: 240px;
        }

        .reviewer-img {
            width: 45px;
            height: 45px;
        }

        .reviewer-info h4 {
            font-size: 1rem;
        }

        .review-text {
            font-size: 0.9rem;
        }
    }

    .google-logo-small {
        width: 20px;
        height: 20px;
        margin-left: auto; /* Push Google logo to the right */
    }

    .review-slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(113, 87, 160, 0.8); /* Semi-transparent purple */
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        font-size: 1.2rem;
        z-index: 10;
        transition: background 0.3s ease;
    }

    .review-slider-nav:hover {
        background: #7157A0; /* Solid purple on hover */
    }

    .review-slider-nav.prev {
        left: 0;
    }

    .review-slider-nav.next {
        right: 0;
    }

    /* Responsive adjustments for the new slider */
    @media (max-width: 1200px) {
        .review-slider-container {
            padding: 0 30px;
        }
    }

    @media (max-width: 768px) {
        .google-review-slider-section {
            padding: 3rem 1rem;
        }

        .review-slider-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .review-slider-container {
            padding: 0 20px;
        }

        .review-card-google {
            flex: 0 0 300px; /* Adjust card width */
            padding: 1rem;
        }

        .reviewer-img {
            width: 40px;
            height: 40px;
        }

        .reviewer-info h4 {
            font-size: 1rem;
        }

        .reviewer-info p {
            font-size: 0.8rem;
        }

        .review-rating {
            font-size: 1rem;
        }

        .review-text {
            font-size: 0.9rem;
             -webkit-line-clamp: 5; /* Allow more lines on smaller screens if needed */
        }

        .read-more-review {
            font-size: 0.8rem;
        }

        .review-slider-nav {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .review-slider-nav.prev {
           left: 0;
        }
        
         .review-slider-nav.next {
           right: 0;
        }
    }

    @media (max-width: 480px) {
         .google-review-slider-section {
            padding: 2rem 0.5rem;
        }

        .review-slider-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
         
        .review-slider-container {
            padding: 0 10px; /* Less padding */
        }

        .review-card-google {
            flex: 0 0 260px; /* Further adjust card width */
            padding: 0.8rem;
            min-height: 220px;
        }
        
         .reviewer-img {
            width: 35px;
            height: 35px;
        }

        .reviewer-info h4 {
            font-size: 0.9rem;
        }

        .reviewer-info p {
            font-size: 0.7rem;
        }

        .review-rating {
            font-size: 0.9rem;
        }

        .review-text {
            font-size: 0.8rem;
             -webkit-line-clamp: 6; /* Allow more lines */
        }

        .read-more-review {
            font-size: 0.7rem;
        }

        .review-slider-nav {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
        }
        
         .review-slider-nav.prev {
           left: 0;
        }
        
         .review-slider-nav.next {
           right: 0;
        }
    }





/* ****************************************************Google section end ******************************************** */










/* ********************************************** Video Gallery Section Start ************************************* */

.video-gallery {
  max-width: 1600px;
  margin: 4rem auto;
  padding: 0 2rem 3rem 2rem;
  background: #f8f6fc;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(113, 87, 160, 0.08);
}

.video-gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-gallery-header h1 {
  color: #7157A0;
  font-size: 2.5rem;
  font-family: 'Bank Gothic', sans-serif;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.video-gallery-header p {
  color: #4A3C6B;
  font-size: 1.1rem;
  opacity: 0.85;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(113, 87, 160, 0.10);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(113, 87, 160, 0.18);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e8e4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.video-info {
  padding: 1.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}

.video-info h3 {
  color: #7157A0;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: 'Bank Gothic', sans-serif;
}

.video-info p {
  color: #4A3C6B;
  font-size: 1rem;
  opacity: 0.85;
}

.video-gallery-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.see-more-videos-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #7157A0 0%, #8B6BC4 100%);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(113, 87, 160, 0.10);
  transition: background 0.3s, transform 0.3s;
}

.see-more-videos-btn:hover {
  background: linear-gradient(90deg, #8B6BC4 0%, #7157A0 100%);
  transform: translateY(-2px) scale(1.04);
  color: #FFD700;
}

.see-more-videos-btn i {
  font-size: 1.2rem;
  margin-left: 0.3rem;
}

@media (max-width: 1200px) {
  .video-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .video-gallery {
    padding: 0 0.5rem 2rem 0.5rem;
  }
  .video-gallery-header h1 {
    font-size: 2rem;
  }
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .video-info {
    padding: 1rem 1rem 1.2rem 1rem;
  }
}

@media (max-width: 480px) {
  .video-gallery {
    padding: 0 0.2rem 1rem 0.2rem;
  }
  .video-gallery-header h1 {
    font-size: 1.3rem;
  }
  .video-info h3 {
    font-size: 1rem;
  }
  .see-more-videos-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}

/* ********************************************** Video Gallery Section End ************************************* */









/* ***********************************************************Blog section Start ************************************ */





    .blog-container {
      max-width: 2000px;
      margin: 4rem auto;
      padding: 0 2rem;
    }

    .blog-title {
      text-align: center;
      color: #7157A0;
      font-size: 2.8rem;
      margin-bottom: 3rem;
      position: relative;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .blog-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: #7157A0;
    }

    .blog-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      padding: 1rem 0;
    }

    .blog-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      min-width: 0; /* Prevents overflow */
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: contain; /* Changed from cover to contain */
    }

    .blog-content {
      padding: 1.5rem;
    }

    .blog-content h3 {
      font-size: 1rem;
      margin-bottom: 0.8rem;
      color: #333;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-content p {
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .read-more-btn {
      display: inline-block;
      padding: 0.6rem 1.2rem;
      background: #7157A0;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .read-more-btn:hover {
      background: #5a4580;
      transform: translateY(-2px);
    }

    @media (max-width: 1200px) {
      .blog-track {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .blog-track {
        grid-template-columns: 1fr;
      }
    }



/* **********************************************Blog section end ************************************* */








/* *****************************************************CTA Section satrt *********************************************** */


    
.cta-section {
      padding: 4rem 2rem;
      background: linear-gradient(135deg, #7157A0 0%, #8B7AB5 100%);
      color: white;
      text-align: center;
      margin-top: 30px;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta-section p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-button {
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      min-width: 200px;
      display: inline-block;
    }

    .cta-primary {
      background: #FFD700;
      color: #7157A0;
    }

    .cta-secondary {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 3rem 1rem;
      }

      .cta-section h2 {
        font-size: 1.8rem;
      }

      .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.8rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .cta-section {
        padding: 2rem 1rem;
      }

      .cta-section h2 {
        font-size: 1.5rem;
      }

      .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
      }

      .cta-button {
        max-width: 250px;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
      }
    }





/* *******************************************CTA SECTION END ******************************************** */







/* **************Commit section STart ********************* */





.commit-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #18122B 0%, #2a1f4a 100%);
  color: #fff;
  padding: 60px 8vw;
  gap: 60px;
  font-family: 'Bank Gothic', sans-serif;
  /* margin: 40px 0 0 0; */
  position: relative;
  overflow: hidden;
  
}

.commit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8e6fc4 0%, #7157A0 100%);
}

.commit-content {
  flex: 1;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.commit-content h2 {
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: inline-block;
}

.commit-content .highlight {
  color: #8e6fc4;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-text-fill-color: #8e6fc4;
  display: inline;
}

.commit-desc {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
}

.commit-action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.commit-btn {
  background: linear-gradient(90deg, #8e6fc4 0%, #7157A0 100%);
  color: #fff;
  border: none;
  padding: 22px 48px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(142, 111, 196, 0.3);
  transition: all 0.4s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Bank Gothic', sans-serif;
  position: relative;
  overflow: hidden;
}

.commit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7157A0 0%, #8e6fc4 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.commit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(142, 111, 196, 0.4);
}

.commit-btn:hover::before {
  opacity: 1;
}

.commit-btn span {
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .commit-section {
    padding: 50px 6vw;
    gap: 40px;
  }
  
  .commit-content h2 {
    font-size: 2.2rem;
  }
  
  .commit-btn {
    padding: 20px 40px;
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  .commit-section {
    padding: 40px 5vw;
  }
  
  .commit-content h2 {
    font-size: 2rem;
  }
  
  .commit-desc {
    font-size: 1.1rem;
  }
  
  .commit-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .commit-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 50px 5vw;
  }
  
  .commit-content {
    max-width: 100%;
  }
  
  .commit-content h2 {
    font-size: 1.8rem;
    white-space: normal;
    text-align: center;
  }
  
  .commit-desc {
    text-align: center;
    margin: 0 auto;
  }
  
  .commit-action {
    width: 100%;
  }
  
  .commit-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .commit-section {
    padding: 40px 4vw;
    gap: 30px;
  }
  
  .commit-content h2 {
    font-size: 1.6rem;
  }
  
  .commit-desc {
    font-size: 1rem;
  }
  
  .commit-btn {
    padding: 16px 32px;
    font-size: 1rem;
    max-width: 280px;
  }
}

@media (max-width: 400px) {
  .commit-section {
    padding: 30px 4vw;
    gap: 25px;
  }
  
  .commit-content h2 {
    font-size: 1.4rem;
  }
  
  .commit-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    max-width: 240px;
  }
}






/* **********************************Commit section end **************************************** */






/* ******************************************* Footer Section Start ******************************************* */

.footer {
  background: linear-gradient(135deg, #18122B 0%, #2a1f4a 100%);
  color: #fff;
  padding: 0;
  font-family: 'Bank Gothic', 'BankGothic Md BT', 'Bank Gothic', Arial, sans-serif;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 30px 0 30px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(113,87,160,0.15);
  background: #fff;
}

.footer-section h3 {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-family: 'Bank Gothic', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.footer-section .fa-check,
.footer-section .fa-angle-right {
  color: #FFD700;
  margin-right: 6px;
}

.footer-section .social-icons {
  margin-top: 10px;
  gap: 10px;
}

.footer-section .social-icon {
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  font-size: 1.3rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-section .social-icon:hover {
  background: #FFD700;
  color: #2a1f4a;
  transform: scale(1.15);
}

.newsletter {
  margin-top: 18px;
}

.newsletter h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
}

.input-group {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(113,87,160,0.08);
}

.input-group input[type="email"] {
  border: none;
  padding: 10px 16px;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
  color: #2a1f4a;
  background: #fff;
  min-width: 160px;
}

.input-group button {
  background: #FFD700;
  border: none;
  color: #2a1f4a;
  padding: 0 18px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 0 25px 25px 0;
  display: flex;
  align-items: center;
}

.input-group button:hover {
  background: #e6c200;
}

.footer-bottom-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 0 0;
}

.contact-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
}

.contact-info {
  min-width: 220px;
}

.contact-info h3 {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Bank Gothic', Arial, sans-serif;
}

.contact-info p {
  margin: 0 0 8px 0;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #FFD700;
}

.map-section {
  min-width: 320px;
  flex: 1 1 320px;
}

.map-section h3 {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Bank Gothic', Arial, sans-serif;
}

.map-container {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(113,87,160,0.10);
  margin-top: 8px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  background: #120c1c;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-size: 1rem;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .footer-main, .footer-bottom-section, .contact-map-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-section, .map-section, .contact-info {
    min-width: 0;
    width: 100%;
  }
  .map-container {
    height: 200px;
  }
}

@media (max-width: 700px) {
  .footer-content {
    padding: 40px 10px 0 10px;
  }
  .footer-main, .footer-bottom-section, .contact-map-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section {
    margin-bottom: 18px;
  }
  .map-container {
    height: 160px;
  }
  .contact-info {
    width: 100%;
    min-width: 0;
    word-break: break-all;
    font-size: 0.95rem;
    padding-right: 0;
    box-sizing: border-box;
  }
  .contact-info p {
    font-size: 0.95rem;
    word-break: break-all;
    flex-wrap: wrap;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 24px 2vw 0 2vw;
  }
  .footer-main, .footer-bottom-section, .contact-map-wrapper {
    gap: 10px;
  }
  .footer-section {
    margin-bottom: 10px;
  }
  .footer-logo img {
    width: 40px;
    height: 40px;
  }
  .map-container {
    height: 120px;
  }
  .footer-bottom {
    font-size: 0.9rem;
    padding: 12px 2vw;
  }
  .contact-info {
    width: 100%;
    min-width: 0;
    word-break: break-all;
    font-size: 0.9rem;
    padding-right: 0;
    box-sizing: border-box;
  }
  .contact-info p {
    font-size: 0.9rem;
    word-break: break-all;
    flex-wrap: wrap;
    line-height: 1.2;
  }
}





@media (max-width: 480px) {
  .services-section {
    padding: 10px 1vw;
    margin: 10px auto;
  }
  .services-container {
    gap: 10px;
    padding: 10px 0;
    width: 100%;
  }
  .service-box {
    padding: 16px 6px;
    border-radius: 14px;
    min-width: 0;
    box-sizing: border-box;
    word-break: break-word;
    width: 100%;
    max-width: 100vw;
    overflow-x: visible;
  }
  .service-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .service-box h3,
  .service-box p {
    font-size: 1rem;
    margin-bottom: 10px;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .service-box p {
    font-size: 0.65rem;
  }
}
@media (max-width: 375px) {
  .services-section {
    padding: 10px 1vw;
  }
  .service-box {
    padding: 10px 2px;
    border-radius: 0px;
  }
  .service-box h3 {
    font-size: 0.95rem;
  }
  .service-box p {
    font-size: 0.85rem;
  }
}









@media (max-width: 480px) {
  .footer-section.services ul li {
    font-size: 1.05rem;
    padding-left: 0.5em;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    /* Remove word-break and overflow-wrap to prevent breaking words */
    white-space: normal;
    flex-wrap: wrap;
    line-height: 1.6;
    min-height: 28px;
  }
  .footer-section.services ul li i {
    min-width: 1.1em;
    font-size: 1.15em;
    margin-right: 6px;
    margin-top: 2px;
    align-self: flex-start;
    color: #FFD700;
  }
}






/* ******************************************* Footer Section End ******************************************* */







.scroll-to-top {
  bottom: 90px !important;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 75px !important;
  }
}









/* Fix: Always show the close (cross) button in mobile menu overlay */
.mobile-nav-overlay .close-menu {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff !important;
  background: rgba(113, 87, 160, 0.7) !important;
  font-size: 2.2rem !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 1002 !important;
  width: 50px !important;
  height: 50px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: none !important;
  transition: background 0.3s, color 0.3s, transform 0.3s !important;
}

.mobile-nav-overlay .close-menu:hover {
  background: #7157A0 !important;
  color: #FFD700 !important;
  transform: scale(1.1) !important;
}

@media (max-width: 768px) {
  .mobile-nav-overlay .close-menu {
    display: flex !important;
    font-size: 2rem !important;
    top: 15px !important;
    right: 15px !important;
    width: 45px !important;
    height: 45px !important;
  }
}

@media (max-width: 480px) {
  .mobile-nav-overlay .close-menu {
    font-size: 1.7rem !important;
    top: 10px !important;
    right: 10px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* Extra polish for cross button: shadow and hover effect */
.mobile-nav-overlay .close-menu {
  box-shadow: 0 4px 16px rgba(113, 87, 160, 0.25) !important;
}
.mobile-nav-overlay .close-menu:hover {
  background: #fff !important;
  color: #7157A0 !important;
  box-shadow: 0 8px 24px rgba(113, 87, 160, 0.35) !important;
}





















    
/* 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++




                          About Page  Start                     




++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


   /* Add hero-section2 styles */
    .hero-section2 {
      background: linear-gradient(135deg, #7157A0);
      color: white;
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden;
      border-radius: 30px;
    }

    .hero-section2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('assets/image/pattern.png');
      opacity: 0.1;
      z-index: 1;
    }

    .container2 {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-section2 h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-family: 'Bank Gothic', sans-serif;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      animation: fadeInDown 1s ease;
    }

    .hero-section2 h2 {
      font-size: 1.8rem;
      margin-bottom: 2rem;
      color: #ffd700;
      font-weight: 500;
      animation: fadeInUp 1s ease 0.3s;
      animation-fill-mode: both;
    }

    .hero-section2 .intro2 {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 800px;
      animation: fadeInUp 1s ease 0.6s;
      animation-fill-mode: both;
    }

    .hero-section2 .founder2 {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 3rem;
      max-width: 800px;
      animation: fadeInUp 1s ease 0.9s;
      animation-fill-mode: both;
    }

    .hero-section2 strong {
      color: #ffd700;
    }

    .vision-box2, .specialties-box2 {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      animation: fadeInUp 1s ease 1.2s;
      animation-fill-mode: both;
    }

    .vision-box2 h3, .specialties-box2 h3 {
      color: #ffd700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-family: 'Bank Gothic', sans-serif;
    }

    .specialties-box2 ul {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
    }

    .specialties-box2 li {
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .specialties-box2 li:hover {
      transform: translateX(10px);
      background: rgba(255, 255, 255, 0.1);
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .hero-section2 {
        padding: 3rem 1rem;
      }

      .hero-section2 h1 {
        font-size: 2.5rem;
      }

      .hero-section2 h2 {
        font-size: 1.5rem;
      }

      .specialties-box2 ul {
        grid-template-columns: 1fr;
      }
    }












    /* ******************************welcome section ************************************ */




.welcome-section {
  background: linear-gradient(135deg, #7157A0 0%, #8e6fc4 100%);
  padding: 40px 0;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  margin-top: 40px;
  border-radius: 30px;
}


.welcome-section .container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.welcome-section .content {
  flex: 1.2;
  animation: fadeInLeft 1s ease;
  max-width: 60%;
}

.welcome-title {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  color: #fff;
}

.welcome-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.services {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.service-list li:hover {
  transform: translateX(10px);
}

.service-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.image-section {
  flex: 0.8;
  max-width: 65%;
  animation: fadeInRight 1s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  position: relative;
}

.image-section video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  background: #000;
  display: block;
  transition: transform 0.4s ease;
}

.image-section video:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .welcome-section .container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-section .content {
    max-width: 100%;
  }

  .welcome-section .image-section {
    max-width: 100%;
    margin-top: 30px;
  }

  .welcome-section .services {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 30px 0;
  }

  .welcome-section .welcome-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .welcome-section .welcome-text p {
    font-size: 1rem;
  }

  .welcome-section .image-section {
    height: 250px;
  }
}





