/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap");
/* Section Styles */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
  font-family: "Inter", sans-serif;
}
.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}
/* Centered Attractive Header */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-main-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a2639;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pricing-main-title span {
  background: linear-gradient(135deg, #6222cc 0%, #ff6b5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #5a6b7c;
  margin-bottom: 25px;
  font-weight: 400;
}

.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6222cc, transparent);
}

.divider-icon {
  font-size: 1.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 40px 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(229, 56, 42, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6222cc, #ff8a7a);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 45px rgba(229, 56, 42, 0.15);
  border-color: transparent;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

/* Recommended Card */
.pricing-card.recommended {
  border: 2px solid #6222cc;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(229, 56, 42, 0.15);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #6222cc, #ff6b5e);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(229, 56, 42, 0.3);
  z-index: 2;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a2639;
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-title span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #5a6b7c;
  margin-top: 5px;
}

.card-price {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #6222cc;
  margin-bottom: 25px;
  line-height: 1;
}

.card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #5a6b7c;
  margin-left: 5px;
}

/* Features List */
.card-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  flex-grow: 1;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.5;
}

.card-features li::before {
  content: "✓";
  color: #6222cc;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(229, 56, 42, 0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Button */
.card-btn {
  width: 100%;
  background: white;
  border: 2px solid #6222cc;
  color: #6222cc;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.card-btn:hover {
  background: #6222cc;
  color: white;
  transform: translateX(5px);
}

.pricing-card.recommended .card-btn {
  background: #6222cc;
  color: white;
}

.pricing-card.recommended .card-btn:hover {
  background: transparent;
  color: #6222cc;
}




/* Popup Overlay - Full Screen Center */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 100%);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Jab popup active hoga */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Popup Container - Chhota aur Center */
.popup-container {
  position: relative;
  max-width: 450px;
  width: 90%;
  background: linear-gradient(145deg, #ffffff 0%, #fff8f7 100%);
  border-radius: 40px;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255,255,255,0.2) inset;
  transform: scale(0.7) translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
}

.popup-overlay.show .popup-container {
  transform: scale(1) translateY(0);
}

/* Animated Border Gradient */
.popup-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e5382a, #ff8a5c, #ffb347, #e5382a);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  z-index: 5;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Close Button - Beautiful */
.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.popup-close:hover {
  background: #e5382a;
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(229, 56, 42, 0.4);
}

/* Form inside popup - Compact */
.popup-overlay .contact-one {
  padding: 35px 32px 40px 32px;
}

.popup-overlay .contact-one__right-form input,
.popup-overlay .contact-one__right-form textarea {
  width: 100%;
  padding: 13px 18px;
  margin-bottom: 15px;
  border: 1.5px solid #eef2f6;
  border-radius: 14px;
  font-size: 14px;
  transition: all 0.3s;
  box-sizing: border-box;
  background: #ffffff;
}

.popup-overlay .contact-one__right-form input:focus,
.popup-overlay .contact-one__right-form textarea:focus {
  border-color: #e5382a;
  box-shadow: 0 4px 12px rgba(229, 56, 42, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.popup-overlay .contact-one__right-form input::placeholder,
.popup-overlay .contact-one__right-form textarea::placeholder {
  color: #b0b5c0;
  font-size: 13px;
}

.popup-overlay .contact-one__right-form textarea {
  min-height: 100px;
  resize: vertical;
  border-radius: 16px;
}

.popup-overlay .contact-one__right-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e5382a 0%, #dd2e1f 100%);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px -8px rgba(229, 56, 42, 0.4);
}

.popup-overlay .contact-one__right-form button:hover {
  background: linear-gradient(135deg, #c72a1d 0%, #b82316 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(229, 56, 42, 0.5);
}

.popup-overlay .contact-one__right-form button:active {
  transform: translateY(1px);
}

/* Decorative Elements */
.popup-container::after {
  content: '✨';
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 500px) {
  .popup-container {
    max-width: 92%;
  }
  
  .popup-overlay .contact-one {
    padding: 28px 24px 32px 24px;
  }
  
  .popup-overlay .contact-one__right-form input,
  .popup-overlay .contact-one__right-form textarea {
    padding: 11px 16px;
    font-size: 13px;
  }
  
  .popup-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .pricing-main-title {
    font-size: 2.3rem;
  }

  .pricing-card.recommended {
    transform: scale(1);
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Experts Section with Custom Controls */
.experts-section {
  /*padding: 0px 20px 40px 20px !important;*/
  background-color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  
  padding: 60px 0 40px !important;
    margin: 0 !important;
    min-height: auto !important;
    height: auto !important;

}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Headings */
.main-heading {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 10px 0;
}

.sub-heading {
  font-size: 22px;
  color: #666666;
  margin: 0 0 40px 0;
}

/* Scroll Container */
.scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #e5382a;
  border-radius: 10px;
}

/* Videos Track */
.videos-track {
  display: inline-flex;
  gap: 20px;
  padding: 10px 5px;
}

/* Video Card */
.video-card {
  flex: 0 0 auto;
  width: 280px;
  text-align: center;
}

/* Video Wrapper - Relative for absolute positioning */
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #000;
}

/* Video Player */
.video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9/16; /* Portrait video style */
  object-fit: cover;
}

/* Custom Video Controls - Top Layer */
.video-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  z-index: 10;
}

/* Left Controls */
.controls-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Right Controls - Brand Text */
.controls-right {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.brand-text {
  /* background: rgba(229, 56, 42, 0.9);
    padding: 4px 10px;
    border-radius: 20px; */
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Reviewer Name - Bottom */
.reviewer-name {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;

  padding: 5px 15px;
  border-radius: 20px;
  z-index: 10;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hide default video controls */
.video-player::-webkit-media-controls {
  display: none !important;
}

.video-player::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Button */
.button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.book-btn {
  background-color: #e5382a;
  color: white;
  border: none;
  padding: 16px 60px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid #e5382a;
}

.book-btn:hover {
  background-color: transparent;
  color: #e5382a;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .video-card {
    width: 220px;
  }

  .book-btn {
    padding: 14px 40px;
    font-size: 16px;
  }

  .controls-left {
    gap: 8px;
  }

  .control-btn {
    font-size: 14px;
  }

  .brand-text {
    font-size: 10px;
    padding: 3px 8px;
  }

  .reviewer-name {
    font-size: 12px;
    padding: 4px 10px;
  }
}

.footer-widget__title {
  margin: 0 0 15px 0;
  /* removes unwanted left margin */
  padding-left: 5px;
  /* slight left padding for alignment */
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.footer-widget__about-contact {
  list-style: none;
  padding: 0;
  margin: 10px;
}

.footer-widget__about-contact li {
  display: flex;
  align-items: center;
  /* aligns icons and text vertically */
  margin-bottom: 15px;
}

.footer-widget__about-contact .icon {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  min-width: 25px;
  text-align: center;
}

.footer-widget__about-contact .text a,
.footer-widget__about-contact .text p {
  color: #bbb;
  font-size: 15px;
  margin: 0;
  text-decoration: none;
}

.footer-widget__about-contact .text a:hover {
  color: #fff;
}

.custom-view-all-btn {
  display: inline-block;
  background-color: #6222cc;
  color: #fff;
  padding: 5px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.custom-view-all-btn:hover {
  background-color: black;
  color: #fff;
}

.project-one__img img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-heading {
  /*font-family: "DM Sans", sans-serif;*/
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.project-filter li {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
}

.project-filter li.active span {
  font-weight: bold;
}

body.modal-open {
  overflow: hidden;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-content iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.why-choose-three__tab-inner-bottom-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-three__tab-inner-bottom-text ul li p {
  color: #000;
  /* adjust to match your theme */
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
}

.why-choose-three__tab-inner-bottom-text ul li p span {
  color: #6a0dad;
  /* purple check icon */
  margin-right: 8px;
}

/* ✅ Mobile view only (max 768px) */
@media (max-width: 768px) {
  .why-choose-three__tab-inner-bottom-text ul {
    margin-bottom: -40px;
    margin-left: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
  }
}

/* Force all dropdown containers to allow overflow */
.main-menu__list .dropdown,
.main-menu__list .dropdown-submenu,
.main-menu__list .dropdown-menu,
.main-menu__list .dropdown-menu-level2 {
  overflow: visible !important;
}

/* Main dropdown menu */
.main-menu__list .dropdown {
  position: relative !important;
}

.main-menu__list .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 280px !important;
  background: #fff !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
  padding: 15px 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.main-menu__list .dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: calc(100% + 5px) !important;
}

/* Level 2 dropdown menu */
.main-menu__list .dropdown-submenu {
  position: relative !important;
  list-style: none !important;
}

.main-menu__list .dropdown-menu-level2 {
  position: absolute !important;
  top: 0 !important;
  left: 101% !important;
  min-width: 280px !important;
  background: #fff !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  padding: 15px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  z-index: 1001 !important;
}

.main-menu__list .dropdown-submenu:hover .dropdown-menu-level2 {
  opacity: 1 !important;
  visibility: visible !important;
  left: 101% !important;
}

/* Menu item styling - Large screens (white background, dark text) */
.main-menu__list .dropdown-menu li a,
.main-menu__list .dropdown-menu-level2 li a {
  display: block !important;
  padding: 8px 25px !important;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.main-menu__list .dropdown-menu li a:hover,
.main-menu__list .dropdown-menu-level2 li a:hover {
  color: #6222cc !important;
  background: #f5f5f5 !important;
  /* padding-left: 30px !important; */
}

/* Arrow styling - Large screens */
.arrow {
  float: right !important;
  font-size: 14px !important;
  transition: transform 0.2s ease !important;
  color: #999 !important;
}

.main-menu__list .dropdown-submenu:hover .arrow {
  transform: translateX(3px) !important;
  color: #6222cc !important;
}

/* ========== RESPONSIVE FIXES FOR TABLET & MOBILE (max-width: 1189px) ========== */
@media (max-width: 1189px) {
  /* Reset positioning for tablet/mobile */
  .main-menu__list .dropdown-menu,
  .main-menu__list .dropdown-menu-level2 {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    min-width: auto !important;
    display: none !important;
    background: #000000 !important;
    border: none !important;
  }

  /* Show dropdowns on click/tap - using active class */
  .main-menu__list .dropdown.active > .dropdown-menu,
  .main-menu__list .dropdown-submenu.active > .dropdown-menu-level2 {
    display: block !important;
  }

  /* Make parent menus clickable */
  .main-menu__list .dropdown > a,
  .main-menu__list .dropdown-submenu > a {
    cursor: pointer !important;
    position: relative !important;
    pointer-events: auto !important;
    color: #ffffff !important;
  }

  /* Add a toggle indicator */

  .main-menu__list .dropdown-submenu > a::after {
    content: "▼" !important;
    float: right !important;
    font-size: 10px !important;
    /* margin-left: 8px !important; */
    transition: transform 0.3s ease !important;
    color: #ffffff !important;
  }

  .main-menu__list .dropdown.active > a::after,
  .main-menu__list .dropdown-submenu.active > a::after {
    transform: rotate(180deg) !important;
  }

  /* Level 2 menu styling on tablet/mobile */
  .main-menu__list .dropdown-menu-level2 {
    left: auto !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    /* padding-left: 30px !important; */
  }

  /* Remove arrow from tablet/mobile view */
  .main-menu__list .dropdown-submenu .arrow {
    display: none !important;
  }

  /* Adjust padding for tablet/mobile */
  .main-menu__list .dropdown-menu li a,
  .main-menu__list .dropdown-menu-level2 li a {
    white-space: normal !important;
    padding: 10px 15px 10px 5px !important;
    font-size: 13px !important;
    color: #ffffff !important;
  }

  /* Better touch targets */
  .main-menu__list .dropdown-menu li a:hover,
  .main-menu__list .dropdown-menu-level2 li a:hover {
    /* padding-left: 30px !important; */
    background: #1a1a1a !important;
    color: #6222cc !important;
  }

  /* Ensure dropdown items don't overflow */
  .main-menu__list .dropdown-menu li,
  .main-menu__list .dropdown-menu-level2 li {
    width: 100% !important;
  }
}

.experts-section {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 80px 0 120px;
    clear: both;
}

.scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.videos-track {
    position: relative !important;
    display: flex !important;
    flex-wrap: nowrap;
    gap: 30px;
}

.video-card {
    position: relative;
    flex-shrink: 0;
}
