* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a1887f;  /* Warm brown/beige */
    --secondary: #bcaaa4; /* Light terracotta */
    --accent: #d7ccc8;    /* Soft cream */
    --tertiary: #efebe9;  /* Light beige */
    --dark: #5d4037;
    --light: #fff8f0;    /* Off-white */
    --warm-gray: #f5f5f5; /* Light warm background */
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-soft: linear-gradient(135deg, var(--secondary), var(--accent));
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
}

/* Header Styles */
.creative-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: visible;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.logo img {
    height: 50px;
    width: auto;
}

.hamburger-menu {
    display: none;
    
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.creative-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 100%;
    height: 100vh;
    background: var(--light);
    z-index: 1001;
    transition: right 0.4s ease;
    overflow: hidden;
}

.creative-nav.active {
    right: 0;
}

.nav-content {
    position: relative;
    padding: 80px 2rem 2rem;
    height: 100%;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1003;
}

.nav-close span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

.nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    margin-bottom: 1px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--dark);
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
}

.nav-link i {
    margin-bottom: 0.5rem;
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* Regular navigation styles for non-mega menu items */
.nav-item a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px;
}

.nav-item a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(161, 136, 127, 0.5);
}

.nav-item a {
    position: relative;
    overflow: hidden;
}

.nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-item a:hover::before {
    left: 100%;
}

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

/* Mega Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 1200px;
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 10px;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}
    
    .nav-menu {
        display: block !important;
        padding: 60px 20px 20px;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu > li {
        margin-bottom: 10px;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 15px;
        text-decoration: none;
        color: #333;
        transition: color 0.3s;
    }
    
    .nav-menu a:hover {
        color: #0073aa;
    }
}
.service-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0.5rem;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

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

.service-card h5 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.service-card h5 i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

.service-card ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.4rem 0;
}

.service-card ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mega-menu-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-column ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile navigation uses position: fixed with right property for slide effect */
    /* The display property is handled by the general .creative-nav styles */
    
   

}

@media (min-width: 769px) and (max-width: 1024px) {
    .creative-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 100%;
        height: 100vh;
        background: var(--light);
        z-index: 1001;
        transition: right 0.4s ease;
        overflow: hidden;
    }
    
    .creative-nav.active {
        right: 0;
    }
    
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-content {
        position: relative;
        padding: 80px 2rem 2rem;
        height: 100%;
    }
    

    
    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-item {
        position: relative;
        margin-bottom: 1px;
    }
    
    .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        text-decoration: none;
        color: var(--dark);
        background: white;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-transform: uppercase;
    }
    
    .nav-link i {
        margin-bottom: 0.5rem;
        width: 20px;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 50px;
        width: auto;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        border-radius: 5px;
        border: none;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (min-width: 1025px) {

    
    .nav-content {
        padding: 0;
        height: auto;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-close {
        display: none;
    }
    
    .nav-menu {
        display: block;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    
    .nav-item {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav-link:hover {
        transform: translateY(-3px);
        background: rgba(161, 136, 127, 0.1);
        border-radius: 8px;
    }
    
    .nav-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .nav-text {
        font-size: 1.1rem;
        display: block;
    }
    
    /* Desktop Mega Menu */
    .mega-menu {
        position: relative;
    }
    
    .mega-menu-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 1200px;
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border: 1px solid var(--accent);
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 10px;
    }
    
    .mega-menu-column {
        margin-bottom: 0;
    }
    
    .nav-quick-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 300px;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-quick-links.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


       
        
        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .slide-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 3;
            width: 100%;
            max-width: 800px;
            padding: 0 2rem;
        }
        
        .carousel-slide:not(.active) .hero-slide-content {
            display: none;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
background: linear-gradient(rgba(204, 180, 174, 0.5), rgba(123, 107, 89, 0.44));        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            color: white;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color:white;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: white;
            letter-spacing: -0.5px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .hero-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
       
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: white;
            letter-spacing: -0.5px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        .hero-image-placeholder {
            width: 400px;
            height: 500px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: rotate(-5deg);
            position: relative;
            overflow: hidden;
        }
        
        .hero-image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(255, 255, 255, 0.8), transparent 30%);
            animation: rotate 6s linear infinite;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(161, 136, 127, 0.1) 100%);
            opacity: 0.5;
        }
        
        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ffffff, #d7ccc8);
            -webkit-background-clip: text;
            background-clip: text;
            text-transform: uppercase;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
      
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Added fadeIn animation */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
        }

       

        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: var(--primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.25px;
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: #715643;            
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.25px;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: var(--secondary);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }



        /* Section Styles */
        section {
            padding: 6rem 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--dark);
            position: relative;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

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

        /* Services Section */
        .services {
            background: var(--tertiary);
            color: var(--dark);
            position: relative;
            padding: 6rem 2rem;
        }

        .services-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            color: var(--dark);
            border: 1px solid var(--accent);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
                
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: -1;
        }
                
        .service-card:hover::before {
            transform: scaleX(1);
        }
                
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
                
        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            display: inline-block;
        }
                
        .service-card:hover .service-icon {
            transform: scale(1.3) rotate(5deg);
            filter: drop-shadow(0 5px 10px rgba(161, 136, 127, 0.3));
        }
                
        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            text-transform:uppercase;
        }
                
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }
        
        .service-card .btn-secondary {
            margin-top: 1.5rem;
            display: inline-block;
        }


        
        .service-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 15px 0;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        

        
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: var(--primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.25px;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: var(--secondary);
        }
        


        /* Gallery Section */
        .approach {
            background: #fff;
            color: var(--dark);
            position: relative;
            padding: 6rem 2rem;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .approach-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .approach-image {
            height: 200px;
            background-size: auto;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .approach-content {
            padding: 1.5rem;
        }
        
        .approach-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .approach-content p {
            color: #666;
            line-height: 1.6;
        }
        
        .journey::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
            z-index: 0;
        }
        
        .journey-container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .journey-step {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
        }
        
        .journey-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .journey-step:hover::before {
            opacity: 0.05;
        }
        
        .journey-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .step-icon {
            font-size: 3rem;
            margin: 1.5rem 0;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .journey-step:hover .step-icon {
            transform: scale(1.2) rotate(5deg);
        }
        
        .journey-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .step-icon {
            font-size: 3rem;
            margin: 1.5rem 0;
            color: var(--primary);
        }
        
        .journey-step h3 {
            margin: 1rem 0;
            color: var(--dark);
        }
        
        .journey-step p {
            color: #666;
        }
        
        .journey-arrow {
            text-align: center;
            margin: 1rem 0;
            color: var(--primary);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

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

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::before {
            opacity: 0.3;
        }

        /* About Section */
        .about {
            background: var(--tertiary);
            color: var(--dark);
            position: relative;
            padding: 6rem 2rem;
        }

        .meet-dr-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .meet-dr-image {
            text-align: center;
        }
        
        .meet-dr-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .meet-dr-text h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 1.5rem 0 1rem 0;
        }
        
        .meet-dr-text ul {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        
        .meet-dr-text li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Responsive adjustments for Meet Dr. Rathna section */
        @media (max-width: 768px) {
            .meet-dr-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .meet-dr-image img {
                max-width: 80%;
            }
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

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

        .stat-item {
            text-align: left;
            padding: 0 0 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
        }

        .stat-item h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* Testimonials */
        .testimonials {
            background: var(--light);
            position: relative;
            padding: 6rem 2rem;
        }

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

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            border: 1px solid var(--accent);
            color: var(--dark);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .testimonial-card:hover::before {
            opacity: 0.05;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card:hover .client img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-card p {
            margin-bottom: 1rem;
            font-style: italic;
        }

        .client {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        /* Testimonial Carousel Styles */
        .testimonial-carousel {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
           
        }
        
        .testimonial-slides {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-slide {
            display: none;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            position: relative;
            border: 1px solid var(--accent);
        }
        
        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .testimonial-slide p {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
            position: relative;
            padding-left: 2rem;
        }
        
        .testimonial-slide p::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .testimonial-controls button {
            background: var(--primary);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-controls button:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .testimonial-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--warm-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dots .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .client img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Our Goal Section */
        .goal {
            background: var(--tertiary);
            color: var(--dark);
            position: relative;
            padding: 6rem 2rem;
        }
        
        /* Meet Dr. Rathna Section */
        .meet-dr {
            background: white;
            color: var(--dark);
            position: relative;
            padding: 6rem 2rem;
        }
        
        .goal-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .goal-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--light), var(--tertiary));
            color: var(--dark);
            position: relative;
            padding: 5rem 2rem;
        }
                
        .contact .section-title {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
                
        .contact .section-subtitle {
            color: var(--dark);
            margin-bottom: 3rem;
            font-size: 1.1rem;
            opacity: 0.8;
            text-align: center;
        }
                
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
        }
        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
                
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }
                
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--tertiary);
        }
                
        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
                
        .contact-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(161, 136, 127, 0.3);
        }
                
        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            background: var(--gradient);
        }
                
        .contact-text h3 {
            margin: 0 0 0.5rem 0;
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
        }
        .contact-text {text-align: left;}
                
        .contact-text p {
            margin: 0;
            color: #555;
            font-size: 1.1rem;
        }
                
        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
                
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }
                
        .form-group {
            margin-bottom: 1.8rem;
        }
                
        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
        }
                
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--accent);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(111, 104, 104, 0.2);
            color: black;
        }
        
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--accent);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(111, 104, 104, 0.2);
            color: black;
        }
        
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--accent);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(111, 104, 104, 0.2) !important;
            color: black;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }
                
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(161, 136, 127, 0.2);
        }
                
        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }
                
        .submit-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 1.1rem 2.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(161, 136, 127, 0.3);
        }
                
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(161, 136, 127, 0.4);
        }
                
        .submit-btn:active {
            transform: translateY(-1px);
        }

        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform:uppercase;
        }

        .contact-info p {
            margin-bottom: 0;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid white;
            border-radius: 10px;
            background: rgba(111, 104, 104, 0.2);
            color: black;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #999;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 5% 2rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a {
            color: white;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

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

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        .scroll-animation {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .scroll-animation.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Creative Header Styles */
        .creative-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }
        
        .creative-header.scrolled {
            padding: 0.8rem 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }
        
      
        
       
        
        /* Creative Navigation */
        .creative-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 100%;
            height: 100vh;
            background: var(--light);
            z-index: 1001;
            transition: right 0.4s ease;
            overflow: hidden;
        }
        
        .creative-nav.active {
            right: 0;
        }
        
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .nav-content {
            position: relative;
            padding: 80px 2rem 2rem;
            height: 100%;
        }
        
        .nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1003;
        }
        
        .nav-close span {
            position: absolute;
            width: 100%;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
        }
        
        .nav-close span:nth-child(1) {
            transform: rotate(45deg);
        }
        
        .nav-close span:nth-child(2) {
            transform: rotate(-45deg);
        }
        
        /* Navigation Menu */
        .nav-menu-container {
            margin-bottom: 2rem;
        }
        
        .nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .nav-item {
            position: relative;
            margin-bottom: 1px;
        }
        
        .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: var(--dark);
            background: white;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
        }
        
        .nav-link i {
            margin-bottom: 0.5rem;
            width: 20px;
            text-align: center;
            font-size: 1.2rem;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .nav-link:hover::before {
            opacity: 0.1;
        }
        
        .nav-link:hover {
            transform: translateX(5px);
            color: var(--primary);
        }
        
        .nav-link.active {
            background: var(--primary);
            color: white;
        }
        
        .nav-link.active::before {
            opacity: 1;
        }
        
        .nav-icon {
            font-size: 1.2rem;
            margin-right: 1rem;
            width: 24px;
            text-align: center;
        }
        
        .header .fas, .creative-header .fas {
            display: block;
            text-align: center;
        }
        
        .nav-text {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Mega Menu for Mobile */
        .mega-menu-content {
            position: static;
            background: var(--tertiary);
            border-radius: 0 0 8px 8px;
            padding: 1.5rem;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: block;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .mega-menu-content.expanded {
            max-height: 1000px;
        }
        
        .mega-menu-column {
            margin-bottom: 1.5rem;
        }
        
        .mega-menu-column h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--accent);
        }
        
        .mega-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mega-menu-column ul li {
            margin-bottom: 0.5rem;
        }
        
        .mega-menu-column ul li a {
            color: var(--dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: block;
            padding: 0.3rem 0;
        }
        
        .mega-menu-column ul li a:hover {
            color: var(--primary);
            padding-left: 0.5rem;
        }
        
        /* Quick Links */
        .nav-quick-links {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        
        .nav-quick-links h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .quick-links-grid {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .quick-link-btn {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background: var(--tertiary);
            border-radius: 6px;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .quick-link-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateX(3px);
        }
        
        .quick-link-btn i {
            margin-right: 0.8rem;
            width: 20px;
            text-align: center;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            /* Mobile navigation uses position: fixed with right property for slide effect */
            /* The display property is handled by the general .creative-nav styles */
            
           
            
            .creative-nav {
                width: 100%;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .creative-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 100%;
                height: 100vh;
                background: var(--light);
                z-index: 1001;
                transition: right 0.4s ease;
                overflow: hidden;
            }
            
            .creative-nav.active {
                right: 0;
            }
            
          
            .header .fas, .creative-header .fas {
            display: contents !important;
            text-align: center;
              }
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
            }
            
            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .nav-content {
                position: relative;
                padding: 80px 2rem 2rem;
                height: 100%;
            }
            
            .nav-close {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 30px;
                height: 30px;
                cursor: pointer;
                z-index: 1003;
            }
            
            .nav-close span {
                position: absolute;
                width: 100%;
                height: 3px;
                background: var(--dark);
                border-radius: 2px;
            }
            
            .nav-close span:nth-child(1) {
                transform: rotate(45deg);
            }
            
            .nav-close span:nth-child(2) {
                transform: rotate(-45deg);
            }
            
            .nav-menu {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .nav-item {
                position: relative;
                margin-bottom: 1px;
            }
            
            .nav-link {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 1rem 1.5rem;
                text-decoration: none;
                color: var(--dark);
                background: white;
                border-radius: 8px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                z-index: 1;
                text-transform: uppercase;
            }
            
            .nav-link i {
                margin-bottom: 0.5rem;
                width: 20px;
                text-align: center;
                font-size: 1.2rem;
            }
        }
        
        @media (min-width: 1025px) {
            .creative-nav {
                position: static;
                width: auto;
                max-width: 100%;
                height: auto;
                background: transparent;
                box-shadow: none;
                right: auto;
                display: block;
                overflow: hidden;
            }
            
            .nav-content {
                padding: 0;
                height: auto;
            }
            
            .nav-overlay {
                display: none;
            }
            
            .nav-close {
                display: none;
            }
            
          
            .creative-nav {
                position: static;
                width: auto;
                max-width: 100%;
                height: auto;
                background: transparent;
                box-shadow: none;
                right: auto;
                display: block;
                overflow: hidden;
            }
            
         
            
            .nav-link {
                padding: 1rem 1.5rem;
                background: transparent;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .nav-menu-container {
                display: flex;
                align-items: center;
            }
            
            
            
            .nav-item {
                margin-bottom: 0;
            }
            
            .nav-link {
                padding: 1rem 1.5rem;
                background: transparent;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .nav-link:hover {
                transform: translateY(-3px);
                background: rgba(161, 136, 127, 0.1);
                border-radius: 8px;
            }
            
            .nav-icon {
                margin-right: 0;
                margin-bottom: 0.5rem;
                display: block;
            }
            
            .nav-text {
                font-size: 1.1rem;
                display: block;
            }
            
            /* Desktop Mega Menu */
            .mega-menu {
                position: relative;
            }
            
            .mega-menu-content {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                max-width: 1200px;
                background: white;
                border-radius: 12px;
                padding: 2rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                z-index: 1001;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                border: 1px solid var(--accent);
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                margin-top: 10px;
            }
            

            
            .mega-menu-column {
                margin-bottom: 0;
            }
            
            .nav-quick-links {
                position: absolute;
                top: 100%;
                right: 0;
                width: 300px;
                background: white;
                border-radius: 12px;
                padding: 1.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                z-index: 1001;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
            }
            
            .nav-quick-links.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }
        


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #a1887f;  /* Warm brown/beige */
            --secondary: #bcaaa4; /* Light terracotta */
            --accent: #d7ccc8;    /* Soft cream */
            --tertiary: #efebe9;  /* Light beige */
            --dark: #5d4037;
            --light: #fff8f0;    /* Off-white */
            --warm-gray: #f5f5f5; /* Light warm background */
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-soft: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        p {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            overflow: visible;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            position: relative;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 3px;
        }
        
        nav a:hover::after {
            width: 100%;
            box-shadow: 0 0 10px rgba(161, 136, 127, 0.5);
        }
        
        nav a {
            position: relative;
            overflow: hidden;
        }
        
        nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        nav a:hover::before {
            left: 100%;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Mega Menu Styles */
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .mega-menu {
            position: relative;
        }

        .mega-menu:hover .mega-menu-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-content {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-width: 1000px;
            background: var(--light);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid var(--accent);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 10px;
        }

        .mega-menu:hover .mega-menu-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu:hover .mega-menu-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-column {
            padding: 0 1rem;
        }

        .mega-menu-column h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--accent);
        }

        .mega-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-menu-column ul li {
            margin-bottom: 0.5rem;
        }

        .mega-menu-column ul li a {
            color: var(--dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .mega-menu-column ul li a:hover {
            color: var(--primary);
            padding-left: 0.5rem;
        }

        /* Hero Section */
        .hero.fullscreen {
            height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient);
            animation: fadeIn 1s ease;
            text-align: center;
            padding: 0 2rem;
            margin-top: 70px;
        }
          .hero  {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient);
            animation: fadeIn 1s ease;
            text-align: center;
            padding: 0 2rem;
            margin-top: 70px;
            background: linear-gradient(rgba(161, 136, 127, 0.7), rgba(188, 170, 164, 0.7)),
             url('images/hero.webp');
             background-repeat: no-repeat;
             background-size: cover;
             background-position: center;

        }
        
        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }
        
      
        
       
        /* About Content */
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            padding-right: 2rem;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Director Section */
        .director-section {
            background: var(--tertiary);
            padding: 1rem 5%;
        }

        .director-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .director-image {
            text-align: center;
        }

        .director-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .director-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .director-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .director-highlights {
            margin-top: 2rem;
        }

        .director-highlights h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .director-highlights ul {
            list-style: none;
            padding-left: 0;
        }

        .director-highlights li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .director-highlights li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* Services Preview */
        .services-preview {
            padding: 6rem 5%;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            color: var(--dark);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .service-card:hover::before {
            opacity: 0.1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: var(--primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.25px;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: var(--secondary);
        }

        
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-full-width {
            width: 100%;
        }



        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 5% 2rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a {
            color: white;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        .scroll-animation {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .scroll-animation.visible {
            opacity: 1;
            transform: translateY(0);
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .about-content,
            .director-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            nav ul {
                display: none;
            }
            .header .fas, .creative-header .fas {
            display: contents;
            text-align: center;
            }
            .nav-item{text-align: center;}
        }

/* Additional Navigation Styles from services.html */
nav a {
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover::after {
    width: 100%;
}

/* Mega Menu Styles from services.html */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 1000px;
    background: var(--light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 10px;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    padding: 0 1rem;
}

.mega-menu-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-column ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}



/* Hero content styles from services.html */
.hero h1 {
    color: white;
}

.hero p {
    color: white;
}

/* Additional unique styles from other HTML files */
.about-content{display:block;text-align:center}

.director-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image img,
.director-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.director-highlights ul {
    list-style: none;
    padding: 0;
}

.director-highlights li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.director-highlights li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

/* Booking page specific styles */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

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

/* Condition page specific styles */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.condition-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Contact page specific styles */
.contact-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.hours-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.hours-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.hours-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.map-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(161, 136, 127, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


/* Footer specific styles */
.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border: none;
}

 /* Content Styles */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

       

        .content-section ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .content-section li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .symptoms-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

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

        .symptom-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .symptom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .symptom-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .symptom-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .symptom-card p {
            color: #666;
        }

        .contact-info {
            background: var(--tertiary);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .contact-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Contact Section */
        .contact-cta {
            background: var(--gradient);
            color: white;
            padding: 6rem 5%;
            text-align: center;
        }
        
        .contact-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }
        
/* Additional button styles */
.btn-full-width {
    width: 100%;
}

/* Approach page specific styles */
.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Condition-specific sections */
.arthritis-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.allergy-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.longevity-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.treatment-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.anxiety-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.alzheimer-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.cardiac-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.celiac-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.asthma-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}
 .hcg-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
 .benefits-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
/* Grid layouts for condition-specific info */
.arthritis-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.cholesterol-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.lipoprotein-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.lipoprotein-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.lipoprotein-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lipoprotein-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.lipoprotein-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.lipoprotein-card p {
    color: #666;
}

.health-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.health-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.health-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.health-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.health-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.health-card p {
    color: #666;
    font-size: 0.9rem;
}

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

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

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

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

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

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

/* Card styles */
.arthritis-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.food-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.anxiety-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.symptom-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.celiac-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.asthma-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Card hover effects */
.arthritis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.food-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.anxiety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.symptom-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.celiac-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.asthma-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon styles */
.arthritis-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.food-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.treatment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.anxiety-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.symptom-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.celiac-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.asthma-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Card heading and paragraph styles */
.arthritis-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.arthritis-card p {
    color: #666;
}

.food-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.food-item p {
    color: #666;
}

.anxiety-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.anxiety-card p {
    color: #666;
}

.symptom-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.symptom-item p {
    color: #666;
}

.celiac-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.celiac-card p {
    color: #666;
}

.asthma-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.asthma-card p {
    color: #666;
}
.blu-levulan-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}
/* Therapy-specific section */
.stem-cell-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.therapy-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.photorejuvenation-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.migraine-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

      .hypertension-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

        .pressure-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

        .silent-killer-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
          .cystitis-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

          .kybella-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

        .procedure-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

       .pigmented-lesions-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
          .leaky-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .testosterone-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

         .lyme-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
       .weight-loss-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .mesotherapy-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
         .process-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
         .products-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .prp-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .laser-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
           .microdermabrasion-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .spider-veins-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
         .hair-removal-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

/* Responsive styles for all condition pages */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .program-section {
        padding: 1rem;
        margin: 2rem 0;
    }
    
    .hormones-section,
    .prevention-section,
    .support-section,
    .approach-section,
    .therapy-section,
    .anxiety-section,
    .arthritis-section,
    .asthma-section,
    .autoimmune-section,
    .hormones-section,
    .blu-levulan-section,
    .faq-section ,
    .treatment-section ,
    .peel-section,
    .photorejuvenation-section,
    .celiac-section,
    .phiilosophy-section,
    .cholesterol-section,
    .lipoprotein-section,
    .health-section,
    .fatigue-section,
    .pain-section,
    .symptoms-section,
    .bipolar-section,
    .hcg-section,.benefits-section,
    .migraine-section,
    .hormone-section,
    .hypertension-section,
    .pressure-section,
    .silent-killer-section,
    .cystitis-section,
    .kybella-section,
    .procedure-section,
    .treatment-section,
    .pigmented-lesions-section,
    .testimonials-section,
    .leaky-section,
    .low-testosterone-section,
    .lyme-section, 
    .weight-loss-section,
    .mesotherapy-section,
    .process-section,
    .products-section,
    .prp-section,.laser-section,
    .microdermabrasion-section,
    .spider-veins-section,
    .hair-removal-section {
        padding: 1rem !important;
        margin: 2rem 0;
    }
    
    nav ul {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .arthritis-info,
    .food-list,
    .treatment-grid,
    .anxiety-info,
    .treatment-options,
    .cardiac-info,
    .symptom-list,
    .celiac-info,
    .asthma-info,
    .program-grid,
    .hormones-grid,
    .approach-steps,
    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .arthritis-card,
    .food-item,
    .treatment-card,
    .anxiety-card,
    .symptom-item,
    .celiac-card,
    .asthma-card,
    .approach-step,
    .therapy-card,
    .program-card,
    .hormone-card {
        padding: 1.5rem;
    }
    
    .arthritis-icon,
    .food-icon,
    .treatment-icon,
    .anxiety-icon,
    .symptom-icon,
    .celiac-icon,
    .asthma-icon,
    .therapy-icon,
    .program-icon,
    .hormone-icon,
    .step-icon,.cardiac-icon,
    .therapy-icon,
    .autoimmune-icon,
    .fatigue-icon,
    .pain-icon,
    .migraine-icon,
    .cystitis-icon,
    .leaky-icon,
    .testosterone-icon,.lyme-icon {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
}

.approach-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.focus-section {
    background: var(--tertiary);
    padding: 6rem 5%;
}

.focus-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.focus-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.focus-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.focus-highlights {
    margin-top: 2rem;
}

.focus-highlights h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.focus-highlights ul {
    list-style: none;
    padding-left: 0;
}

.focus-highlights li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.focus-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.focus-image {
    text-align: center;
}

.focus-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wellbeing-section {
    padding: 6rem 5%;
}

.wellbeing-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wellbeing-image {
    text-align: center;
}

.wellbeing-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wellbeing-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.wellbeing-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.personalized-section {
    background: var(--tertiary);
    padding: 6rem 5%;
}

.personalized-content {
    max-width: 1200px;
    margin: 0 auto;
}

.personalized-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.personalized-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.personalized-highlights {
    margin-top: 3rem;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.highlight-card p {
    color: #666;
}

/* Booking page specific styles */
.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.booking-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.booking-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.booking-content {
    display: flex;
    flex-wrap: wrap;
}

.calendar-section {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--light);
}

.booking-section {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.calendar {
    background: white;
    border-radius: 15px;
}

.booking-form {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.2);
}

/* Testimonials page specific styles */
.testimonials {
    background: var(--light);
    position: relative;
    padding: 6rem 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid var(--accent);
    color: var(--dark);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '\"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
    position: relative;
    z-index: 1;
}

.client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.client-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.client-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: var(--primary);
    margin-top: 0.5rem;
}

/* Women's page specific styles */
.hormone-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.treatment-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.treatment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.treatment-card p {
    color: #666;
}

/* Adult Stem Cell Therapy Page Styles - Unique to this page */

.stem-cell-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.therapy-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.treatment-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.treatment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.treatment-card p {
    color: #666;
}

/* Age Spots Page Styles - Unique to this page */

.laser-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.treatment-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.treatment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.treatment-card p {
    color: #666;
}


.microdermabrasion-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

/* Adrenal Fatigue Page Styles - Unique to this page */

:root {
    --primary: #a1887f;  /* Warm brown/beige */
    --secondary: #bcaaa4; /* Light terracotta */
    --accent: #d7ccc8;    /* Soft cream */
    --tertiary: #efebe9;  /* Light beige */
    --dark: #5d4037;
    --light: #fff8f0;    /* Off-white */
    --warm-gray: #f5f5f5; /* Light warm background */
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-soft: linear-gradient(135deg, var(--secondary), var(--accent));
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
}




section {
    padding: 6rem 5%;
    position: relative;
}

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

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 2rem 0 1rem 0;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.symptoms-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.symptom-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.symptom-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.symptom-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.symptom-card p {
    color: #666;
}

.risk-factors-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.risk-factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.risk-factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.risk-factor-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.risk-factor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.risk-factor-card p {
    color: #666;
}

.contact-info {
    background: var(--tertiary);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}



footer {
    background: var(--primary);
    color: white;
    padding: 4rem 5% 2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a {
    color: white;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}







.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
 .diagnostics-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

        .testing-section {
            background: var(--tertiary);
            padding: 4rem;
            border-radius: 15px;
            margin: 3rem 0;
        }






/* Media queries for responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    .carousel-controls {
  
    padding: 0 0rem;
 
    }

    .carousel-btn {
  
    width: 40px;
    height: 40px;
  
    
    }
    

    .content-section h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    }

    .content-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 1rem 0;
    text-align: center;
     }



.about-content, .director-content {
  grid-template-columns: auto;
  padding: 0;
  

    }
    .about-text h2 {
  font-size: 1.5rem;
 
    }
    nav ul {
        display: none;
    }
    .testing-section,.diagnostics-section {
  
  padding: 1rem;
  
}
.contact-text{text-align:center  !important;}
.contact-item {
  display: block !important;
  
}
.contact-item{margin-bottom: 1rem !important;}
    
    .testing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testing-card {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .testing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
    
    .testing-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }
    
    .test-list {
        margin: 1.5rem 0;
        padding-left: 1.5rem;
    }
    
    .test-list li {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .test-details {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        margin: 1.5rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .test-details h4 {
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .test-details ul {
        padding-left: 1.5rem;
    }
    
    .test-details li {
        margin-bottom: 0.5rem;
    }
    
    .contact-grid {
        display: block;
    }
    
    .contact-card {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
    }
    
    .contact-icon {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 0 auto 1rem;
    }
    
    .contact-section,
    .map-section,
    .hours-section,
    .form-section,
    .content-section {
        padding: 0.8rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .hours-list {
        padding-left: 1rem;
    }
    
    .contact-form,
    .longevity-section,
    .allergy-section,
    .alzheimer-section,
    .cancer-section,
    .prevention-section,
    .support-section,
    .therapy-section,
    .approach-section,
    .cardiac-section {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }
    
    /* Additional responsive styles for men/women pages */
    .treatment-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .treatment-card {
        padding: 1.5rem;
    }
    
    .treatment-icon {
        font-size: 2rem;
    }
    
    
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
    
    .hero {
        height: auto;
        padding: 4rem 0;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .contact-cta {
        padding: 3rem 5%;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    /* Additional responsive styles for symptom and risk factor grids */
    .symptoms-grid,
    .risk-factors-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .symptom-card,
    .risk-factor-card {
        padding: 1.5rem;
    }
    
    .symptom-icon,
    .risk-factor-icon {
        font-size: 2rem;
        text-align: center;
    }
    .symptom-item h3{text-align: center;}
    
   
}

.content-section h2,.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.contact-cta h2 {
  font-size: 2rem;
 
}

/* Cancer Prevention & Support Section Styles */
.cancer-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.prevention-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.support-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.therapy-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.approach-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.therapy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.therapy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.approach-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.approach-step p {
    color: #666;
    font-size: 0.9rem;
}
/* Melasma-specific section styles */


.peel-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}
/* BLU-U Levulan-specific section styles */


.faq-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Bioidentical Hormones-specific section styles */
.program-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}


 .cardiac-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.program-card p {
    color: #666;
}

.hormones-section {
    background: var(--tertiary);
    padding: 4rem;
    border-radius: 15px;
    margin: 3rem 0;
}

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

.hormone-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.hormone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hormone-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hormone-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.hormone-card p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .program-section,.hormones-section {padding: 1rem;}
}