/* CSS Reset & Variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary-purple: #7b2cbf;
            --light-purple: #f3e8ff;
            --dark-purple: #3c096c;
            --violet-border: #c084fc; /* Soft Violet border for default state */
            --text-color: #2d3748;
			--dark-green: #4fa624;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fcfaff;
            color: var(--text-color);
        }
		
		
	.valuation__pop {
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    position: fixed;
    bottom: 150px;
    right: 1px;
    z-index: 9999999;
    box-shadow: 3px 10px 20px 1px #0000005c;
	}
.social-button {
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  width: 50px;
  height: 50px;
  text-decoration: none;
  margin-top:4px;
}
.social-icons {
  width: 100%;
}
.social-button__inner {
  font-size: 2.3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 100%;
  background: #eee;
  text-align: center;
}
.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.social-button i {
  font-size: 28px;
}
.social-button svg {
  height: 40%;
  width: 40%;
}
.social-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}
.social-button:focus,
.social-button:hover {
  color: #fff;
  text-decoration: none;
}
.social-button:focus::after,
.social-button:hover::after {
  width: 100%;
  height: 100%;
  margin-left: -50%;
}

.social-button--facebook {
  color: #3b5999;
}
.fb{
	border:3px solid #3b5999; 
}
.social-button--facebook::after {
  background: #3b5999;
}

.social-button--linkedin {
  color: #0077b5;
}
.social-button--linkedin::after {
  background: #0077b5;
}
.linkd{
	border:3px solid #0077b5; 
}

.social-button--youtube {
  color: #ff0000;
}
.social-button--youtube::after {
  background: #ff0000;
}
.youtube{
	border:3px solid #ff0000; 
}
.threads{
	border:3px solid #1e3050; 
}
.xx{
	border:3px solid #1e3050; 
}
.threads img{
	width:32px; 
}
.xx img{
	width:32px; 
}




.insta{
	border:3px solid #e4405f; 
}


.social-button--instagram {
  color: #e4405f;
}
.social-button--instagram::after {
  background: #e4405f;
}


* -----------------------------------------
   Inline Success/Fail Messages
----------------------------------------- */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 10px;
	
}

.form-message.show {
    display: flex;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
	border-radius:6px;
	padding:10px;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

.form-message-icon {
    font-size: 18px;
    flex-shrink: 0;
}



        /* -----------------------------------------
           Sticky Header Styles
        ----------------------------------------- */
        header {
            position: inherit;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            z-index: 1000;
        }

        .navbar {
            max-width: 1280px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height:40px;
        }
		 .navbar img{
			 height:45px;
		 }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #555555;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-purple);
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
		

        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
		
		.phone-btn {
			position: fixed;
			left: 20px;
			bottom: 25px;
			height: 60px;
			width: 60px;
			z-index: 1999;
			border-radius: 50%;
			animation: shadow-pulse 1.3s infinite;
		}
		.phone-btn img {
			width: 100%;
		}

		@keyframes shadow-pulse
		{
		  0% {
			box-shadow: 0 0 0 0px rgba(182, 98, 252, 0.9);
		  }
		  100% {
			box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
		  }
		}

		@keyframes shadow-pulse-big
		{
		  0% {
			box-shadow: 0 0 0 0px rgba(255, 255, 255);
		  }
		  100% {
			box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
		  }
		}


        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: var(--dark-purple);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* -----------------------------------------
           Hero Section (Banner + Form)
        ----------------------------------------- */
        .hero-section {
            max-width: 1280px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(123, 44, 191, 0.08);
        }

        /* Left Side Banner Container */
        .hero-banner {
            width: 100%;
            height: 100%;
            min-height: 550px;
            display: flex;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Right Side Form Container */
        .hero-form-container {
            padding: 40px;
        }

        .form-title {
            font-size: 26px;
            color: var(--dark-purple);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 14px;
            color: #718096;
            margin-bottom: 25px;
        }

        /* Form Fields Styling */
        .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            color: #4a5568;
            margin-bottom: 6px;
        }

        /* Input Fields Default Violet Highlight */
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--violet-border); /* Default Violet Border */
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: all 0.2s ease-in-out;
        }

        /* Focus state: Thicker & Darker Violet */
        .form-input:focus {
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 2px var(--primary-purple); /* Fakes thicker border cleanly */
        }

        /* Error state: Red border */
        .form-input.error {
            border-color: #e53e3e;
        }

        .form-input.error:focus {
            border-color: #e53e3e;
            box-shadow: 0 0 0 2px #e53e3e;
        }

        /* Error Message Styling */
        .error-message {
            color: #e53e3e;
            font-size: 12px;
            margin-top: 5px;
            font-weight: 500;
        }

        /* Phone Input Wrapper with +91 & Flag */
        .phone-input-wrapper {
            display: flex;
            align-items: center;
            border: 2px solid var(--violet-border); /* Default Violet Border */
            border-radius: 8px;
            background-color: #fff;
            overflow: hidden;
            transition: all 0.2s ease-in-out;
        }

        /* Phone Focus state: Thicker & Darker Violet */
        .phone-input-wrapper:focus-within {
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 2px var(--primary-purple);
        }

        /* Phone Error state: Red border */
        .phone-input-wrapper.error {
            border-color: #e53e3e;
        }

        .phone-input-wrapper.error:focus-within {
            border-color: #e53e3e;
            box-shadow: 0 0 0 2px #e53e3e;
        }

        .country-prefix {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 14px;
            background-color: #fcfaff;
            border-right: 2px solid var(--violet-border);
            font-size: 14px;
            font-weight: 500;
            color: #4a5568;
            user-select: none;
        }

        .flag-icon {
            font-size: 18px;
        }

        .phone-field {
            border: none;
            outline: none;
            padding: 12px 16px;
            width: 100%;
            font-size: 14px;
            font-family: inherit;
        }

        /* Location Wrapper with Map Icon */
        .location-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .location-field {
            padding-right: 45px; /* Icon space */
        }

        .locate-btn-wrapper {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
        }

        .locate-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-purple);
            padding: 4px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
            position: relative;
        }

        .locate-btn:hover {
            background-color: var(--light-purple);
        }

        .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark-purple);
            color: #ffffff;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: var(--dark-purple);
        }

        .locate-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            background-color: var(--dark-green);
            color: #ffffff;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #1a8f34;
        }

        /* -----------------------------------------
           Our Philosophy Section
        ----------------------------------------- */
        .philosophy-section {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .philosophy-container {
            background: linear-gradient(135deg, #ffffff 0%, #faf5ff 50%, #f3e8ff 100%);
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 15px 50px rgba(123, 44, 191, 0.12);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .philosophy-container::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .philosophy-container::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(79, 166, 36, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .philosophy-header {
            text-align: center;
            margin-bottom: 45px;
            position: relative;
            z-index: 1;
        }

        .philosophy-header .section-title {
            font-size: 36px;
            color: var(--dark-purple);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .philosophy-description {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .platform-built-on {
            font-size: 22px;
            color: var(--primary-purple);
            font-weight: 600;
            margin-bottom: 35px;
            position: relative;
            display: inline-block;
        }

        .platform-built-on::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-purple), var(--dark-green));
            border-radius: 2px;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .philosophy-card {
            background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
            border: 2px solid rgba(123, 44, 191, 0.15);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--dark-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .philosophy-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(123, 44, 191, 0.2);
            border-color: var(--primary-purple);
        }

        .philosophy-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--light-purple) 0%, #e9d5ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .card-icon-wrapper svg {
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        .philosophy-card:hover .card-icon-wrapper {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
            transform: rotate(360deg);
        }

        .philosophy-card:hover .card-icon-wrapper svg {
            color: #ffffff;
        }

        .card-title {
            font-size: 16px;
            color: var(--dark-purple);
            font-weight: 600;
            margin: 0;
            transition: color 0.3s ease;
        }

        .philosophy-card:hover .card-title {
            color: var(--primary-purple);
        }

        .philosophy-footer-text {
            text-align: center;
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding: 25px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 12px;
            border-left: 4px solid var(--primary-purple);
        }

        /* -----------------------------------------
           Why Choose Us Section
        ----------------------------------------- */
        .why-choose-section {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .why-choose-container {
            background: linear-gradient(180deg, #ffffff 0%, #faf5ff 50%, #f3e8ff 100%);
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 20px 60px rgba(123, 44, 191, 0.15);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .why-choose-container::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .why-choose-container::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(79, 166, 36, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .why-choose-header .section-title {
            font-size: 40px;
            color: var(--dark-purple);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .subtitle {
            font-size: 20px;
            color: var(--primary-purple);
            font-weight: 600;
            font-style: italic;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .why-choose-header .description {
            font-size: 16px;
            line-height: 1.9;
            color: #4a5568;
            max-width: 850px;
            margin: 0 auto;
        }

        .what-makes-unique {
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .what-makes-unique h3 {
            font-size: 28px;
            color: var(--dark-purple);
            font-weight: 600;
            margin-bottom: 35px;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .what-makes-unique h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
        }

        .unique-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .unique-card {
            background: #ffffff;
            border: 2px solid var(--violet-border);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .unique-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--dark-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .unique-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-purple);
            box-shadow: 0 20px 50px rgba(123, 44, 191, 0.2);
        }

        .unique-card:hover::before {
            transform: scaleX(1);
        }

        .card-number {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 36px;
            font-weight: 700;
            color: rgba(123, 44, 191, 0.15);
            line-height: 1;
            transition: all 0.4s ease;
        }

        .unique-card:hover .card-number {
            color: rgba(123, 44, 191, 0.3);
            transform: scale(1.15);
        }

        .card-title {
            font-size: 18px;
            color: #2d3748;
            font-weight: 600;
            margin: 0 0 15px;
            
            transition: color 0.3s ease;
        }

        .unique-card:hover .card-title {
            color: var(--primary-purple);
        }

        .card-text {
            font-size: 15px;
            line-height: 1.8;
            color: #4a5568;
            margin: 0;
            transition: color 0.3s ease;
        }

        .card-text strong {
            color: var(--primary-purple);
            font-weight: 600;
        }

        .unique-card:hover .card-text {
            color: #2d3748;
        }

        .space-for-soul {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 35px;
            background: rgba(123, 44, 191, 0.08);
            border-radius: 16px;
            border: 2px solid var(--violet-border);
        }

        .space-for-soul h3 {
            font-size: 26px;
            color: var(--dark-purple);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .space-for-soul .description {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
        }

        /* -----------------------------------------
           Our Services Section
        ----------------------------------------- */
        .services-section {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .services-container {
            background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 50%, #fce7f3 100%);
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 20px 60px rgba(219, 39, 119, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .services-container::before {
            content: '';
            position: absolute;
            top: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(219, 39, 119, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .services-container::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .services-header .section-title {
            font-size: 40px;
            color: var(--dark-purple);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .services-tagline {
            font-size: 20px;
            color: #db2777;
            font-weight: 600;
            font-style: italic;
            letter-spacing: 1px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: linear-gradient(145deg, #fdf4ff 0%, #fce7f3 100%);
            border: 2px solid rgba(219, 39, 119, 0.2);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card:nth-child(even) {
            background: linear-gradient(145deg, #f3e8ff 0%, #e9d5ff 100%);
            border-color: rgba(123, 44, 191, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #db2777, var(--primary-purple));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(219, 39, 119, 0.2);
            border-color: #db2777;
        }

        .service-card:nth-child(even):hover {
            border-color: var(--primary-purple);
            box-shadow: 0 25px 50px rgba(123, 44, 191, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(219, 39, 119, 0.2);
        }

        .service-card:nth-child(even) .service-icon-wrapper {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-color: rgba(123, 44, 191, 0.2);
        }

        .service-icon-wrapper svg {
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, var(--primary-purple) 0%, #db2777 100%);
            border-color: transparent;
        }

        .service-card:hover .service-icon-wrapper svg {
            color: #ffffff;
        }

        .service-title {
            font-size: 18px;
            color: #2d3748;
            font-weight: 600;
            margin: 0 0 15px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: var(--primary-purple);
        }

        .service-description {
            font-size: 14px;
            line-height: 1.7;
            color: #4a5568;
            margin: 0;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-description {
            color: #2d3748;
        }

        /* -----------------------------------------
           Footer Section
        ----------------------------------------- */
        /* =========================================
                   FOOTER — Enhanced Contact Design
                   ========================================= */
        .footer {
            background: linear-gradient(135deg, #1a0533 0%, #3b0764 30%, #5b21b6 70%, #2e1065 100%);
            padding: 60px 20px 0;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        /* subtle decorative glow */
        .footer::before {
            content: '';
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2), transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.5fr;
            gap: 50px;
            padding-bottom: 40px;
        }

        /* ---- Brand column ---- */
        .footer-logo {
            margin-bottom: 15px;
        }
        .footer-logo img {
            height: 48px;
            border-radius: 6px;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }

        .footer-tagline {
            font-size: 18px;
            color: #f3e8ff;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .footer-desc {
            font-size: 14px;
            color: #c4b5fd;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 360px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social .fsocial {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #e9d5ff;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-social .fsocial:hover {
            background: linear-gradient(135deg, #7b2cbf, #a855f7);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
        }

        /* ---- Nav column ---- */
        .footer-heading {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin: 0 0 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: linear-gradient(90deg, #a855f7, #7b2cbf);
            border-radius: 2px;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-nav li {
            margin-bottom: 12px;
        }
        .footer-nav a {
            color: #c4b5fd;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-nav a::before {
            content: '›';
            font-size: 18px;
            color: #a855f7;
            transition: transform 0.3s ease;
        }
        .footer-nav a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        /* ---- Contact column ---- */
        .footer-contact-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .fci-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(123,44,191,0.25), rgba(168,85,247,0.15));
            border-radius: 50%;
            color: #a855f7;
            font-size: 15px;
            border: 1px solid rgba(168,85,247,0.15);
        }

        .fci-text {
            color: #d8b4fe;
            font-size: 14px;
            line-height: 1.6;
            word-break: break-word;
        }
        .fci-text a {
            color: #d8b4fe;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }
        .fci-text a:hover {
            color: #ffffff;
        }
        .fci-text strong {
            color: #f3e8ff;
        }

        /* ---- Bottom bar ---- */
        .footer-bottom {
            text-align: center;
            padding: 22px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .copyright {
            font-size: 13px;
            color: #a78bfa;
            margin: 0;
            letter-spacing: 0.3px;
        }

        /* ---- Footer Responsive ---- */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-desc {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 50px 16px 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-brand {
                grid-column: 1;
            }
            .footer-heading {
                margin-bottom: 14px;
            }
            .footer-contact-item {
                margin-bottom: 14px;
            }
            .footer-social {
                justify-content: flex-start;
            }
        }

        @media (max-width: 520px) {
            .footer {
                padding: 40px 14px 0;
                margin-top: 50px;
            }
            .footer-grid {
                gap: 25px;
            }
            .footer-logo img {
                height: 38px;
            }
            .footer-tagline {
                font-size: 16px;
            }
            .footer-desc {
                font-size: 13px;
            }
            .footer-heading {
                font-size: 15px;
            }
            .footer-nav a,
            .fci-text {
                font-size: 13px;
            }
            .fci-icon {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
            .copyright {
                font-size: 12px;
            }
        }

        /* ---- Footer Reach Us Button ---- */
        .footer-reach-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 10px 24px;
            border-radius: 30px;
            background: linear-gradient(135deg, #7b2cbf, #a855f7);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
            border: none;
            cursor: pointer;
        }
        .footer-reach-btn i {
            font-size: 13px;
            transition: transform 0.3s ease;
        }
        .footer-reach-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 44, 191, 0.5);
        }
        .footer-reach-btn:hover i {
            transform: translateX(4px);
        }

        /* -----------------------------------------
           Floating WhatsApp Button
        ----------------------------------------- */
        .floating-whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 150px;
            
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px) scale(0.5);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
			
			
			display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .floating-whatsapp-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .floating-whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        /* -----------------------------------------
           About Smaran Sutra Section
        ----------------------------------------- */
        .about-smaran-sutra-section {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .about-smaran-sutra-container {
            background: linear-gradient(180deg, #ffffff 0%, #faf5ff 50%, #f3e8ff 100%);
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 20px 60px rgba(123, 44, 191, 0.12);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .about-smaran-sutra-container::before {
            content: '';
            position: absolute;
            top: -70px;
            right: -70px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-smaran-sutra-container::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(219, 39, 119, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-smaran-sutra-container .section-title {
            font-size: 30px;
            color: var(--dark-purple);
            font-weight: 600;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            max-width: 900px;
            margin: 0 auto 30px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .healing-modalities {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 45px;
            position: relative;
            z-index: 1;
        }

        .healing-modalities li {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            color: var(--primary-purple);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(123, 44, 191, 0.2);
            transition: all 0.3s ease;
        }

        .healing-modalities li:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(123, 44, 191, 0.2);
            border-color: var(--primary-purple);
        }

        .what-we-heal-title {
            font-size: 28px;
            color: var(--dark-purple);
            font-weight: 600;
            text-align: center;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        .what-we-heal-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-purple), #db2777);
            border-radius: 2px;
        }

        .healing-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .healing-card {
            background: #ffffff;
            border: 2px solid rgba(123, 44, 191, 0.15);
            border-radius: 20px;
            padding: 35px 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .healing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), #db2777);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .healing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(123, 44, 191, 0.2);
            border-color: var(--primary-purple);
        }

        .healing-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(123, 44, 191, 0.2);
        }

        .card-icon-wrapper svg {
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        .healing-card:hover .card-icon-wrapper {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, var(--primary-purple) 0%, #db2777 100%);
            border-color: transparent;
        }

        .healing-card:hover .card-icon-wrapper svg {
            color: #ffffff;
        }

        .healing-card .card-title {
            font-size: 20px;
            color: #2d3748;
            font-weight: 600;
            margin: 0 0 20px;
            text-align: center;
            transition: color 0.3s ease;
        }

        .healing-card:hover .card-title {
            color: var(--primary-purple);
        }

        .healing-list {
            list-style: none;
            padding: 0;
            margin: 0;
			background: var(--primary-purple);
			border-radius: 12px;
        }

        .healing-list li {
            font-size: 14px;
            line-height: 1.8;
            color: #fff;
            padding: 8px 0 10px 45px;
            position: relative;
            transition: color 0.3s ease;
			border-bottom:1px dashed #eee;
        }

        .healing-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #fff;
            font-weight: 700;
            font-size: 12px;
			padding: 0px 0 8px 20px;
        }

        .healing-card:hover .healing-list li {
            color: #eee;
        }

        /* -----------------------------------------
           Our Healer Section
        ----------------------------------------- */
        .healer-section {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .healer-container {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: center;
            background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(123, 44, 191, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background elements */
        .healer-container::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .healer-container::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(79, 166, 36, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .healer-image-wrapper {
            position: relative;
            z-index: 1;
        }

        .healer-image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(123, 44, 191, 0.2);
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .healer-image-wrapper img:hover {
            transform: scale(1.02);
        }

        .healer-content {
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 32px;
            color: var(--dark-purple);
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .tagline {
            font-size: 18px;
            color: var(--primary-purple);
            font-weight: 600;
            font-style: italic;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .healer-content p {
            font-size: 15px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 18px;
        }

        .healer-content p:last-child {
            margin-bottom: 0;
        }
		
		@media screen and (min-width: 768px) and (max-width: 2200px) {
		.whatsapp-btn2{
			display: none !important;
		} 
		}

        /* -----------------------------------------
           Responsive Styles (Tablet & Mobile)
        ----------------------------------------- */
        @media (max-width: 900px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-banner {
                min-height: 350px;
                height: 350px;
            }

            .hero-form-container {
                padding: 0px 10px;
            }

            .healer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 35px 25px;
            }

            .healer-image-wrapper img {
                max-width: 400px;
                margin: 0 auto;
                display: block;
            }

            .section-title {
                font-size: 28px;
            }

            .philosophy-container {
                padding: 40px 30px;
            }

            .philosophy-header .section-title {
                font-size: 30px;
            }

            .philosophy-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .platform-built-on {
                font-size: 20px;
            }

            .why-choose-container {
                padding: 45px 35px;
            }

            .why-choose-header .section-title {
                font-size: 34px;
            }

            .subtitle {
                font-size: 18px;
            }

            .unique-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .what-makes-unique h3 {
                font-size: 24px;
            }

            .services-container {
                padding: 45px 35px;
            }

            .services-header .section-title {
                font-size: 34px;
            }

            .services-tagline {
                font-size: 18px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .about-smaran-sutra-container {
                padding: 45px 35px;
            }

            .about-smaran-sutra-container .section-title {
                font-size: 32px;
            }

            .what-we-heal-title {
                font-size: 24px;
            }

            .healing-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
			.hero-section {
				padding: 0px !important;
			}
			.about-smaran-sutra-section {
				margin: 0px auto;
				padding: 0px;
			}
			.healer-section {
				margin: 0px auto;
				padding:0px;
			}
			.services-section {
				margin: 0px auto;
				padding:0px;
			}
			.philosophy-section {
				
				margin: 0px auto;
				padding: 0px;
			}
			.why-choose-section {
				margin:0px auto;
				padding:0px;
			}
			
            .menu-toggle {
                display: flex;
            }
			.navbar img{
			 height:40px;
			}
			.whatsapp-btn {
            display: none;
			}
			.floating-whatsapp-btn{
				display:none;
			}
			.whatsapp-btn2 {
            position:fixed;
			bottom:5px;
			z-index:99;
			margin-left:18%;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
			}
			.phone-btn {
			left: 10px;
			bottom: 5px;
			height: 45px;
			width: 45px;
			z-index: 1999;
			border-radius: 50%;
			animation: shadow-pulse 1.3s infinite;
			}

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 300px;
                height: 100vh;
                background-color: #ffffff;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 80px;
                gap: 20px;
                transition: right 0.4s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-link {
                font-size: 18px;
                padding: 10px 25px;
                display: block;
                width: 100%;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: translateY(7.5px) rotate(45deg);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-7.5px) rotate(-45deg);
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .philosophy-header .section-title {
                font-size: 26px;
            }

            .platform-built-on {
                font-size: 18px;
            }

            .why-choose-header .section-title {
                font-size: 30px;
            }

            .subtitle {
                font-size: 16px;
            }

            .what-makes-unique h3 {
                font-size: 22px;
            }

            .space-for-soul h3 {
                font-size: 22px;
            }

            .services-header .section-title {
                font-size: 30px;
            }

            .services-tagline {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-smaran-sutra-container {
                padding: 5px;
            }

            .about-smaran-sutra-container .section-title {
                font-size: 32px;
            }

            .what-we-heal-title {
                font-size: 24px;
            }

            .healing-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .about-smaran-sutra-container .section-title {
                font-size: 28px;
            }

            .what-we-heal-title {
                font-size: 22px;
            }

            .healing-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
			
	.valuation__pop {
    
    padding: 3px;
    bottom: 140px;
    right: 0px;
	}
.social-button {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  margin-top:8px;
}
.social-icons {
  width: 100%;
}
.social-button i {
  font-size: 21px;
}
.threads img{
	width:25px; 
}
.xx img{
	width:22px; 
}
		}


	@media (max-width: 520px){
	.whatsapp-btn2 {
            
			margin-left:18%;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
			}
	}
