@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
        @font-face {
        font-family: 'Black Ops One';
        src: url('BlackOpsOne-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
        }
        :root {
            --primary-black: #000000;
            --secondary-black: #1a1a1a;
            --tertiary-black: #333333;
            --pure-white: #ffffff;
            --off-white: #f5f5f5;
            --light-gray: #e0e0e0;
            --medium-gray: #666666;
            --transition-speed: 0.3s;
        }

        body {
            font-family: 'Playfair Display', sans-serif;
            color: var(--primary-black);
            line-height: 1.6;
            background-color: var(--pure-white);
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loading-container {
            width: 300px;
            text-align: center;
        }

        .loading-bar {
            height: 4px;
            background-color: #e0e0e0;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .loading-progress {
            height: 100%;
            width: 0%;
            background-color: #1a365d;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .loading-percentage {
            color: #1a365d;
            font-size: 14px;
            font-weight: 500;
        }

        body.dark-mode {
            background-color: #121212;
            color: #f5f5f5;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .section {
            padding: 50px 0;
        }

        .section-title {
            font-family: 'Black Ops One', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-black);
            bottom: -10px;
            left: 0;
        }

        .dark-mode .section-title:after {
            background-color: #f5f5f5;
        }
        
        .newbtn{
            padding: 10px 20px;
            border: 1px solid var(--primary-black);
            background: transparent;
            color: var(--primary-black);
            cursor: pointer;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }  
        .newbtn:hover {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            border: 1px solid var(--primary-black);
            background-color: transparent;
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 500;
            transition: all var(--transition-speed) ease;
            border-radius: 0;
        }

        .btn:hover {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }

        .dark-mode .btn {
            border-color: #f5f5f5;
            color: #f5f5f5;
        }

        .dark-mode .btn:hover {
            background-color: #f5f5f5;
            color: #121212;
        }

        .btn-primary {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }

        .btn-primary:hover {
            background-color: var(--secondary-black);
            color: var(--pure-white);
        }

        .dark-mode .btn-primary {
            background-color: #f5f5f5;
            color: #121212;
        }

        .dark-mode .btn-primary:hover {
            background-color: #e0e0e0;
            color: #121212;
        }

        .nav-link {
            position: relative;
            color: var(--primary-black);
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
        }

        .dark-mode .nav-link {
            color: #f5f5f5;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--primary-black);
            transition: width var(--transition-speed) ease;
        }

        .dark-mode .nav-link:after {
            background-color: #f5f5f5;
        }

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

        .service-card {
            border: 1px solid var(--light-gray);
            padding: 30px;
            transition: all var(--transition-speed) ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .dark-mode .service-card {
            border-color: #333;
            background-color: #1a1a1a;
        }

        .service-card:hover {
            border-color: var(--primary-black);
        }
        .service-card:focus-within {
            transform: translateY(-5px);
        }

        .dark-mode .service-card:hover {
            border-color: #f5f5f5;
        }

        .service-card .service-icon {
            width: 60px;
            height: 60px;
            background-color: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
        }

        .dark-mode .service-card .service-icon {
            background-color: #333;
            color: #f5f5f5;
        }

        .service-card:hover .service-icon {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }

        .dark-mode .service-card:hover .service-icon {
            background-color: #f5f5f5;
            color: #121212;
        }

        .pricing-card {
            border: 1px solid var(--light-gray);
            padding: 40px;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .dark-mode .pricing-card {
            border-color: #333;
            background-color: #1a1a1a;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-black);
            position: relative;
        }

        .dark-mode .pricing-card.popular {
            border-color: #f5f5f5;
        }

        .pricing-card.popular:before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--primary-black);
            color: var(--pure-white);
            padding: 5px 15px;
            font-size: 0.8rem;
            border-radius: 0;
        }

        .dark-mode .pricing-card.popular:before {
            background-color: #f5f5f5;
            color: #121212;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
        }

        .dark-mode .feature-icon {
            background-color: #333;
            color: #f5f5f5;
        }

        .feature-card:hover .feature-icon {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }

        .dark-mode .feature-card:hover .feature-icon {
            background-color: #f5f5f5;
            color: #121212;
        }

        .contact-method {
            border: 1px solid var(--light-gray);
            padding: 40px;
            text-align: center;
            transition: all var(--transition-speed) ease;
            height: 100%;
        }

        .dark-mode .contact-method {
            border-color: #333;
            background-color: #1a1a1a;
        }

        .contact-method:hover {
            border-color: var(--primary-black);
            transform: translateY(-5px);
        }

        .dark-mode .contact-method:hover {
            border-color: #f5f5f5;
        }

        .contact-method .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all var(--transition-speed) ease;
        }

        .dark-mode .contact-method .contact-icon {
            background-color: #333;
            color: #f5f5f5;
        }

        .contact-method:hover .contact-icon {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }

        .dark-mode .contact-method:hover .contact-icon {
            background-color: #f5f5f5;
            color: #121212;
        }

        .footer {
            background-color: var(--primary-black);
            color: var(--pure-white);
            padding: 80px 0 20px;
        }

        .dark-mode .footer {
            background-color: #000;
        }

        .footer-links a {
            color: var(--pure-white);
            text-decoration: none;
            margin-right: 20px;
            transition: color var(--transition-speed) ease;
        }

        .footer-links a:hover {
            color: var(--medium-gray);
        }

        .divider {
            height: 1px;
            background-color: var(--tertiary-black);
            margin: 40px 0;
        }

        .dark-mode .divider {
            background-color: #444;
        }

        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }

        .team-member img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            transition: transform var(--transition-speed) ease;
        }

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

        .testimonial {
            border: 1px solid var(--light-gray);
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
        }

        .dark-mode .testimonial {
            border-color: #333;
            background-color: #1a1a1a;
        }

        .testimonial:before {
            content: '"';
            font-size: 4rem;
            color: var(--light-gray);
            position: absolute;
            top: -10px;
            left: 10px;
        }

        .dark-mode .testimonial:before {
            color: #333;
        }

        .faq-item {
            border-bottom: 1px solid var(--light-gray);
            padding: 20px 0;
        }

        .dark-mode .faq-item {
            border-bottom-color: #333;
        }

        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            display: none;
            margin-top: 15px;
            padding-left: 25px;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question i:before {
            content: "\f068";
        }

        .blog-card {
            border: 1px solid var(--light-gray);
            margin-bottom: 30px;
            transition: all var(--transition-speed) ease;
        }

        .dark-mode .blog-card {
            border-color: #333;
            background-color: #1a1a1a;
        }

        .blog-card:hover {
            border-color: var(--primary-black);
            transform: translateY(-5px);
        }

        .dark-mode .blog-card:hover {
            border-color: #f5f5f5;
        }

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

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .dark-mode .form-group label {
            color: #f5f5f5;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--light-gray);
            border-radius: 0;
            transition: border-color var(--transition-speed) ease;
            background-color: white;
            color: #333;
        }

        .dark-mode .form-group input,
        .dark-mode .form-group textarea,
        .dark-mode .form-group select {
            border-color: #333;
            background-color: #1a1a1a;
            color: #f5f5f5;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-black);
            outline: none;
        }

        .dark-mode .form-group input:focus,
        .dark-mode .form-group textarea:focus,
        .dark-mode .form-group select:focus {
            border-color: #f5f5f5;
        }

    .scrollupbtn {
    /* Visibility & Positioning */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: none; /* Hidden by default, shown via JS */
    
    /* Styling */
    background-color: #000000; /* Force Black Background */
    color: #ffffff;            /* Force White Arrow */
    width: 50px;
    height: 50px;
    border-radius: 25px;        /* Matches your minimalist design */
    border: none;
    cursor: pointer;
    
    /* Centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Hover Effect */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scrollupbtn:hover {
    background-color: #333333;
    transform: translateY(-5px);
}

.scrollupbtn i {
    font-size: 1.2rem;
}

        /* Hero section specific styles */
        .hero-section {
            padding-top: 100px;
            padding-bottom: 80px;
        }

        .hero-content h1 {
            font-size: clamp(2.4rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-image-container {
            position: relative;
        }

        .hero-image-decoration {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 120px;
            height: 120px;
            background-color: #f5f5f5;
            z-index: -1;
        }

        .dark-mode .hero-image-decoration {
            background-color: #333;
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .nav-link {
                margin: 10px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .team-member img {
                width: 150px;
                height: 150px;
            }

            .hero-section {
                padding-top: 80px;
                padding-bottom: 60px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
        
                .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-indicator:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--light-gray);
            z-index: 1;
        }
        
        .step {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 33.33%;
        }
        
        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            border: 2px solid var(--light-gray);
            font-weight: bold;
        }
        
        .step.active .step-circle {
            background-color: var(--primary-black);
            color: var(--pure-white);
            border-color: var(--primary-black);
        }
        
        .form-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 40px;
            border: 1px solid var(--light-gray);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--light-gray);
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-black);
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn {
            padding: 14px 30px;
            border: 1px solid var(--primary-black);
            background: transparent;
            color: var(--primary-black);
            cursor: pointer;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }
        
        .btn-primary {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-black);
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }
        
        .time-slot {
            padding: 10px;
            border: 1px solid var(--light-gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .time-slot:hover {
            border-color: var(--primary-black);
        }
        
        .time-slot.selected {
            background-color: var(--primary-black);
            color: var(--pure-white);
        }
        
        .consultation-fee {
            background-color: var(--off-white);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
        }
        
        .btn-group {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }