/* Aditaya Astro Vastu Vision
   Main Stylesheet
   
   Design and coding is the property of bytedonuts.
   All rights reserved. */

/* Base Styles */
:root {
  --primary-color: #36074c;
  --secondary-color: #36074c;
  --accent-color: #FFD700;
  --text-color: #333;
  --light-color: #f8f9fc;
  --dark-color: #36074c;
}

/* Contact Strip */
.contact-strip {
  background-color: var(--dark-color);
  color: white;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-strip a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 13px;
  white-space: nowrap;
}

.contact-strip a:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.contact-strip i {
  margin-right: 3px;
}

/* Mobile adjustments for contact strip */
@media (max-width: 576px) {
  .contact-strip {
    padding: 5px 2px;
    flex-direction: row;
    justify-content: center;
    gap: 2px;
  }

  .contact-strip a {
    margin: 0;
    padding: 2px 3px;
    font-size: 11px;
  }

  .contact-strip i {
    margin-right: 2px;
    font-size: 10px;
  }

  .navbar {
    top: 28px;
  }

  .home-slider {
    margin-top: 110px;
  }

  .page-header,
  .hero-wrap-2 {
    margin-top: 110px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Enhanced Parallax Effects */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.1s ease-out;
}

/* Disable parallax for specific sections */
.no-parallax,
.no-parallax * {
  background-attachment: scroll !important;
  transform: none !important;
}

.no-parallax .heading-section h2,
.no-parallax .full-height-img {
  transform: none !important;
  background-attachment: scroll !important;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* Parallax Image Containers */
.parallax-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.parallax-image:hover {
  transform: scale(1.05);
}

.parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.parallax-image:hover img {
  transform: scale(1.1);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Enhanced Parallax Divider */
.parallax-divider {
  height: 120px;
  background: linear-gradient(45deg, #36074c, #4a0a5e, #5e0d72, #72108a);
  background-size: 400% 400%;
  background-attachment: fixed;
  position: relative;
  margin: 30px 0;
  animation: gradient-shift 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.3;
  z-index: 1;
  background-attachment: fixed;
}

.parallax-divider .container {
  position: relative;
  z-index: 2;
}

.parallax-divider h3 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 28px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

::selection {
  background: var(--accent-color);
  color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--dark-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

/* Enhanced Navigation */
.navbar {
  padding: 18px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.5s ease;
}

.navbar-brand:hover::before {
  left: 100%;
}

.navbar-brand:hover {
  color: var(--dark-color);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.navbar-brand img {
  transition: all 0.3s ease;
  filter: brightness(1);
}

.navbar-brand:hover img {
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  transform: rotate(5deg) scale(1.1);
}

.navbar.scrolled .navbar-brand {
  letter-spacing: -0.3px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  outline: none !important;
}

.navbar-toggler i {
  color: var(--dark-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover i {
  color: var(--accent-color);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin-left: auto;
}

.nav-item {
  margin-left: 24px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 15px;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 6px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(54, 7, 76, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark-color);
  background-color: rgba(54, 7, 76, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .nav-link {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
  }

  .nav-link:hover {
    background-color: var(--light-color);
  }
}

/* Hero Slider */
.home-slider {
  position: relative;
  height: 550px;
  margin-top: 120px;
  overflow: hidden;
}

.home-slider .slider-text {
  z-index: 10;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slider-item {
  height: 550px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: scroll;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slider-item.parallax-bg {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* Specific adjustments for better image visibility - center focus */
.slider-item[style*="picture3"] {
  background-position: center 30%;
}

/* Enhanced text visibility for picture3 slide */
.slider-item[style*="picture3"] .parallax-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.slider-item[style*="picture3"] .slider-text h1,
.slider-item[style*="picture3"] .slider-text p {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.slider-item[style*="picture51"] {
  background-position: center 45%;
}

.slider-item[style*="picture60"] {
  background-position: center 40%;
}

.slider-item[style*="picture63"] {
  background-position: center 40%;
}

.slider-item[style*="picture65"] {
  background-position: center 35%;
}

.slider-item[style*="picture76"] {
  background-position: center 30%;
}

.slider-item[style*="picture86"] {
  background-position: center 35%;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .slider-item[style*="picture3"] {
    background-position: center 35%;
  }
  
  .slider-item[style*="picture51"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture60"] {
    background-position: center 40%;
  }
  
  .slider-item[style*="picture63"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture65"] {
    background-position: center 40%;
  }
  
  .slider-item[style*="picture76"] {
    background-position: center 35%;
  }
  
  .slider-item[style*="picture86"] {
    background-position: center 40%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slider-item.parallax-bg {
    background-attachment: scroll;
  }
  
  .slider-item {
    height: 450px;
  }
  
  .home-slider {
    height: 450px;
    margin-top: 100px;
  }
  
  /* Mobile specific positioning for better visibility */
  .slider-item[style*="picture3"] {
    background-position: center 40%;
  }
  
  .slider-item[style*="picture51"] {
    background-position: center 50%;
  }
  
  .slider-item[style*="picture60"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture63"] {
    background-position: center 50%;
  }
  
  .slider-item[style*="picture65"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture76"] {
    background-position: center 40%;
  }
  
  .slider-item[style*="picture86"] {
    background-position: center 45%;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .slider-item {
    height: 400px;
  }
  
  .home-slider {
    height: 400px;
    margin-top: 90px;
  }
  
  /* Small mobile adjustments */
  .slider-item[style*="picture3"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture51"] {
    background-position: center 55%;
  }
  
  .slider-item[style*="picture60"] {
    background-position: center 50%;
  }
  
  .slider-item[style*="picture63"] {
    background-position: center 55%;
  }
  
  .slider-item[style*="picture65"] {
    background-position: center 50%;
  }
  
  .slider-item[style*="picture76"] {
    background-position: center 45%;
  }
  
  .slider-item[style*="picture86"] {
    background-position: center 50%;
  }
  
  /* Mobile text adjustments */
  .slider-text {
    padding: 50px 0;
  }
  
  .slider-text h1 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 15px !important;
  }
  
  .slider-text p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Extra responsive text for very small screens */
@media (max-width: 380px) {
  .slider-text h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }
  
  .slider-text p {
    font-size: 14px;
  }
  
  .home-slider {
    height: 350px;
    margin-top: 80px;
  }
  
  .slider-item {
    height: 350px;
  }
}

.slider-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slider-text {
  position: relative;
  z-index: 10;
  color: white;
  padding: 100px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slider-text.animated {
  opacity: 1;
  transform: translateY(0);
}

.slider-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Wrap for other pages */
.hero-wrap {
  position: relative;
  height: 400px;
  margin-top: 120px;
  overflow: hidden;
}

.hero-wrap-2 {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax Background Animation */
.parallax-bg {
  background-attachment: fixed;
  animation: parallaxMove 20s ease-in-out infinite;
  background-size: 110% auto;
  transition: background-size 0.3s ease;
}

@keyframes parallaxMove {
  0%, 100% {
    background-position: center center;
    background-size: 110% auto;
  }
  25% {
    background-position: 40% center;
    background-size: 115% auto;
  }
  50% {
    background-position: center 30%;
    background-size: 120% auto;
  }
  75% {
    background-position: 60% center;
    background-size: 115% auto;
  }
}

/* Text centering and animations for hero sections */
.hero-wrap .container,
.hero-wrap-2 .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrap .row,
.hero-wrap-2 .row {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.float-animation {
  animation: floatText 3s ease-in-out infinite;
}

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

/* Mobile responsiveness for parallax */
@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
    animation: none;
    background-size: cover;
  }
  
  .hero-wrap-2 {
    height: 350px;
    background-attachment: scroll;
  }
}

.hero-wrap-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-wrap-2 .slider-text {
  position: relative;
  z-index: 10;
  color: white;
  padding: 50px 0;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}

.hero-wrap-2 .bread {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero-wrap-2 p,
.hero-wrap-2 .text-white {
  text-align: center !important;
  margin: 0 auto;
  max-width: 600px;
}

.hero-wrap-2 .slider-text h1,
.hero-wrap-2 .slider-text p {
  text-align: center !important;
}

.hero-wrap-2 .ftco-animate {
  text-align: center !important;
}

/* Intro Section */
.ftco-intro {
  background-color: var(--dark-color);
  color: white;
  padding: 25px 0;
  margin-top: -5px;
}

.color-2 {
  background-color: #4a0a5e;
}

.color-3 {
  background-color: #36074c;
}

.p-4 {
  padding: 1.25rem;
}

.appointment-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.appointment-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Opening Hours Styling */
.openinghours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
  padding-right: 10px;
}

.openinghours span {
  line-height: 1.4;
  padding: 0 5px;
}

.openinghours span:first-child {
  font-weight: 500;
  min-width: 130px;
  flex-shrink: 0;
}

.openinghours span:last-child {
  text-align: right;
  min-width: 110px;
  flex-shrink: 0;
}

.consultation-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.consultation-fee span {
  line-height: 1.4;
  padding: 0 5px;
}

.consultation-fee span:first-child {
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}

.consultation-fee span:last-child {
  text-align: right;
  min-width: 100px;
  flex-shrink: 0;
}

/* Form Styling */
.form-group {
  position: relative;
}

.form-group .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.form-group .form-control {
  padding-left: 45px;
}

.consultation-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 4px;
  padding: 12px 15px;
  padding-left: 45px;
  transition: all 0.3s ease;
}

.consultation-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  outline: none;
}

.consultation-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Button Styling */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-color), #ffed4a);
  color: var(--dark-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--dark-color), #4a0a5e);
  color: var(--accent-color);
  border-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(54, 7, 76, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(54, 7, 76, 0.2);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
}

/* Services Section */
.ftco-services {
  padding: 80px 0;
}

.container-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.equal-height-row {
  display: flex;
  align-items: stretch;
}

.full-height-img {
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-wrap {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 500px;
}

.heading-section {
  margin-bottom: 40px;
}

.heading-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.heading-section-white h2 {
  color: white;
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.ftco-services .heading-section {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.ftco-services .about-wrap .heading-section {
  transform: none;
  animation: none;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

/* Fix for section overflow and positioning */
.ftco-services {
  overflow: hidden;
  position: relative;
}

.ftco-services .equal-height-row {
  display: flex;
  min-height: 500px;
}

.ftco-services .col-md-6 {
  display: flex;
  flex-direction: column;
}

/* Ensure headings don't escape their containers */
.about-wrap * {
  position: relative;
  z-index: 1;
}

/* Fix for About page heading positioning */
.ftco-section .heading-section {
  position: relative;
  z-index: 10;
  overflow: visible;
  margin-top: 0;
  padding-top: 0;
}

.ftco-section .heading-section h2 {
  position: relative;
  z-index: 10;
  margin-top: 0;
  transform: none;
  animation: none;
}

/* Ensure proper container containment */
.ftco-section .col-md-6 {
  position: relative;
  overflow: visible;
}

.ftco-section .ftco-animate {
  position: relative;
  z-index: 1;
}

/* Fix for text content positioning */
.ftco-section .col-md-6 .heading-section * {
  position: relative;
  z-index: 1;
}

/* Specific fix for About page Welcome section */
.ftco-section .col-md-6.ftco-animate {
  overflow: visible !important;
  position: relative !important;
}

.ftco-section .col-md-6.ftco-animate .heading-section {
  transform: none !important;
  animation: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: static !important;
  overflow: visible !important;
}

.ftco-section .col-md-6.ftco-animate .heading-section h2 {
  transform: none !important;
  animation: none !important;
  margin-top: 0 !important;
  position: static !important;
  display: block !important;
  visibility: visible !important;
}

/* Override any conflicting animation styles */
.ftco-animate.heading-section,
.ftco-animate .heading-section,
.ftco-animate .heading-section h2 {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.list-services {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.list-services.animated {
  opacity: 1;
  transform: translateX(0);
}

.list-services .icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.list-services .icon i {
  font-size: 24px;
  color: var(--dark-color);
}

.list-services .text h3 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.list-services .text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Counter Section */
.ftco-counter {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}

.ftco-counter .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.counter-wrap {
  margin-bottom: 30px;
}

.block-18 {
  text-align: center;
  position: relative;
  z-index: 10;
}

.block-18 .text {
  color: white;
}

.block-18 .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.block-18 span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.ftco-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.ftco-bg-dark {
  background-color: var(--dark-color);
}

.ftco-footer-widget {
  margin-bottom: 30px;
}

.ftco-heading-2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.ftco-footer-widget p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.ftco-footer-widget ul {
  list-style: none;
  padding: 0;
}

.ftco-footer-widget ul li {
  margin-bottom: 8px;
}

.ftco-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ftco-footer-widget ul li a:hover {
  color: var(--accent-color);
}

.ftco-footer-social {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftco-footer-social li {
  margin-right: 15px;
}

.ftco-footer-social li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.ftco-footer-social li a:hover {
  background-color: var(--dark-color);
  color: var(--accent-color);
}

.block-23 ul {
  list-style: none;
  padding: 0;
}

.block-23 ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.block-23 .icon {
  width: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--accent-color);
}

.block-23 .text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.block-23 .text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.block-23 .text a:hover {
  color: var(--accent-color);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
  z-index: 10000;
  transition: width 0.1s ease;
}

/* Enhanced WhatsApp Widget */
/* Consult Now Widget - Positioned above WhatsApp widget */
.consult-widget {
  position: fixed;
  bottom: 100px; /* Minimal spacing to prevent overlap */
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #FFD700, #ffed4a);
  color: #36074c;
  padding: 16px 24px; /* Increased padding for larger size */
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.consult-widget:hover {
  background: linear-gradient(45deg, #36074c, #4a0a5e);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
  color: #FFD700;
  text-decoration: none;
}

.consult-widget i {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* Increased icon size */
}

.consult-widget:hover i {
  transform: rotate(15deg) scale(1.1);
}

.consult-widget span {
  font-size: 18px; /* Increased text size */
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wa-widget {
  position: fixed;
  bottom: 20px; /* Proper spacing from bottom */
  right: 20px;
  z-index: 9998; /* Slightly lower z-index than consult widget */
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  padding: 16px 24px; /* Increased padding for larger size */
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.wa-widget:hover {
  background: linear-gradient(45deg, #128C7E, #0d6b61);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: white;
  text-decoration: none;
}

.wa-widget svg {
  width: 36px; /* Increased SVG size */
  height: 36px;
  margin-right: 12px; /* Increased margin */
  transition: transform 0.3s ease;
}

.wa-widget:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.wa-widget span {
  font-size: 18px; /* Increased text size */
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ftco-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.ftco-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Styles */
.contact-info {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-item .icon i {
  color: white;
  font-size: 18px;
}

.contact-item h5 {
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
}

.contact-form .form-control {
  background: white;
  border: 1px solid #ddd;
  color: var(--text-color);
  border-radius: 4px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--dark-color);
  box-shadow: 0 0 0 0.2rem rgba(54, 7, 76, 0.25);
  outline: none;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item .icon {
  margin-bottom: 15px;
}

.feature-item h4 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Service Item Styles */
.service-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
  margin-bottom: 20px;
}

.service-item h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-item p {
  color: var(--text-color);
  line-height: 1.6;
}

/* About Page Styles */
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.img-wrap:hover img {
  transform: scale(1.05);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact page specific feature item styling */
.text-center .feature-item {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
}

.text-center .feature-item .icon {
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  margin-right: 0;
  margin-bottom: 15px;
  justify-content: center;
}

.text-center .feature-item h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.text-center .feature-item p {
  margin-bottom: 0;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact icon styling */
.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  height: 100%;
}

.contact-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 10px;
}

.contact-item p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Ensure equal height columns for contact items */
.contact-info .row {
  display: flex;
  align-items: stretch;
}

.contact-info .col-md-3,
.contact-info .col-sm-6 {
  display: flex;
  flex-direction: column;
}

/* Designer Credit Styling */
.designer-credit {
  background: #f8f9fa;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #e9ecef;
}

.designer-credit p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  font-weight: 400;
}

.designer-link {
  color: #36074c !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.designer-link:hover {
  color: #5a0a7a !important;
  text-decoration: underline;
}

/* Removed shimmer animation for cleaner appearance */

/* Feature Item Styling - Fix Overlapping */
.feature-item {
  padding: 20px 15px;
  margin-bottom: 30px;
  min-height: 200px;
}

/* Vertical layout (contact page) */
.feature-item.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item.text-center .icon {
  margin-bottom: 15px !important;
  flex-shrink: 0;
}

.feature-item.text-center h4 {
  margin: 15px 0 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

.feature-item.text-center p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #666;
}

/* Horizontal layout (about page) */
.feature-item.d-flex {
  display: flex !important;
  align-items: flex-start;
  padding: 15px;
  margin-bottom: 25px;
  min-height: auto;
}

.feature-item.d-flex .icon {
  margin-right: 15px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  width: 50px;
  display: flex;
  justify-content: center;
}

.feature-item.d-flex div:last-child {
  flex: 1;
}

.feature-item.d-flex h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

.feature-item.d-flex p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-item {
    padding: 15px 10px;
    min-height: 180px;
  }
  
  .feature-item.text-center .icon i {
    font-size: 2.5rem !important;
  }
  
  .feature-item h4 {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  .feature-item.d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item.d-flex .icon {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    align-self: center;
  }
}

/* Form Validation */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Advanced Animations */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(54, 7, 76, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(54, 7, 76, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(54, 7, 76, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Enhanced Service Cards */
.service-item {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.service-item.in-view {
  animation: slideInUp 0.6s ease forwards;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
  transition: all 0.3s ease;
}

.service-item:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

/* Enhanced Contact Items */
.contact-item {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.contact-item.in-view {
  animation: slideInUp 0.6s ease forwards;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Section Spacing */
section:not(:last-child) {
  margin-bottom: 3em;
}

.hero-wrap + section,
.hero-wrap-2 + section {
  margin-top: 3em;
}

/* Slider Speed Control */
.home-slider .owl-carousel {
  transition: all 0.8s ease;
}

.home-slider .owl-item {
  transition: all 0.8s ease;
}

/* Interactive Gallery Styles */
.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-filter {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-filter button {
  background: transparent;
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--dark-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Mobile Responsive Fix for Guidance Rooted Section */
@media (max-width: 768px) {
  .ftco-services .full-height-img {
    min-height: 250px !important;
    background-position: center top !important;
  }
  
  .ftco-services .about-wrap {
    padding: 20px;
    margin-bottom: 0;
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(54, 7, 76, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.gallery-caption {
  color: white;
  font-weight: 600;
  text-align: center;
}

/* Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gallery-close:hover {
  color: var(--accent-color);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-text h1 {
    font-size: 36px;
  }
  
  .slider-text p {
    font-size: 16px;
  }
  
  .hero-wrap-2 .bread {
    font-size: 32px;
  }
  
  .equal-height-row {
    flex-direction: column;
  }
  
  .full-height-img {
    min-height: 300px;
  }
  
  .about-wrap {
    padding: 40px 20px;
  }
  
  .heading-section h2 {
    font-size: 28px;
  }
  
  .block-18 .number {
    font-size: 36px;
  }
  
  .consult-widget {
    bottom: 85px; /* Minimal mobile spacing to prevent overlap */
    right: 15px;
    padding: 12px 18px; /* Slightly larger than before */
  }
  
  .consult-widget i {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .consult-widget span {
    font-size: 16px; /* Increased mobile text size */
  }

  .wa-widget {
    bottom: 20px; /* Proper spacing from bottom on mobile */
    right: 15px;
    padding: 12px 18px; /* Increased mobile padding */
  }
  
  .wa-widget svg {
    width: 28px; /* Increased mobile SVG size */
    height: 28px;
    margin-right: 10px;
  }
  
  .wa-widget span {
    font-size: 16px; /* Increased mobile text size */
  }
}

@media (max-width: 480px) {
  .slider-text h1 {
    font-size: 28px;
  }
  
  .slider-text p {
    font-size: 14px;
  }
  
  .hero-wrap-2 .bread {
    font-size: 24px;
  }
  
  .about-wrap {
    padding: 30px 15px;
  }
  
  .heading-section h2 {
    font-size: 24px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item .icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* Footer Mobile Center Alignment */
  .ftco-footer-widget {
    text-align: center;
  }
  
  .ftco-footer-widget h2.ftco-heading-2 {
    text-align: center;
  }
  
  .ftco-footer-widget p {
    text-align: center;
  }
  
  .ftco-footer-widget ul {
    text-align: center;
  }
  
  .ftco-footer-widget .ftco-footer-social {
    justify-content: center;
  }
  
  .block-23 ul li {
    justify-content: center;
    text-align: center;
  }
  
  .block-23 .text {
    text-align: center;
  }
}

/* Footer Mobile Center Alignment for Tablet and Mobile */
@media (max-width: 768px) {
  .ftco-footer-widget {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .ftco-footer-widget h2.ftco-heading-2 {
    text-align: center;
  }
  
  .ftco-footer-widget p {
    text-align: center;
  }
  
  .ftco-footer-widget ul {
    text-align: center;
  }
  
  .ftco-footer-widget .ftco-footer-social {
    justify-content: center;
  }
  
  .block-23 ul li {
    justify-content: center;
    text-align: center;
  }
  
  .block-23 .text {
    text-align: center;
  }
  
  .location-hover-area {
    text-align: center;
  }
  
  .footer-map {
    text-align: center;
  }
}

/* Footer Location Hover Effects */
.footer-map {
  margin-top: 15px;
  transition: all 0.3s ease;
}

.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Location section hover effects */
.location-hover-area {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 15px;
}

.location-hover-area:hover {
  transform: translateY(-3px);
  background: rgba(65, 11, 152, 0.08);
  box-shadow: 0 8px 25px rgba(65, 11, 152, 0.15);
  padding: 20px;
}

.location-hover-area:hover .footer-map iframe {
  box-shadow: 0 12px 35px rgba(65, 11, 152, 0.25);
  transform: scale(1.03);
  border: 2px solid rgba(233, 79, 28, 0.3);
}

.location-hover-area:hover .ftco-heading-2 {
  color: #E94F1C;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.location-hover-area:hover .list-unstyled li {
  color: #410b98;
  transform: translateX(3px);
  transition: all 0.3s ease;
}

.location-hover-area:hover .list-unstyled li i {
  color: #E94F1C;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
