/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/
:root {
            --primary-color: #52E1AA;
            --secondary-color: #7de9bf;
            --text-color: #1d1d1f;
            --background-color: #fbfbfd;
            --card-background: #ffffff;
            --border-color: #d2d2d7;
            --success-color: #52E1AA;
            --transition-speed: 0.3s;
        }

        [data-theme="dark"] {
            --primary-color: #52E1AA;
            --secondary-color: #7de9bf;
            --text-color: #f5f5f7;
            --background-color: #1d1d1f;
            --card-background: #2c2c2e;
            --border-color: #424245;
            --success-color: #52E1AA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            transition: background-color var(--transition-speed), color var(--transition-speed);
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.5;
        }

        header {
            background-color: rgba(var(--background-color-rgb, 251, 251, 253), 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 0 20px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo-text {
    margin-left: 10px;
    font-size: 1.2rem;
    color: #333;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.logo:hover .logo-text {
    opacity: 1; 
}

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .theme-switch-wrapper {
            display: flex;
            align-items: center;
        }

        .theme-switch {
            display: inline-block;
            height: 24px;
            position: relative;
            width: 50px;
        }

        .theme-switch input {
            display: none;
        }

        .slider {
            background-color: #ccc;
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            background-color: white;
            bottom: 4px;
            content: "";
            height: 16px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 16px;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: var(--primary-color);
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(82,225,170,0.2) 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(82,225,170,0.1) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
        }

        .hero-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.8;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .brand-logo {
            width: 150px;
            height: auto;
            margin-bottom: 30px;
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 980px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 20px;
            transition: all 0.2s;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--card-background);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

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

        .service-icon {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .parallax-image {
            width: 100%;
            height: 400px;
            margin: 60px 0;
            object-fit: cover;
            border-radius: 12px;
            opacity: 0.9;
            transform: translateZ(0);
            transition: transform 0.5s;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .image-container {
            overflow: hidden;
            position: relative;
            border-radius: 12px;
        }

        .image-container::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(82,225,170,0.2) 0%, rgba(255,255,255,0) 50%, rgba(82,225,170,0.2) 100%);
            pointer-events: none;
        }

        .image-container:hover .parallax-image {
            transform: scale(1.05);
        }

        .calendar-section {
            background-color: var(--card-background);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .calendar-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(82,225,170,0.05) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .calendar-day {
            padding: 15px 10px;
            text-align: center;
            border-radius: 12px;
            background-color: var(--background-color);
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid var(--border-color);
        }

        .calendar-day:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .calendar-day.active {
            background-color: var(--primary-color);
            color: white;
            font-weight: bold;
        }

        .calendar-day.available {
            border-left: 4px solid var(--success-color);
        }

        .calendar-timeslots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .time-slot {
            padding: 12px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }

        .time-slot:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .time-slot.active {
            background-color: var(--primary-color);
            color: white;
        }

        form {
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background-color: var(--card-background);
            color: var(--text-color);
            font-size: 16px;
            transition: border-color 0.2s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(82, 225, 170, 0.2);
        }

        .form-button {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 980px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
        }

        .form-button:hover {
            background-color: var(--secondary-color);
            transform: scale(1.02);
        }

        .testimonials {
            background-color: var(--card-background);
            padding: 80px 0;
            margin: 80px 0;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(82,225,170,0.05) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--background-color);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
            border-top: 4px solid var(--primary-color);
        }

        .testimonial-quote {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--primary-color);
        }

        .testimonial-author-name {
            font-weight: 600;
            font-size: 16px;
        }

        .testimonial-author-title {
            font-size: 14px;
            opacity: 0.7;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: var(--primary-color);
            opacity: 0.2;
        }

        footer {
            background-color: var(--card-background);
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--primary-color);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-link {
            margin: 0 15px;
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--background-color);
            margin: 0 10px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.2s;
            font-size: 18px;
            border: 1px solid var(--border-color);
        }

        .social-link:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .copyright {
            font-size: 14px;
            opacity: 0.7;
        }

        .brand-accent {
            color: var(--primary-color);
            font-weight: 600;
        }

        .pulse-animation {
            animation: pulse 2s infinite;
            position: relative;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(82, 225, 170, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(82, 225, 170, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(82, 225, 170, 0);
            }
        }

        .cedify-shape {
            position: absolute;
            background-color: var(--primary-color);
            opacity: 0.1;
            border-radius: 50%;
            z-index: -1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
        }

        html {
            scroll-padding-top: 100px; 
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .subtitle {
                font-size: 18px;
            }
            
            section {
                padding: 60px 20px;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .calendar-section {
                padding: 20px;
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }

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

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }