:root {
            --primary: #1a237e;
            --secondary: #283593;
            --accent: #ffab00;
            --light: #e8eaf6;
            --dark: #0d1452;
            --gradient: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
            --gradient-accent: linear-gradient(135deg, #ffab00 0%, #ffca28 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Philosopher", sans-serif;
            line-height: 1.4;
            color: #333;
            overflow-x: hidden;
            background-color: #f8f9fa;
			font-size: 1.2rem
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
		#demo {
            margin: 80px 0 0 0;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 0;
            transition: all 0.3s ease;
			font-size: 1.4rem
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
			font-size: 1.4rem
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 35, 126, 0.4);
        }
        
        .btn-accent {
            background: var(--gradient-accent);
            color: #333;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
			font-size: 1.4rem;
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 171, 0, 0.4);
            color: #333;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            overflow: hidden;
        }
       
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        /* Section Styling */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            color: var(--primary) !important;
        }
                
        .section-subtitle {
            font-size: 1.4rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        /* Services Section */
        .services-section {
            background: white;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .service-card:hover h4,
        .service-card:hover p {
            color: white;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: var(--primary);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .service-card h4 {
            font-size: 1.8rem;
            margin: 15px 0 10px 0;
            transition: all 0.3s ease;
        }
        
        .service-card p {
            color: #666;
            transition: all 0.3s ease;
        }
        
        /* Plans Section */
        .plans-section {
            background: var(--light);
        }
        
        .plan-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 30px;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .plan-header {
            background: var(--gradient);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .plan-name {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .plan-duration {
            opacity: 0.8;
        }
        
        .plan-body {
            padding: 30px;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
			font-size: 1.3rem;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .popular-badge {
            position: absolute;
            top: -2px;
            right: 150px;
            background: var(--accent);
            color: #333;
            padding: 5px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.7rem;
            box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
        }
        
        /* Testimonials */
        .testimonials-section {
            background: white;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 15px;
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            color: var(--light);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #666;
            margin: 0;
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--gradient);
            color: white;
        }
        
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.1);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer h5 {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
		
		.footer p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            color: #333;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .floating-card {
                position: relative;
                margin-bottom: 20px;
            }
            
            .floating-card-1,
            .floating-card-2,
            .floating-card-3 {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                margin: 0 auto 20px;
                max-width: 300px;
            }
        }
		
		 /* Redesigned About Section */
        .about-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            padding: 60px;
            background: white;
        }
        
                      
        .experience-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--gradient-accent);
            color: #333;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(255, 171, 0, 0.3);
            z-index: 2;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .mission-vision-container {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .mission-card, .vision-card {
            flex: 1;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .mission-card {
            background: var(--light);
            border-left: 5px solid var(--primary);
        }
        
        .vision-card {
            background: var(--light);
            border-left: 5px solid var(--accent);
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .mission-card:before, .vision-card:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            top: 0;
            left: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .mission-card:before {
            background: var(--gradient);
        }
        
        .vision-card:before {
            background: var(--gradient-accent);
        }
        
        .mission-card:hover:before, .vision-card:hover:before {
            height: 100%;
        }
        
        .mission-card:hover, .vision-card:hover {
            color: white;
        }
        
        .mission-card:hover h4, .vision-card:hover h4 {
            color: white;
        }
        
        .mission-card:hover .card-icon, .vision-card:hover .card-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .mission-card .card-icon {
            color: var(--primary);
        }
        
        .vision-card .card-icon {
            color: var(--accent);
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .stats-row {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
        }
        
        .stat-text {
            font-size: 1.2rem;
            color: #FFF;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                padding: 40px 30px;
            }
            
            .mission-vision-container {
                flex-direction: column;
            }
            
            .stats-row {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 10px);
            }
        }
        
        @media (max-width: 576px) {
            .about-content {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
            
            .experience-badge {
                position: relative;
                top: auto;
                right: auto;
                display: inline-block;
                margin-bottom: 20px;
            }
        }
		
		 /* Values Section */
        .values-section {
            background: var(--light);
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
        }
         /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/static.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .stat-item {
            text-align: center;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--accent);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
     /* Services Section */
        .services-section {
            background: white;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .service-card:hover h4,
        .service-card:hover p {
            color: white;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .service-card p {
            color: #666;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
            text-align: left;
        }
        
        .service-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }
        
        .service-features li i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .service-card:hover .service-features li i {
            color: white;
        }
        
        .service-btn {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .service-card:hover .service-btn {
            border-color: white;
            color: white;
        }
        
        .service-btn:hover {
            background: white;
            color: var(--primary);
        }
        
        .service-card:hover .service-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        /* Service Categories */
        .categories-section {
            background: var(--light);
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }
        
        .category-tab {
            background: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .category-tab:hover, .category-tab.active {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
        }
        
        .category-content {
            display: none;
        }
        
        .category-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Process Section */
        .process-section {
            background: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: var(--light);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-icon {
            background: var(--gradient);
            color: white;
            border-color: var(--primary);
            transform: scale(1.1);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: 10px;
            background: var(--accent);
            color: #333;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light);
        }
        
        .accordion-item {
            border: none;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .accordion-button {
            background: white;
            border: none;
            padding: 20px 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-body {
            padding: 20px 25px;
            background: white;
        }
        
         /* Plans Filter */
        .plans-filter {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .filter-btn {
            background: var(--light);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
        }
        
        /* Plans Section */
        .plans-section {
            background: white;
        }
        
        .plan-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            position: relative;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .plan-header {
            background: var(--gradient);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent);
            color: #333;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
        }
        
        .plan-name {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .plan-tagline {
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .plan-duration {
            opacity: 0.8;
        }
        
        .plan-body {
            padding: 30px;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .plan-not-included {
            color: #999;
        }
        
        .plan-not-included i {
            color: #ccc;
        }
        
        /* Plan Comparison */
        .comparison-section {
            background: var(--light);
        }
        
        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .table th {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 20px 15px;
            font-weight: 600;
        }
        
        .table td {
            padding: 20px 15px;
            vertical-align: middle;
            border-color: #eee;
        }
        
        .table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .feature-check {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .feature-cross {
            color: #ccc;
            font-size: 1.2rem;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: white;
        }
        
        .calculator-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.1);
        }
        
        .calculator-result {
            background: var(--light);
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
            text-align: center;
        }
        
        .premium-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
                     
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .filter-options {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                max-width: 250px;
            }
            
            .comparison-table {
                overflow-x: auto;
            }
        }
		
		 /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover .contact-icon {
            background: var(--gradient);
            color: white;
        }
        
        .contact-info h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-align: center;
			color: var(--primary) !important;
        }
        
        .contact-info p {
            text-align: center;
            color: #666;
            margin-bottom: 0;
        }
        
        .contact-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            color: var(--accent);
        }
        
        /* Contact Form */
        .form-section {
            background: var(--light);
        }
        
        .form-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control, .form-select, .form-textarea {
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-control:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.1);
        }
        
        /* Map Section */
        .map-section {
            background: white;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 450px;
        }
        
        .map-placeholder {
            background: var(--light);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary);
        }
        
        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 20px;
        }
		
		/* Sticky WhatsApp and Call Icons */
        .sticky-contact-icons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .sticky-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            animation: pulse 2s infinite;
			text-decoration:none
        }
        
        .sticky-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .sticky-icon.whatsapp {
            background: #25D366;
        }
        
        .sticky-icon.call {
            background: var(--primary);
        }
       
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
        }
        
                   
        /* Responsive */
        @media (max-width: 768px) {
            .sticky-contact-icons {
                bottom: 20px;
                right: 20px;
            }
            
            .sticky-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
         }
        
        @media (max-width: 576px) {
            .sticky-contact-icons {
                bottom: 15px;
                right: 15px;
            }
            
            .sticky-icon .tooltip {
                display: none;
            }
        }