/* 1. IMPORT THE FONT FROM GOOGLE (Must be the very first line) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&display=swap');
/* 2. APPLY FONT TO EVERYTHING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* This forces every single element to use Outfit */
    font-family: 'Outfit', sans-serif !important; 
}


/* 3. SAFETY BACKUP FOR BODY */
body {
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* 4. FORCE FORM ELEMENTS (Inputs often ignore body font) */
input, button, select, textarea, a {
    font-family: 'Outfit', sans-serif !important;
}
:root {
  /* FONTS: Outfit (Geometric Sans - looks like Gilroy) */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* COLOR: Pastel Red */
    --color-accent: #850c0c; /*#F90001, #DB0307, #CC040A, #e31e24 */ 
    
    --color-bg: #FFFFFF;
    --color-bg-alt: #ffffff;
    --color-text-main: #1D1D1F;
    --color-text-secondary: #86868B;
    
    --radius-card: 24px;
    --max-width: 1140px;
    
    /* GLOW VARIABLES */
    --shadow-red-sm: 0 10px 40px -10px rgba(224, 92, 97, 0.5); 
    --shadow-red-hover: 0 20px 60px -15px rgba(224, 92, 97, 0.6);
}

/*button*/
header .btn-primary{
    background: #930505 !important;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--color-bg); color: var(--color-text-main); line-height: 1.5; overflow-x: hidden; }

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: -5 10px; align-items: center; }
.section-padding { padding: 80px 0; }
.section-padding1 { padding: 30px 0; }
.bg-alt { background-color: var(--color-bg-alt);
 }
.text-center { text-align: center; }

h1 { font-size: 68px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: 38px; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.02em; }
h3 { font-size: 28px; font-weight: 600; margin-bottom: 15px; }
h4 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
p { font-size: 20px; color: var(--color-text-secondary); margin-bottom: 16px; font-weight: 400; }
.eyebrow { color: var(--color-accent); text-transform: uppercase; font-size: 18px; font-weight: 800; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.section-title { text-align: center; }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.awd-txt{
    margin-bottom: 10;
    padding-bottom: 0px;
}
/* =========================================
   UTILITY BAR (Top Bar)
   ========================================= */
.utility-bar {
    background : linear-gradient(180deg,#930505 0%, #f20103 100%);
    color: #ccc;
    font-size: 16px;
    padding: 15px 0;
    position: relative;
    z-index: 1002; /* Higher than navbar */
}

/* =========================================
   UTILITY BAR (Master Fixed Version)
   ========================================= */
.utility-flex {
    display: flex;
    justify-content: space-between; /* Pushes Contact Left, Social Right */
    align-items: center;            /* Vertically centers everything */
    
    /* These 3 lines fix the "Bleeding" issue: */
    width: 100%;
    max-width: 1140px;              /* Limits width to match your logo */
    margin: 0 auto;                 /* Centers the bar in the middle of screen */
    padding: 0 20px;                /* Adds safety gap on left/right */
}

.utility-contact a, 
.utility-social a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    margin-right: 10px;
    display: inline-block;
}

.utility-contact a:hover, 
.utility-social a:hover {
    color: white; /* Brighten on hover */
}

.divider-pipe {
    margin: 0 10px;
    color: #ffffff;
}

/* Right side specific spacing */
.utility-social a {
    margin-right: 0;
    margin-left: 20px;
}

/* --- MOBILE BEHAVIOR --- */
/* Usually we hide this on phones to save screen space */
@media (max-width: 900px) {
    .utility-bar {
        display: none;
    }
}



.news h2{ font-size: 40px;
text-align: left;
margin-bottom: 12px;
}
/* --- PLACEHOLDERS --- */
.placeholder-grey, .portrait-placeholder, .trophy-img-container, .trophy-img-container1, .author-img-small, .hero-img-placeholder, .portrait-placeholder1, .portrait-placeholder2 {
    background-color: #c0bfbf; border-radius: var(--radius-card); display: flex; align-items: center; justify-content: center; color: #999; font-weight: 500;
}
.portrait-placeholder {  background:url('assets/office.jpg'); min-height: 450px; background-size: cover; background-position: center; }
.portrait-placeholder1 {  background:url('assets/Sk-sir.jpeg'); min-height: 400px; width: 400px ; background-size: cover; background-position: right; }
.portrait-placeholder2 {  background:url('assets/Kt-mam.jpeg'); min-height: 400px; width: 400px ; background-size: cover; background-position: right; }

/* --- NAVIGATION --- */
/* =========================================
   HEADER & NAVIGATION (Final Fixed Version)
   ========================================= */

header {
    background: rgba(255, 255, 255, 0.95); /* White with slight transparency */
    backdrop-filter: blur(10px); /* The premium "frosted glass" effect */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Soft shadow */
    height: 90px; /* Fixed height for stability */
}

header .container {
    display: flex;
    align-items: center; /* This centers everything vertically! */
    justify-content: flex-start; /* We use margins to push items apart */
    
    width: 100%;
    max-width: 95%; /* WIDE layout */
    height: 100%; /* Fill the header height */
    margin: 0 auto;
    padding: 0 30px; /* Safety spacing from edges */
}

/* --- LOGO --- */
.logo {
    margin-right: auto; /* MAGIC: Pushes Nav & Button to the far right */
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 90px; /* Adjust this to make logo bigger/smaller */
    width: auto;
    object-fit: contain;
    display: block;
    /* Optional: Uncomment if your logo has a white background */
    /* mix-blend-mode: multiply; */ 
}

/* --- NAVIGATION LINKS --- */
.nav-links {
    display: flex;
    gap: 30px; /* Space between links */
    align-items: center;
    margin: 0; /* REMOVES the default browser margin that pushed it up */
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000000; /* Dark text */
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent); /* Turns Red on hover */
}

/* --- DROPDOWN MENU --- */
.dropdown {
    position: relative;
    height: 100%; /* Full height for easier hovering */
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 60px; /* Pushes dropdown slightly below text */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--color-accent);
}

/* --- CONTACT BUTTON --- */
header .btn-primary {
    margin-left: 40px; /* Space between Nav and Button */
    padding: 10px 28px;
    border-radius: 50px; /* Pill shape */
    
    /* Gradient Background */
    background: var(--gradient-red, linear-gradient(135deg, #E31E24 0%, #C41217 100%));
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
    transition: transform 0.3s;
    
    /* Centering Text inside Button */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .nav-links, header .btn-primary {
        display: none; /* Hide desktop menu on phones */
    }
    .mobile-menu-btn {
        display: block; /* Show hamburger (make sure you have styles for this) */
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* Dropdown */
.dropdown { position: relative; height: 75px; display: flex; align-items: center; cursor: pointer; }
.dropbtn { background: none; border: none; font-size: 20px; font-weight: 600; font-family: inherit; cursor: pointer; color: var(--color-text-main); pointer-events: none; }
.dropdown-content { display: none; position: absolute; background-color: white; min-width: 200px; box-shadow: var(--shadow-red-sm); border-radius: 12px; top: 70px; left: 50%; transform: translateX(-50%); padding: 10px 0; border-top: 3px solid var(--color-accent); }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 12px 20px; display: block; font-size: 18px; color: #333; text-align: left;}
.dropdown-content a:hover { background-color: #fff; color: var(--color-accent); padding-left: 25px; }


/* --- HERO SECTION (Vertically Middle, Horizontally LEFT) --- */
.hero { 
    position: relative;
    height: 83vh;
    width: 100%;
    
    /* FLEXBOX SETTINGS */
    display: flex; 
    align-items: center;      /* Vertical: Middle */
    justify-content: flex-start; /* Horizontal: Left Start */
    
    /* BACKGROUND */
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0,0,0,0.1)), 
                url('assets/hero-image/hero-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* SPACING */
    padding-left: 8%;  /* Push text away from the left wall */
    padding-right: 5%;
}
/* --- CUSTOM HERO FONT (Strict Fix) --- */
.hero-motto-font {
    font-family: 'Cinzel', serif !important;
    
    /* Force it to be THIN (Regular) instead of Bold */
    font-weight: 400 !important; 
    
    /* Make it All Caps */
    text-transform: uppercase; 
    
    font-size: 55px;
    line-height: 1.3;
    color: white;
    margin-bottom: 20px;
    
    /* Adds a subtle shadow to make it pop against the dark background */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .hero-motto-font {
        font-size: 32px;
    }
}
/* Optional: Mobile adjustment */
@media (max-width: 768px) {
    .hero-motto-font {
        font-size: 32px; /* Smaller on phone */
    }
}
.hero-text h1{ }
/* THE TEXT WRAPPER */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    
    /* FORCE LEFT ALIGNMENT */
    text-align: left; 
    margin-left: 0;   /* Ensures wrapper sits on the left */
    margin-right: auto;
}

/* HEADLINE */
.hero h2 { 
    font-size: 60px; 
    color: rgba(255,255,255,0.9);
    font-weight: 800; 
    margin-bottom: 20px; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    
    /* Force Left */
    text-align: left;
}

/* SUBTEXT */
.hero-sub { 
    font-size: 24px; 
    color: rgba(255,255,255,0.9); 
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    max-width: 700px;
    
    /* IMPORTANT: Remove 'margin: 0 auto' */
    margin: 0 0 30px 0; 
    text-align: left;
}
/* Button Global */
.btn-primary { 
    background-color: var(--color-accent); color: white; padding: 16px 38px; border-radius: 50px; 
    text-decoration: none; font-size: 17px; font-weight: 700; display: inline-block; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: 0 10px 25px -5px rgba(224, 92, 97, 0.5);
}
.btn-primary:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: var(--shadow-red-hover); 
    color: white; /* Ensure text stays white on hover */
}

/* --- GRIDS & CARDS --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-layout1 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: centre; padding-left: 100px; }
/* --- COMPACT GRID LAYOUT --- */
.grid-3 { 
    display: grid; 
    /* FORCE 5 EQUAL COLUMNS (Removes the 250px minimum limit) */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Slightly tighter gap */
    margin-top: 30px;
    margin-right: 0; /* Removed right margin to center properly */
    width: 100%;
}

/* --- SMALLER CARD STYLE --- */
.card { 
   /* background-color: var(--color-bg-alt);*/
   background-color:#f6f6f6 ; 
    /* REDUCED PADDING: Much tighter to fit text */
    padding: 25px 15px; 
    border-radius: var(--radius-card); 
    text-align: center; 
    transition: all 0.4s ease; 
    border: 1px solid transparent; 
    
    /* Flexbox ensures vertical centering if heights vary slightly */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.card:hover { 
    background: white; 
    transform: translateY(-5px); /* Subtle lift */
    border-color: rgba(224, 92, 97, 0.2); 
    box-shadow: var(--shadow-red-sm); 
}

/* --- SMALLER TEXT --- */
/* Target the Heading (assuming h3 or h4) */
.card h3, .card h4 {
    font-size: 18px; /* Reduced header size */
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 16px; /* Smaller body text to fit narrow box */
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/* --- SMALLER ICONS --- */
/* For Font Icons */
.card .icon { 
    font-size: 32px; /* Reduced from 40px */
    margin-bottom: 15px; 
    transition: 0.3s; 
}

/* For SVG Icons */
.card svg {
    width: 36px;  /* Reduced from 48px */
    height: 36px;
    margin-bottom: 15px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.card:hover svg {
    transform: scale(1.1);
    stroke-width: 2;
}

/* --- MOBILE RESPONSIVENESS --- */
/* IMPORTANT: On phones, 5 columns is impossible to read. 
   We stack them or do 2 per row. */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr; /* 1 per row on phones */
    }
}
/* --- STRENGTHS --- */
.stats-row { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 40px; }
.stat-item h3 { 
    color: var(--color-accent); font-size: 38px; margin-bottom: 5px; line-height: 1;
    text-shadow: 0 0 30px rgba(224, 92, 97, 0.4);
}
.stat-item p { font-weight: 700; font-size: 16px; color: #555; text-transform: uppercase; letter-spacing: 1px; }

/* --- SLIDERS --- */
.slider-container { position: relative; max-width: 900px; margin: 0 auto; overflow: visible; }
.slide { display: none; animation: fade 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.slide.active { display: block; }

.slider-controls { 
    position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; 
    transform: translateY(-50%); pointer-events: none; z-index: 10;
}
.controls-bottom { position: relative; top: auto; transform: none; margin-top: 30px; justify-content: center; gap: 20px; }

.slider-btn { 
    pointer-events: auto; width: 50px; height: 50px; border-radius: 50%; border: 1px solid #ddd; background: white; color: #333; 
    font-size: 20px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.slider-btn:hover { 
    background: var(--color-accent); color: white; border-color: var(--color-accent); 
    box-shadow: var(--shadow-red-sm); transform: scale(1.1);
}

/* --- LEADERSHIP FLIP CARDS (FIXED TEXT COLOR) --- */
.team-grid-3x3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.flip-card { background-color: transparent; height: 350px; perspective: 1000px; }
.flip-card-inner {
    position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
    position: absolute; 
    width: 100%; 
    height: 100%; 
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    border-radius: var(--radius-card); 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    
    /* NEW: Stronger static red glow and faint border */
    box-shadow: 0 15px 40px -10px rgba(224, 92, 97, 0.4);
    border: 1px solid rgba(224, 92, 97, 0.2);
}

/* Ensure the white background stays white */
.flip-card-front { 
    background-color: #fff; 
}
.flip-card-back { 
    background-color: var(--color-accent); 
    transform: rotateY(180deg); 
    box-shadow: var(--shadow-red-sm); 
}
/* Fix: Force white text on back of card */
.flip-card-back p { 
    color: white !important; 
    font-size: 16px; margin-bottom: 20px; opacity: 1; 
}

.avatar-circle { 
    width: 140px;
    height: 140px;
    background-color: #f0f0f0; 
    border-radius: 50%; 
    margin-bottom: 25px;
    
    /* --- THE FIX: ZOOM IN --- */
    /* Zoom in to 115% to hide the edge lines */
    background-size: 115%; 
    
    /* Center horizontally, but shift slightly down (20%) to keep face in frame */
    background-position: center 20%;
    
    background-repeat: no-repeat; /* Safety: ensures image doesn't tile */
    
    /* Glow & Border */
    border: 3px solid rgba(224, 92, 97, 0.3); 
    box-shadow: 0 0 25px rgba(224, 92, 97, 0.5); 
    transition: all 0.4s ease; 
}
/* Intensify image glow on hover before it flips */
.flip-card:hover .avatar-circle { 
    border-color: var(--color-accent); /* Becomes solid pastel red */
    box-shadow: 0 0 40px rgba(224, 92, 97, 0.8); /* Glow gets much brighter */
    transform: scale(1.03); /* Subtle pop effect */
}
.role { color: var(--color-accent); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.linkedin-btn { background: white; color: var(--color-accent); padding: 10px 20px; border-radius: 30px; text-decoration: none; font-size: 13px; font-weight: 700; }

/* --- REST OF SECTIONS --- */
.quote-style { font-size: 20px; font-weight: 500; color: var(--color-text-main); margin-bottom: 30px; }
.author-block { margin-top: 20px; border-left: 4px solid var(--color-accent); padding-left: 20px; }

.slide-content-text-focus { background: var(--color-bg-alt); padding: 50px; border-radius: var(--radius-card); text-align: left; }
.testimonial-text { font-size: 24px; font-weight: 500; line-height: 1.4; color: var(--color-text-main); margin: 20px 0 30px; }
.author-row { display: flex; align-items: center; gap: 15px; }

.dark-stage { background: #111; color: white; padding-bottom: 120px; }
.trophy-case { display: flex; justify-content: center; gap: 30px; margin-top: 60px; flex-wrap: wrap; }
.trophy-item {  width: 130px; text-align: center; }
.trophy-img-container { background:#333; height:140px; border-radius: 12px; margin-bottom: 15px; transition: 0.3s;}
.trophy-item:hover .trophy-img-container {  transform: translateY(-5px); }
.center-trophy .trophy-img-container { 
    height: 180px; border: 2px solid var(--color-accent); background: rgba(224, 92, 97, 0.15); 
    transform: translateY(-20px); box-shadow: 0 0 50px rgba(224, 92, 97, 0.4);
}
.center-trophy p { color: var(--color-accent); font-weight: 700; text-shadow: 0 0 10px rgba(224, 92, 97, 0.5); }

.contact-box { 
    background: white; border-radius: 30px; padding: 60px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; 
    border: 1px solid #eee; border-top: 5px solid var(--color-accent); 
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: #444; }
input, textarea { 
    width: 100%; padding: 15px; border-radius: 10px; border: 1px solid #ddd; font-family: inherit; font-size: 16px; background: #fafafa; transition: 0.3s;
}
input:focus, textarea:focus { 
    outline: none; border-color: var(--color-accent); background: white; 
    box-shadow: 0 0 0 4px rgba(224, 92, 97, 0.2); 
}

footer { background: #111; color: #666; padding: 40px 0; text-align: center; font-size: 13px; margin-top: 80px; }

.fade-in { opacity: 0; transition: opacity 0.8s; }
.fade-in.visible { opacity: 1; }
@keyframes fade { from {opacity: 0.5} to {opacity: 1} }

@media (max-width: 900px) {
   .split-layout1, .contact-box, .team-grid-3x3, .hero-split { grid-template-columns: 1fr; gap: 40px; }
     .split-layout{ grid-template-columns: 1fr; gap: 40px; }
    h1 { font-size: 40px; }
    .hero-img-placeholder { height: 300px; }
    .nav-links { display: none; } 
}
/* --- STRENGTHS (Parallax Stats) --- */
.parallax-stats {
    /* NEW DUMMY IMAGE: Abstract dark network connection */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1920&auto=format&fit=crop');
    
    /* THIS CREATES THE PARALLAX EFFECT */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
    color: white;
    padding: 120px 0;
}

.stats-row { 
    display: flex; 
    justify-content: space-around; 
    text-align: center; 
    flex-wrap: wrap; 
    gap: 40px; 
}

/* Refined Numbers */
.stat-item h3 { 
    color: #FFFFFF;
    font-size: 56px; 
    font-weight: 700;
    margin-bottom: 10px; 
    line-height: 1.1;
    /* Clean Red Glow */
    text-shadow: 0 0 20px rgba(224, 92, 97, 0.6);
}

.stat-item p { 
    font-weight: 600; 
    font-size: 15px; 
    color: rgba(255,255,255,0.85); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* Mobile Parallax Fix */
@media (max-width: 900px) {
    .parallax-stats { background-attachment: scroll; }
    .stat-item h3 { font-size: 48px; }
}
/* --- MEDIA / PRESS PAGE STYLES --- */

/* The Media Card */
.media-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

/* Hover: Lift + Red Border + Shadow */
.media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 92, 97, 0.3);
    box-shadow: var(--shadow-red-sm);
}

/* Red Line Accent on Top */
.media-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 4px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}
.media-card:hover::before { width: 100%; }

/* Typography inside card */
.media-source {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.media-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

/* The 'Read' Link */
.media-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto; /* Pushes link to bottom */
}
.media-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.media-card:hover .media-link svg { transform: translateX(5px); }

/* Grid Adjustment for Media */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}
/* --- PHOTO GALLERY PAGE STYLES --- */

/* The Grid - Using CSS Grid for a clean layout */
.photo-grid {
    display: grid;
    /* Creates columns that are at least 300px wide */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Sets a base height for rows */
    grid-auto-rows: 300px; 
    gap: 24px;
    margin-top: 40px;
}

/* The Photo Container */
.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 100%; /* Fills grid cell */
}

/* To create a premium "Masonry" look, some items span two rows or columns on larger screens */
@media (min-width: 768px) {
    .photo-item.wide { grid-column: span 2; }
    .photo-item.tall { grid-row: span 2; }
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without distortion */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Hover Overlay */
.photo-overlay {
    position: absolute;
    inset: 0; /* Covers entire item */
    /* Dark gradient fade from bottom */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

/* Hover Interactions */
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-item:hover .photo-img { transform: scale(1.05); /* Smooth slow zoom */ }

.photo-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.photo-date { font-size: 14px; opacity: 0.8; color: var(--color-accent); font-weight: 500;}


/* --- FULL SCREEN LIGHTBOX (MODAL) --- */
.lightbox {
    position: fixed;
    z-index: 10000; /* sits on top of everything */
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); /* Dark background */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Class added by JS to show it */
.lightbox.active { display: flex; opacity: 1; }

.lightbox-img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: white;
    font-size: 40px; line-height: 1;
    cursor: pointer; opacity: 0.6; transition: 0.3s;
}
.lightbox-close:hover { opacity: 1; color: var(--color-accent); }

/* --- BRANCH LOCATOR PAGE (Split Layout) --- */

/* Wrapper handles the side-by-side layout */
.locator-wrapper {
    display: flex;
    height: 100vh; /* Takes full screen height */
    padding-top: 10px; /* Offset for fixed navbar */
    overflow: hidden; /* Prevents double scrollbars */
    background-color: #b4b4b4;
}

/* LEFT SIDE: List */
.locator-sidebar {
    width: 450px; /* Fixed width for list */
    background: white;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
    z-index: 2;
    box-shadow: 5px 0 20px rgba(0,0,0,0.05);
}

.locator-header {
    padding: 30px;
    background: white;
    border-bottom: 1px solid #eee;
}
.locator-header h1 { font-size: 32px; margin-bottom: 10px; }
.locator-header p { font-size: 14px; color: #888; margin-bottom: 20px; }
.container-IR {text-align:left; padding-left: 50px;} 
.font-IR h2{
    font-family: 'Cinzel', sans-serif !important;
}

/*News */
.container-news {text-align:left; padding-left: 50px;} 
.font-news h2{
    font-family: 'Cinzel', sans-serif !important;
}

/* Search Box */
/* --- UPDATED SEARCH ROW --- */
.search-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Style the Dropdown */
#stateSelect {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    min-width: 140px; /* Ensures it's not too small */
    outline: none;
    transition: 0.3s;
}

#stateSelect:focus {
    border-color: var(--color-accent);
}

/* Ensure Search Box grows to fill space */
.search-box {
    flex: 1;
}

/* Mobile: Stack them */
@media (max-width: 900px) {
    .search-row { flex-direction: column; }
    #stateSelect { width: 100%; }
}
.search-box { position: relative; }
.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}
.search-box input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(224, 92, 97, 0.1); }
.search-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); opacity: 0.5; }

/* Scrollable List Area */
.branch-list {
    flex: 1; /* Fills remaining height */
    overflow-y: auto; /* Allows scrolling inside list only */
    padding: 0;
}

/* Individual Branch Item */
.branch-item {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}
.branch-item:hover { background-color: #f9f9fb; }

/* Active State (Selected Branch) */
.branch-item.active {
    background-color: #fff0f0; /* Very light red bg */
    border-left: 4px solid var(--color-accent);
}

.branch-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 5px; color: var(--color-text-main); }
.branch-info p { font-size: 14px; color: #666; margin-bottom: 8px; line-height: 1.5; }
.branch-phone { font-size: 13px; color: var(--color-accent); text-decoration: none; font-weight: 600; }
.branch-arrow { font-size: 24px; color: #ddd; }
.branch-item.active .branch-arrow { color: var(--color-accent); }


/* RIGHT SIDE: Map */
.locator-map {
    flex: 1; /* Takes remaining width */
    background: #e5e5e5;
    position: relative;
}
/* Make iframe fill the container */
.locator-map iframe { border: 0; width: 100%; height: 100%; filter: grayscale(20%); transition: filter 0.5s; }
.locator-map:hover iframe { filter: grayscale(0%); } /* Colourful on hover */


/* Responsive Locator */
@media (max-width: 900px) {
    .locator-wrapper { flex-direction: column; height: auto; overflow: visible; }
    .locator-sidebar { width: 100%; height: auto; max-height: 500px; }
    .locator-map { height: 400px; width: 100%; }
    .branch-list { height: 300px; } /* shorter scroll on mobile */
}
/* --- MOBILE MENU STYLES (Fixes the "Second Nav" issue) --- */

/* 1. Hide the Hamburger Button on Desktop */
.mobile-menu-btn {
    display: none; 
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-main);
    z-index: 10001; /* Sits above everything */
}

/* 2. Style & Hide the Side Drawer */
.mobile-nav {
    position: fixed;
    top: 0; 
    right: -100%; /* Hides it off-screen by default */
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 80px 30px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* When active (open), bring it on screen */
.mobile-nav.active { right: 0; }

/* Style the links inside the drawer */
.mobile-nav a {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.mobile-nav a:hover { color: var(--color-accent); }

/* 3. The Dark Background Overlay */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none; /* Click-through when hidden */
    transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

/* 4. SHOW it only on Mobile Screens */
@media (max-width: 900px) {
    .nav-links { display: none; } /* Hide normal menu */
    .mobile-menu-btn { display: block; } /* Show hamburger button */
}

/* --- OEM INFINITE MARQUEE --- */

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hides the scrollbar */
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Fades edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content; /* Allows track to be wider than screen */
    gap: 40px; /* Space between logos */
    animation: scroll 30s linear infinite; /* The moving magic */
}

/* --- OEM INFINITE MARQUEE (Text Version) --- */

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    /* Soft fades on left and right edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content; 
    gap: 30px; 
    /* Slower animation for readability (50s) */
    animation: scroll 60s linear infinite; 
}

/* Pause on hover */
.marquee-track:hover { animation-play-state: paused; }

.oem-card {
   
    border-radius: 12px;
    /* Fixed width keeps rhythm steady */
    min-width: 180px; 
    height: 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    overflow: hidden;
}
/* OEM-Images */
.oem-img1{
    
    background-clip: padding-box;
    background: url(assets/oem-logo/dell-logo.png);
    background-color: #ffffff;
}
.oem-img2{
    background: url(assets/oem-logo/HP-Logo.png);
    background-color: #ffffff;
}
.oem-img3{
  background-clip: padding-box;
    background: url(assets/oem-logo/acer-logo.png);
    background-color: #ffffff;
}

.oem-img4{
  background-clip: padding-box;
    background: url(assets/oem-logo/lg-logo.png);
    background-color: #ffffff;
}
.oem-img5{
  background-clip: padding-box;
    background: url(assets/oem-logo/ibm-logo.png);
}
.oem-img6{
  background-clip: padding-box;
    background: url(assets/oem-logo/apc-logo.png);
}
.oem-img7{
    
  background: url(assets/oem-logo/benq-logo.png);
    background-size: cover;
}
.oem-img8{
  background-clip: padding-box;
    background: url(assets/oem-logo/bpe-logo.png);
    background-size: cover;
    
}
.oem-img9{
    overflow: auto;
    background-size: cover; 
    background: url(assets/oem-logo/panasonic-logo.png);
}
.oem-img10{
  background-clip: padding-box;background: url(assets/oem-logo/microtek-logo.png);
}
.oem-img11{
  background-clip: padding-box;background: url(assets/oem-logo/ruckus-logo.png);
}
.oem-img12{
  background-clip: padding-box;background: url(assets/oem-logo/viewsonic-logo.png);
}
.oem-img13{
  background-clip: padding-box;background: url(assets/oem-logo/sparsh-logo.png);
}
.oem-img14{
  background-clip: padding-box;background: url(assets/oem-logo/luminous-logo.png);
}
.oem-img15{
  background-clip: padding-box;background: url(assets/oem-logo/whirpool-logo.png);
}
.oem-img16{
  background-clip: padding-box;background: url(assets/oem-logo/teachmint-logo.png);
}
.oem-img17{
  background-clip: padding-box;background: url(assets/oem-logo/molex-logo.png);
}
.oem-img18{
  background-clip: padding-box;background: url(assets/oem-logo/globus-logo.png);
}
.oem-img19{
  background-clip: padding-box;background: url(assets/oem-logo/tplink-logo.png);
}
.oem-img20{
  background-clip: padding-box;background: url(assets/oem-logo/fuji-logo.png);
}
.oem-img21{
  background-clip: padding-box;background: url(assets/oem-logo/atdsc-logo.png);
}
.oem-img22{
  background-clip: padding-box;background: url(assets/oem-logo/bosch-logo.png);
}
.oem-img23{
  background-clip: padding-box;background: url(assets/oem-logo/wacom-logo.png);}
.oem-img24{
  background-clip: padding-box;background: url(assets/oem-logo/haltdos-png.png);
}
.oem-img25{
  background-clip: padding-box;background: url(assets/oem-logo/delta-logo.png);
}
.oem-img26{
  background-clip: padding-box;background: url(assets/oem-logo/nokia-logo.png);
}
.oem-img27{
  background-clip: padding-box;background: url(assets/oem-logo/zebronics-logo.png);
}
.oem-img28{
  background-clip: padding-box;background: url(assets/oem-logo/inp-logo.png);
}
.oem-img29{
  background-clip: padding-box;background: url(assets/oem-logo/xerox-logo.png);}
.oem-img30{
  background-clip: padding-box;background: url(assets/oem-logo/roombr-logo.png);
}
/* Typography for the Brand Names */
.oem-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ccc; /* Subtle Grey by default */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-align: center;
}

/* HOVER: Card lifts up, text turns Brand Red */
.oem-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(224, 92, 97, 0.15);
    border-color: rgba(224, 92, 97, 0.3);
}

.oem-card:hover h3 {
    color: var(--color-accent); /* Turns Red */
}

/* Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- TOGGLE SWITCH STYLES --- */
.view-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}
.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    transition: color 0.3s;
}

/* The Switch Box */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Checked State (Red) */
input:checked + .slider {
    background-color: var(--color-accent);
}
input:checked + .slider:before {
    transform: translateX(24px);
}

/* --- GRID VIEW STYLES --- */
.oem-grid {
    display: grid;
    /* This creates a grid where columns are at least 150px wide */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 20px;
    margin-top: 30px;
}

/* Ensure cards in grid look good */
.oem-grid .oem-card {
    min-width: unset; /* Remove fixed width from marquee style */
    width: 100%;
    margin-bottom: 0;
}

/* --- INVESTOR RELATIONS PAGE --- */

/* Page Hero (simpler than main home hero) */
.page-hero {
   background-image: url('assets/ir-bg.jpg'); background-position: center;background-size: cover;

background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}
.page-hero h1 { font-size: 40px; margin-bottom: 10px; }


/* awards section */
.page-heroAw {
   background-image: url('assets/awrd-bg.jpg'); background-position: top;
    color: white;
    padding: 80px 0;
    text-align: left;
}
.page-heroAw h1 { font-size: 40px; margin-bottom: 10px; color:black }
.page-heroAw p {color: black}
/* Category Headers */
.category-title {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--color-accent); /* Your Brand Red */
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Document List */
.doc-font{
    font-family: 'Cinzel', sans-serif !important;
}
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Row */
.doc-row {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.doc-row:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #ccc;
}

/* Icon */
.doc-icon {
    font-size: 30px;
    color: #cc0000; /* PDF Red color */
    margin-right: 25px;
    width: 40px;
    text-align: center;
}

/* Details */
.doc-details {
    flex-grow: 1; /* Pushes buttons to the right */
}

.doc-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.doc-date {
    font-size: 13px;
    color: #888;
}

/* Action Buttons (View & Download) */
.doc-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: all 0.2s;
    border: none;
}

/* View Button (Outline) */
.btn-view {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-view:hover {
    background: rgba(227, 30, 36, 0.05);
}

/* Download Button (Solid) */
.btn-download {
    background: var(--color-accent);
    color: white;
}

.btn-download:hover {
    background: #b0151b; /* Darker Red */
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .doc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .doc-actions {
        width: 100%;
    }
    .btn-action {
        flex: 1; /* Buttons take full width on phone */
        justify-content: center;
    }
}
/* --- IR DASHBOARD GRID --- */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive */
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.dash-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    top: 0;
}

/* Hover Effect: Lifts up and glows */
.dash-card:hover {
    top: -5px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--color-accent);
}

.dash-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 50%;
}

.dash-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.dash-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.link-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
}

/* --- HIDDEN SECTION STYLES --- */

.btn-back {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.btn-back:hover {
    color: var(--color-accent);
}

.section-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--color-accent);
}

/* Simple Animation for smooth switching */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ir-section {
    animation: fadeIn 0.4s ease;
}
/* --- DOCUMENT LIBRARY LAYOUT --- */

/* Wrapper to center the viewer on the page */
.doc-viewer-section {
    padding: 30px 5%; /* 5% gap on sides */
    background: #f9f9f9;
    height: calc(100vh - 200px); /* Fill screen minus header/hero */
    min-height: 600px;
}

.viewer-container {
    display: flex; /* Sidebar | Preview */
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* Rounds the corners */
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- SIDEBAR (List) --- */
.doc-sidebar {
    width: 350px; /* Fixed width for list */
    background: white;
    border-right: 1px solid #eee;
    overflow-y: auto; /* Scrollable list */
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    background: #fdfdfd;
    color: var(--color-accent);
}

.doc-category h4 {
    padding: 15px 20px 5px;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #fdfdfd !important;
    letter-spacing: 1px;
}

/* Document Item Card */
.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s;
}

.doc-item:hover {
    background: #f9f9f9;
}

/* Active State (Selected Document) */
.doc-item.active {
    background: rgba(227, 30, 36, 0.05); /* Light Red */
    border-left: 4px solid var(--color-accent);
}

.doc-text {
    display: flex;
    flex-direction: column;
}

.d-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.d-date {
    font-size: 11px;
    color: #999;
}

/* Mini Download Button (Circle) */
.btn-mini-download {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-mini-download:hover {
    background: var(--color-accent);
    color: white;
}

/* --- PREVIEW PANE (Right Side) --- */
.doc-preview-pane {
    flex: 1; /* Takes remaining width */
    display: flex;
    flex-direction: column;
    background: #525659; /* PDF Viewer Background Grey */
}

.preview-header {
    background: white;
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    color: #666;
}

#pdfFrame {
    flex: 1; /* Fill the rest of the height */
    width: 100%;
    border: none;
}

/* --- MOBILE RESPONSIVENESS --- */
/* On phones, stack them: List on top, Viewer below */
@media (max-width: 900px) {
    .doc-viewer-section {
        height: auto;
        padding: 20px;
    }
    .viewer-container {
        flex-direction: column;
        height: auto;
    }
    .doc-sidebar {
        width: 100%;
        max-height: 300px; /* Scrollable short list */
    }
    .doc-preview-pane {
        height: 500px; /* Fixed height for viewer on mobile */
    }
}
/* --- UPDATED SIDEBAR STYLES --- */

/* 1. FORCE FONT FIX */
/* --- FORCE FONT ON SIDEBAR & SEARCH --- */
.doc-sidebar, 
.sidebar-title, 
.doc-category, 
.category-header h4, 
.doc-item, 
.search-box input, 
.d-title, 
.d-date,
.btn-mini-download {
    font-family: 'Outfit', sans-serif !important; /* !important forces the browser to listen */
}

/* Fix for the Search Placeholder text color/font */
.search-box input::placeholder {
    font-family: 'Outfit', sans-serif;
    color: #999;
}

/* 2. SEARCH BOX */
.sidebar-search {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: white;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 15px 10px 35px; /* Space for icon */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fcfcfc;
    transition: all 0.2s;
}

.search-box input:focus {
    border-color: var(--color-accent);
    background: white;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
}

/* 3. ACCORDION CATEGORIES */
.category-header {
    padding: 15px 20px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.category-header:hover {
    background: #f9f9f9;
}

.category-header h4 {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
    font-weight: 700;
}

.toggle-icon {
    font-size: 10px;
    color: #999;
    transition: transform 0.3s;
}

/* Rotate icon when open */
.doc-category.open .toggle-icon {
    transform: rotate(180deg);
}

/* Hide files by default */
.file-list {
    display: none;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

/* Show files when category has 'open' class */
.doc-category.open .file-list {
    display: block;
}

/* Style fixes for items inside the list */
.doc-item {
    padding-left: 30px; /* Indent files slightly */
    border-bottom: 1px solid #f0f0f0;
}
/* --- HIGHLIGHT ANIMATION --- */
@keyframes flash-highlight {
    0% { background-color: rgba(227, 30, 36, 0.2); } /* Red Tint */
    100% { background-color: white; }
}

.highlight-category {
    animation: flash-highlight 2s ease-out forwards; /* Plays once for 2 seconds */
    border-left: 4px solid var(--color-accent) !important;
}

/* --- AWARDS PAGE STYLES --- */

/* The Grid for the full page */
/* --- HIGH DENSITY AWARDS GRID (5 per row) --- */

.awards-grid-full {
    display: grid;
    /* This automatically fits 5 items (approx 200px each) on a standard screen */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px; /* Tighter gap */
    margin-top: 30px;
}

/* Compact Card */
/* Compact Card - Passive State (Not Hovered) */
.award-card-full {
    background: white;
    /* Darker border for better definition */
    border: 1px solid #e0e0e0; 
    border-radius: 8px;
    overflow: hidden;
    /* Add permanent subtle shadow to lift it off the white page */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover State (Lifts higher and gets red border) */
.award-card-full:hover {
    transform: translateY(-5px);
    /* Shadow gets bigger on hover */
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

/* Smaller Image Area */
.award-img-box {
    height: 160px; /* Reduced height */
    width: 100%;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px; /* Add padding so image doesn't touch edges */
}

.award-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit:cover
}

/* Compact Text Area */
.award-info {
    padding: 15px; /* Tighter padding */
    text-align: center;
}

.award-info h3 {
    font-size: 15px; /* Smaller Title */
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    
    /* Limit title to 2 lines to keep grid even */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.award-year {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 5px;
}

.award-info p {
    font-size: 12px; /* Small description text */
    color: #888;
    line-height: 1.4;
    margin: 0;
    
    /* Optional: Hide description if it gets too long, showing only 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* --- HOMEPAGE AWARDS SHOWCASE --- */

/* --- HOMEPAGE AWARDS SHOWCASE (Strict Single Row) --- */

.awards-showcase-flex {
    display: flex;
    /* 1. CENTER them if there are few (e.g. 3) */
    justify-content: center; 
    /* 2. DO NOT allow wrapping to a new line */
    flex-wrap: nowrap;       
    gap: 15px;               /* Tighter gap to fit all 6 */
    width: 100%;
    overflow-x: auto;        /* Adds scroll on small screens if needed */
    padding-bottom: 10px;    /* Space for scrollbar if it appears */
}

.award-card-showcase {
    /* 3. SHARE SPACE EQUALLY */
    flex: 1;                 
    
    /* 4. SIZING LIMITS */
    min-width: 160px;        /* Don't get smaller than this */
    max-width: 280px;        /* Don't get huge if there are only 2 */
    
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    
    /* Ensure content centers properly */
    display:flex;
    flex-direction: column;
}

.award-card-showcase:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Image Area */
.award-card-showcase .award-img-box {
    height: 140px; /* Slightly shorter to look balanced in narrow columns */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
    padding: 10px;
}

.award-card-showcase img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* Text Area */
.award-info {
    padding: 15px 10px;
    text-align: center;
    flex-grow: 1; /* Pushes content to fill height */
}

/* Typography adjustments for narrow cards */
.award-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.award-info p {
    font-size: 12px;
    line-height: 1.4;
}

/* --- MOBILE RESPONSIVENESS --- */
/* On phones, "Single Row" means a horizontal scroll (Carousel) */
@media (max-width: 768px) {
    .awards-showcase-flex {
        justify-content: flex-start; /* Align left for scrolling */
    }
    .award-card-showcase {
        min-width: 220px; /* Make them wide enough to read on phone */
        flex: 0 0 auto;   /* Stop shrinking, just scroll */
    }
}

/* --- THE NEW "VIEW ALL" BUTTON --- */
.btn-secondary-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333; /* Dark Border */
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 50px; /* Pill Shape */
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .award-card-showcase {
        flex: 0 0 100%; /* Full width on phone */
        width: 100%;
    }
}
/* --- TESTIMONIALS SECTION (Custom Override) --- */

.testimonials-section {
    /* 1. SEPARATION: Subtle Grey Background */
    background-color: #e2dfdf !important; /* !important ensures it overrides any default white */
    
    /* 2. REDUCED PADDING: 50px top/bottom (Standard is often 80-100px) */
    padding: 50px 0 !important;
    
    /* Optional: One pixel borders for crisp definition */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

/* Center the content and limit width for readability */
.slide-content-text-focus {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* Safety padding for mobile */
}

/* The Quote Text */
.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif; /* Ensuring font consistency */
}

/* Author Name */
.author-info strong {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Author Role (Company Name) */
.author-info span {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SLIDER BUTTONS (Clean Circle Design) --- */
.slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-btn {
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Makes them circular */
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px; /* visual center fix for arrows */
}

.slider-btn:hover {
    background: #333; /* Dark on hover */
    color: white;
    border-color: #333;
    transform: scale(1.1);
}

/* --- VISION SECTION (White Card Style) --- */

.vision-section-white {
    background-color: #dbdbdb; /* Light Grey background to make card pop */
    padding: 60px 0;
}

/* 1. THE BIG WHITE CARD */
.vision-card-white {
    background: rgb(255, 255, 255);
    max-width: 1000px; /* Wider block size as requested */
    margin: 0 auto;   /* Center it */
    padding: 50px;    /* Big spacious padding inside */
    
    display: flex;
    align-items: center;
    gap: 50px;        /* Space between photo and text */
    
    border-radius: 12px; /* Smooth corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft premium shadow */
}

/* 2. THE PHOTO WITH RED RING */
.leader-photo-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%; /* Circle */
    
    /* The Red Ring */
    border: 5px solid var(--color-accent); 
    padding: 3px; /* White gap between border and photo */
    background-clip: content-box; /* Ensures photo stays inside padding */
    
    background-size: cover;
    background-position: top center;
    flex-shrink: 0;
}

/* Image Links */
.sanjiv-photo { background-image: url('assets/Sk-sir.jpeg'); }
.kamini-photo { background-image: url('assets/Kt-mam.jpeg'); }

/* 3. THE TEXT */
.leader-text-white {
    text-align: left;
}

.quote-dark {
    font-size: 18px; /* Larger text */
    line-height: 1.6;
    color: #333;     /* Dark Grey text */
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.leader-info-dark h4 {
    font-size: 20px;
    font-weight: 700;
    color: #930505;
    margin-bottom: 2px;
}

.leader-info-dark span {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Animation */
.vision-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}
.vision-slide.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vision-card-white {
        flex-direction: column; /* Stack on phone */
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
    }
    
    .leader-text-white {
        text-align: center;
    }
    
    .leader-photo-ring {
        width: 140px;
        height: 140px;
    }
}
/* --- COMPACT TESTIMONIAL CARD --- */
/* --- TESTIMONIALS (Arrows Below) --- */

.testimonials-modern {
    background-color: #dbdbdbc5;
    padding: 60px 0;
}

.testimonial-card-white {
    background: rgb(255, 255, 255);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px; /* Even padding all around */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--color-accent);
}

/* Slide Elements */
.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }

.big-quote-icon {
    font-size: 30px;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- CONTROLS (Below Card) --- */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Adds space between the card and arrows */
    margin-top: 30px; 
    
    gap: 15px;
}

.t-btn {
    background: transparent; /* Transparent background blends with grey page */
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    transition: all 0.2s;
    display: flex;             /* Centering arrows perfectly */
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
}

.t-btn:hover {
    background: white; /* White on hover makes them pop */
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.divider {
    width: 30px;
    height: 1px;
    background: #ddd; /* Match the button border */
}
/* --- UPDATED TESTIMONIALS (Vision Style) --- */

.testimonial-card-white {
    /* We increase max-width slightly to fit the image */
    max-width: 1300px; 
    text-align: left; /* Align text to left to match the image */
}

/* The Flex Container (Image + Text) */
.testimonial-content-box {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between photo and text */
}

/* 1. The Circular Image */
.testimonial-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    
    /* Red Ring Styling */
    border: 4px solid var(--color-accent);
    padding: 3px;
    background-clip: content-box; /* Keeps photo inside the padding */
    background-color: #eee; /* Fallback grey if no image found */
    
    background-size: cover;
    background-position: top center;
    flex-shrink: 0; /* Prevents squishing */
}

/* 2. Text Adjustments */
.testimonial-text-block {
    flex: 1;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.big-quote-icon {
    font-size: 24px;
    margin-bottom: 15px;
    display: block; /* Ensures it sits on its own line */
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .testimonial-content-box {
        flex-direction: column; /* Stack vertically on phone */
        text-align: center;
        gap: 20px;
    }
    
    .testimonial-img {
        width: 120px; /* Smaller on phone */
        height: 120px;
        margin: 0 auto; /* Center the image */
    }
    
    .big-quote-icon {
        display: inline-block; /* Center the icon */
    }
}
.bg-news{
background-image: url('assets/news-bg.jpg');
background-size: cover;
background-position: 30% 40%;
background-repeat: no-repeat;
}
/* =========================================
   MULTI-LEVEL DROPDOWN STYLES
   ========================================= */

/* 1. Container for the trigger and the hidden menu */
/* =========================================
   MULTI-LEVEL DROPDOWN (Corrected)
   ========================================= */

.dropdown-submenu {
    position: relative; /* Anchor point */
}

.submenu-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.submenu-content {
    display: none; /* Hidden by default */
    position: absolute;
    left: 100%;
    top: -5px;
    margin-left: 10px; /* The Gap */
    
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    border-top: 3px solid var(--color-accent);
    z-index: 1005;
}

/* Invisible Bridge (Keeps menu open) */
.submenu-content::before {
    content: "";
    position: absolute;
    top: 0; left: -20px; width: 20px; height: 100%;
    background: transparent;
}

/* --- THE CRITICAL FIX --- */
/* Use '>' to stop the Grandparent from opening the Grandchild */
.dropdown-submenu:hover > .submenu-content {
    display: block;
}

/* Level 3 Specific Alignment */
.submenu-content .submenu-content {
    top: -10px; /* Adjust slightly for nested items */
}

/* --- VISION SLIDER DOTS --- */
.vision-dots {
    text-align: center;
    margin-top: 30px; /* Space between card and dots */
    display: flex;
    justify-content: center;
    gap: 12px;
}

.v-dot {
    height: 12px;
    width: 12px;
    background-color: #ccc; /* Grey for inactive */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-dot:hover {
    background-color: #999;
    transform: scale(1.1);
}

.v-dot.active {
    background-color: var(--color-accent); /* Your Brand Red */
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(133, 12, 12, 0.4); /* Subtle glow */
}
/* --- DOCUMENT SUB-FOLDERS (Nested Lists) --- */

.doc-subfolder {
    border-bottom: 1px solid #f0f0f0;
}

/* The Sub-Header (Folder Title) */
.sub-header {
    background: #fdfdfd; /* Slightly different from white */
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: background 0.2s;
}

.sub-header:hover {
    background: #f0f0f0;
    color: var(--color-accent);
}

/* Indent the files inside the folder */
.sub-content {
    display: none; /* Hidden by default */
    background: #fff;
    padding-left: 20px; /* Indentation */
    border-left: 3px solid #eee; /* Visual guide line */
}

/* Show content when open */
.doc-subfolder.open .sub-content {
    display: block;
}

/* Rotate arrow when open */
.doc-subfolder.open .sub-arrow {
    transform: rotate(180deg);
}
.sub-arrow {
    transition: transform 0.3s;
    color: #999;
}
.submenu-content .submenu-content {
    left: 100%;
    top: -10px;
    margin-left: 10px;
}
/* =========================================
   DROPDOWN FONT SIZE CONTROL
   ========================================= */

/* Target ALL links inside dropdowns (Level 1, 2, and 3) */
.dropdown-content a, 
.submenu-content a {
    font-size: 14px !important; /* Reduces the text size */
    
    /* Optional: Reduce padding to make the menu more compact */
    padding: 10px 18px; 
    
    /* Ensure weight is readable but not too thick */
    font-weight: 500; 
}

/* Optional: Make the "Arrow" icons slightly smaller too */
.menu-arrow {
    font-size: 11px;
}

/* =========================================
   LEVEL 3 COMPACT FIX (Shrink the box)
   ========================================= */

/* Target the submenu that is INSIDE another submenu */
.submenu-content .submenu-content {
    /* 1. Remove the forced wide width */
    min-width: auto !important; 
    width: auto !important;
    
    /* 2. Stop text from wrapping (keeps it on one line) */
    white-space: nowrap;
    
    /* 3. Add just enough width for the text + padding */
    padding-right: 20px; 
}

/* Optional: Ensure the links inside don't have huge gaps */
.submenu-content .submenu-content a {
    padding: 8px 20px; /* Slightly tighter vertical spacing */
}
/* =========================================
   INVESTOR SIDEBAR STYLES (Nested Folders)
   ========================================= */

/* 1. Base Folder Style */
.doc-subfolder {
    border-bottom: 1px solid #f0f0f0;
}

/* 2. Folder Header (Clickable strip) */
.sub-header {
    background: #fdfdfd;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: background 0.2s;
}

.sub-header:hover {
    background: #f5f5f5;
    color: var(--color-accent);
}

/* 3. Hidden Content Area */
.sub-content {
    display: none; /* Hidden by default */
    background: #fff;
    padding-left: 15px; /* Indentation Level 1 */
    border-left: 2px solid #eee;
}

/* 4. Open State Logic */
.doc-subfolder.open > .sub-content {
    display: block;
}

/* 5. Sub-Sub-Section (Level 3) Styling */
.nested-level-3 {
    margin-left: 8px; /* Push it inward */
    border-left: 2px dashed #ddd; /* Dashed line for visual hierarchy */
    border-bottom: none;
}
.nested-level-3 .sub-header {
    font-size: 13px; /* Smaller font for deeper level */
    padding: 8px 15px;
}
/*----------------------------
   OFFERINGS ICON STYLES
   ========================================= */
/* our offerings logo */

/* Styling for the new Offering Icons */
.offering-icon {
    width: 60px;          /* Adjust this number to make icons bigger/smaller */
    height: 60px;         /* Keep height same as width for square icons */
    object-fit: contain;  /* Ensures the image doesn't get stretched/distorted */
    margin-bottom: 20px;  /* Space between the image and the text */
    display: block;       /* Helps with alignment */
    margin-left: auto;    /* Centers the image horizontally */
    margin-right: auto;   /* Centers the image horizontally */
}

/* Optional: Add a hover effect for the images */
.card:hover .offering-icon {
    transform: scale(1.1); /* Slightly zooms in the logo on hover */
    transition: transform 0.3s ease;
} 

/* --- LARGER AWARDS GRID (3-4 per row) --- */
.awards-grid-large {
    display: grid;
    /* This forces cards to be at least 280px wide. 
       On a standard laptop (1366px), this fits 4 items. 
       On smaller screens, it auto-wraps to 3 or 2. */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px;
    margin-top: 30px;
}

/* Ensure images inside larger cards look good */
.awards-grid-large .award-img-box {
    height: 220px; /* Taller image area */
    padding: 20px;
}

.awards-grid-large .award-img-box img {
    /* Make trophy slightly bigger */
    transform: scale(1.1); 
}
/* --- AWARD CARD TYPOGRAPHY --- */

/* 1. The Title (e.g., "Best IT Distributor") */
.award-card-full h3 {
    /* Change Font Here */
    font-family: 'outfit', serif !important; /* Or use 'Outfit', sans-serif */
    
    /* Change Color Here */
    color: #000000; /* Currently Brand Red - Change to #333 for black */
    
    font-size: 15px;
    font-weight: 600;
}

/* 2. The Year Badge (e.g., "2024") */
.award-card-full .award-year {
    /* Background Color of the pill */
    background-color: #f0f0f0; 
    
    /* Text Color */
    color: #6e1919; 
    
    /* Font Settings */
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* 3. The Description Text */
.award-card-full p {
    /* Change Font Here */
    font-family: 'Outfit', sans-serif;
    
    /* Change Text Color */
    color: #666; /* Grey */
    
    font-size: 13px;
    line-height: 1.5;
}

/* OPTIONAL: Hover Effect */
/* Makes text turn red when you hover over the card */
.award-card-full:hover h3 {
    color: #e31e24; /* Brighter Red on hover */
}

/* --- OFFERINGS MODAL (POPUP) STYLES --- */

/* The Dark Background */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent bg */
    z-index: 10000; /* Sits on top of everything */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); /* Nice blur effect */
    animation: fadeIn 0.3s ease;
}

/* The White Window */
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px; /* Maximum width of the window */
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.9);
    animation: popUp 0.3s forwards;
}

/* The Close 'X' Button */
.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.close-btn:hover { color: var(--color-accent); }

/* Modal Elements */
.modal-icon {
    width: 80px; height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}
.modal-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}
.modal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp { to { transform: scale(1); } }



/* Force Social Group to Right Side */
.utility-social {
    display: flex;
    width: -100%;
    margin-left: 540px;
    align-items:flex-end;
}

/* SVG Icon Sizing & Color */
.utility-social svg {
    width: 22px; 
    height: 22px;
    display: block;
    fill: white;  /* This forces the icon to be white */
    transition: all 0.3s ease;
}

/* Hover Effect */
.utility-social a:hover svg {
    fill: #fcfcfc;       /* Turns Gold on hover */
    transform: translateY(-2px);
}
/* =========================================
   DESKTOP DEFAULT STYLES (Add this)
   ========================================= */

/* Hides the Hamburger Button on Desktop screens */
.mobile-toggle {
    display: none;
}
/* =========================================
   MOBILE RESPONSIVENESS (CORRECTED PATCH)
   ========================================= */

@media (max-width: 900px) {

    /* --- 1. SHOW THE UTILITY BAR (Fixed) --- */
    .utility-bar { 
        display: block !important; /* Force it to show */
        padding: 10px 0;
        height: auto;
    }
    
    /* Stack the content: Text on top, Icons below */
 
    
    /* Center the social icons */
    .utility-social {
        margin-left: 0 !important; /* Remove the "push right" force */
        justify-content: center;
        width: 100%;
    }

    /* --- 2. MOBILE MENU BUTTON --- */
    .mobile-toggle {
        display: block !important; 
        cursor: pointer;
        z-index: 10001;
        margin-left: auto; /* Push to the right of header */
    }
    
    /* Ensure the SVG inside is visible */
    .mobile-toggle svg {
        display: block;
    }

    /* --- 3. NAVIGATION MENU DRAWER --- */
    .nav-links {
        display: none; 
        position: fixed;
        top: 90px; left: 0; width: 100%; height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 10000;
        overflow-y: auto; /* Allow scrolling if menu is long */
    }

    /* JavaScript adds this class to show the menu */
    .nav-links.active {
        display: flex;
    }

    /* --- 4. GLOBAL LAYOUT FIXES --- */
    /* Force columns to stack */
    .hero, .split-layout, .contact-box, .vision-card-white, .locator-wrapper {
        flex-direction: column !important;
        height: auto !important;
        padding-left: 20px; padding-right: 20px;
    }
    
    .hero { text-align: center; padding-top: 40px; }
    .hero h2 { font-size: 32px; }

    /* Fix Grids */
    .grid-3, .awards-grid-full, .awards-grid-large, .team-grid-3x3, .media-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Allow horizontal scroll for Showcase */
    .awards-showcase-flex {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

/* =========================================
   EMERGENCY FIXES (Add to very bottom)
   ========================================= */

/* 1. FORCE UTILITY BAR ALIGNMENT */
.utility-flex {
    display: flex !important;
    flex-direction: row !important; /* Forces side-by-side, never stacked */
    justify-content: space-between !important;
    align-items: center !important;
    
    /* Constraint to stop bleeding off screen */
    width: 100% !important;
    max-width: 1140px !important; 
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Ensure social icons don't shrink or hide */
.utility-social {
    display: flex !important;
    gap: 15px !important;
    margin-left: auto !important; /* Push to right */
    opacity: 1 !important;
    visibility: visible !important;
}

/* 2. FORCE NAVBAR TEXT TO ONE LINE */
.nav-links {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important; /* Never let items wrap to next line */
    gap: 20px !important; /* Reduce gap slightly to fit screen */
}

.nav-links a,
.dropbtn {
    white-space: nowrap !important; /* The Magic Command: Never break lines */
    font-size: 15px !important; /* Slightly smaller to prevent crowding */
    width: auto !important;
    display: inline-block !important;
}

/* 3. MOBILE OVERRIDE (Keep this intact) */
@media (max-width: 900px) {
    .utility-flex {
        flex-direction: column !important; /* Only stack on mobile */
    }
    .nav-links {
        display: none !important; /* Hide menu on mobile */
    }
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important; /* Stack links on mobile drawer */
    }
    .nav-links.active a {
        white-space: normal !important; /* Allow wrapping inside mobile menu */
    }
}
/* =========================================
   FINAL ALIGNMENT & FONT FIXES
   ========================================= */

/* 1. FIX THE ICONS (Align with Contact Button) */
.utility-flex {
    width: 100% !important;
    max-width: 95% !important; /* MATCHES YOUR NAVBAR WIDTH */
    margin: 0 auto !important;
    padding: 0 30px !important; /* MATCHES YOUR NAVBAR PADDING */
    
    display: flex !important;
    justify-content: flex-end !important; /* Pushes everything to the extreme right */
    align-items: center !important;
}

/* Ensure icons are visible and spaced */
.utility-social {
    display: flex !important;
    gap: 20px !important;
    margin-left: 0 !important; /* We don't need auto margin anymore */
}

/* 2. FIX THE TEXT SIZE (Make it Bigger) */
.nav-links a, 
.dropbtn {
    font-size: 18px !important; /* Increased from 15px */
    font-weight: 600 !important;
    white-space: nowrap !important;
}

/* Tighten the gap so the bigger text still fits */
.nav-links {
    gap: 15px !important; /* Reduced from 20px */
}

/* 3. OPTIONAL: Make Dropdown Arrows align better with big text */
.dropbtn {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}
/* =========================================
   FINAL TWEAK: TIGHTEN SOCIAL ICONS
   ========================================= */

/* =========================================
   FINAL TWEAK: TIGHTEN SOCIAL ICONS
   ========================================= */

.utility-social {
    display: flex !important;
    /* Reduce this gap to bring icons closer */
    gap: 8px !important; 
    
    margin-left: 0 !important;
}

/* =========================================
   FIX DROPDOWN BLEEDING & OVERFLOW
   ========================================= */

/* 1. Make Dropdown Text Smaller & Compact */
/* This keeps the main navbar big (18px) but shrinks the nested menus */
.dropdown-content a, 
.submenu-content a {
    font-size: 14px !important; /* Smaller, professional size for lists */
    padding: 10px 15px !important; /* Tighter spacing */
    white-space: normal !important; /* Allow long text to wrap if needed */
    line-height: 1.4 !important;
}

/* 2. Fix Rounded Corners "Bleeding" */
/* Prevents the hover color from sticking out of the rounded box */
.dropdown-content, 
.submenu-content {
    overflow: hidden !important; 
    border-radius: 8px !important;
}

/* 3. FLIP LEVEL 3 MENUS TO THE LEFT */
/* This prevents the 3rd menu (FY 22-23) from going off-screen */
.submenu-content .submenu-content {
    left: auto !important;  /* Stop pushing right */
    right: 100% !important; /* Push to the LEFT of the parent */
    top: -5px !important;
    margin-right: 5px !important; /* Small gap */
}

/* Optional: Ensure the arrow indicates direction */
.submenu-content .submenu-content .menu-arrow {
    transform: rotate(180deg); /* Flip arrow to point left */
}

/* =========================================
   FIX DROPDOWN (Corrected Version)
   ========================================= */

/* 1. Reset text size for list items */
.dropdown-content a, 
.submenu-content a {
    font-size: 14px !important; 
    padding: 12px 20px !important;
    white-space: normal !important; /* Allow text to wrap nicely */
    line-height: 1.4 !important;
    width: 240px !important; /* Fixed width prevents huge boxes */
}

/* 2. REMOVED overflow:hidden so menus don't disappear */
.dropdown-content, 
.submenu-content {
    overflow: visible !important; 
    border-radius: 8px !important;
}

/* 3. FLIP LEVEL 3 MENUS (Safer Positioning) */
/* Only flip the deepest menu to the left */
.submenu-content .submenu-content {
    left: auto !important; 
    right: 100% !important; /* Push to LEFT */
    top: 0 !important;
    margin-right: 2px !important; /* Tiny gap */
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1) !important; /* Shadow on left side */
}

/* =========================================
   FIX LEVEL 3 MENU (Force Vertical Stack)
   ========================================= */

/* 1. Target the 3rd Level Menu Container (e.g. The box holding FY 22-23, etc.) */
.submenu-content .submenu-content {
    display: flex !important;
    flex-direction: column !important; /* Forces items to sit on top of each other */
    
    width: 180px !important;  /* Constraints width so it looks like a menu, not a banner */
    min-width: 180px !important;
    height: auto !important;
    
    /* Reset positioning to ensure it sits next to the parent */
    position: absolute !important;
    right: 100% !important;   /* Pushes it to the LEFT of the parent */
    top: 0 !important;
    margin-right: 0 !important;
    
    background: white !important;
    border-radius: 8px !important;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.15) !important;
    padding: 5px 0 !important;
}

/* 2. Target the Links inside Level 3 */
.submenu-content .submenu-content a {
    width: 100% !important;   /* Force link to fill the width of the box */
    display: block !important; /* Ensure it behaves like a block element */
    padding: 10px 20px !important;
    text-align: left !important;
    border-bottom: 1px solid #f5f5f5 !important; /* Adds a subtle line between items */
    white-space: normal !important; /* Allows text to wrap if needed */
}

/* Optional: Remove border from last item for a cleaner look */
.submenu-content .submenu-content a:last-child {
    border-bottom: none !important;
}

/* =========================================
   FINAL FIX: ONE MENU AT A TIME + VERTICAL STACK
   ========================================= */

/* 1. FORCE HIDE: Ensure Level 3 menus are hidden by default */
.submenu-content .submenu-content {
    display: none !important;
}

/* 2. THE TRIGGER: Only show Level 3 when its DIRECT parent is hovered */
/* The '>' symbol is critical here. It stops the 'Greedy' behavior. */
.submenu-content .dropdown-submenu:hover > .submenu-content {
    display: flex !important; /* We use flex to enable the vertical column layout */
    flex-direction: column !important; /* Force vertical stacking */
}

/* 3. THE LAYOUT: Ensure it looks like a clean vertical list */
.submenu-content .submenu-content {
    /* Position & Size */
    position: absolute !important;
    right: 100% !important;   /* Push to the left */
    top: 0 !important;
    width: 180px !important;
    min-width: 180px !important;
    
    /* Visuals */
    background: white !important;
    border-radius: 8px !important;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.15) !important;
    z-index: 100 !important;
}

/* 4. THE LINKS: Ensure they fill the box */
.submenu-content .submenu-content a {
    width: 100% !important;
    display: block !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.career-form-box {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-accent); /* Red Top Border */
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

/* 2-Column Grid for Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Input Styling */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fdfdfd;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-accent); /* Turns Red on Focus */
    outline: none;
    box-shadow: 0 0 0 4px rgba(224, 92, 97, 0.1);
}

/* Special Style for File Upload */
.form-group input[type="file"] {
    padding: 10px;
    background: white;
}

/* Mobile Responsiveness for Form */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Stack inputs vertically */
        gap: 20px;
    }
    .career-form-box {
        padding: 30px 20px;
    }
}