        :root {
            --primary-color: #2c3e6e;
            --secondary-color: #3a4f8a;
            --accent-color: #4fc3f7;
            --text-color: #333;
            --light-text: #f8f9fa;
            --background-color: #f8f9fa;
            --success-color: #28a745;
            --error-color: #dc3545;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Loading Overlay */
        #loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        #loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .spinner {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: var(--accent-color);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Notifications */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 5px;
            color: white;
            z-index: 1500;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateX(120%);
            transition: transform 0.3s ease-out;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification.success {
            background-color: var(--success-color);
        }
        
        .notification.error {
            background-color: var(--error-color);
        }
        


        /* Header Styles */
        header {
            background-color: var(--primary-color);
            padding: 0.5rem 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 180px;
    margin-left: 0px;
    margin-right: 100px;  /* Reduced from 220px */
}

        .logo:hover {
            transform: scale(1.03);
        }

        .logo img {
            height: 70px;
            width: 140%;
            margin-right: 10px;
            margin-left: 0px;
            border-radius: 5%;
            border: 0px solid var(--white);
        }

        nav {
            flex: 1;
            min-width: 0;
            z-index: 10002;
        }

        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
        }
        
        nav ul li {
            position: relative;
            margin: 0 0.5rem;
            white-space: nowrap;
        }
        
        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            padding: 0.5rem 0;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        nav ul li a i {
            margin-right: 0.3rem;
            font-size: 0.9rem;
        }
        

        .auth-social {
            display: flex;
            gap: 0.5rem;
            margin-left: 0.5rem;
            align-items: center;
        }


        /* Social media buttons in header */
        .social-links-header {
            display: flex;
            gap: 0.5rem;
            margin-left: 0.5rem;
            align-items: center;
        }
        
        .social-links-header a {
            color: var(--light-text);
            font-size: 1rem;
            transition: color 0.3s;
            padding: 0.3rem;
        }
        
        .social-links-header a:hover {
            color: var(--accent-color);
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            text-align: left;
        }
        
        nav ul li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: 100%;
        }
        
        .dropdown-menu li {
            margin: 0;
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #eee;
            display: block;
            text-align: left;
        }
        
        .dropdown-menu li:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu li a {
            color: var(--text-color);
            width: 100%;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            justify-content: flex-start;
        }
        
        .dropdown-menu li a:hover {
            color: var(--primary-color);
        }
        
        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 0.5rem;
            margin-left: 3rem;
            align-items: center;
        }
        
        .btn {
            padding: 0.4rem 0.8rem;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .btn-login {
            background-color: transparent;
            border: 1px solid var(--light-text);
            color: var(--light-text);
        }
        
        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .btn-signup {
            background-color: var(--accent-color);
            border: 1px solid var(--accent-color);
            color: var(--primary-color);
        }
        
        .btn-signup:hover {
            background-color: #3fb3e5;
            border-color: #3fb3e5;
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--light-text);
            font-size: 0.9rem;
            cursor: pointer;
        }
        
        .user-profile img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .btn-logout {
            background-color: transparent;
            border: 1px solid var(--light-text);
            color: var(--light-text);
            padding: 0.4rem 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .btn-logout:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--light-text);
            padding: 6rem 1rem 3rem;
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
            margin: 2rem auto 0;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            text-align: justify;
            transform: scale(0.9);
            transform-origin: top center;
        }
        
        .hero h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        /* Floating Buttons */
        .floating-buttons-right {
            position: fixed;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 100;
        }
        
        /* Desktop positioning */
        @media (min-width: 769px) {
            .floating-buttons-right {
                bottom: 3.5rem;
            }
        }
        
        /* Mobile positioning */
        @media (max-width: 768px) {
            .floating-buttons-right {
                bottom: 7rem;
                right: 1.3rem;
            }
        }
        
        .btn-floating {
            display: flex;
            align-items: center;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 0.8rem 1.2rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            height: 50px;
        }
        
        .btn-floating:hover {
            background-color: #3fb3e5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .btn-floating i {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        
        .btn-floating-text {
            white-space: nowrap;
            font-size: 0.9rem;
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
        }
        
        .btn-booking {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-booking:hover {
            background-color: var(--secondary-color);
        }
        
        /* ===================== */
        /* Responsive Styles */
        /* ===================== */
        @media (max-width: 768px) {
            .btn-floating {
                width: 60px;
                height: 60px;
                padding: 0;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                font-size: inherit;
            }

            .btn-floating i {
                margin: 0;
                font-size: 1.2rem;
            }

            .btn-floating-text {
                font-size: 0.65rem;
                margin-top: 2px;
                line-height: 1;
                display: block;
                text-align: center;
            }

            /* Hide desktop text, show mobile */
            .desktop-label {
                display: none !important;
            }

            .mobile-label {
                display: block !important;
            }

            /* WhatsApp becomes round icon only */
            .btn-whatsapp {
                background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
                background-repeat: no-repeat;
                background-position: center;
                background-size: 60%;
                color: transparent;
                flex-direction: row;
            }

            .btn-whatsapp i,
            .btn-whatsapp .btn-floating-text {
                display: none;
            }
        }

        /* Desktop view */
        @media (min-width: 769px) {
            .mobile-label {
                display: none !important;
            }

            .desktop-label {
                display: inline !important;
            }
        }

        /* Hero Slideshow */
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 1rem;
            text-align: center;
        }
        
        /* Testimonials & Projects Section */
        .testimonials-projects-section {
            background-color: white;
            padding: 3rem 1rem;
        }
        
        .testimonials-projects-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 1.5rem;
            margin-top: 3rem;
            color: var(--primary-color);
            grid-column: 1 / -1;
        }
        
        .section-title h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 0.5rem; 
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .testimonials-wrapper, .projects-wrapper {
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonials {
            height: 300px;
            position: relative;
            margin: 0 auto;
        }
        
        .testimonial {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .testimonial.active {
            opacity: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            max-width: 400px;
            text-align: center;
        }
        
        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .testimonial-role {
            color: #777;
            font-size: 0.9rem;
        }
        
        .projects {
            height: 300px;
            position: relative;
            margin: 0 auto;
        }
        
        .project {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .project.active {
            opacity: 1;
        }
        
        .project-image {
            width: 100%;
            height: 200px;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .project-description {
            color: #555;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Services Section */
        .services {
            padding: 3rem 1rem;
            max-width: 1200px;
            margin: 5rem auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .service-features {
            margin: 1rem 0;
            padding-left: 1rem;
            flex-grow: 1;
        }
        
        .service-features li {
            margin-bottom: 0.6rem;
            position: relative;
            font-size: 0.9rem;
        }
        
        .service-features li::before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .btn-service {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .btn-service:hover {
            background-color: #3fb3e5;
        }
        
        .service-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: auto;
        }
        
        .btn-service-book {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .btn-service-book:hover {
            background-color: var(--secondary-color);
        }
        
        /* Service Process Section */
        .service-process {
            background-color: #f5f7fa;
            padding: 3rem 1rem;
            margin-top: 2rem;
        }
        
        /* About Page */
        .about-page {
            max-width: 1200px;
            margin: 5rem auto 0;
            padding: 1rem;
            flex: 1;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 0rem;
        }
        
        .about-header h1 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 0rem;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: justify;
        }
        
        .about-mission, 
        .about-vision,
        .about-ceo {
            margin-bottom: 2rem;
        }
        
        .about-mission h2,
        .about-vision h2,
        .about-ceo h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .about-mission h2::after,
        .about-vision h2::after,
        .about-ceo h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .about-ceo-image {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .about-ceo-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-ceo-name {
            margin-top: 0.8rem;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .about-ceo-title {
            color: var(--primary-color);
            font-style: italic;
            font-size: 0.9rem;
        }
        
        /* Contact Page Styles */
        .contact-container {
            max-width: 1200px;
            margin: 5rem auto 0;
            padding: 2rem;
            flex: 1;
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .contact-method {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .contact-method h3 {
            margin-bottom: 0.8rem;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-method p {
            margin-bottom: 1.2rem;
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        .contact-link {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .contact-link:hover {
            background-color: var(--secondary-color);
        }
        
        /* Contact Form and Map Section */
        .contact-form-map {
            background-color: #f8f9fa;
            padding: 3rem 0;
        }
        
        /* Service Detail Pages */
        .service-detail {
            max-width: 1200px;
            margin: 5rem auto 0;
            padding: 0rem;
            flex: 1;
            text-align: justify;
        }
        
        .service-header {
            text-align: center;
            margin: 5rem auto 1rem;
        }
        
        .service-header h1 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0rem;
        }
        
        .service-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .service-description, 
        .service-benefits,
        .service-process-detail,
        .mentorship-tracks  {
            margin-bottom: 1rem;
        }
        
        .service-description h2,
        .service-benefits h2,
        .service-process-detail h2,
        .mentorship-tracks h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;

        }
        
        .service-description h2::after,
        .service-benefits h2::after,
        .service-process-detail h2::after,
        .mentorship-tracks h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 5px;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .service-image {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .service-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Policy Pages */
        .policy-page {
            max-width: 1000px;
            margin: 5rem auto 0;
            padding: 1rem;
            flex: 1;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .policy-header h1 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        
        .policy-content h2 {
            color: var(--primary-color);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        
        .policy-content h3 {
            margin: 1.2rem 0 0.6rem;
            font-size: 1.1rem;
        }
        
        .policy-content p {
            margin-bottom: 0.8rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .policy-content ul {
            margin: 0.8rem 0 0.8rem 1.5rem;
        }
        
        .policy-content li {
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
        }
        
        /* Auth Pages */
        .auth-page {
            max-width: 500px;
            margin: 2rem auto 0;
            padding: 1rem;
            flex: 1;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .auth-container {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .auth-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .auth-header h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .auth-form {
            margin-top: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.2rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #777;
        }
        
        .auth-btn {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .auth-btn:hover {
            background-color: #3fb3e5;
        }
        
        .auth-divider {
            display: flex;
            align-items: center;
            margin: 1.2rem 0;
            color: #777;
            font-size: 0.9rem;
        }
        
        .auth-divider::before,
        .auth-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #ddd;
        }
        
        .auth-divider span {
            padding: 0 0.8rem;
        }
        
        .social-auth {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .btn-social {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #ddd;
            background-color: white;
            font-size: 0.9rem;
        }
        
        .btn-social:hover {
            background-color: #f5f5f5;
        }
        
        .btn-social i {
            font-size: 1rem;
        }
        
        .auth-footer {
            text-align: center;
            margin-top: 1.2rem;
            font-size: 0.9rem;
        }
        
        .auth-footer a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .auth-footer a:hover {
            text-decoration: underline;
        }
        
        /* Forgot Password Page */
        .forgot-password-page {
            max-width: 500px;
            margin: 2rem auto 0;
            padding: 1rem;
            flex: 1;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .forgot-password-container {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .forgot-password-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .forgot-password-header h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .forgot-password-form {
            margin-top: 1.5rem;
        }
        
        /* Booking Page */
        .booking-page {
            max-width: 800px;
            margin: 3rem auto 0;
            padding: 1rem;
            flex: 1;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .booking-container {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .booking-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .booking-header h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .booking-form {
            margin-top: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            margin-bottom: 1.2rem;
        }
        
        .form-group-full {
            grid-column: span 1;
        }
        
        .conditional-field {
            display: none;
            margin-top: 0.8rem;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Payment Page */
        .payment-page {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 1rem;
            flex: 1;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .payment-container {
            background: white;
            padding: rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .payment-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .payment-header h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .payment-method {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 1px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 380px; /* Adjusted height */
        }
        
        .payment-method:hover {
            transform: translateY(-5px);
        }
        
        .payment-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-align: center;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .payment-method h3 {
            text-align: center;
            margin-bottom: 0.1rem;
            color: var(--primary-color);
            min-height: 0rem;
            font-size: 1.2rem;
        }
        
        .payment-method p {
            text-align: center;
            margin-bottom: 0rem;
            flex-grow: 0;
            min-height: 0px;
            font-size: 0.9rem;
        }
        
        .payment-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            color: white;
            margin-top: auto;
            background-color: var(--accent-color);
        }
        
        .payment-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .payment-details {
            margin-top: 0rem;
            padding: 0rem;
            background-color: #f0f0f0;
            border-radius: 5px;
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .card-icons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0rem;
            flex-wrap: wrap;
        }
        
        .card-icons i {
            font-size: 1.5rem;
        }
        
        .fa-cc-visa {
            color: #1a1f71;
        }
        
        .fa-cc-mastercard {
            color: #eb001b;
        }
        
        .fa-cc-amex {
            color: #016fd0;
        }
        
        .fa-cc-discover {
            color: #ff6000;
        }
        
        .fa-cc-jcb {
            color: #0b4ea2;
        }
        
        .fa-cc-verve {
            color: #7c3aed;
        }
        
        .crypto-icons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0rem;
            flex-wrap: wrap;
        }
        
        .crypto-icons i {
            font-size: 1.5rem;
        }
        
        .fa-bitcoin {
            color: #f7931a;
        }
        
        .fa-ethereum {
            color: #627eea;
        }
        
        .fa-dollar-sign {
            color: #26a17b;
        }
        
        /* Bank Transfer Icon */
        .fa-university {
            color: #2c3e6e;
        }
        
        /* Bank Transfer Message */
        .bank-transfer-message {
            font-weight: bold;
            margin-bottom: 1rem;
            color: #8B0000; /* Dark red */
            font-weight: bold;
            font-size: 1.1rem;
            text-align: center;
            padding: 0.5rem;
            background-color: #ffecec;
            border-radius: 5px;
        }
        
        /* Back to Booking Button */
        .btn-back-to-booking {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 900;
            transition: all 0.3s;
            margin-top: 0.5rem;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        
        .btn-back-to-booking:hover {
            background-color: var(--secondary-color);
        }
        
        /* User Profile Page */
        .profile-page {
            max-width: 1200px;
            margin: 5rem auto 0;
            padding: 1rem;
            flex: 1;
        }
        
        .profile-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .profile-header h1 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        
        .profile-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 992px) {
            .profile-content {
                grid-template-columns: 300px 1fr;
            }
        }
        
        .profile-sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .profile-main {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .profile-avatar {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .profile-avatar img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .profile-avatar-upload {
            margin-top: 1rem;
        }
        
        .profile-nav {
            list-style: none;
        }
        
        .profile-nav li {
            margin-bottom: 0.5rem;
        }
        
        .profile-nav a {
            display: block;
            padding: 0.8rem;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .profile-nav a:hover, .profile-nav a.active {
            background-color: var(--accent-color);
            color: white;
        }
        
        .profile-nav a i {
            margin-right: 0.5rem;
        }
        
        .profile-section {
            display: none;
        }
        
        .profile-section.active {
            display: block;
        }
        
        .profile-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .profile-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .profile-info-item {
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .profile-info-label {
            font-weight: 600;
            width: 150px;
            color: var(--primary-color);
        }
        
        .profile-info-value {
            flex: 1;
        }
        
        .profile-edit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .profile-edit-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .profile-form .form-group {
            margin-bottom: 1.2rem;
        }
        
        .profile-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        
        .profile-form input, .profile-form select, .profile-form textarea {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        
        .order-history-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .order-history-table th, .order-history-table td {
            padding: 0.8rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .order-history-table th {
            background-color: #f5f7fa;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .order-status {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .order-status.completed {
            background-color: #d4edda;
            color: #155724;
        }
        
        .order-status.pending {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .order-status.processing {
            background-color: #cce5ff;
            color: #004085;
        }
        
        /* Notification Settings */
        .notification-settings {
            margin-top: 1.5rem;
        }
        
        .notification-setting {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .notification-setting:last-child {
            border-bottom: none;
        }
        
        .notification-setting label {
            font-weight: 500;
            color: var(--text-color);
        }
        
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: var(--accent-color);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        /* Security Prompt */
        .security-prompt {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            border-left: 4px solid var(--accent-color);
        }
        
        .security-prompt h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: var(--light-text);
            padding: 2rem 1rem;
            margin-top: auto;
            position: relative;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        
        .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-about p {
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 0.8rem;
        }
        
        .social-links a {
            color: var(--light-text);
            background-color: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .footer-links h3 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.6rem;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-color);
        }
        
        .footer-contact h3 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-contact p {
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }
        
        .footer-contact i {
            margin-right: 0.5rem;
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        
        .footer-contact a {
            color: var(--light-text);
            text-decoration: none;
        }
        
        .footer-contact a:hover {
            text-decoration: underline;
        }
        
        .email-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .email-dropdown-btn {
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0;
            font-size: 0.9rem;
        }
        
        .email-dropdown-btn i {
            margin-left: 0.3rem;
            transition: transform 0.3s;
        }
        
        .email-dropdown-content {
            display: none;
            position: absolute;
            background-color: #333;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            padding: 0.5rem 0;
        }
        
        .email-dropdown-content a {
            color: var(--light-text);
            padding: 0.5rem 1rem;
            text-decoration: none;
            display: block;
            font-size: 0.85rem;
        }
        
        .email-dropdown-content a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .email-dropdown:hover .email-dropdown-content {
            display: block;
        }
        
        .email-dropdown:hover .email-dropdown-btn i {
            transform: rotate(180deg);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.85rem;
        }
        
        .payment-options-footer {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            justify-content: left;
            margin-bottom: 0.5rem;
        }
        
        .payment-options-footer i {
            font-size: 1.5rem;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            header {
                padding: 0.5rem 2rem;
            }
            
            .logo-img {
                height: 50px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            nav ul li {
                margin: 0 0.8rem;
            }
            
            nav ul li a {
                font-size: 1rem;
            }
            
            nav ul li a i {
                font-size: 1rem;
            }
            
            .social-links-header a {
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 7rem 2rem 4rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn-hero {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .testimonials-projects-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonial-text {
                font-size: 1.2rem;
            }
            
            .testimonial-author {
                font-size: 1.2rem;
            }
            
            .about-page {
                margin: 6rem auto 0;
                padding: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .about-header h1 {
                font-size: 2.2rem;
            }
            
            .about-mission h2,
            .about-vision h2,
            .about-ceo h2 {
                font-size: 1.6rem;
            }
            
            .about-ceo-image img {
                width: 180px;
                height: 180px;
            }
            
            .service-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
            
            .form-group-full {
                grid-column: span 2;
            }
            
            /* Payment methods layout for desktop */
            .payment-methods {
                flex-wrap: nowrap;
            }
            
            .payment-method {
                min-width: 250px;
            }
        }
        
        @media (min-width: 992px) {
            .logo-text {
                font-size: 1.8rem;
            }
            
            nav ul li a {
                font-size: 1.1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu-overlay {
                display: block;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
            }
            
            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav ul li {
                margin: 0.5rem 0;
                width: 100%;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                background-color: transparent;
                box-shadow: none;
                padding-left: 1rem;
                display: none;
                width: 100%;
            }
            
            nav ul li:hover .dropdown-menu {
                display: block;
                top: 0;
            }
            
            .dropdown-menu li {
                padding: 0.3rem 0;
                border-bottom: none;
                width: 100%;
            }
            
            .dropdown-menu li a {
                color: var(--light-text);
                width: 100%;
            }
            
            .auth-buttons {
                display: none;
            }
            
            /* Payment options in footer for mobile */
            .payment-options-footer {
                position: relative;
                bottom: auto;
                left: auto;
                right: auto;
                margin-top: 1rem;
                margin-bottom: 0.5rem;
                justify-content: center;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 0.5rem;
            }
            
            .payment-options-footer i {
                font-size: 1.3rem;
                display: inline-block;
            }
            
            /* Payment methods layout for mobile */
            .payment-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .payment-method {
                width: 100%;
                max-width: 350px;
            }
        }
        
        /* Form Success Message */
        #form-success, #booking-success {
            animation: fadeIn 1s ease-in-out;
        }

        /* New styles for enhanced UI */
        .service-card-highlight {
            animation: pulseHighlight 2s ease-in-out;
            box-shadow: 0 0 20px rgba(79, 195, 247, 0.7);
        }
        
        @keyframes pulseHighlight {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        .auth-prompt {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
            text-align: center;
        }
        
        .auth-prompt p {
            margin-bottom: 10px;
        }

        /* New styles for Change Password tab */
        .password-change-form {
            margin-top: 1.5rem;
        }
        
        .password-change-form .form-group {
            margin-bottom: 1.2rem;
        }
        
        .password-change-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        
        .password-change-form input {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        
        .password-reset-link {
            display: block;
            margin-top: 1rem;
            color: var(--accent-color);
            text-decoration: none;
            text-align: center;
        }
        
        .password-reset-link:hover {
            text-decoration: underline;
        }
        
        /* Enhanced active tab styling */
        .profile-tabs button.active-tab {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Additional styles for password fields */
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #777;
        }
        
        /* Forgot password form in profile */
        .forgot-password-form {
            display: none;
            margin-top: 1.5rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }
        
        /* ... (All CSS styles remain unchanged) ... */
        
        /* Additional styles for social auth buttons */
        .btn-microsoft {
            background-color: #0078d7;
            color: white;
        }
        
        .btn-yahoo {
            background-color: #410093;
            color: white;
        }
        
        .btn-github {
            background-color: #333333;
            color: white;
        }
        
        
        /* Blog media responsiveness */
        .blog-content img, 
        .post-content img,
        .blog-single img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1rem auto;
        }
        
        .blog-content video, 
        .post-content video,
        .blog-single video,
        .blog-content audio,
        .post-content audio,
        .blog-single audio {
            max-width: 100%;
            margin: 1rem 0;
        }
        
        .blog-content iframe,
        .post-content iframe {
            max-width: 100%;
        }        