:root {
    --primary: #0a0a0c;    /* Deep Charcoal */
    --secondary: #161619;  /* Card Background */
    --accent: #FF9F1C;     /* Sunset Glow Orange */
    --text-light: #ffffff;
    --text-muted: #b0b0b5;
    --border: #2a2a2e;
    --transition: 0.5s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
html{
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    position:  relative;
}

body { background-color: var(--primary); color: var(--text-muted); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; }

.section-padding { padding: 100px 0; }

span.highlight { color: var(--accent); }

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%; /* Slightly more padding when transparent */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

/* Default state: Transparent */
.navbar-transparent {
    background: transparent;
    backdrop-filter: blur(0px);
}

.navbar-scrolled {
    /* Using a semi-transparent dark grey */
    background: rgba(20, 20, 25, 0.6); 
    
    /* This is the magic line for the glass effect */
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); /* For Safari support */
    
    padding: 15px 5%;
    
    /* A subtle 'inner' border to make the glass look sharp */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Optional: Make the logo slightly smaller when scrolled for a sleeker look */
.navbar-scrolled .logo img {
    height: 50px;
    transition: 0.4s;
}

.logo img {
    height: 75px; 
    /*background: #fff;*/
    border-radius: 7px;
    padding: 0 20px;
}

.nav-links { display: flex; list-style: none; gap: 30px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}
/* Ensure links are always visible but pop on scroll */
.nav-links a {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Helps visibility on bright images */
}

.nav-links a:hover { color: var(--accent); }
/* BANNER ANIMATION (VANISH) */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; }

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* The vanish effect */
}

.slide.active { opacity: 1; }

.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%; /* Slightly more breathing room from the edge */
    transform: translateY(-50%);
    max-width: 800px; /* Limits paragraph width for better readability */
    z-index: 10;
}

.hero-content h1 {
    font-size: 2.5rem; /* Large, commanding presence */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.8; /* Increased leading for the 4-5 line look */
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px; /* Keeps the text from stretching too far across the screen */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    border-left: 4px solid var(--accent); /* Adds a nice "design" touch to the longer text */
    padding-left: 25px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    /* Added animation so they slide in with the text */
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Primary Button (Our Projects) */
.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.3);
}

/* Secondary Button (Capability Statement) */
.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Animation to make buttons pop in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TRUST BAR --- */
.trust-bar {
    background: #141417; /* Slightly lighter than the pure black for depth */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: relative;
    z-index: 20;
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.trust-item span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
}

/* --- WHO WE ARE SECTION --- */
.who-we-are {
    padding: 100px 0;
    background: #0a0a0c;
    overflow: hidden;
}

.who-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.who-text {
    flex: 1;
}

.section-tag {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.who-text h2 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.who-text h2 span {
    color: var(--accent);
}

.who-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Image Side */
.who-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* CTA at Center */
.who-cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
}

.cta-link:hover {
    color: var(--accent);
    gap: 15px;
}



/* REWARDS & CARDS */
.grid-3 { 
    display: flex !important; /* Forces flex layout over any lingering grid settings */
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch !important; /* Strictly forces all items in a row to match height */
    gap: 30px; 
    margin-top: 50px; 
    width: 100%;
}

/* --- SERVICES SECTION STYLING --- */

.section-header {
    max-width: 100%;
    /*margin: 0 auto 60px auto;*/
}
.services-section {
    position: relative;
    /* Replace with your actual image path */
    background-image: url('../images/banners/banner1.webp'); 
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0; /* Extra padding looks better with parallax */
    z-index: 1;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.65); /* Adjust opacity if image is too bright */
    z-index: -1;
}
.services-section .highlight {
    color: var(--accent);
}
.services-section h2, 
.section-desc {
    color: #fff;
    position: relative;
}

.services-section h2{
    text-align: center;
    font-size: 2rem;
}
.services-section p{
    text-align: center;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Card Improvements */
.card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Strict sizing calculations */
    flex: 1 1 calc(33.333% - 30px); /* Grow and shrink evenly based on 3 columns */
    min-width: 300px; 
    max-width: calc(33.333% - 20px); /* Prevents the bottom 2 cards from expanding too wide */
    
    /* Design Aesthetics */
    background: rgba(20, 20, 23, 0); 
    backdrop-filter: blur(10px); 
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 159, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 2rem;
    transition: 0.3s;
}

.card:hover .card-icon {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.5);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* New Card Button */
.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-card i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-card:hover {
    color: var(--text-light);
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* --- WHY RKD SECTION --- */
.why-rkd-section {
    padding: 100px 0;
    background: #1a1a1c; /* A slightly lighter black to separate from the About section */
}

.why-header {
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    margin-top: 10px;
}

.why-header h2 span {
    color: var(--accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-card {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.why-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* --- LUXURY REWARDS SECTION --- */
.rewards-lux {
    background: #1a1a1e;
    position: relative;
    overflow: hidden;
}

/* Background "Glow" for depth */
.rewards-lux::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.header-group { position: relative; z-index: 2; margin-bottom: 60px; text-align: center;}

.pre-title {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 10px;
}

.header-line {
    width: 60px; height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

.lux-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Modern Card Layout */
.lux-gallery { display: flex; justify-content: center; gap: 50px; z-index: 2; position: relative; }

.lux-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    cursor: pointer;
}

.cert-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.cert-img-wrap img { width: 100%; height: 280px; object-fit: cover; object-position: top; transition: 0.5s; }

.zoom-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 159, 28, 0.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: #fff; font-size: 2rem;
}

.lux-card:hover .zoom-overlay { opacity: 1; }
.lux-card:hover { transform: translateY(-15px); border-color: rgba(255, 159, 28, 0.3); background: rgba(255, 255, 255, 0.05); }

.lux-btn {
    display: inline-flex; align-items: center; gap: 20px; border: 1px solid var(--accent);
    padding: 10px 10px 10px 35px; border-radius: 100px; color: #fff; text-decoration: none;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; margin-top: 50px;
}

.btn-icon { width: 45px; height: 45px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; }
.lux-btn:hover { background: var(--accent); color: #000; }

/* MODAL / LIGHTBOX STYLES */
.modal {
    display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); backdrop-filter: blur(15px);
}
.modal-content {
    margin: auto; display: block; width: 35%; max-width: 700px; border-radius: 15px;
    border: 2px solid var(--accent); animation: zoomAnim 0.4s;
}
@keyframes zoomAnim { from {transform:scale(0.7); opacity:0} to {transform:scale(1); opacity:1} }
.close-modal { position: absolute; top: 30px; right: 50px; color: #fff; font-size: 40px; cursor: pointer; }
#modal-caption { text-align: center; color: var(--accent); padding: 20px; font-weight: 600; letter-spacing: 1px; }
.lux-info h3 { font-size: 1.1rem; color: #fff; margin-bottom: 5px; }
.lux-info p { font-size: 0.9rem; color: var(--accent); font-weight: 500; }

/* Interaction */
.lux-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 159, 28, 0.3);
}

.lux-card:hover img { transform: scale(1.1); }

/* The Modern Button UI */
.cta-center {text-align: center; }

.lux-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 1px solid var(--accent);
    padding: 10px 10px 10px 35px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.4s;
}

.btn-icon {
    width: 45px; height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.4s;
}

.lux-btn:hover {
    background: var(--accent);
    color: #000;
}

.lux-btn:hover .btn-icon {
    background: #fff;
    transform: rotate(-45deg);
}


/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background: #1a1a1e;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    color: var(--accent);
    transition: transform 0.3s ease;
}

/* Open State Styling */
.faq-item.active {
    border-color: var(--accent);
    background: rgba(255, 159, 28, 0.02);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns plus into an X */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length */
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-question:hover h3 {
    color: var(--accent);
}

/* FOOTER */
footer { background: #050507; padding: 80px 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-about img { height: 150px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; line-height: 2.5; }
.footer-contact h3{
    margin-bottom: 12px;
}
.footer-contact p{
    margin-bottom: 15px;
}
/* --- CLIENTS MARQUEE SECTION --- */
.clients-section {
    background: #0a0a0c;
    overflow: hidden;
    padding-bottom: 120px;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* The side fades for that modern look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0c, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0c, transparent);
}

.marquee-content {
    display: flex;
    width: calc(250px * 12); /* Adjust based on (logo width * total logos) */
    animation: scrollMarquee 30s linear infinite;
}

.client-logo {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.client-logo img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* The Animation Loop */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Must be exactly half the total width */
}

/* Pause scroll on hover for better UX */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* --- ABOUT PAGE: JOURNEY SECTION --- */
.about-section {
    background: #1a1a1c;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow for depth */
.about-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.about-section .container {
    display: flex;
    align-items: center;
    /*gap: 80px;*/
    position: relative;
    z-index: 2;
}

/* Text Content Styling */
.about-text {
    flex: 1;
}

.about-text h2 {
    white-space: nowrap; /* This forces the text to stay on one line no matter what */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.about-text h2 span {
    color: var(--accent);
    display: inline; /* Changed from block to inline to keep it on one line */
    margin-left: 10px; /* Adds a little space between 'Our' and 'Journey' */
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 90%;
}

/* Image Styling with Industrial Frame */
.about-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%) brightness(0.9);
    transition: 0.5s ease;
}

/* Decorative Frame Corner */
.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-top: 5px solid var(--accent);
    border-right: 5px solid var(--accent);
    border-radius: 0 10px 0 0;
    z-index: -1;
}

.about-image:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}
/*===============================================================================================================================*/

/* --- ABOUT PAGE: CORE VALUES --- */
.values-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    
    /* Parallax Background Magic */
    background-image: linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.85)), 
                      url('../images/banners/banner1.webp'); /* Replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--accent);
}

/* --- FOUNDER SECTION --- */
.founder-section {
    background: #0a0a0c;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Styling */
.founder-image {
    flex: 0.8;
    position: relative;
}

.image-border {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(255, 159, 28, 0.3); /* Subtle accent border */
    border-radius: 20px;
}

.image-border img {
    width: 100%;
    border-radius: 15px;
    display: block;
    filter: grayscale(0.2); /* Gives a professional, timeless look */
    transition: 0.5s;
}

.founder-image:hover img {
    filter: grayscale(0);
}

.founder-name-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.founder-name-tag h4 {
    color: #000;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.founder-name-tag span {
    color: #000;
    opacity: 0.8;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Content Styling */
.founder-content {
    flex: 1.2;
}

.quote-box {
    margin: 30px 0;
    position: relative;
}

.quote-box i {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
}

.quote-box p {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
}

.message-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-signature {
    margin-top: 40px;
}

.signature-img {
    max-width: 180px;
    filter: brightness(0) invert(1); /* Makes a dark signature white */
    margin-bottom: 10px;
    opacity: 0.8;
}

.founder-signature p {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TIMELINE SECTION --- */
.timeline-section {
    padding: 100px 0;
    background: #1a1a1c;
    overflow-x: hidden;
}

.timeline-wrapper {
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
}

/* The horizontal road/line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 20px;
    align-items: stretch; /* This is key: it forces items to equal height */
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* The orange dots on the road */
.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 4px solid #0a0a0c;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px; /* Pushes year above the line */
    display: block;
}

.timeline-card {
    background: #141417;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    
    /* New properties for uniformity */
    flex-grow: 1; /* Makes the card fill the remaining height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Keeps text at the top */
    min-height: 180px; /* Ensures they don't get too small on wider screens */
}

.timeline-item:hover .timeline-card {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.timeline-card h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- BOARD OF DIRECTORS --- */
.board-section {
    background: #0a0a0c; /* Lighter than Founder section to create contrast */
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.director-card {
    background: #141417;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.director-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: 0.6s ease;
}

.director-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 159, 28, 0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
}

.director-card:hover .director-overlay {
    opacity: 1;
}

.director-card:hover .director-img img {
    transform: scale(1.1);
    filter: saturate(1);
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.director-info {
    padding: 10px;
    text-align: center;
}

.director-info h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.director-info span {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.director-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto;
}

.director-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effect for Card */
.director-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.bio-content {
    max-width: 800px; /* Wider for bio text */
    background: #141417; /* Dark theme for the popup */
    color: #fff;
    border: 1px solid var(--accent);
}
.bio-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.bio-img {
    flex: 0 0 250px;
}

.bio-img img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--accent);
}

.bio-text h2 {
    color: var(--accent);
    margin-bottom: 5px;
}

.bio-text span {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #bbb;
}

.bio-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ddd;
}


/* Grid setup to match your 'services-grid' class */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Value Card Styling */
.service-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly more opaque */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

/* Decorative background number or icon glow */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    /*height: 200%;*/
    background: radial-gradient(circle, rgba(255, 159, 28, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

/* Icon Styling */
.service-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* --- HOVER INTERACTIONS --- */
.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 159, 28, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 20px rgba(255, 159, 28, 0.5);
}
/* --- ABOUT PAGE: COUNTER SECTION --- */
.counter-section {
    background: #0a0a0c;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.counter-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.counter-item {
    text-align: center;
    position: relative;
    padding: 20px;
    min-width: 200px;
}

.counter-item h2 {
    font-size: 4rem; /* Big, bold numbers */
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif; /* Use a clean, techy font */
}

/* Add a "+" suffix to numbers via CSS or JS */
.counter-item h2::after {
    content: '+';
    font-size: 2rem;
    margin-left: 5px;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.5);
}

.counter-item p {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

/* Decorative glowing line under each counter */
.counter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 15px var(--accent);
}

/* --- ABOUT PAGE: MISSION & VISION --- */
.mission-vision {
    background: #1a1a1c;
    padding: 100px 0;
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle corner accent for Vision/Mission */
.mv-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--accent);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.mv-box h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Glass Button Style */
.btn-explore {
    width: fit-content;
    padding: 12px 30px;
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-explore:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
    transform: translateY(-3px);
}

/* --- HOVER EFFECT --- */
.mv-box:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
}
/* --- MISSION & VISION MODAL --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    
    /* --- THE FIX IS HERE --- */
    display: none;        /* This will be changed to 'flex' by JS */
    align-items: center;   /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

.modal-content {
    background: #141417; /* Solid dark background for text readability */
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255, 159, 28, 0.3); /* Accent border */
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Modal scale-up animation */
@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

#modalTitle {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 25px;
}

#modalBody {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Custom Scrollbar for long modal content */
#modalBody::-webkit-scrollbar {
    width: 5px;
}
#modalBody::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

/* --- FINANCIAL SECTION --- */
.financial-section {
    background: #0a0a0c;
}

.chart-container {
    background: #141417;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    position: relative;
    height: 450px; /* Adjust height as needed */
    width: 100%;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.revenue { background: #3b82f6; } /* Blue from your image */
.dot.profit { background: #ef4444; }  /* Red from your image */

/* --- ABOUT PAGE: MAP SECTION --- */
.map-section {
    background: #29292a;
    padding: 100px 0; /* No bottom padding because footer follows */
}

.map-container {
    width: 100%;
    border-radius: 20px; /* Rounded top, flat bottom to merge with footer */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    line-height: 0; /* Removes tiny gap at bottom of iframe */
}

/* The "Luxury Dark" Map Trick */
.map-container iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
    transition: 0.6s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}
/*=======================================================================================================================================*/

/* --- SERVICES PAGE: DETAIL SECTIONS --- */
.service-detail-section {
    padding: 100px 0;
    background: #0a0a0c;
}

.bg-dark { background: #1a1a1c; } /* Slight variation for alternating sections */

.service-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-flex.reverse {
    flex-direction: row-reverse;
}

/* Service Info Styling */
.service-info { flex: 1; }

.service-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.service-info h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
}

.service-info h2 span { color: var(--accent); }

.service-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Specification List */
.spec-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for checklist */
    gap: 15px;
}

.spec-list li {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Service Visuals */
.service-visual { flex: 1; }

.service-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* --- DELIVERY MODELS --- */
.delivery-models {
    background: #1a1a1c;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background: #141417;
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid var(--accent); /* Adds a colored accent top bar */
    transition: 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    background: #2d2d2d;
}

.model-number {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.6;
}

.model-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.model-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- WHAT WE BRING (Section 3) --- */
.what-we-bring {
    background: #0a0a0c;
}

.value-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.value-text { flex: 1.2; }
.value-image { flex: 0.8; }

.value-image img {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.3);
}

.value-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.value-list i {
    color: var(--accent);
    margin-top: 5px;
    font-size: 1.2rem;
}

.value-list strong {
    color: #fff;
    font-weight: 600;
}

/* --- REGIONAL FOOTPRINT SECTION --- */
.presence-map-section {
    background: #1a1a1c; /* Deep dark background */
    padding: 100px 0;
    overflow: hidden;
}

/* Map Container */
.map-container-new {
    position: relative;
    max-width: 850px;
    margin: 50px auto;
    width: 100%;
}

.base-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.4; /* Subtle map outline */
    filter: invert(1) brightness(1.5); /* Adjust based on your image color */
}

/* The Pulsing Map Points */
.map-point {
    position: absolute;
    transform: translate(-50%, -50%); /* Centers the dot exactly on the coordinate */
    z-index: 10;
}

/* The Circle with Initials */
.dot-initial {
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Highlight for Corporate HQ */
.map-point.hq .dot-initial {
    background: var(--accent); /* Your RKD Orange */
    width: 32px;
    height: 32px;
    font-size: 12px;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.5);
}

/* Radar Pulse Animation */
.map-point .radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: radar-pulse 2.5s infinite ease-out;
    z-index: 1;
}

.map-point.hq .radar {
    background: var(--accent);
}

@keyframes radar-pulse {
    0% { width: 100%; height: 100%; opacity: 0.8; }
    100% { width: 400%; height: 400%; opacity: 0; }
}

/* --- THE LEGEND (The Key) --- */
.map-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 15px;
}

/* Legend Mini-Dots */
.l-dot {
    width: 22px;
    height: 22px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    flex-shrink: 0;
}

.l-dot.hq {
    background: var(--accent);
}

.legend-item strong {
    color: var(--accent);
    font-weight: 700;
    margin-right: 5px;
}

.legend-item span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
}


/* --- PROJECT PORTFOLIO TABS --- */
.projects-portfolio {
    padding: 100px 0;
    background: #0a0a0c;
}
.projects-portfolio h2{
    text-align: center;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the last row! */
    gap: 25px;
    width: 100%;
    margin-top: 30px;
    padding: 40px 20px;
}

/* The actual "Card" look */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    /* This ensures they stay roughly the same size as your grid items */
    flex: 0 1 calc(33.333% - 30px); 
    min-width: 320px;
    text-align: left;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.project-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 10px 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.project-card .client-tag {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Subtle "Project Number" or icon in background */
.project-card::before {
    content: '\f0d1'; /* Truck icon placeholder */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.tab-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.3);
}

/* --- WORK GALLERY --- */
.services-gallery { padding: 100px 0; background: #1a1a1c; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover .zoom-img {
    transform: scale(1.1);
}
/*=============================================================================================================================================*/
/* --- CAREER PAGE: INNER BANNER --- */
.inner-banner {
    height: 60vh; /* Shorter than the homepage banner, but still impactful */
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient goes from dark at bottom to transparent at top */
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0), rgba(10, 10, 12, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content{
    padding: 100px 240px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1rem;
    color: var(--accent); /* Using your brand orange for the sub-heading */
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- CAREER PAGE: CULTURE SECTION --- */
.culture-section {
    padding: 100px 0;
    background: #0a0a0c;
}

.text-center { text-align: center; margin-bottom: 20px; }

.about-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-text p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* --- CURRENT OPENINGS --- */
.openings-section {
    padding: 100px 0;
    background: #1a1a1c; /* Slightly different dark shade */
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.job-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 5px solid var(--accent);
    padding: 30px;
    border-radius: 0 15px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    border-radius: 12px;
    margin-bottom: 20px;
}

.job-tag {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.btn-details {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-details:hover {
    background: var(--accent);
    color: #fff;
}


.job-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.job-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.job-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details i {
    color: var(--accent);
    margin-right: 5px;
}

.job-exp {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-apply {
    background: var(--accent);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-apply:hover {
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.4);
    transform: scale(1.05);
}

/* --- APPLY FORM SECTION --- */
.apply-section {
    padding: 100px 0;
    background: #0a0a0c;
}

.apply-box {
    max-width: 800px;
    margin: 0 auto;
    background: #141417;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.apply-box h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.career-form input, 
.career-form select, 
.career-form textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.career-form input:focus, 
.career-form select:focus {
    border-color: var(--accent);
}

.file-upload-wrapper {
    margin-bottom: 20px;
}

.file-upload-wrapper label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    border: none;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #e68a00;
}
/*================================================================================================================================================*/

/* --- CONTACT PAGE: MAIN LAYOUT --- */
.contact-main {
    padding: 100px 0;
    background: #0a0a0c;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* --- SIDEBAR INFO CARDS --- */
.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #141417;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: #1a1a1e;
}

.info-card i {
    font-size: 1.8rem;
    color: var(--accent);
    background: rgba(255, 159, 28, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- CONTACT FORM CONTAINER --- */
.contact-form-container {
    flex: 1.5; /* Form gets more space than the sidebar */
    background: #141417;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
}

.contact-form-container h2 span {
    color: var(--accent);
}

/* Reusing your career-form styles but adding specific tweaks */
.contact-form-container .career-form input,
.contact-form-container .career-form textarea {
    background: #0a0a0c; /* Deep inset look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-form-container .career-form input:focus,
.contact-form-container .career-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.1);
}


















/* --- Core Animation Settings --- */
.animate {
    opacity: 0;
    visibility: hidden; 
    transition: opacity 0.6s ease-out; /* Fallback */
}
.animate.show {
    opacity: 1;
    visibility: visible;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

/* 3. Define the Names ONLY for the show state */
.animate.show.zoom-in { animation-name: zoomIn; }
.animate.show.slide-up { animation-name: slideUp; }
.animate.show.slide-down { animation-name: slideDown; }
.animate.show.slide-left { animation-name: slideLeft; }
.animate.show.slide-right { animation-name: slideRight; }

/* --- Animation Keyframes --- */
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Optional: Delays so elements don't all pop at once */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }




