
        :root {
            --primary-light: #2563eb;
            --secondary-light: #0ea5e9;
            --accent-light: #06b6d4;
            --bg-light: #f8fafc;
            --card-light: #ffffff;
            --text-light: #1e293b;
            --text-secondary-light: #64748b;
            
            --primary-dark: #3b82f6;
            --secondary-dark: #0ea5e9;
            --accent-dark: #06b6d4;
            --bg-dark: #0f172a;
            --card-dark: #1e293b;
            --text-dark: #f1f5f9;
            --text-secondary-dark: #94a3b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: var(--bg-light);
            color: var(--text-light);
        }

        body.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-dark);
        }

        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        body.dark-mode header {
            background: rgba(30, 41, 59, 0.95);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .header-scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        /* Navigation */
        .nav-link {
            position: relative;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        body.dark-mode .nav-link {
            color: var(--text-dark);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: width 0.3s ease;
        }

        body.dark-mode .nav-link::after {
            background: var(--primary-dark);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            width: 60px;
            height: 30px;
            background: var(--text-secondary-light);
            border-radius: 30px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        body.dark-mode .theme-toggle {
            background: var(--primary-dark);
        }

        .theme-toggle-slider {
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.dark-mode .theme-toggle-slider {
            transform: translateX(30px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body.dark-mode .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Neumorphic Cards */
        .neu-card {
            background: var(--card-light);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.3),
                        -8px -8px 16px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        body.dark-mode .neu-card {
            background: var(--card-dark);
            box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
                        -8px -8px 16px rgba(51, 65, 85, 0.1);
        }

        .neu-card:hover {
            transform: translateY(-10px);
            box-shadow: 12px 12px 24px rgba(163, 177, 198, 0.4),
                        -12px -12px 24px rgba(255, 255, 255, 0.9);
        }

        body.dark-mode .neu-card:hover {
            box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
                        -12px -12px 24px rgba(51, 65, 85, 0.2);
        }

        /* Glass Card */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        body.dark-mode .glass-card {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid rgba(148, 163, 184, 0.1);
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        body.dark-mode .btn-primary {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        /* Price Calculator */
        .calculator-container {
            background: var(--card-light);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .calculator-container {
            background: var(--card-dark);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .calc-input {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            background: var(--bg-light);
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        body.dark-mode .calc-input {
            background: var(--bg-dark);
            color: var(--text-dark);
            border-color: #334155;
        }

        .calc-input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        body.dark-mode .calc-input:focus {
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        /* Product Cards */
        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .product-card:hover {
            transform: scale(1.05) rotateY(5deg);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.9));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-light), var(--secondary-light));
        }

        body.dark-mode .timeline::before {
            background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: var(--primary-light);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 4px var(--bg-light);
        }

        body.dark-mode .timeline-dot {
            background: var(--primary-dark);
            box-shadow: 0 0 0 4px var(--bg-dark);
        }

        body.dark-mode .headc{
            color: black;
        }    

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            height: 300px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.2);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--card-light);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        body.dark-mode .testimonial-card {
            background: var(--card-dark);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

         /* FAQ */
        .faq-item {
            background: var(--card-light);
            border-radius: 10px;
            margin-bottom: 1rem;
             transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        body.dark-mode .faq-item {
            background: var(--card-dark);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-light);
        }

        body.dark-mode .faq-question {
            color: var(--text-dark);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text-secondary-light);
        }

        body.dark-mode .faq-answer {
            color: var(--text-secondary-dark);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }


        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--card-light);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 2000;
            padding: 2rem;
        }

        body.dark-mode .mobile-menu {
            background: var(--card-dark);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Noise Texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        body.dark-mode ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 5px;
        }

        body.dark-mode ::-webkit-scrollbar-thumb {
            background: var(--primary-dark);
        }

        /* Stats Counter */
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .stat-number {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }

            .timeline-dot {
                left: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .calculator-container {
                padding: 1.5rem;
            }

            .gallery-item {
                height: 200px;
            }
        }

        /* Section Spacing */
        section {
            padding: 5rem 0;
        }

        @media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }
        }

        /* Form Styles */
        .form-input {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            background: var(--bg-light);
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        body.dark-mode .form-input {
            background: var(--bg-dark);
            color: var(--text-dark);
            border-color: #334155;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        body.dark-mode .form-input:focus {
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        /* Team Card */
        .team-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            background: rgba(37, 99, 235, 0.9);
            padding: 1rem;
            transition: bottom 0.3s ease;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .team-card:hover .team-social {
            bottom: 0;
        }


        /* Price Display */
        .price-display {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        body.dark-mode .price-display {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Icon Styles */
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

        body.dark-mode .icon-box {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
        }

        .icon-box:hover {
            transform: rotate(10deg) scale(1.1);
        }



.logo img{
    width: 4em;
}
.paddingt-2x{
    padding-top: 20rem;
}
.paddingt-1x{
    padding-top: 4rem;
}
.bold{
    font-weight: 700;
}
.list p{
    text-align: justify;
}
.capital{
    font-size:x-large;
}
.positionss{
    list-style-position: inside;
    lighting-color: #334155;
       
}  

.color{
    color: black;
} 




.gallery-container {
            position: relative;
            width: 80vw;
            max-width: 1200px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                6px 6px 12px var(--shadow-dark),
                -6px -6px 12px var(--shadow-light);
        }

        .slider {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .caption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
            font-size: 1.2rem;
            z-index: 2;
        }

        .navigation {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn.active {
            background: white;
            transform: scale(1.2);
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            backdrop-filter: blur(5px);
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        .arrow i {
            color: white;
            font-size: 1.5rem;
        }

        

        @media (max-width: 768px) {
            .gallery-container {
                height: 300px;
            }
            
            .caption {
                font-size: 1rem;
                padding: 8px 16px;
            }

            .arrow {
                width: 40px;
                height: 40px;
            }
        }


        /* Floating WhatsApp Button Style */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            border-radius: 50%;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            cursor: pointer;
            animation: pulse 2s infinite; /* Animation added */
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
        }
