

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #111f2f;
            --cream: #d1daaf;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-dark: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Playfair', sans-serif;
            line-height: 1.6;
            color: var(--gray-dark);
        }
        

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

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(17, 31, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            color: var(--cream);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .logo img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: var(--navy);
        }

        .cta-btn {
            background: transparent;
            color: var(--cream);
            padding: 15px 30px;
            border: 2px solid var(--cream);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn:hover {
            background: var(--cream);
            color: var(--navy);
            transform: translateY(-3px);
        }
        .mobile-menu {
            display: none;
            color: var(--cream);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, #1a2f42 100%);
            color: var(--white);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            border: 4px solid var(--cream);
            box-shadow: var(--shadow);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero .accent {
            color: var(--cream);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;

            justify-content: center;
            flex-wrap: wrap;
            
        }

        .btn-primary {
            background: var(--cream);
            color: var(--navy);
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--navy);
            color: #d1daaf;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: var(--cream);
            padding: 15px 30px;
            border: 2px solid var(--cream);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--cream);
            color: var(--navy);
            transform: translateY(-3px);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .section-title .underline {
            width: 60px;
            height: 3px;
            background: var(--cream);
            margin: 0 auto 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
        }

        /* About Section */
        .about {
            background: var(--gray-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: .5rem;
            color: var(--navy);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            margin-right: 2.5rem;
            color: #555;
            line-height: 1.7;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            margin-right: 2.5rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

        .about-image {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--navy);
            font-size: 1.5rem;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--navy);
            font-size: 1.5rem;
        }

        .item-center {
  display: flex;
  justify-content: center;
  align-items: center; /* optional, for vertical centering if the parent has height */
}


        /* Contact Section */
        .contact {
            background: var(--navy);
            color: var(--white);
        }

        .contact .section-title h2 {
            color: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(209, 218, 175, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .contact-details a {
            color: var(--white);
            text-decoration: none;
        }

        .contact-details a:hover {
            color: var(--white);
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cream);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: var(--cream);
            color: var(--navy);
            font-size: 1rem;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--navy);
        }

        .form-group men {
                color: var(--white);
            height: 120px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background: var(--cream);
            color: var(--navy);
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--gray-dark);
            color: var(--white);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--cream);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--cream);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }
/* Before & After Slideshow */
.slideshow-section {
  background-color: var(--gray-light);
  padding: 80px 0;
  text-align: center;
  font-family: Playfair;
}



.slideshow-section h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
}

.slide {
  display: none;
}

.gallery-pair {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  width: 48%;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid var(--cream);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  
}

.gallery-item img:hover {
  transform: scale(1.02);
}

.label {
  margin-top: 8px;
  font-weight: bold;
  color: var(--gray-dark);
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 28px;
  padding: 12px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
  user-select: none;
}

.prev:hover, .next:hover {
  background-color: var(--navy);
  color: var(--white);
}

.next { right: 20px; }
.prev { left: 20px; }

/* Dots */
.dots .dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: var(--cream);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: var(--navy);
}

/* Animation */
.fade {
  animation: fadeEffect 1s ease;
}

@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

@media (max-width: 768px) {
  .gallery-pair {
    flex-direction: column;
    align-items: center;
  }
  .gallery-item {
    width: 90%;
  }
}
