
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --magenta: #c200d1;
    --deep-purple: #3c054f;
    --charcoal: #262123;
    --white: #ffffff;
    --off-white: #ede4ef;
    --light-purple: #f3e0f7;
    --text-muted: #6b5b6f;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Skip to Main Content */
.skip-link {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
    background: var(--magenta);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    outline: 2px solid var(--white);
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-purple);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 180px;
    height: 55px;
}

.logo span {
    color: var(--magenta);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--magenta);
}

.nav-cta-btn {
    background-color: var(--magenta);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-cta-btn:hover {
    background-color: var(--deep-purple);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-purple);
    transition: all 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    /* background-color: var(--deep-purple); */
}

.hero-picture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important; /* Remove any blur/brightness */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 30px;
    border-radius: 12px;

    backdrop-filter: none !important; /* Remove glass blur */
    -webkit-backdrop-filter: none !important; /* Safari fix */
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background-color: var(--magenta);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.section-title {
    font-size: 30px;
    color: var(--deep-purple);
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 80px 0; /* reduced vertical spacing */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* reduced gap */
    align-items: center;
}

.about-text h2 {
    font-size: 26px; /* reduced */
    color: var(--deep-purple);
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.6; /* tighter */
    margin-bottom: 15px;
    font-size: 15px; /* slightly smaller */
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* lighter shadow */
}


/* Featured Products Section */
.featured-products {
    background-color: var(--off-white);
    padding: 50px 10px;
    overflow: hidden;
}

.featured-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 10px 0;
}

.featured-track {
    display: flex;
    gap: 30px;
    animation: scrollFeatured 40s linear infinite;
    width: max-content;
}

.featured-track:hover {
    animation-play-state: paused;
}

.featured-card {
    flex-shrink: 0;
    width: 240px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--magenta), var(--deep-purple));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-image {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    font-size: 15px;
    color: var(--deep-purple);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.featured-btn {
    display: block;
    width: 100%;
    background-color: var(--deep-purple);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.featured-btn:hover {
    background-color: var(--magenta);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 0, 247, 0.3);
}

@keyframes scrollFeatured {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for featured products */
@media (max-width: 768px) {
    .featured-card {
        width: 300px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .featured-card {
        width: 280px;
    }
    
    .featured-image {
        height: 180px;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--magenta);
    padding: 40px 15px; /* reduced padding for minimal look */
}

.cta-content {
    max-width: 700px; /* slightly smaller max width */
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 24px; /* smaller headline */
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-content p {
    font-size: 14px; /* smaller paragraph */
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 10px; /* reduced gap between buttons */
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background-color: var(--white);
    color: var(--magenta);
    padding: 10px 25px; /* smaller button size */
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px; /* smaller text */
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: var(--deep-purple);
    color: var(--white);
    transform: translateY(-1px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 10px 25px; /* smaller button size */
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px; /* smaller text */
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--magenta);
}


/* Services Section */
.services {
    background-color: var(--white);
    padding: 40px 15px; /* reduced vertical padding for minimal look */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-auto-rows: auto; /* automatic row height based on content */
    gap: 15px; /* spacing between cards */
    margin-bottom: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 6px; /* smaller radius */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* softer shadow */
    transition: all 0.3s;

    /* Equal height and vertical alignment */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 140px; /* smaller image height */
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.04); /* subtle zoom */
}

.service-content {
    padding: 12px; /* reduced padding */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 16px; /* smaller font */
    color: var(--deep-purple);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-content p {
    font-size: 13px; /* smaller text */
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1; /* keeps all cards uniform */
}

.service-btn {
    display: inline-block;
    background-color: var(--magenta);
    color: var(--white);
    padding: 8px 20px; /* smaller button */
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px; /* smaller text */
    transition: all 0.3s;
    text-decoration: none;
    margin-top: auto; /* pushes button to bottom */
}

.service-btn:hover {
    background-color: var(--deep-purple);
    transform: translateY(-1px);
}



/* Why Choose Us */
.why-choose {
    background-color: var(--off-white);
    padding: 40px 15px; /* reduced vertical padding */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* smaller cards */
    gap: 15px; /* reduced spacing */
}

.why-item {
    text-align: center;
    padding: 15px; /* smaller padding */
    background-color: var(--white);
    border-radius: 6px; /* smaller radius */
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06); /* softer shadow */
}

.why-icon {
    width: 50px; /* smaller icon */
    height: 50px;
    background-color: var(--magenta);
    color: var(--white);
    font-size: 20px; /* smaller font */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.why-item h3 {
    font-size: 16px; /* smaller heading */
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13px; /* smaller text */
    color: var(--text-muted);
    line-height: 1.4;
}

/* Performance Metrics Section */
.metrics {
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
    padding: 40px 15px; /* reduced padding */
    color: var(--white);
}

.metrics .section-title {
    color: var(--white);
    font-size: 28px; /* smaller title */
}

.metrics .section-subtitle {
    color: var(--light-purple);
    font-size: 14px; /* smaller subtitle */
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* smaller cards */
    gap: 20px;
    margin-top: 30px;
}

.metric-item {
    text-align: center;
    padding: 25px 20px; /* smaller padding */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px; /* smaller radius */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.metric-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.metric-number {
    font-size: 36px; /* smaller number */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.metric-item h3 {
    font-size: 16px; /* smaller heading */
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-item p {
    font-size: 13px; /* smaller text */
    color: var(--light-purple);
    line-height: 1.4;
}


/* Our Commitments Section */
.commitments {
    background-color: var(--off-white);
    padding: 40px 15px; /* reduced vertical padding */
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* smaller cards */
    gap: 15px; /* reduced spacing */
    margin-top: 30px;
}

.commitment-item {
    text-align: center;
    padding: 20px 15px; /* reduced padding */
    background-color: var(--white);
    border-radius: 8px; /* smaller radius */
    border: 1px solid var(--light-purple);
    transition: all 0.3s;
}

.commitment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(231, 0, 247, 0.12);
    border-color: var(--magenta);
}

.commitment-icon {
    width: 50px; /* smaller icon */
    height: 50px;
    background: linear-gradient(135deg, var(--magenta), var(--deep-purple));
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.commitment-icon::after {
    content: '✓';
    font-size: 24px; /* smaller checkmark */
    color: var(--white);
    font-weight: 700;
}

.commitment-item h3 {
    font-size: 16px; /* smaller heading */
    color: var(--deep-purple);
    margin-bottom: 8px;
    font-weight: 600;
}

.commitment-item p {
    font-size: 13px; /* smaller text */
    color: var(--text-muted);
    line-height: 1.4;
}

/* Core Values Section */
.core-values {
    background-color: var(--off-white);
    padding: 40px 15px; /* reduced padding */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* smaller cards */
    gap: 15px; /* reduced spacing */
}

.value-item {
    text-align: center;
    padding: 15px; /* smaller padding */
    background-color: var(--white);
    border-radius: 6px; /* smaller radius */
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06); /* softer shadow */
}

.value-icon {
    width: 45px; /* smaller icon size */
    height: 45px;
    background-color: var(--magenta);
    color: var(--white);
    font-size: 20px; /* smaller font */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.value-icon svg {
    stroke: var(--white);
}

.value-item h3 {
    font-size: 16px; /* smaller heading */
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 13px; /* smaller text */
    color: var(--text-muted);
    line-height: 1.4;
}


/* Mission & Vision Section */
.mission-vision {
    background-color: var(--deep-purple);
    padding: 40px 15px; /* reduced padding */
}

.mission-vision .section-title {
    color: var(--white);
    font-size: 24px; /* smaller */
    margin-bottom: 8px;
}

.mission-vision .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px; /* smaller */
    margin-bottom: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* smaller cards */
    gap: 15px; /* tighter spacing */
}

.mission-card,
.vision-card {
    background-color: rgba(255, 255, 255, 0.08); /* slightly transparent */
    padding: 15px; /* reduced padding */
    border-radius: 6px; /* smaller corners */
    display: flex;
    gap: 10px; /* tighter spacing */
    align-items: flex-start;
}

.mv-icon {
    font-size: 28px; /* smaller icon */
    flex-shrink: 0;
}

.mv-content h3 {
    font-size: 16px; /* smaller heading */
    color: var(--white);
    margin-bottom: 6px;
}

.mv-content p {
    font-size: 13px; /* smaller text */
    color: var(--white);
    line-height: 1.4;
    opacity: 0.85;
}

.mv-label {
    font-size: 10px; /* smaller label */
    padding: 3px 10px;
    border-radius: 12px;
    background-color: var(--white);
    color: var(--deep-purple);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
    padding: 60px 15px; /* reduced padding */
    color: var(--white);
}

.reviews .section-title {
    color: var(--white);
    font-size: 24px; /* smaller */
}

.reviews .section-subtitle {
    color: var(--light-purple);
    font-size: 14px; /* smaller */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* smaller cards */
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px; /* reduced padding */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.stars {
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.stars::before {
    content: '★★★★★';
    font-size: 16px;
    color: #ffd700;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--white);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px; /* tighter spacing */
}

.reviewer-avatar {
    width: 40px; /* smaller avatar */
    height: 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    background: var(--light-purple);
    color: var(--deep-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info h3 {
    font-size: 14px; /* smaller heading */
    margin-bottom: 3px;
    color: var(--white);
    font-weight: 600;
}

.reviewer-info p {
    font-size: 12px; /* smaller text */
    color: var(--light-purple);
}


/* Clients Section */
.clients {
    background-color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
}

.clients-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.clients-carousel-track {
    display: flex;
    gap: 25px;
    animation: scrollClients 50s linear infinite;
    width: max-content;
}

.clients-carousel-track:hover {
    animation-play-state: paused;
}

.client-card {
    flex-shrink: 0;
    width: 200px;
    background-color: var(--off-white);
    border: 2px solid var(--light-purple);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 0, 247, 0.15);
    border-color: var(--magenta);
}

.client-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    padding: 10px;
    background-color: var(--white);
    border-radius: 8px;
}

.client-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 5px;
    line-height: 1.3;
}

.client-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Partners Section */
.partners {
    background-color: var(--light-purple);
    padding: 80px 20px;
    overflow: hidden;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.partners-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 45s linear infinite;
    width: max-content;
}

.partners-carousel-track:hover {
    animation-play-state: paused;
}

.partner-card {
    flex-shrink: 0;
    width: 220px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(60, 5, 79, 0.2);
}

.partner-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--off-white), var(--light-purple));
    border-radius: 12px;
}

.partner-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--deep-purple);
    margin: 0;
    line-height: 1.3;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for clients and partners */
@media (max-width: 768px) {
    .client-card {
        width: 180px;
        padding: 20px 15px;
    }
    
    .client-logo-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .partner-card {
        width: 200px;
        padding: 25px 18px;
    }
    
    .partner-logo-placeholder {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .client-card {
        width: 160px;
    }
    
    .partner-card {
        width: 180px;
    }
}


/* Contact Section */
.contact {
    background-color: var(--off-white);
    padding: 60px 20px; /* reduced padding */
}

.contact .section-title {
    font-size: 28px; /* smaller title */
    margin-bottom: 5px;
}

.contact .section-subtitle {
    font-size: 14px; /* smaller subtitle */
    margin-bottom: 25px;
    color: var(--charcoal);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px; /* tighter spacing */
}

.contact-info {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--magenta), var(--deep-purple));
    border-radius: 50%;
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 16px; /* smaller */
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 13px;
    line-height: 1.5;
}

.contact-details a {
    font-size: 13px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    min-height: 350px; /* slightly smaller */
}

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

/* FAQs Section Wrapper */
.faqs {
    display: flex;
    justify-content: center;
    padding: 2.5rem 1rem;
    background: #f4f4f4;
}

.faq-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

/* Section Titles */
.faqs .section-title,
.faqs .section-subtitle {
    text-align: center;
}

/* FAQ Item */
.faq-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* FAQ Question */
.faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--magenta); /* RED QUESTION BACKGROUND */
    color: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--deep-purple);
}

/* Toggle Icon */
.faq-toggle {
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: #fff;
}

/* Answer Wrapper */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--deep-purple); /* WHITE ANSWER BACKGROUND */
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Answer Content */
.faq-answer-content {
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
}

/* Footer */
footer {
    background-color: var(--deep-purple);
    color: var(--white);
    padding: 50px 0 20px; /* slightly reduced padding */
    font-size: 14px; /* base font smaller */
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    justify-content: space-between;
    text-align: left;
}

.footer-section h3 {
    font-size: 16px; /* smaller headings */
    margin-bottom: 15px;
    color: #ffffff;
    text-align: left;
}
 .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--magenta);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        color: var(--white); /* ensures icon inherits white color */
    }

    /* .social-links a:nth-child(even) {
        background: var(--secondary);
    } */

    .social-links a svg {
        fill: var(--white); /* force SVG icons to be white */
        width: 20px;
        height: 20px;
    }

    .social-links a:hover {
        transform: translateY(-5px);
    }

    .footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section a {
    display: block;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}


.footer-section p,
.footer-section a {
    font-size: 13px; /* smaller text */
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section a:hover {
    padding-left: 5px;
    opacity: 0.85;
}

.footer-section .logo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    height: 37px;
    width: 120px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section .logo-img {
    width: 120px;
    height: 37px;
}

.footer-logo-text {
    font-size: 16px !important;
    line-height: 1.3;
}

.footer-section .logo span {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px; /* smaller padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px; /* smaller text */
}

.designer span {
    font-size: 12px; /* smaller */
}
.designer {
    display: flex;
    align-items: center; /* vertically centers text and image */
    gap: 5px; /* space between elements */
    flex-wrap: nowrap; /* prevent wrapping to next line */
}

.designer span,
.designer a,
.designer img {
    display: inline-block;
}

.designer a {
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    position: relative;
}

/* Underline effect */
.designer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

/* On hover */
.designer a:hover::after {
    width: 100%;
}

.designer img {
    width: 18px;
    height: 18px;
}


.footer-section .logo span span {
    font-weight: 400;
}


/* Scroll to Top Button */ 
.scroll-top { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background-color: var(--magenta); 
    color: var(--white); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    border: none; 
    font-size: 24px; 
    cursor: pointer; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s; 
    z-index: 999; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 

.scroll-top svg {
    stroke: var(--white);
}

.scroll-top.visible { 
    opacity: 1; 
    visibility: visible; 
} 

.scroll-top:hover { 
    background-color: var(--deep-purple); 
    transform: translateY(-5px); 
}


/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .about-content,
    .contact-wrapper,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }
    
    /* Left align content on tablet */
    .hero-content {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    section {
        padding: 50px 0;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .footer-section {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-section .logo {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 10px;
        padding: 15px 20px 0;
    }

    /* Brands grid - single column on mobile */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 15px 20px;
        gap: 15px;
    }

    .brand-card img.brand-logo {
        width: 70px;
        height: 60px;
        margin-bottom: 0;
    }

    .brand-card h3 {
        margin: 0 0 4px;
    }

    .brand-card p {
        margin: 0;
    }
    
    /* Left align text elements on mobile for readability */
    .hero-content {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-content .cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    /* Left align section titles and subtitles on mobile */
    .section-title {
        font-size: 28px;
        text-align: left;
    }
    
    .section-subtitle {
        font-size: 16px;
        text-align: left;
        margin-bottom: 40px;
    }
    
    /* Left align about section text */
    .about-text {
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 26px;
        text-align: left;
    }
    
    .about-text p {
        font-size: 15px;
        text-align: left;
    }
    
    /* Left align all h2, h3 headings */
    h2, h3 {
        text-align: left;
    }
    
    /* Left align all p tags in sections */
    section p {
        text-align: left;
    }
    
    /* Center buttons */
    .products-cta,
    .cta-content {
        text-align: center;
    }
    
    .products-cta-btn,
    .cta-primary,
    .cta-secondary {
        display: inline-block;
        margin: 0 auto;
    }
    
    /* Left align contact items */
    .contact-item {
        text-align: left;
    }
    
    .contact-details {
        text-align: left;
    }
    
    /* Left align why choose items */
    .why-item {
        text-align: left;
    }
    
    .why-item h3,
    .why-item p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 450px;
    }
    
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-content .cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 55px;
        width: auto;
    }
    
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Smaller text for all content */
    .about-text h2 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .product-card h3,
    .service-card h3 {
        font-size: 18px;
    }
    
    .product-card p,
    .service-card p {
        font-size: 13px;
    }
    
    .product-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .products-cta-btn {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    .why-item h3 {
        font-size: 18px;
    }
    
    .why-item p {
        font-size: 13px;
    }
    
    .contact-item h3 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
        padding: 0 15px;
    }

    .footer-section {
        align-items: flex-start;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-section h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-section a,
    .footer-section p {
        text-align: left;
        font-size: 13px;
    }

    .footer-section .logo {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        font-size: 12px;
        gap: 8px;
        padding: 12px 15px 0;
    }

    .designer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        font-size: 12px;
    }

    /* Brands grid - single column on small mobile */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px 15px;
        gap: 12px;
    }

    .brand-card img.brand-logo {
        width: 60px;
        height: 50px;
        margin-bottom: 0;
    }

    .brand-card h3 {
        margin: 0 0 3px;
        font-size: 15px;
    }

    .brand-card p {
        margin: 0;
        font-size: 11px;
    }

    /* Scroll to top button - smaller and closer to edge on mobile */
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Large Screen Optimizations (1280px and above) */
@media (min-width: 1280px) {
    /* Hero section - center content properly on large screens */
    .hero {
        height: 650px;
    }

    .hero-content {
        max-width: 900px;
        margin-left: 10%;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Container - slightly wider on large screens while maintaining readability */
    .container {
        max-width: 1280px;
        padding: 0 40px;
    }

    .nav-container {
        max-width: 1280px;
        padding: 0 40px;
    }

    /* Services grid - maintain 4 columns max with better spacing */
    .services-grid {
        gap: 25px;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* About section - better proportions */
    .about-content {
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Values grid - center and constrain */
    .values-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Reviews grid - center and constrain */
    .reviews-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Other grids - center and constrain */
    .why-grid,
    .metrics-grid,
    .commitments-grid,
    .mission-vision-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* FAQ - slightly wider on large screens */
    .faq-container {
        max-width: 800px;
    }

    /* Contact section - constrain width */
    .contact-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }

    /* Footer - better spacing */
    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Section padding for better vertical rhythm */
    section {
        padding: 100px 0;
    }

    .about,
    .services {
        padding: 100px 0;
    }
}
