 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a3a52;
            --accent: #4a90e2;
            --gold: #d4a574;
            --light-bg: #f8fafb;
            --white: #ffffff;
            --text: #333333;
            --text-light: #666666;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

       
header {
    background: var(--white);
    padding: 35px 0; /* slightly bigger for more spacing */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* slightly stronger shadow */
    font-family: 'Poppins', sans-serif; /* modern, clean font */
}

/* Container inside header */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo {
    font-size: 32px; /* bigger logo */
    font-weight: 800; /* bolder */
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--gold);
}

/* Navigation links */
nav a {
    margin-left: 40px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600; /* slightly bolder */
    font-size: 16px; /* bigger text for better readability */
    transition: color 0.3s, transform 0.2s;
    font-family: 'Poppins', sans-serif; /* match logo font */
}

nav a:hover {
    color: var(--accent);
    transform: scale(1.05); /* subtle hover effect for interactivity */
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #2a5a7a 100%);
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(74, 144, 226, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-image {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .cta-button {
            display: inline-block;
            background: var(--gold);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            cursor: pointer;
            margin-top: 20px;
        }

        .cta-button:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
        }

        /* Sections */
        section {
            padding: 100px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 600px;
        }

        /* About Section */
        .about {
            background: var(--light-bg);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .highlight-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--gold);
        }

        .highlight-card h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .highlight-card p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 0;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
        }

        /* Services Grid */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--light-bg);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 20px;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Before & After Slider */
        .before-after {
            background: var(--light-bg);
        }

        .slider-container {
            position: relative;
            max-width: 600px;
            margin: 50px auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .slider-wrapper {
            position: relative;
            display: flex;
            height: 400px;
        }

        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .slider-before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><defs><linearGradient id="g" x1="0%" y1="0%"><stop offset="0%" style="stop-color:%231a3a52"/><stop offset="100%" style="stop-color:%234a90e2"/></linearGradient></defs><rect fill="url(%23g)" width="600" height="400"/><text x="50%" y="50%" text-anchor="middle" dy="0.3em" font-size="32" fill="white" font-family="Arial" font-weight="bold">BEFORE</text><circle cx="300" cy="200" r="80" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .slider-after {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><defs><linearGradient id="g" x1="0%" y1="0%"><stop offset="0%" style="stop-color:%23d4a574"/><stop offset="100%" style="stop-color:%234a90e2"/></linearGradient></defs><rect fill="url(%23g)" width="600" height="400"/><text x="50%" y="50%" text-anchor="middle" dy="0.3em" font-size="32" fill="white" font-family="Arial" font-weight="bold">AFTER</text><circle cx="300" cy="200" r="80" fill="rgba(255,255,255,0.2)"/></svg>');
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--gold);
            cursor: ew-resize;
            z-index: 10;
            transform: translateX(-2px);
        }

        .slider-handle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 0 12px rgba(212, 165, 116, 0.2);
        }

        /* Testimonials */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            border-top: 4px solid var(--gold);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin-right: 15px;
        }

        .testimonial-info h4 {
            color: var(--primary);
            margin-bottom: 4px;
            font-size: 16px;
        }

        .testimonial-info p {
            color: var(--text-light);
            font-size: 13px;
        }

        .stars {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .testimonial-card p {
            color: var(--text-light);
            font-style: italic;
            line-height: 1.7;
        }

        /* Booking Form */
        .booking {
            background: linear-gradient(135deg, var(--primary), #2a5a7a);
            color: var(--white);
        }

        .booking-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .booking-section-title {
            color: var(--white);
            text-align: center;
        }

        .booking-section-subtitle {
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gold);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }

        .submit-btn:hover {
            background: #c9975e;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        /* Improved Social Media Buttons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), rgba(255, 215, 0, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}


        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 32px;
            }

            .about-content,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }
        }

        /* From Uiverse.io by cssbuttons-io */ 
button {
  --glow-color: rgb(255, 165, 0); /* main orange */
  --glow-spread-color: rgba(255, 165, 0, 0.35); /* slightly stronger glow */
  --btn-color: rgb(200, 120, 50); /* muted deep orange base */
  
  border: .25em solid var(--glow-color);
  padding: 1em 3em;
  color: white;
  font-size: 15px;
  font-weight: bold;
  background-color: var(--btn-color);
  border-radius: 1em;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15),  /* subtle depth */
              0 0 0.8em 0.2em var(--glow-spread-color); /* gentle glow */
  text-shadow: 0 0 0.25em var(--glow-color); /* subtle text glow */
  position: relative;
  transition: all 0.3s;
}

button::after {
  display: none; /* remove heavy perspective glow */
}

button:hover {
  background-color: var(--glow-color);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2),
              0 0 1em 0.35em var(--glow-spread-color); /* slightly stronger glow on hover */
  transform: translateY(-2px);
}

button:active {
  background-color: rgb(180, 110, 40); /* slightly darker on click */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15),
              0 0 0.8em 0.2em var(--glow-spread-color);
  transform: translateY(0);
}

.about-image {
    width: 400px; /* adjust as needed */
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden; /* ensures rounded corners clip child elements */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-radius: 15px;
}

/* Hover effect */
.about-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
    cursor: pointer;
}

/* Optional: subtle shadow on hover */
.about-image:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}


.slider-container {
    position: relative;
    z-index: 0;
}

.slider-before span {
    z-index: 10; /* ensures it's always above the after image */
}
