/* Global Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo img {
      height: 55px;
      width: 55px;
    }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: #fdfcff;
    /* Sticky Footer Implementation */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1; /* Allows main content to push footer down */
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #550551;
    margin-bottom: 10px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #550551;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

#nav-links li a {
    color: #5a6478;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#nav-links li a:hover {
    color: #550551;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown-content {
    display: none;
    position: absolute;
    top: -5px; /* Aligns with parent item */
    left: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px 0;
}

.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #550551;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #c8b3cf, #550551);
    color: white;
    text-align: center;
    padding: 160px 20px 120px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-icon {
    font-size: 40px;
    color: #E6F5E1;
}

.hero h1 {
    font-size: 48px;
}

.hero .highlight {
    color: #E6F5E1;
}

.hero p {
    font-size: 18px;
    margin: 20px auto 0;
    line-height: 1.7;
    opacity: 0.9;
}

/* Our Story Section */
.story-section {
    background: #fff;
}

.story {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.story-image, .story-content {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 32px;
    color: #550551;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Core Values Section */
.values {
    background: #f7f2fa;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    color: #550551;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
}

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

.testimonial-card {
    background: #f7f2fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ddee;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: bold;
    color: #550551;
}

.author-location {
    font-size: 14px;
    color: #777;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ae82b3, #571b52);
    padding: 80px 20px;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-in-out;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #59c09a;
    color: white;
}
.btn-primary:hover {
    background: #4ab18a;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #59c09a;
    color: #59c09a;
}
.btn-outline:hover {
    background: #59c09a;
    color: white;
}

.btn-white {
    background: #fff;
    color: #550551;
}
.btn-white:hover {
    background: #f0e8f7;
}

.btn-outline-white {
    border-color: #fff;
    color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: #550551;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #ae82b3;
    color: white;
}

.social-icons a {
    color: white;
    margin: 0 10px 10px;
    font-size: 24px;
    transition: color 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: #f0db4f;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    #nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 15px 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    #nav-links.active {
        display: flex;
    }

    #nav-links li {
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }

    .dropdown:hover .dropdown-content,
    .sub-dropdown:hover .sub-dropdown-content {
        display: none; /* Disable hover on mobile; needs JS for click */
    }

    .hero h1 {
        font-size: 36px;
    }

    .story {
        flex-direction: column-reverse; /* Stack image below text */
    }

    .story-content {
        text-align: center;
    }
}

