
        :root {
            /* --primary-color: #6366f1; */
            --primary-color:#2d5439;
            /* --secondary-color: #8b5cf6; */
            --secondary-color: #316e44;
            --accent-color: #06b6d4;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }

        /* Hero Section */
        .hero {
            /*background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);*/
            background:linear-gradient(135deg, #f0f9ff 0%, #a8c4a64a 100%);
            
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero .highlight {
            color: var(--primary-color);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .play-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            margin-left: 2rem;
        }

        .play-btn .play-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .custom-spacing a:first-child {
            margin-right: 20px;
        }


        /* Add Hero Image Animation after existing hero styles */
        .hero img {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        

        /* Stats Section */
        .stats {
            background: var(--white);
            /*padding: 80px 0;*/
                padding: 50px 0 0px 0;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--white);
            font-size: 2rem;
        }

        /* Stats Icon Animation - add after existing .stat-card .icon */
        .stat-card .icon {
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .stat-card:hover .icon {
            animation: bounce 1s infinite;
            transform: scale(1.1);
        }

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

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) scale(1.1);
            }
            40% {
                transform: translateY(-10px) scale(1.1);
            }
            60% {
                transform: translateY(-5px) scale(1.1);
            }
        }

        .stat-card h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* About Section */
        .about {
            /*background: var(--bg-light);*/
            background:linear-gradient(135deg, #f0f9ff 0%, #a8c4a64a 100%);
            padding: 100px 0;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-content .highlight {
            color: var(--primary-color);
        }

        .progress-item {
            margin-bottom: 1.5rem;
        }

        .progress-item label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .progress {
            height: 8px;
            border-radius: 10px;
            background: #e5e7eb;
        }

        .progress-bar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
        }

        .about .about-content {
            margin-top: 30px;
        }

        @media (max-width: 767.98px) {
        .about .about-content {
            text-align: center;
        }

        .about .progress-item {
            margin-bottom: 20px;
        }
    }


        /* Services Section */
        .services {
            padding:50px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: var(--primary-color);
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .service-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 2rem;
        }

        /* Service Icon Animation - add after existing .service-card .icon */
        .service-card .icon {
            transition: all 0.4s ease;
            animation: rotate 8s linear infinite;
        }

        .service-card:hover .icon {
            animation: shake 0.5s ease-in-out;
            transform: scale(1.2);
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes shake {
            0%, 100% {
                transform: translateX(0) scale(1.2);
            }
            25% {
                transform: translateX(-5px) scale(1.2);
            }
            75% {
                transform: translateX(5px) scale(1.2);
            }
        }

        .service-card h4 {
            margin-bottom: 1rem;
            font-size:18px;
        }

        /* Appointment Section */
        .appointment {

            padding:50px 0;
            position: relative;
        }

        .appointment-form {
            margin-top: 120px;
        }


        .appointment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(45deg, transparent 30%, rgba(97, 100, 241, 0.05) 50%, transparent 100%);*/
            background:linear-gradient(135deg, #f0f9ff 0%, #a8c4a64a 100%);
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .appointment-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary-color), #4a3087);
            color: var(--white);
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 1rem 0;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .pricing-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .pricing-card.featured ul li {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        /* Team Section */
        .team {
            background: var(--bg-light);
            padding: 100px 0;
        }

        .team-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-card-body {
            padding: 1.5rem;
            text-align: center;
        }

        .team-card h5 {
            margin-bottom: 0.5rem;
        }

        .team-card .position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: left;
            gap: 1rem;
        }

        .social_links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social_links a {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            /*background: var(--bg-light);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /*color: var(--text-dark);*/
            transition: all 0.3s ease;
                text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary-color);
            color: var(--white);
        }
        

        /* FAQ Section */
        .faq {
            padding:50px 0;
            background: var(--white);
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .accordion-button {
            background: var(--white);
            border: none;
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white);
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--bg-light);
        }

        /* Testimonials */
        .testimonials {
            /*background: var(--bg-light);*/
            background:linear-gradient(135deg, #f0f9ff 0%, #a8c4a64a 100%);
            padding:50px 0;
        }

        /* Add Testimonial Slider Styles */
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide {
            display: none;
            animation: slideIn 0.5s ease-in-out;
        }

        .testimonial-slide.active {
            display: block;
        }

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

        .slider-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .slider-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
        }

        .testimonial-card .quote {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-card .author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-card .author-info h6 {
            margin-bottom: 0.25rem;
        }

        .testimonial-card .author-info small {
            color: var(--text-light);
        }

        /* Blog Section */
        .blog {
            padding: 50px 0;
            background: var(--white);
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-card-body {
            padding: 1.5rem;
        }

        .blog-card .date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-card h5 {
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-card .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 80px 0 10px;
        }

        .footer h5 {
            margin-bottom: 1.5rem;
        }

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

        .footer ul li {
            margin-bottom: 0.5rem;
        }

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

        .footer ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            /* margin-top: 3rem; */
            padding-top: 2rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero{
                padding: 80px 0 50px 0;
            }
            .hero h1 {
                font-size:30px;
            }
            .hero h2 {
                font-size:24px;
            }
            .hero p {
                font-size:18px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .stats {
    padding: 50px 0 0px 0px !important;
    }
    .stat-card  {
       padding: 20px;

    }
    .stat-card p {
       padding: 0px;

    }
    .stat-card .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .stat-card h3{
        font-size: 28px;
    }
    .about {
        padding: 50px 0;
    }
   
    
    .service-card  {
       padding: 20px;

    }
    .service-card h4{
        margin-bottom:0px;
    }
    .service-card p {
       padding: 0px;
       margin: 0;
       font-size: 14px;

    }
    .service-card .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .services {
        padding: 50px 0 10px 0px;
    }
    .contact-item p{
        font-size:14px;
    }
    .appointment-form {
    margin-top: 45px;
    padding: 20px;
   }
   .footer{
       padding: 45px 0 10px;
   }
   .contact-item .icon{
       background: transparent;
   }
   
        }

        html, body {
            overflow-x: hidden;
        }
        
        .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* Facebook */
.facebook { background-color: #1877F2; }
.facebook:hover { background-color: #145dbf; }

/* LinkedIn */
.linkedin { background-color: #0A66C2; }
.linkedin:hover { background-color: #084a9c; }

/* Instagram */
.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.instagram:hover { opacity: 0.8; }

/* Pinterest */
.pinterest { background-color: #E60023; }
.pinterest:hover { background-color: #b8001c; }

/* X (Twitter) Black Theme */
.x-twitter {
    background-color: #000; /* Black */
    color: #fff;
}
.x-twitter:hover {
    background-color: #333;
}


.main01 {
    width: 100%;
}

.call-bg {
    background: #15b7ee !important;
    color: white;
    padding: 5px 0px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    width: 48%;
    display: inline-block;
    align-content: center;
}

.what-bg {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white;
    padding: 5px 0px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    width: 48%;
    display: inline-block;
}

.main01 a{
    text-decoration: none;
}

.site-logo {
    max-width:160px;
}


.book-fixed-vertical1 {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
    padding: 16px 10px;
    /*background-color: #219bf1 !important;*/
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 35px;
        text-decoration: none;
}

.book-fixed-vertical1 span {
    font-size: 15px;
    display: block;
    font-weight: 600;
    margin: -5px 0px;  
    font-family: monospace;
    color: #fff;
}
.custom-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  text-align: center;
}
.popup-content h5 {
  margin-bottom: 20px;
  margin-top: 0px;
}
.popup-content input {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.popup-content button {
  background-color:#e64526;
  border: none;
  color: white;
  padding: 12px 20px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}
.popup-close {
   position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: red;
    font-weight: 600;
}
.popup-content textarea{
    padding:10px;
}
@media(max-width:500px){
  .popup-content { padding: 20px 15px; }
}

@media (max-width: 576px) {
    .stats {
    padding: 50px 0 50px 0px !important;
    }
    .stat-card  {
       padding: 20px;

    }
    .stat-card p {
       padding: 0px;

    }
    .stat-card .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .stat-card h3{
        font-size: 28px;
    }
}


.sub-form {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}
