/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container utility class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button styles */
.btn-primary, .btn-secondary, .btn-link {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #47a9dd;
    color: white;
    border-color: #47a9dd;
}

.btn-primary:hover {
    background-color: #3a92c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(71, 169, 221, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #47a9dd;
    border-color: #47a9dd;
}

.btn-secondary:hover {
    background-color: #47a9dd;
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    color: #47a9dd;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.btn-link:hover {
    border-bottom-color: #47a9dd;
}

/* Header styles */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
}

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

.header-logo {
    flex-shrink: 0;
}

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

header nav {
    display: flex;
    align-items: center;
}

/* Navigation bar styles */
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

header nav ul li {
    position: relative; /* Required for dropdown positioning */
    margin-left: 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateZ(0); /* Ensure smooth transform */
    backface-visibility: hidden; /* Hide the backside during rotation */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for 3D effect */
}

header nav ul li a:hover {
    color: #007BFF;
    transform: translateY(-5px) rotateX(10deg); /* 3D hover effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-logo {
        height: 40px;
        width: 40px;
    }
    
    header nav {
        width: 100%;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 5px;
        align-items: center;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    header nav ul li {
        margin: 0;
        width: auto;
        text-align: center;
        margin-bottom: 5px;
    }
    
    header nav ul li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: inline-block;
        width: auto;
        margin: 0;
        white-space: nowrap;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f1f1f1;
        margin-top: 5px;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
        position: static;
    }
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

header nav ul li a:hover {
    color: #007BFF;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

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

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

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


/* Hero section with background image */
.hero {
    background: url('images/Thinking Cap Consult-03.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero h1, .hero p {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

#features, #services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature, .service {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    flex: 1;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature h3, .service h2 {
    margin-bottom: 10px;
    color: #007BFF;
}

.feature p, .service p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Footer styles */
footer {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    padding: 10px 20px;
    border: none;
    background: #007BFF;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #0056b3;
}

/* Responsive styles */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    #features, #services {
        flex-direction: column;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #47a9dd 0%, #74cdbe 100%);
    color: white;
    padding: 60px 0 80px 0;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Us Preview */
.about-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #47a9dd;
}

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

.highlight {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #74cdbe;
}

.highlight h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #47a9dd;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #47a9dd;
}

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

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-number {
    background: #74cdbe;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.service-item h4 {
    color: #47a9dd;
    margin-bottom: 0.5rem;
}

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

.core-services, .service-packages {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Founder Preview */
.founder-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.founder-text h3 {
    color: #47a9dd;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.reason {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #74cdbe;
}

.reason h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
}

/* Who Services Are For */
.who-services-for {
    padding: 80px 0;
    background-color: #ffffff;
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.audience-category {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #74cdbe;
}

.audience-category h3 {
    color: #47a9dd;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.audience-category ul {
    list-style: none;
    padding: 0;
}

.audience-category li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #74cdbe;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

/* Membership Community */
.membership {
    padding: 80px 0;
    background: linear-gradient(135deg, #47a9dd 0%, #74cdbe 100%);
    color: white;
}

.membership h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.membership-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.membership-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

/* Digital Products */
.digital-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.product {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.investment-note {
    text-align: center;
    font-style: italic;
    margin: 2rem 0;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Ratings Gallery */
.ratings-gallery {
    margin-bottom: 4rem;
    text-align: center;
}

.ratings-gallery h3 {
    color: #47a9dd;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rating-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.rating-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #74cdbe;
    position: relative;
}

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

.testimonial cite {
    font-weight: bold;
    color: #47a9dd;
}

/* Call-to-Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #47a9dd 0%, #74cdbe 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Page Styles */
.about-info, .mission-vision, .core-values, .logo-section {
    padding: 60px 0;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vision, .mission {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #74cdbe;
}

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

.value {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #74cdbe;
}

.value h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
}

.logo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.company-logo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Founder Page Styles */
.founder-details {
    padding: 60px 0;
}

.founder-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.founder-photo {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.qualifications ul, .certifications ul {
    list-style: none;
    padding: 0;
}

.qualifications li, .certifications li {
    background: #ffffff;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-left: 3px solid #74cdbe;
    border-radius: 4px;
}

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

.expertise-area {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #74cdbe;
}

.expertise-area h4 {
    color: #47a9dd;
    margin-bottom: 0.5rem;
}

.philosophy blockquote {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #74cdbe;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.contact-method, .contact-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #74cdbe;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #47a9dd;
    margin-bottom: 0.5rem;
}

.qr-placeholder {
    background: #e2e8f0;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed #47a9dd;
}

.qr-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-contact {
    margin: 3rem 0;
}

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

.service-contact-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #74cdbe;
}

.service-contact-option h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
}

.contact-form-section {
    margin-top: 4rem;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

/* Services Page Styles */
.fashion-hero, .business-hero {
    background: linear-gradient(135deg, #47a9dd 0%, #74cdbe 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.fashion-header h1, .business-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.fashion-header p, .business-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.fashion-cta {
    text-align: center;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 3rem;
}

.fashion-cta h2 {
    color: #47a9dd;
    margin-bottom: 1rem;
}

.fashion-consult, .business-growth {
    padding: 60px 0;
}

.fashion-packages {
    display: grid;
    gap: 2rem;
}

.package {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-left: 4px solid #74cdbe;
}

.package-number {
    background: #74cdbe;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.package-content h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.core-service {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #74cdbe;
}

.core-service h4 {
    color: #47a9dd;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-package {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #74cdbe;
}

.service-package h4 {
    color: #47a9dd;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.delivery-options, .audit-includes {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.services-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #47a9dd 0%, #74cdbe 100%);
    color: white;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .founder-content, .founder-profile {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .founder-content, .founder-profile, .logo-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image img, .founder-photo {
        max-width: 250px;
        height: 250px;
    }
    
    .business-services {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
    }
    
    .target-audience {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px 0;
        min-height: 60vh;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .services-grid, .reasons-grid, .testimonials-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .package {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    .about-preview, .services-overview, .founder-preview, .why-choose-us, 
    .who-services-for, .membership, .digital-products, .testimonials, .cta {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .btn-primary, .btn-secondary, .btn-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .core-services-grid {
        grid-template-columns: 1fr;
    }
    
    .package-number {
        margin-bottom: 1rem;
    }
    
    .fashion-hero, .business-hero {
        padding: 30px 0;
    }
    
    .fashion-header h1, .business-header h1 {
        font-size: 1.8rem;
    }
    
    .fashion-header p, .business-header p {
        font-size: 0.95rem;
    }
    
    .founder-image img, .founder-photo {
        max-width: 180px;
        height: 180px;
    }
    
    .ratings-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .rating-image {
        height: 150px;
    }
    
    .ratings-gallery h3 {
        font-size: 1.5rem;
    }
}

/* Footer Enhancement */
footer {
    background: #47a9dd;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

footer .contact-details {
    margin-bottom: 2rem;
}

footer .contact-details h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

footer .contact-details p {
    margin: 0.5rem 0;
}

/* Section spacing */
section {
    margin: 0;
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 2;
    background-color: #f8f9fa;
    min-height: calc(100vh - 140px);
    padding-bottom: 40px;
}

h1, h2 {
    margin-bottom: 2rem;
}

h3 {
    margin-bottom: 1rem;
}

/* Ensure proper spacing between sections */
.about-preview, .services-overview, .founder-preview, .why-choose-us,
.who-services-for, .membership, .digital-products, .testimonials, .cta {
    margin-bottom: 0;
}

/* Improve container max-width for better readability */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Fix header positioning */
header {
    position: relative;
    z-index: 1000;
}

/* Shop Page Styles */
.shop-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.shop-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #47a9dd;
}

.product-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.8rem;
    color: #47a9dd;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-container {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-right: 10px;
}

.sale-price {
    color: #47a9dd;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-features h4 {
    color: #47a9dd;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #74cdbe;
    font-weight: bold;
}

.purchase-options {
    margin-top: auto;
}

.btn-purchase {
    background: linear-gradient(135deg, #47a9dd, #74cdbe);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(71, 169, 221, 0.4);
}

.discount-info {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.more-products {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.more-products h3 {
    color: #47a9dd;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.more-products p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.why-shop {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-shop h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #47a9dd;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #74cdbe;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #47a9dd;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Page Header Style */
.page-header {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #47a9dd;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Shop Page Responsive Design */
@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-info {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-section {
        padding: 60px 0;
    }
    
    .why-shop {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

