:root {
    --bg: #ffffff;
    --text: #000000;
    --item-bg: #ffffff;
    --accent: #ff7b00;
    --yellow-brand: #FFE800;
    --ease-amber: cubic-bezier(0.19, 1, 0.22, 1);
}

body.dark-mode { --bg: #000000; --text: #ffffff; --item-bg: #111111; }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg); color: var(--text); overflow-x: hidden; }
body.loading { overflow: hidden; }

/* 1. INTRO LOADER */
#intro-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--yellow-brand); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
}
.loader-text {
    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: 25px; /* JS will snap this inward */
    color: #000;
    text-transform: uppercase;
}

/* 2. NAVIGATION */
nav {
    position: fixed; top: 0; width: 100%; z-index: 5000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%;
     /* Keeps nav visible on black/white */
}
.logo-img  { width: 120px; opacity: 1 !important; }
.nav-links a { color: #fff; text-decoration: none; margin-right: 25px; font-size: 13px; font-weight: 600; text-transform: uppercase; }

/* 3. THE SUDDEN WIPE (Hero sticky, content relative) */
.home {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    overflow: hidden;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 100%);
}
.video-slide { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: 1s; background: rgba(255, 255, 255, 0.5); }
.video-slide.active { opacity: 1; }
.content { position: relative; z-index: 2; top: 50%; transform: translateY(-50%); padding-left: 5%; color: rgb(255, 255, 255); }
.hero-title { font-size: clamp(3rem, 10vw, 6rem); font-weight: 900; text-transform: uppercase; }

.home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates a 50% black tint over the entire section */
    background-color: rgba(0, 0, 0, 0.5); 
    /* Ensures the tint stays behind the text (z-index 2) but above videos (z-index 1) */
    z-index: 1; 
    pointer-events: none; /* Allows you to still click buttons/links underneath */
}

/* Ensure your content stays on top of the new tint */
.content {
    z-index: 2;
}

/* Ensure your navigation dots stay on top of the new tint */
.slider-navigation {
    z-index: 2;
}

/* 4. THE WIPE CONTENT WRAPPER */
.main-content-wrapper {
    position: relative;
    z-index: 100; /* Physical layer sliding on top */
    background-color: var(--bg);
    box-shadow: 0 -40px 80px rgba(0,0,0,0.4);
}

/* Original section styles */
.products-section, .aboutus-container, .t1ech-feature-section, .leader, .contact-section { padding: 100px 5%; }
.leader, .contact-section { background-color: var(--yellow-brand); color: #000; text-align: center; }
.aboutus-container { background-color: var(--yellow-brand); color: #000; text-align: center; height: 80v; font-size: larger;}
.aboutustxt { font-size: 1.2rem; max-width: 80%; margin: 0 auto; line-height: 1.6; }
.aboutustxt h1 { font-size: 3rem; margin-bottom: 20px; font-weight: 800;color: #000; }
.aboutustxt p { font-size: 1.3rem; line-height: 1.7; max-width: 800px; margin: 0 auto; padding-bottom: 5%;color: #000;}
.quote-text{ font-size: 2rem; max-width: 80%; margin: 0 auto; line-height: 1.2; padding-bottom: 3.5%; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.product-item {
    background: var(--item-bg); aspect-ratio: 1/1.1; border-radius: 4px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; opacity: 0; transform: translateY(60px);
}
.product-item img { width: 70%; transition: 0.6s var(--ease-amber); }
.product-item:hover img { transform: scale(1.1) translateY(-10px); }
.product-item span { color: var(--text); font-weight: 700; margin-top: 15px; }

.t1ech-card { background: #979797; padding: 60px 40px; border-radius: 30px; text-align: center; }
.quote-section { padding: 100px 5%; text-align: center; background: #fff; }

.switch { width: 44px; height: 22px; background: #444; border-radius: 20px; position: relative; cursor: pointer; display: block; }
.switch::before { content: ""; position: absolute; width: 18px; height: 18px; background: white; border-radius: 50%; top: 2px; left: 2px; transition: 0.4s; }
#dark-mode-toggle:checked + .switch::before { transform: translateX(22px); }
#dark-mode-toggle { display: none; }

.footer { background: #000; color: #fff; padding: 40px; text-align: center; }


.section-title{
    color: #000;
    font-size: 3rem;
    margin-bottom: 3vh;
    text-align: center;
}

#bb-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #2c3e50; 
    transition: background-color 0.8s ease-in-out;
    font-family: 'Inter', sans-serif;
    color: white;
}

.bb-bg-text-layer {
    position: absolute;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

#bb-title {
    font-size: 24vw;
    font-weight: 900;
    opacity: 0.07;
    letter-spacing: -1.5vw;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.bb-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

/* Info Card Styling */
.bb-info-card { 
    flex: 1; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-category-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: block;
}

#bb-sub-title { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1; 
    margin-bottom: 25px;
    text-transform: uppercase;
}

#bb-desc { 
    max-width: 480px; 
    font-size: 1.15rem;
    line-height: 1.7; 
    opacity: 0.9; 
    margin-bottom: 40px;
    min-height: 4em;
}

.bb-action-row { display: flex; align-items: center; gap: 30px; }

.bb-specs { font-size: 0.8rem; opacity: 0.5; display: flex; flex-direction: column; }

.bb-btn {
    padding: 20px 50px;
    border-radius: 12px;
    border: none;
    background: white;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bb-btn:hover { background: #eee; transform: translateY(-3px); }

/* Product Image */
.bb-product-center { flex: 1.2; display: flex; justify-content: center; }
#bb-jar { width: 550px; filter: drop-shadow(0 40px 100px rgba(0,0,0,0.5)); }

/* Nav Block & Progress */
.bb-nav-block { 
    position: absolute; 
    right: 100px; 
    bottom: 80px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.bb-progress-container {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

#bb-progress-bar {
    width: 0%;
    height: 100%;
    background: white;
}

.bb-counter { font-size: 1.2rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.bb-arrows { display: flex; gap: 10px; }
.bb-arrow {
    width: 60px; height: 60px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2); background: transparent;
    color: white; cursor: pointer; transition: 0.3s;
}
.bb-next { background: white; color: black; border: none; }


:root {
    --brand-beige: #ece3d4;
    --brand-yellow: #ffe800;
    --brand-orange: #ff8c00;
}

/* The outer container defines how long the section "stays" on screen */
.sticky-section-wrapper {
    position: relative;
    height: 150vh; /* Extra height allows it to feel stuck before moving */
    background-color: var(--brand-beige);
}

.split-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    width: 100%;
    overflow: hidden;
}

/* Left Side: Photo/Visual (60%) */
.sticky-visual-side {
    flex: 1.5; /* Takes up 60% */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #f5f5f5; /* Light contrast for the photo */
}

.sticky-main-img {
    width: 70%;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

.bg-text-overlay {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 1;
    user-select: none;
}

/* Right Side: Content (40%) */
.sticky-content-side {
    flex: 1; /* Takes up 40% */
    background-color: var(--brand-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.acecure-info-card {
    background: #ffffff; /* White card as requested */
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-tag {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.accent-divider {
    width: 40px;
    border: 2px solid var(--brand-orange);
    margin-bottom: 25px;
}

.acecure-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
}

/* Orange Elongated Oval Button */
.orange-pill-btn {
    display: inline-block;
    background-color: var(--brand-orange);
    color: #fff;
    padding: 14px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.orange-pill-btn:hover {
    transform: translateY(-3px);
    background-color: #e67e00;
}

/* Next Section for scrolling effect */
.next-normal-section {
    height: 100vh;
    background-color: var(--brand-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}#mvv-brand-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #f39c12; 
    transition: background-color 0.8s ease-in-out;
    color: rgb(0, 0, 0);
    font-family: 'Poppins', sans-serif;
}

.mvv-brand-bg-layer {
    position: absolute;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

#mvv-brand-title-bg {
    font-size: 20vw;
    font-weight: 900;
    opacity: 0.07;
    letter-spacing: -1vw;
    text-transform: uppercase;
}

.mvv-brand-main-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.mvv-brand-info-card { 
    flex: 1; 
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#mvv-brand-sub-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
#mvv-brand-desc-text { font-size: 1.1rem; line-height: 1.6; opacity: 0.9; margin-bottom: 30px; }

.mvv-brand-explore-btn {
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    background: #fff;
    font-weight: bold;
    cursor: pointer;
}

.mvv-brand-img-center img { width: 500px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3)); }

.mvv-brand-nav-wrap { position: absolute; right: 100px; bottom: 50px; text-align: right; }
.mvv-brand-progress-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.2); margin: 15px 0; }
#mvv-brand-progress-bar { width: 0%; height: 100%; background: #fff; }
.mvv-brand-arrow-btn
 {   width: 60px; height: 60px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2); background: transparent;
    color: white; cursor: pointer; transition: 0.3s;
}; 
.mvv-brand-next-btn { background: #fff; color: #000; }

/* ==========================================================================
   7. LEADERSHIP & CONTACT
   ========================================================================== */
.leader {
    position: relative;
    z-index: 10;
    background-color: var(--yellow-brand);
    padding: 100px 20px;
    padding-bottom: 7%;
    text-align: center;
    color: #000;
}

.leadersays h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.leadersays p { font-size: 1.1rem; line-height: 1.7; max-width: 800px; margin: 0 auto 30px;padding-bottom: 1%; }

/* Import Google Fonts (Playfair for headings, Montserrat for body) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-beige: #ece3d4;         /* Main background color from image */
    --card-beige: #e5dac9;       /* Form card background */
    --text-dark: #2c2c2c;        /* Primary text color */
    --accent-dark: #0d1b2a;      /* Button and icon color */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* --- COMMON UTILITIES --- */
.icon-logo {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-dark);
}

.overlay-dark {
    background: rgba(0, 0, 0, 0.45); /* Darkens images for text readability */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* --- 1. HEADER BANNER SECTION --- */
.contact-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.contact-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- 2. MAIN CONTACT SECTION --- */
.contact-main {
    background-color: var(--bg-beige);
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.contact-left {
    flex: 1.2;
}

.contact-left h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.divider {
    width: 50px;
    border: none;
    border-top: 2px solid var(--accent-dark);
    margin: 20px 0 40px 0;
}

/* Info Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    font-size: 1.1rem;
    color: var(--accent-dark);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* --- 3. COMPLAINT FORM CARD --- */
.contact-right-card {
    background-color: var(--card-beige);
    padding: 50px;
    flex: 0.8;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-right-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--accent-dark);
}

button {
    background-color: var(--accent-dark);
    color: white;
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #1a2a3a;
    transform: translateY(-2px);
}

/* --- 4. APP DOWNLOAD SECTION --- */
.app-download {
    height: 450px;
    background-size: cover;
    background-position: center;
    color: white;
}

.app-download h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    max-width: 700px;
    margin-bottom: 20px;
}

.app-download p {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-badges img {
    height: 48px;
    margin: 0 10px;
    cursor: pointer;
    transition: 0.3s;
}

.app-badges img:hover {
    filter: brightness(1.2);
}

/* --- 5. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-header h1 { font-size: 2.2rem; }
    .app-download h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-right-card {
        padding: 30px 20px;
    }
}
/* Contact Section Background (Yellow) */
.contact-main {
    background-color: #f7e018; /* Bright yellow from your screenshot */
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 20px;
}

.contact-info { flex: 1.2; }

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    border: none;
    border-top: 3px solid #1a1a1a;
    margin-bottom: 40px;
}

/* Custom Icon Image Styling */
.contact-icon-img {
    width: 30px; /* Adjust size to match your design */
    height: 30px;
    object-fit: contain;
    margin-top: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Form Card (Slightly darker beige/cream to stand out against yellow) */
/* Main Section Background (Beige) */
.contact-main {
    background-color: #ffe800; /* The beige color from image_5384d6.png */
    padding: 80px 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 20px;
    align-items: flex-start;
}

/* Info Section Styling */
.contact-info { flex: 1.2; }
.contact-info h2 { font-size: 2.7rem; color: #1a1a1a; margin: 0; font-weight: 800;}
.divider { width: 50px; border: 2px solid #000; margin: 20px 0 40px 0; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px 20px; }
.info-item { display: flex; gap: 15px; }
.contact-icon-img { width: 28px; height: 28px; object-fit: contain; }
.info-item strong { display: block; font-size: 0.85rem; margin-bottom: 5px; color: #000; }
.info-item p { font-size: 1.1rem; color: #444; margin: 0; line-height: 1.4; }

/* WHITE COMPLAINT BOX Styling */
.complaint-box-card {
    background-color: #ffffff; /* Explicit White Color */
    padding: 50px;
    flex: 0.8;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Soft shadow to pop off beige */
    border-radius: 4px; /* Optional slight rounding */
}

.complaint-box-card h3 { 
    margin-bottom: 25px; 
    font-size: 1.6rem; 
    color: #1a1a1a; 
}

/* Form Elements */
.form-row { display: flex; gap: 15px; }
input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9; /* Very light gray inside white box for contrast */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

button {
    background: #000;
    color: #fff;
    padding: 14px 45px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover { background: #333; }

/* Responsive */
@media (max-width: 900px) {
    .container { flex-direction: column; }
    .info-grid { grid-template-columns: 1fr; }
    .complaint-box-card { width: 100%; }
}

/* Footer Container */
.site-footer {
    background-color: #000000; /* Solid Black */
    border-top: 5px solid #E6D800; /* Yellow top border from image */
    padding: 20px 0;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Socials Left, Copyright Right */
    align-items: center;
    padding: 0 40px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img, 
.social-icons i {
    width: 32px;  /* Small size to match image */
    height: 32px;
    background-color: #ffffff; /* White circular background */
    border-radius: 50%;
    padding: 6px;
    color: #000000; /* Icon color inside circle */
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    transition: 0.3s ease;
}

.social-icons a:hover img,
.social-icons a:hover i {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Copyright Text */
.footer-copyright {
    color: #E6D800; /* Yellow color from image */
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.imge {
    position: absolute;
    height: 40vh;
    opacity: 0.15; /* Subtle overlay effect */
}

.contact-banner {
    /* Replace 'header-bg.jpg' with your actual image path */
    background-image: url('portrait-asian-girl-works-cafe-uses-laptop-sits-outdoors-street-digital-nomad.jpg'); 
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    position: relative;
    /* This creates the rounded black frame effect at the top */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    overflow: hidden;
    margin-top: 20px;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* The dark tint over the image */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: #ffffff;
}

.banner-content h1 {
    font-family: 'Playfair Display', serif; /* Elegant serif font from image */
    font-size: 5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.banner-content p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .contact-banner {
        height: 250px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
}
/* Enhanced Certificates Section - Responsive Images */
.certificates-section {
    position: relative;
    width: 100%;
    min-height: 60vh; /* Adjust height based on preference */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5% 0;
}

/* Background Video Styling */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Black Filter Overlay (0.5 opacity) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 0.5 Opacity black filter */
    z-index: -1;
}

/* Content Scaling */
.certificates-content {
    text-align: center;
    color: white;
    z-index: 1;
    width: 90%;
}

/* Scaling Text: Uses clamp to prevent text from getting too small or too large */
.cert-title {
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    /* Scales between 30px and 80px based on screen size */
    font-size: clamp(30px, 6vw, 80px); 
    text-transform: uppercase;
}

/* Scaling Logo Image */
.certificates-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.cert-img {
    /* Image scales based on screen width */
    width: clamp(200px, 40vw, 600px); 
    height: auto;
    filter: brightness(1.1); /* Makes the gold/white logos pop */
    transition: transform 0.3s ease;
}

/* Hover Effect for Desktop */
.cert-img:hover {
    transform: scale(1.05);
}

/* Media Queries for Extra Fine-Tuning */
@media (max-width: 768px) {
    .certificates-section {
        min-height: 40vh; /* Smaller height on mobile */
    }
    
    .cert-title {
        letter-spacing: 1px;
    }
}

@media (min-width: 1440px) {
    /* For ultra-wide screens, ensure it doesn't look empty */
    .certificates-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* The parent container (Hero Section) */
.hero-section {
    height: 100vh; /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: flex-end; /* Pushes content to the right side */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* The Content Box */
#hero-content {
    width: 50%; /* Takes exactly 40% of the screen width */
    padding-right: 5%; /* Adds a little breathing room from the very edge */
    display: flex;
    flex-direction: column;
    align-items: left; /* Centers h1, p, and button horizontally within the 40% box */
    text-align: left; /* Centers the lines of text */
}

.hero-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
    color: #ffffff;
}

#hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Orange Elongated Oval Button */
.explore-btn {
    display: inline-block;
    background-color: #FF8C00; /* Deep Orange */
    color: #ffffff;
    padding: 20px; /* Elongated effect */
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    width: 10vw;
    text-align: center;
}

.explore-btn:hover {
    background-color: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Responsive adjustment for tablets/phones */
@media (max-width: 1024px) {
    #hero-content {
        width: 80%; /* Takes more space on smaller screens */
        padding-right: 0;
        margin: 0 auto; /* Centers the whole block on mobile */
    }
    .hero-section {
        justify-content: center; /* Centers the block on mobile */
    }
}
