/* Reset & Base */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background:
      radial-gradient(1200px 500px at -10% -10%, #f3f8ff 0%, transparent 60%),
      radial-gradient(900px 400px at 110% 110%, #f7fff9 0%, transparent 60%),
      #ffffff;
}

/* Design Tokens */
:root {
    --primary: #7b2ff7; /* accent updated from green to vibrant purple */
    --primary-dark: #5a1fd6;
    --text-dark: #222;
    --text-light: #ffffff;
    --muted: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f7f7f9;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 16px;
    /* Animated accent gradient */
    --accent-start: #7b2ff7; /* purple */
    --accent-mid: #f107a3;  /* pink */
    --accent-end: #ff6a00;  /* orange */
}

/* Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* give more top clearance for circular logo */
}
.brand {
    display: inline-flex;
    flex-direction: column; /* stack image and caption */
    align-items: center;
    gap: 4px;
    margin-left: 0;
    margin-top: 6px; /* nudge down so full circle and glow are visible */
    text-decoration: none; /* remove default underline */
}
.brand__img {
    height: 64px; /* clearer logo size */
    width: auto;
    display: block;
    border-radius: 0;
    box-shadow: none; /* remove effects */
    filter: none; /* remove effects */
}
/* Photo logo variant */
.brand__img-photo {
    height: 60px; /* brighter, circular logo */
    width: 60px;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover; /* crop to circle */
    object-position: center; /* center crop */
    border-radius: 50%; /* circle */
    border: 2px solid #ffffff; /* crisp edge */
    /* luminous ring + depth */
    box-shadow:
        0 0 0 3px rgba(123,47,247,0.45), /* outer ring using accent */
        0 10px 20px rgba(0,0,0,0.35);
    /* make photo pop */
    filter: brightness(1.18) contrast(1.12) saturate(1.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.brand__img-photo:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        0 0 0 4px rgba(241,7,163,0.45),
        0 14px 28px rgba(0,0,0,0.45);
    filter: brightness(1.22) contrast(1.15) saturate(1.12);
}
/* size inline SVG logo identically */
.brand__svg {
    height: 64px;
    width: auto;
    display: block;
}

/* Caption under photo logo */
.brand__caption {
    line-height: 1.1;
    font-size: 14.5px; /* slightly larger */
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 
        0 0 8px rgba(255,255,255,0.8), 
        0 0 15px rgba(123,47,247,0.6); /* brighter glow */
    transition: all 0.3s ease;
}

/* Optional: Add subtle hover effect */
.brand:hover .brand__caption {
    text-shadow: 
        0 0 10px rgba(255,255,255,1),
        0 0 20px rgba(123,47,247,0.8);
}
/* Navigation Links */
.site-header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 17px; /* Increased from default */
    font-weight: 600; /* Slightly bolder */
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.site-header nav a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Animated underline for nav links */
.site-header nav a { position: relative; }
.site-header nav a::after {
    content: "";
    position: absolute;
    left: 10px; right: 10px; bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-mid), var(--accent-end), var(--accent-start));
    background-size: 200% auto;
    animation: shimmer-accent 6s linear infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    border-radius: 2px;
}
.site-header nav a:hover::after { transform: scaleX(1); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    background: none; /* moved to ::before for blur */
    padding-top: 90px; /* space for fixed header */
    padding-bottom: 100px; /* tighter to reduce gap */
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('BackgroundImage/WhatsApp Image 2025-08-16 at 17.21.29_b0f2e1a3.jpg') center/cover no-repeat;
    filter: blur(2.5px) brightness(0.98);
    transform: scale(1.04); /* compensate blur edges */
    z-index: 0;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
    z-index: 1;
}
/* removed decorative wave for a flush transition */
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 40px 0;
}

.hero__text {
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero__tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--accent-mid);
    margin-bottom: 5px;
}

.feature-item span {
    display: block;
    line-height: 1.3;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Tagline - bright style without animation */
.pulse-bright {
    display: inline;
    filter: brightness(1.15) saturate(1.1);
    text-shadow:
        0 0 10px rgba(255,255,255,0.55),
        0 0 18px rgba(123,47,247,0.35);
}

/* Highlights over hero */
.highlights--over-hero {
    position: absolute;
    left: 0; right: 0;
    bottom: 40px;
    z-index: 3;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn--ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--block { display: block; text-align: center; }

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 16px auto 0;
}
.highlight-card {
    background: rgba(0,0,0,0.35);
    padding: 12px 16px;
    border-radius: 10px; /* less rounded, no pill */
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer; /* show it's interactive */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.highlight-card:hover,
.highlight-card:focus-visible {
    background: rgba(255,255,255,0.16);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.12) inset;
    border-color: rgba(255,255,255,0.35);
}

.highlight-card:focus-visible {
    outline: 3px solid var(--accent-mid);
    outline-offset: 2px;
}

/* Sections */
.section {
    padding: 60px 0 40px;  /* Reduced bottom padding */
    background:
      radial-gradient(900px 300px at 0% 0%, rgba(15,23,42,0.05) 0%, transparent 60%),
      radial-gradient(900px 300px at 100% 0%, rgba(61,90,254,0.06) 0%, transparent 60%),
      radial-gradient(900px 300px at 50% 120%, rgba(31,58,147,0.05) 0%, transparent 65%),
      linear-gradient(180deg, #eef3f9 0%, #ffffff 100%);
    position: relative; /* for decorative divider */
}
.section::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 14px;
    background: radial-gradient(1200px 14px at 50% 0, rgba(31,58,147,0.09), transparent 70%);
    pointer-events: none;
}
.section--light {
    background:
      radial-gradient(900px 280px at 10% 5%, rgba(61,90,254,0.07) 0%, transparent 70%),
      radial-gradient(900px 280px at 90% 5%, rgba(31,58,147,0.06) 0%, transparent 70%),
      linear-gradient(180deg, #eef4fb 0%, #f7fafc 70%, #ffffff 100%);
}
.section--after-hero {
    padding-top: 24px; /* tighter start after hero */
}
.section__title {
    font-size: 34px;
    margin-bottom: 16px; /* Reduced margin to bring subtitle closer */
    /* Animated gradient text */
    color: transparent;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-mid), var(--accent-end), var(--accent-start));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer-accent 6s linear infinite;
    text-align: center;
    position: relative;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.section__subtitle::before,
.section__subtitle::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--accent-mid);
    opacity: 0.7;
    position: relative;
    top: 0.5rem;
    line-height: 0;
}

.section__subtitle::before {
    margin-right: 8px;
}

.section__subtitle::after {
    margin-left: 8px;
    top: 1.8rem;
}
.section__title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-mid), var(--accent-end), var(--accent-start));
    background-size: 200% auto;
    animation: shimmer-accent 6s linear infinite;
}

/* Accent animation */
@keyframes shimmer-accent {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Products Grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product {
    background: var(--card);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden; /* for sheen */
}
.product:hover img { filter: saturate(1.05) contrast(1.02); }

.product img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.product p {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
}

.product:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18), 0 0 0 1px rgba(241,7,163,0.10) inset;
}

/* Product sheen effect */
.product::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 60%;
    height: 300%;
    transform: rotate(25deg);
    background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.0) 100%);
    transition: top 0.6s ease, left 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}
.product:hover::after {
    top: -20%;
    left: 120%;
    opacity: 1;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}
.gallery img:hover { transform: scale(1.03); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }

/* Richer gallery hover glow */
.gallery img:hover {
    box-shadow:
      0 18px 40px rgba(0,0,0,0.20),
      0 0 0 1px rgba(241,7,163,0.18) inset,
      0 0 24px rgba(241,7,163,0.16);
}

/* Awards gallery emphasis */
.awards img {
    border-radius: 16px;
    height: 260px;
}

/* About Us */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 30px;
}

.about-text {
    color: #2d3748;
    line-height: 1.8;
}

.about-text h3 {
    color: var(--accent-mid);
    margin: 30px 0 15px;
    font-size: 22px;
    position: relative;
    padding-bottom: 8px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
    border-radius: 3px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a5568;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 25px 0;
}

.about-image {
    position: relative;
    margin: 30px 0 0 0; /* Remove bottom margin to control spacing with team section */
    border-radius: 16px 16px 0 0; /* Only round top corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-highlight {
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 16px 16px;
    border-top: 4px solid var(--accent-mid);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: none;
    font-size: 16px;
    line-height: 1.7;
}

.team-highlight h3 {
    color: var(--accent-mid);
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
}

.team-highlight p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2d3748;
    padding: 12px 15px;
    background: rgba(123, 47, 247, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 47, 247, 0.1);
}

.feature:hover {
    background: rgba(123, 47, 247, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature i {
    color: var(--accent-mid);
    font-size: 18px;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: auto; /* Changed to auto to accommodate content */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.founder-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 24px 20px;
    text-align: center;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-start), var(--accent-mid), var(--accent-end));
    border-image-slice: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-mid), var(--accent-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.founder-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #4a5568;
    background: linear-gradient(90deg, #4a5568, #718096);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
    transition: transform 0.7s ease;
    object-position: center center;
}

/* Company Milestones */
.company-milestones {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.milestone {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

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

.milestone-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.milestone-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .milestone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
        min-height: 400px;
    }
    
    .key-features {
        grid-template-columns: 1fr;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .milestone {
        padding: 20px 15px;
    }
    
    .milestone-number {
        font-size: 28px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .key-features {
        grid-template-columns: 1fr;
    }
    
    .about-text p {
        font-size: 15px;
    }
}

/* Awards Section */
#awards {
    padding: 60px 0;
}

.awards__description {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Awards cards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.award-card {
    position: relative;
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.award-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
    text-align: center;
}

.award-title-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.award-content {
    padding: 20px;
    text-align: center;
}

.award-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Hover effects */
.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .award-title-overlay h3 {
        font-size: 1.2rem;
    }
    
    .award-img {
        height: 200px;
    }
}
.award-card img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; display: block; }
.award-card__caption {
    position: absolute;
    left: 12px; bottom: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(4px);
}
/* remove diagonal ribbon */
.award-card::before {
    content: none !important;
    display: none !important;
}
.award-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }

/* Owner section */
.owner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.owner-card {
    position: relative;
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.owner-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.owner-card__caption {
    position: absolute; left: 12px; bottom: 12px;
    background: rgba(0,0,0,0.55); color: #fff;
    padding: 6px 10px; border-radius: 10px; font-weight: 600;
}

/* Showroom */
#showroom {
    padding: 20px 0 5px;  /* Further reduced padding */
    background-color: #f9f9ff;
}

/* Showroom Slider */
.showroom-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

.showroom__description {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.showroom-gallery {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: white;
}

.showroom-gallery__main {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.showroom-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showroom-gallery__thumbnails {
    display: flex;
    padding: 10px;
    background: white;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.showroom-gallery__thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.showroom-gallery__thumb {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.showroom-gallery__thumb:hover,
.showroom-gallery__thumb.active {
    opacity: 1;
    border-color: var(--accent-mid);
    transform: scale(1.05);
}

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

.showroom-info__item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.showroom-info__item h3 {
    color: var(--accent-mid);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.showroom-info .btn--primary {
    align-self: center;
    justify-self: start;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
}

/* Contact */
.contact {
    max-width: 1000px; /* wider container */
    margin: 0 auto;
    padding: 50px 20px;
    line-height: 1.7;
    font-size: 19px; /* increase base font size */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}
.contact__list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
}
.contact__list li {
    margin-bottom: 16px;
    word-break: break-word;
    padding: 15px;
    background: #f9f9ff;
    border-radius: 12px;
    border-left: 4px solid var(--accent-mid);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact__list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact__list a {
    color: var(--accent-mid);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    position: relative;
    font-weight: 500;
}

/* WhatsApp Button Styles */
.whatsapp-contact {
    margin: 15px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.whatsapp-contact strong {
    min-width: 80px;
    display: inline-block;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 110px;
    text-align: right;
    gap: 8px;
    background-color: #25D366;
    color: white !important;
    padding: 6px 12px 6px 30px;
    border-radius: 50px;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    position: relative;
}

.whatsapp-btn i {
    font-size: 18px;
    position: absolute;
    left: 12px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.contact__list a:hover {
    color: var(--accent-start);
    text-decoration: none;
    transform: translateX(3px);
}

.contact__list a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-5px);
}

.contact__list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.contact__card {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    padding: 18px 0;
    text-align: center;
    color: #6b7280;
    background: #0f172a;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero__tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero { 
        min-height: 70vh; 
        padding-top: 80px; 
        padding-bottom: 180px; 
    }
    
    .hero h1 { 
        font-size: 2.2rem; 
        margin-bottom: 1.2rem;
    }
    
    .hero__tagline {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero__features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .highlights { grid-template-columns: repeat(2, 1fr); }
    .contact { grid-template-columns: 1fr; }
    .products { gap: 16px; }
    .product { width: 48%; }
    .gallery img { height: 220px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .product { width: 100%; }
    .gallery img { height: 200px; }
}

/* Reveal on scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Staggered reveal for products and gallery */
.products .product.reveal { transition-delay: 60ms; }
.products .product.reveal:nth-child(2) { transition-delay: 120ms; }
.products .product.reveal:nth-child(3) { transition-delay: 180ms; }
.gallery img.reveal { transition-delay: 40ms; }
.gallery img.reveal:nth-child(2n) { transition-delay: 80ms; }
.gallery img.reveal:nth-child(3n) { transition-delay: 120ms; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open { 
    display: flex;
    opacity: 1;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Add hover effect to all clickable images */
img[src$='.jpg'],
img[src$='.jpeg'],
img[src$='.png'],
img[src$='.webp'] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img[src$='.jpg']:hover,
img[src$='.jpeg']:hover,
img[src$='.png']:hover,
img[src$='.webp']:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    cursor: pointer;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 18px; bottom: 18px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-mid), var(--accent-end));
    background-size: 200% auto;
    animation: shimmer-accent 6s linear infinite;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    font-size: 20px;
    z-index: 1500;
}
.back-to-top.is-visible { display: flex; }
