* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* ============================================
   SLIDER / HOMEPAGE STYLES
   ============================================ */
.slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.slide {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 30px 0;
  transition: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#slide2 {
  padding-top: 60px;
}

.slide-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 5% 0px;
  position: relative;
  z-index: 15;
  opacity: 1;
  transform: none;
  transition: none;
}

.slide.active .slide-content {
  opacity: 1;
  transform: none;
}

/* ----- HERO SUBTITLE ----- */
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: #e8d5b8;
  margin-bottom: 20px;
}
.brders:after{
  display: none;
}

/* ----- FADE-IN-UP ANIMATION (GSAP driven) ----- */
.fade-item {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}

/* ----- TYPOGRAPHY ----- */
.desc {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 0px;
  text-align: justify;
}

.tag {
  display: none;
}

/* ============================================
   PREMIUM TAGLINE
   ============================================ */
.tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b8 30%, #d4b896 60%, #c4a47a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(227, 27, 35, 0.08), 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 0px;
}

.tagline:hover::after {
  width: 100px;
}

@supports not (background-clip: text) {
  .tagline {
    color: #e8d5b8;
    background: none;
    text-shadow: 0 0 30px rgba(227, 27, 35, 0.15);
  }
}

.hero-main {
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #ff9a5a, #E31B23);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-sub-main {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #f0f0f0;
}

.italic-text {
  font-style: italic;
}

/* ============================================
   PREMIUM SECTION HEADINGS
   ============================================ */
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #E31B23, rgba(227, 27, 35, 0.2));
  border-radius: 4px;
}

.section-heading .accent-text {
  background: linear-gradient(135deg, #E31B23, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ============================================
   NAVIGATION
   ============================================ */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid rgba(227, 27, 35, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.closing-quote {
  font-size: 15px;
  font-style: italic;
  color: #d0d0d0;
  padding-left: 20px;
  border-left: 2px solid rgba(227, 27, 35, 0.3);
}

.closing-quote i {
  color: #E31B23;
  margin-right: 8px;
}

.logo-wrapper {
  margin-bottom: 4px;
}

.navbar-brand img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
  padding: 2px 0;
}

.hamburger-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.hamburger-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  transition: all 0.4s ease-in-out;
}

.nav-links a {
  color: #f0f0f0;
  padding: 4px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: #E31B23;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active-nav:after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active-nav {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.12);
}

.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-wrapper .dropdown-toggle-link {
  color: #f0f0f0;
  padding: 4px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-wrapper .dropdown-toggle-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper .dropdown-toggle-link:after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: #E31B23;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper .dropdown-toggle-link:hover:after,
.nav-dropdown-wrapper .dropdown-toggle-link.active-nav:after {
  transform: scaleX(1);
}

.nav-dropdown-wrapper .dropdown-toggle-link:hover,
.nav-dropdown-wrapper .dropdown-toggle-link.active-nav {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.12);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 6px;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-dropdown-menu li a:hover {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.08);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-wrapper:hover .dropdown-toggle-link i {
  transform: rotate(180deg);
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator-custom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
  cursor: pointer;
  color: #E31B23;
  font-size: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   VIDEO / OVERLAYS / BACKGROUNDS
   ============================================ */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: contain;
  background: #000;
}

.hero-text-fade-out {
  animation: fadeOutText 0.8s ease-out forwards;
}

@keyframes fadeOutText {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); visibility: hidden; }
}

.video-fullscreen-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid #E31B23;
  border-radius: 50px;
  padding: 10px 22px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.video-fullscreen-btn:hover {
  background: #E31B23;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.5);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(227, 27, 35, 0.3);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  color: #E31B23;
  transform: rotate(90deg);
}

.premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 70%, rgba(139, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.premium-overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
  pointer-events: none;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* ============================================
   IMAGE STYLES - UPDATED FOR CAROUSEL
   ============================================ */
.image-hover-simple {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.image-hover-simple img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: block;
}

.img-style {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
}

/* ============================================
   CAROUSEL CUSTOM STYLES
   ============================================ */
.carousel {
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.5);*/
}

.carousel-inner {
  border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(227, 27, 35, 0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.simple-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.image-hover-simple:hover .simple-overlay {
  background: rgba(0, 0, 0, 0.20);
}

.image-hover-simple:hover img {
  transform: scale(1.08);
}

/* ============================================
   CARDS
   ============================================ */
.capability-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 27, 35, 0.4);
  border-radius: 20px;
  padding: 25px 20px;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(227, 27, 35, 0.2);
  border-color: #E31B23;
}

.card-icon {
  font-size: 35px;
  color: #E31B23;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.capability-card:hover .card-icon {
  transform: scale(1.05);
}

.card-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 0;
}

/* ----- CONTACT CARDS ----- */
.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 27, 35, 0.4);
  border-radius: 20px;
  padding: 25px 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(227, 27, 35, 0.15);
  border-color: #E31B23;
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
  color: #fff;
}

.contact-card p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-detail {
  color: #E31B23 !important;
  font-size: 14px;
  margin-top: 8px !important;
}

.contact-detail i {
  margin-right: 8px;
  width: 18px;
}

/* ============================================
   PREMIUM BADGES
   ============================================ */
.premium-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 27, 35, 0.25);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #e8e8e8;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: none;
  cursor: default;
  position: relative;
}

.premium-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background: linear-gradient(180deg, #E31B23, rgba(227, 27, 35, 0.2));
  border-radius: 2px;
}

/* ----- KNOW MORE BUTTON ----- */
.know-more-btn {
  display: inline-block;
  background: transparent;
  color: #E31B23;
  border: 2px solid #E31B23;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.know-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.know-more-btn:hover {
  background: #E31B23;
  color: #fff;
  box-shadow: 0 5px 20px rgba(227, 27, 35, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.know-more-btn:hover i {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.premium-footer {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(227, 27, 35, 0.3);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px 24px 0 0;
  width: 100%;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px 8px 24px;
  margin: 0;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #E31B23;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #E31B23;
  transition: width 0.3s ease;
}

.footer-col:hover h4:after {
  width: 45px;
}

.footer-col p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 4px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #E31B23;
  transform: translateX(4px);
}

.contact-footer-list li {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.contact-footer-list li i {
  color: #E31B23;
  width: 16px;
  font-size: 11px;
}

.contact-footer-list li:hover {
  color: #E31B23;
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(227, 27, 35, 0.15);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(227, 27, 35, 0.4);
}

.social-links a:hover {
  background: #E31B23;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(227, 27, 35, 0.4);
}

.footer-bottom {
  text-align: center;
  padding: 6px 20px 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

.footer-bottom p {
  color: #888;
  font-size: 11px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  padding-top: 15px;
}

.footer-small-text {
  font-size: 12px;
  color: #888;
}

.product-ref-text {
  font-size: 13px;
  color: #888;
}

.product-link {
  color: #E31B23;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

/* ============================================
   MUSICAL FOUNTAINS INNER PAGE STYLES
   ============================================ */

/* ----- HERO SECTION ----- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 40px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E31B23;
  background: rgba(227, 27, 35, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(227, 27, 35, 0.3);
  display: none;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, #E31B23 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #d0d0d0;
  line-height: 1.7;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E31B23, rgba(227, 27, 35, 0.2));
  margin: 20px auto;
  border-radius: 4px;
}

/* ----- SECTION COMMON ----- */
.section-padding {
  padding: 80px 0;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(227, 27, 35, 0.08);
  border-bottom: 1px solid rgba(227, 27, 35, 0.08);
}

.section-tag {
    display: block;
    width: fit-content;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #E31B23;
    background: rgba(227, 27, 35, 0.12);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(227, 27, 35, 0.2);
}

.heading-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E31B23, rgba(227, 27, 35, 0.2));
  border-radius: 4px;
  margin: 12px 0 20px;
}

.heading-line.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d0d0d0;
  max-width: 700px;
}

.text-center .section-heading {
  text-align: center;
}

/* ----- SOLUTION CARDS ----- */
.solution-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(227, 27, 35, 0.15);
  border-color: #E31B23;
}

.solution-icon {
  font-size: 40px;
  color: #E31B23;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1);
}

.solution-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.solution-card p {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ----- INTEGRATION ITEMS ----- */
.integration-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(227, 27, 35, 0.15);
  border-radius: 16px;
  padding: 18px 22px;
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: rgba(227, 27, 35, 0.06);
  border-color: rgba(227, 27, 35, 0.3);
  transform: translateX(6px);
}

.integration-item i {
  font-size: 28px;
  color: #E31B23;
  min-width: 40px;
  margin-top: 4px;
}

.integration-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.integration-item p {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ----- QUOTE SECTION (EMPHASIS) ----- */
.quote-section {
  background: radial-gradient(circle at center, rgba(227, 27, 35, 0.08), rgba(0, 0, 0, 0.95));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(227, 27, 35, 0.03), transparent 70%);
  pointer-events: none;
}

.quote-wrapper {
  position: relative;
  padding: 20px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 800;
  color: #E31B23;
  opacity: 0.15;
  display: block;
  line-height: 0.8;
  margin-bottom: -20px;
  letter-spacing: -10px;
}

.main-quote {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.quote-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E31B23, transparent);
  margin: 0 auto 20px;
  border-radius: 4px;
}

.quote-author {
  font-size: 16px;
  font-weight: 600;
  color: #E31B23;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

/* ----- CTA BANNER ----- */
.cta-banner {
  padding: 70px 0;
  background: radial-gradient(circle at 30% 30%, rgba(227, 27, 35, 0.12), rgba(0, 0, 0, 0.95));
  border-top: 1px solid rgba(227, 27, 35, 0.15);
  border-bottom: 1px solid rgba(227, 27, 35, 0.15);
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-title .accent-text {
  background: linear-gradient(135deg, #E31B23, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-desc {
  font-size: 16px;
  color: #c0c0c0;
  max-width: 600px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: #E31B23;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 2px solid #E31B23;
}

.cta-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: transparent;
  color: #E31B23;
  box-shadow: 0 5px 30px rgba(227, 27, 35, 0.3);
  transform: translateY(-3px);
  text-decoration: none;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES (REDESIGNED)
   ============================================ */

/* Hero */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 40px;
}

.contact-hero .hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero .hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E31B23;
  background: rgba(227, 27, 35, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(227, 27, 35, 0.3);
}

.contact-hero .hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-hero .hero-title .accent-text {
  background: linear-gradient(135deg, #E31B23, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero .hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E31B23, rgba(227, 27, 35, 0.2));
  margin: 20px auto;
  border-radius: 4px;
}

.contact-hero .hero-desc {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #d0d0d0;
  line-height: 1.7;
}

/* Contact Main Section */
.contact-main .contact-info-wrap {
  margin-bottom: 40px;
}

.contact-main .contact-info-wrap .section-heading {
  font-size: 36px;
}

.contact-main .contact-info-wrap .section-desc {
  font-size: 16px;
  color: #b0b0b0;
  max-width: 100%;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  padding-left: 10px;
}

.contact-item .contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(227, 27, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #E31B23;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(227, 27, 35, 0.2);
  transform: scale(1.05);
}

.contact-item .contact-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-item .contact-text p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 2px;
  line-height: 1.5;
}

.contact-item .contact-text .text-muted {
  color: #777 !important;
  font-size: 13px;
}

.contact-item .contact-link {
  color: #E31B23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item .contact-link:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.contact-item .social-links {
  margin-top: 4px;
}

.contact-item .social-links a {
  width: 30px;
  height: 30px;
  background: rgba(227, 27, 35, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 27, 35, 0.2);
}

.contact-item .social-links a:hover {
  background: #E31B23;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 27, 35, 0.3);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 40px 35px;
  border: 1px solid rgba(227, 27, 35, 0.1);
}

.contact-form-wrap .section-heading {
  font-size: 32px;
}

.contact-form-wrap .form-control-custom {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(227, 27, 35, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form-wrap .form-control-custom:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: #E31B23;
  box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.1);
  color: #fff;
  outline: none;
}

.contact-form-wrap .form-control-custom::placeholder {
  color: #777;
}

.contact-form-wrap .submit-btn {
  background: #E31B23;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  border: 2px solid #E31B23;
  cursor: pointer;
  width: 100%;
}

.contact-form-wrap .submit-btn:hover {
  background: transparent;
  color: #E31B23;
  box-shadow: 0 5px 25px rgba(227, 27, 35, 0.3);
  transform: translateY(-2px);
}

.contact-form-wrap .submit-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.contact-form-wrap .submit-btn:hover i {
  transform: translateX(4px);
}

.contact-form-wrap .form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.contact-form-wrap .form-note i {
  color: #E31B23;
  margin-right: 6px;
}

/* Map Section */
.map-section .section-heading.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(227, 27, 35, 0.1);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  border-color: rgba(227, 27, 35, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-placeholder .map-icon {
  font-size: 48px;
  color: #E31B23;
  margin-bottom: 16px;
}

.map-placeholder h5 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.map-placeholder p {
  color: #b0b0b0;
  font-size: 15px;
  margin-bottom: 4px;
}

.map-placeholder .text-muted {
  color: #777 !important;
  font-size: 14px;
}

.map-placeholder .map-phone {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 50px;
  color: #E31B23;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-placeholder .map-phone:hover {
  background: #E31B23;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(227, 27, 35, 0.3);
}

.map-placeholder .map-phone i {
  margin-right: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero-main { font-size: 60px; }
  .section-heading { font-size: 44px; }
  .hero-title { font-size: 60px; }
  .contact-hero .hero-title { font-size: 56px; }
}

@media (max-width: 992px) {
  .hero-main { font-size: 48px; }
  .section-heading { font-size: 38px; }
  .slide { padding: 60px 0 30px 0; }
  #slide2 { padding-top: 50px; }
  .hero-title { font-size: 48px; }
  .section-padding { padding: 60px 0; }
  .cta-title { font-size: 30px; }
  .cta-banner { padding: 50px 0; }
  .quote-section { padding: 80px 0; }
  .main-quote { font-size: 28px; }
  .quote-mark { font-size: 80px; }
  
  .contact-hero .hero-title { font-size: 42px; }
  .contact-main .contact-info-wrap .section-heading { font-size: 30px; }
  .contact-form-wrap { padding: 30px 25px; }
  .contact-form-wrap .section-heading { font-size: 28px; }
  
  .hamburger-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 30px 30px;
    gap: 8px;
    overflow-y: auto;
    border-left: 2px solid rgba(227, 27, 35, 0.3);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    align-items: stretch;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    border-left: 2px solid transparent;
  }
  
  .nav-links a:after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active-nav {
    background: rgba(227, 27, 35, 0.12);
    border-left-color: #E31B23;
  }
  
  .nav-dropdown-wrapper {
    width: 100%;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 14px;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    border-left: 2px solid transparent;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link:after {
    display: none;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link:hover,
  .nav-dropdown-wrapper .dropdown-toggle-link.active-nav {
    background: rgba(227, 27, 35, 0.12);
    border-left-color: #E31B23;
  }
  
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 4px 0;
    margin: 4px 0 0 0;
    box-shadow: none;
    display: none;
    width: 100%;
  }
  
  .nav-dropdown-wrapper.active .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-menu li a {
    font-size: 13px;
    padding: 10px 20px 10px 30px;
    border-radius: 8px;
  }
  
  .row [class*="col-"].order-1 {
    order: 1 !important;
  }
  .row [class*="col-"].order-2 {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  .hero-main { font-size: 36px; }
  .hero-sub-main { font-size: 14px; }
  .section-heading { 
    font-size: 30px; 
    padding-bottom: 6px;
  }
  .section-heading::after {
    width: 50px;
    height: 3px;
  }
  .tag { font-size: 10px; }
  .slide { padding: 50px 0 25px 0; }
  #slide2 { padding-top: 45px; }
  .navbar-brand img { height: 50px; }
  .nav-links {
    width: 85%;
    padding: 80px 20px 20px;
  }
  .nav-links a {
    font-size: 13px;
    padding: 10px 14px;
  }
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 13px;
    padding: 10px 14px;
  }
  .nav-dropdown-menu li a {
    font-size: 12px;
    padding: 8px 16px 8px 26px;
  }
  .footer-row { flex-direction: column; gap: 14px; padding: 16px 20px 8px 20px; }
  .footer-col { min-width: 100%; text-align: center; }
  .footer-col h4:after { left: 50%; transform: translateX(-50%); }
  .social-links { justify-content: center; }
  .contact-footer-list li { justify-content: center; }
  .premium-footer { border-radius: 20px 20px 0 0; }
  .premium-badge { 
    font-size: 10px; 
    padding: 6px 16px; 
    letter-spacing: 0.4px;
  }
  .premium-badge::before {
    display: none;
  }
  .know-more-btn { font-size: 12px; padding: 8px 22px; }
  
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 15px; }
  .section-padding { padding: 50px 0; }
  .cta-title { font-size: 26px; }
  .cta-btn { padding: 12px 28px; font-size: 14px; }
  .quote-section { padding: 60px 0; }
  .main-quote { font-size: 22px; }
  .quote-mark { font-size: 60px; margin-bottom: -10px; }
  .solution-card { padding: 24px 18px; }
  .integration-item { padding: 14px 18px; }
  .integration-item i { font-size: 22px; min-width: 32px; }
  
  .contact-hero .hero-title { font-size: 32px; }
  .contact-hero .hero-desc { font-size: 15px; }
  .contact-main .contact-info-wrap .section-heading { font-size: 26px; }
  .contact-form-wrap { padding: 25px 20px; }
  .contact-form-wrap .section-heading { font-size: 24px; }
  .contact-item { padding: 16px 0; }
  .contact-item .contact-icon { width: 42px; height: 42px; min-width: 42px; font-size: 17px; }
  .map-placeholder { padding: 35px 20px; }
  
  /* Carousel responsive */
  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 576px) {
  .hero-main { font-size: 28px; }
  .section-heading { 
    font-size: 24px; 
    padding-bottom: 4px;
  }
  .section-heading::after {
    width: 40px;
    height: 2px;
  }
  .slide { padding: 45px 0 25px 0; }
  #slide2 { padding-top: 40px; }
  .navbar-brand img { height: 40px; }
  .nav-links {
    width: 90%;
    padding: 70px 16px 16px;
  }
  .nav-links a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 12px;
    padding: 8px 12px;
  }
  .nav-dropdown-menu li a {
    font-size: 11px;
    padding: 6px 14px 6px 22px;
  }
  .footer-row { padding: 12px 16px 6px 16px; gap: 12px; }
  .footer-bottom { padding: 4px 16px 8px 16px; }
  .premium-badge { 
    font-size: 9px; 
    padding: 5px 14px; 
    letter-spacing: 0.3px;
    border-radius: 4px;
  }
  
  .hero-title { font-size: 28px; }
  .section-padding { padding: 40px 0; }
  .cta-title { font-size: 22px; }
  .cta-banner { padding: 40px 0; }
  .cta-btn { padding: 10px 22px; font-size: 13px; }
  .solution-card { padding: 20px 16px; }
  .integration-item { padding: 12px 14px; gap: 12px; }
  .integration-item i { font-size: 18px; min-width: 28px; }
  .integration-item h5 { font-size: 14px; }
  .integration-item p { font-size: 12px; }
  .quote-section { padding: 50px 0; }
  .main-quote { font-size: 18px; }
  .quote-mark { font-size: 50px; margin-bottom: -8px; }
  .quote-line { width: 50px; }
  .quote-author { font-size: 13px; letter-spacing: 2px; }
  
  .contact-hero .hero-title { font-size: 26px; }
  .contact-hero .hero-desc { font-size: 14px; }
  .contact-main .contact-info-wrap .section-heading { font-size: 22px; }
  .contact-form-wrap { padding: 20px 16px; }
  .contact-form-wrap .section-heading { font-size: 20px; }
  .contact-form-wrap .submit-btn { padding: 12px 24px; font-size: 14px; }
  .contact-item { padding: 14px 0; gap: 14px; }
  .contact-item .contact-icon { width: 38px; height: 38px; min-width: 38px; font-size: 15px; }
  .contact-item .contact-text h5 { font-size: 14px; }
  .contact-item .contact-text p { font-size: 13px; }
  .map-placeholder { padding: 30px 16px; }
  .map-placeholder h5 { font-size: 17px; }
  .map-placeholder p { font-size: 13px; }
  
  /* Carousel responsive */
  .carousel-control-prev,
  .carousel-control-next {
    width: 25px;
    height: 25px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 12px;
    height: 12px;
  }
}

/* ----- UTILITY ----- */
#slide9 {
  padding-bottom: 30px;
  padding-top: 30px;
  min-height: auto;
}

#slide9 .slide-content {
  padding-bottom: 0;
  margin-bottom: 0;
}
.carousel-control-prev,.carousel-control-next{
 
}