/* =========================================================
   Ethical Direct Selling Association — Main SCSS/CSS
   Organized with Updated Warm Brand Colors
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  /* Your Main Website Brand Colors */
  --primary-orange: #ea580c;
  --light-cream: #fbf8f1;
  --text-dark: #333333;
  --text-light: #777777;
  --border-color: #e0e0e0;
  --red-highlight: #ea580c;
  --white: #ffffff;
  --dark-bg: #222222;

  /* Theme Mapping for Landing Page Components */
  --primary: var(--primary-orange);
  --primary-600: #c2410c; /* Darker orange for hover states */
  --primary-50: #fff7ed;   /* Light warm cream/orange tint for badges & active states */
  --secondary: var(--red-highlight);
  --secondary-50: #fef2f2; /* Soft warm highlight tint */
  --light: var(--light-cream);
  --dark: var(--text-dark);
  --muted: var(--text-light);
  --border: var(--border-color);
  --white: var(--white);

  /* Adjusted Warm Gradients & Mesh backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, #f97316 100%);
  --gradient-mesh: radial-gradient(at 20% 20%, rgba(234, 88, 12, .12) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(251, 248, 241, .8) 0px, transparent 50%),
                   radial-gradient(at 80% 80%, rgba(234, 88, 12, .08) 0px, transparent 50%);

  /* Shadow adaptations with warmer grey tones */
  --shadow-sm: 0 1px 2px rgba(34, 34, 34, .05);
  --shadow-md: 0 10px 25px -10px rgba(34, 34, 34, .1);
  --shadow-lg: 0 25px 50px -12px rgba(34, 34, 34, .12);
  --shadow-glow: 0 30px 80px -20px rgba(234, 88, 12, .25);

  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --font-sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
   font-family: "Poppins", sans-serif;
    color: var(--text-dark);
}


h1,h2,h3,h4,h5,h6 { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.02em; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3.5vw, 3rem); line-height: 1.1; }
h3 { font-size: 1.35rem; }
p  { color: var(--muted); }
a  { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-600); }
img { max-width: 100%; height: auto; display: block; }
section { padding: 50px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
    font-size: 10px;
    font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; color: var(--primary); background: var(--primary-50);
  padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.section-title { max-width: 800px; margin: 0 auto 18px; text-align: center; }
.section-lead  { max-width: 680px; margin: 0 auto 55px; text-align: center; font-size: 1.075rem; }
#logo-edsa {
        height: 100px;
    transform: scale(1.35);
}
/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: var(--radius-pill); padding: 13px 26px; transition: all .25s ease; border: 0; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: unset; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(234,88,12,.55); color: #fff; }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-outline-light:hover { background: #fff; color: var(--dark); }
.btn-ghost { background: var(--light); color: var(--dark); }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ---------- Scroll Progress + Back to Top ---------- */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff; border: 0; display: grid; place-items: center;
  box-shadow: var(--shadow-glow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .3s ease; z-index: 1070; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Header ---------- */
/*.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1050; padding: 18px 0; transition: all .3s ease; }*/
/*.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(15,23,42,.06); padding: 12px 0; }*/
/*.brand {overflow: hidden; font-weight: 800; font-size: 1.25rem; color: var(--dark); display: flex; align-items: center; gap: 10px; }*/
/*.brand-mark { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient-primary); display: grid; place-items: center; color: #fff; }*/
/*.navbar-nav .nav-link { color: var(--dark); font-weight: 500; padding: 8px 16px !important; border-radius: var(--radius-pill); transition: all .2s ease; }*/
/*.navbar-nav .nav-link:hover { color: var(--primary); background: var(--primary-50); }*/
/*.navbar-toggler { border: 1px solid var(--border); border-radius: 10px; padding: 6px 10px; }*/
/*.navbar-toggler:focus { box-shadow: none; }*/


#preloader{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Video Styling */
#loaderVideo{
    width: 350px;
    height: 350px;
    object-fit: contain;
}

/* Hide Loader */
#preloader.hide{
    opacity: 0;
    visibility: hidden;
}
.main-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 153, 51, 0.30) 0%, /* Saffron / Kesari (15% visible) */ rgba(255, 255, 255, 0.8) 50%, /* White (Center me white jyada rahega taki logo clear dikhe) */ rgba(19, 136, 8, 0.30) 100% /* Green (15% visible) */);
    z-index: 1;
    pointer-events: none;
}
      .navbar-expand-lg .navbar-nav .nav-link{font-size: 15px;padding: 0;}
/*        .navbar-expand-lg .navbar-nav .nav-item{*/
/*           margin-left: 40px;*/
/*        }*/
/*.navbar-expand-lg .navbar-nav .dropdown-menu {*/
/*    padding: 0;*/
/*    background: #13195a;*/
/*    border-radius: 0;*/
/*}*/
/* Update spacing for centered nav items */
.navbar-expand-lg .navbar-nav .nav-item {
    margin: 0; /* Pehle margin-left 35px tha, usko hata diya kyuki HTML me 'gap-lg-4' class use ki hai */
}

/* Dropdown ko center align karne ke liye (Optional for better look) */
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    background: #13195a;
    border-radius: 0;
    text-align: center; /* Dropdown text ko v center karne k liye */
}

.navbar-expand-lg .navbar-nav{
    gap: 55px;
}
.navbar-brand video{
    height: 110px;
    transform: scale(1.35);
}
@media (min-width: 991px){
    .navbar {
      transition: all 0.2s ease;
}
.navbar.scrolled {
  transform: translateY(-125px);
}

}
/* Header container ko relative banayenge */
.main-navbar {
    /*position: relative;*/
    background-color: #ffffff; /* Base color white rahega */
}

/* Indian Flag Watermark Effect */
.main-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left se Right Saffron, White aur Green ka gradient (Opacity bahut kam rakhi hai watermark ke liye) */
    background: linear-gradient(to right, 
        rgba(255, 153, 51, 0.30) 0%,   /* Saffron / Kesari (15% visible) */
        rgba(255, 255, 255, 0.8) 50%,  /* White (Center me white jyada rahega taki logo clear dikhe) */
        rgba(19, 136, 8, 0.30) 100%    /* Green (15% visible) */
    );
    z-index: 1; /* Background color ke upar lane ke liye */
    pointer-events: none; /* Taki links par click karne me koi problem na ho */
}

/* Logo aur Links ko Watermark ke upar rakhne ke liye */
.main-navbar .container {
    position: relative;
    z-index: 2; 
}

.dropdown-item {
    color: #ffffff;
    border-radius: 0;
    font-size: 13px;
    padding: 12px 20px;
    border-bottom: 0.5px solid #ffffff69;
}

.dropdown-item:focus, .dropdown-item:hover{
    background:#ea580c !important;
    color: #fff;
}

/*about banner*/
/* --- Vision & Mission New Layout Styling --- */

/* --- Clean Vision & Mission Box --- */
.vision-mission-wrapper {
    border-radius: 12px;
    overflow: hidden; /* Ensures corners stay rounded */
    border: 1px solid #eaeaea;
}

.bg-navy-custom {
    background: 
        linear-gradient(rgba(26, 42, 64, 0.8), rgba(26, 42, 64, 0.8)),
        url('../images/104031.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.border-right-custom {
    border-left: 1px solid #eaeaea;
}

/* Flexbox fix to ensure equal heights for both sides */
.vision-mission-wrapper .col-lg-4, 
.vision-mission-wrapper .col-lg-8 {
    min-height: 100%;
}

.custom-mission-list li span {
    color: #555 !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .border-right-custom {
        border-left: none;
        border-top: 1px solid #eaeaea;
    }
}

  /* --- Top Accessibility Bar --- */
        .edsa-top-bar {
            background-color: #333; /* Dark Grey Background */
            color: #fff;
            font-size: 13px;
        }
        .edsa-top-bar a {
            color: #fff;
            transition: color 0.3s ease;
        }
        .edsa-top-bar a:hover {
            color: var(--edsa-orange);
        }

        /* --- Main Navbar --- */
        .edsa-navbar {
            transition: all 0.3s ease-in-out;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        
        /* Navbar Links */
        .edsa-navbar .nav-link {
            color: #555 !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            position: relative;
            transition: color 0.3s ease;
        }
        
        /* Animated Bottom Border on Hover */
        .edsa-navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--edsa-orange);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        
        .edsa-navbar .nav-link:hover::after,
        .edsa-navbar .nav-link.active::after {
            transform: scaleX(1);
        }
        
        .edsa-navbar .nav-link:hover,
        .edsa-navbar .nav-link.active {
            color: var(--edsa-orange) !important;
        }

        /* --- Dropdown Styling --- */
        .edsa-dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-top: 10px;
            padding: 10px 0;
        }
        
        .edsa-dropdown-item {
            font-size: 14px;
            font-weight: 400;
            color: #444;
            padding: 8px 20px;
            transition: all 0.2s ease;
        }
        
        .edsa-dropdown-item:hover {
            background-color: var(--edsa-light-bg);
            color: var(--edsa-orange);
            padding-left: 25px; /* Slight right shift on hover */
        }
        
        /* Mobile Navbar Toggle Icon Color */
        .navbar-toggler {
            border-color: rgba(0,0,0,0.1);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.1rem rgba(242, 140, 104, 0.25);
        }

/* ---------- Hero ---------- */
.hero { padding: 50px 0; position: relative; overflow: hidden; background: var(--gradient-mesh), #fff; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; }
.hero::before { width: 480px; height: 480px; background: rgba(234, 88, 12, .1); top: -160px; left: -120px; }
.hero::after  { width: 420px; height: 420px; background: rgba(251, 248, 241, .6); bottom: -160px; right: -100px; }
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.7); border: 1px solid var(--border); backdrop-filter: blur(10px);
  font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(234,88,12,.18); }
.hero-title { margin-bottom: 22px; }
.hero-title .grad { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lead {  margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; max-width: 480px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--dark); }
.trust-item svg { color: var(--secondary); flex-shrink: 0; }

.hero-visual { position: relative; min-height: 540px; }
.hero-visual .main-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-glow);
  border: 6px solid #fff; transform: rotate(2deg); position: relative; z-index: 2;
}
.hero-visual .main-photo img { display: block; }

.glass-card {
  position: absolute; background: rgba(255,255,255,.85); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow-md); z-index: 3; display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.glass-card .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-primary); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.glass-card .lbl { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.glass-card .val { font-size: .95rem; font-weight: 700; color: var(--dark); }
.glass-card.card-verify { top: 20px; left: -20px; animation-delay: 0s; }
.glass-card.card-member { top: 30%; right: -20px; animation-delay: 1s; }
.glass-card.card-cert   { bottom: 22%; left: -10px; animation-delay: 2s; }
.glass-card.card-stat   { bottom: 4%; right: 12%; animation-delay: 3s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Bento Grid (Why Join) ---------- */
.bento-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.bento-card {
  grid-column: span 2; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all .35s ease; position: relative; overflow: hidden;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: var(--gradient-primary); opacity: 0; transition: opacity .35s ease; z-index: 0;
}
.bento-card > * { position: relative; z-index: 1; }
.bento-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-glow); }
.bento-card:hover::before { opacity: 1; }
  .bento-card:hover .feat-ic { color: #fff; background-color: rgba(255,255,255,.18); }
.bento-card:hover h3,.bento-card:hover p { color: #fff;}
.bento-card:hover .feat-ic svg { color: #fff; }
.feat-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--primary-50); display: grid; place-items: center; margin-bottom: 22px; transition: all .35s ease; }
.feat-ic svg { color: var(--primary); transition: color .35s ease; }
.bento-card h3 { margin-bottom: 10px; transition: color .35s ease; }
.bento-card p  { margin: 0; transition: color .35s ease; }
@media (max-width: 991.98px) { .bento-card { grid-column: span 3; } }
@media (max-width: 575.98px) { .bento-grid { grid-template-columns: 1fr; } .bento-card { grid-column: span 1; } }

/* ---------- Benefits ---------- */
.benefits-visual { position: relative; }
.benefits-visual .glow {
  position: absolute; inset: -40px; background: var(--gradient-primary); filter: blur(80px); opacity: .25; z-index: 0; border-radius: var(--radius);
}
.benefits-visual img { position: relative; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm); font-weight: 600; color: var(--dark);
  transition: all .25s ease;
  font-size: small;
}
.benefit-list li:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.benefit-list .check { width: 24px; height: 24px; border-radius: 50%; background: var(--secondary-50); color: var(--secondary); display: grid; place-items: center; flex-shrink: 0; }
@media (max-width: 575.98px) { .benefit-list { grid-template-columns: 1fr; } }

/* ---------- Process / Timeline ---------- */
.process { background: var(--light); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: .3;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: #fff;
  border: 2px solid var(--border); margin: 0 auto 18px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.25rem; color: var(--primary); position: relative; z-index: 2;
  box-shadow: var(--shadow-sm); transition: all .3s ease;
}
.step:hover .step-num { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: scale(1.08); }
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p  { font-size: .9rem; margin: 0; }
@media (max-width: 767.98px) { .timeline { grid-template-columns: 1fr; } .timeline::before { display: none; } }

/* ---------- Stats (Using Dark BG Accent) ---------- */
.stats { background: var(--dark-bg); color: #fff; overflow: hidden; position: relative; }
.stats::before { content: ""; position: absolute; inset: 0; background: var(--gradient-mesh); opacity: .4; }
.stats .container { position: relative; }
.stats h2 { color: #fff; }
.stats p.section-lead { color: rgba(255,255,255,.7); }
.stat { text-align: center; padding: 20px; }
.stat .num { font-size: 50px; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat .lbl { color: rgba(255,255,255,.75); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

/* ---------- Testimonials Slider ---------- */
.testimonials-slider .slick-slide { padding: 10px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card .rating { color: #F59E0B; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card .quote { font-size: 1.05rem; color: var(--dark); font-weight: 500; line-height: 1.6; margin-bottom: 24px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-meta img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-meta .name { font-weight: 700; color: var(--dark); margin: 0; }
.testimonial-meta .role { color: var(--muted); font-size: .85rem; margin: 0; }
.slick-dots { bottom: -45px; }
.slick-dots li button:before { font-size: 10px; color: var(--primary); opacity: .35; }
.slick-dots li.slick-active button:before { opacity: 1; }
.slick-prev, .slick-next { width: 44px; height: 44px; z-index: 2; }
.slick-prev:before, .slick-next:before { color: var(--primary); font-size: 26px; }
.slick-prev { left: -10px; } .slick-next { right: -10px; }

/* ---------- Member Stories ---------- */
.story-card {
  display: grid; grid-template-columns: 280px 1fr; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s ease;
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.story-body .tag { font-size: .75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.story-body h3 { margin-bottom: 10px; }
.story-body p  { margin-bottom: 0px; }
.story-link { font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.story-link:hover { gap: 12px; }
@media (max-width: 575.98px) { .story-card { grid-template-columns: 1fr; } .story-card img { height: 220px; } }

/* ---------- FAQ ---------- */
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 14px; overflow: hidden; background: #fff; }
.accordion-button { font-weight: 700; color: var(--dark); padding: 22px 24px; background: #fff !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: var(--primary-50) !important; color: var(--primary); }
.accordion-button::after { background-size: 16px; }
.accordion-body { color: var(--muted); padding: 0 24px 22px; line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--gradient-primary); color: #fff; position: relative; overflow: hidden; border-radius: var(--radius); margin: 0 24px 0px; padding: 80px 40px; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border-radius: 50%; filter: blur(80px); }
.final-cta::before { width: 360px; height: 360px; background: rgba(255,255,255,.12); top: -120px; left: -120px; }
.final-cta::after  { width: 360px; height: 360px; background: rgba(251, 248, 241, .25); bottom: -120px; right: -120px; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p  { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- Footer (Using Dark BG Accent) ---------- */


/* ---------- Who Can Apply Section ---------- */
.apply-section {
  padding: 80px 0;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.apply-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  min-height: 130px;
 display: flex;
    align-items: center;
    flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

/* Dark top accent cap */
.apply-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--primary);
  transition: background-color 0.3s ease;
}

.apply-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  flex: 1;
}

/* Icon box - row layout ke hisaab se */
.apply-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: #fff3ec;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.08);
  transition: all 0.3s ease;
}

/* Hover Effects */
.apply-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.apply-card:hover .apply-icon {
  transform: translateY(-2px);
  background: var(--primary-orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.18);
}

/* Responsive */
@media (max-width: 991.98px) {
  .apply-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    padding: 22px 18px;
    gap: 14px;
    min-height: auto;
  }

  .apply-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
    border-radius: 14px;
  }

  .apply-card h3 {
    font-size: 1rem;
  }
}

/* ---------- Weekly Content Hub Section ---------- */
.content-hub-section {
  background: var(--white);
  padding: 80px 0;
}

.content-hub-container {
  max-width: 980px; /* Centered content alignment */
  margin: 0 auto;
}

/* Custom Table Layout and Styling */
.content-hub-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}

/* Header styling */
.content-hub-table thead th {
  background-color: #ed5e0e;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 24px;
    border: none;
    text-align: center;
}

/* Row & cell styling */
.content-hub-table tbody td {
  padding: 22px 24px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

/* Clear bottom border on the final row for rounded corner preservation */
.content-hub-table tbody tr:last-child td {
  border-bottom: none;
}

/* Vertical separating columns */
.content-hub-table th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.content-hub-table td:not(:last-child) {
  border-right: 1px solid rgba(224, 224, 224, 0.6);
}

/* Text alignments matching the mockup card look */
.content-hub-table .week-cell {
  text-align: center;
  color: var(--muted);
}

.content-hub-table .topic-cell {
  text-align: left;
  padding-left: 36px;
}

.content-hub-table .status-cell {
  text-align: center;
}

/* Download Link States */
.btn-download {
  color: var(--primary); /* Uses brand accent orange */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-download i {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.btn-download:hover {
  color: var(--primary-600);
  text-decoration: none;
}

.btn-download:hover i {
  transform: translateY(2px); /* Subtle animation on hover */
}


/* ---------- Recognition Wall Section ---------- */
.recognition-section {
  background-color: var(--light); /* आपका लाइट क्रीम बैकग्राउंड */
  padding: 80px 0;
}

.recognition-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--dark); /* आपका डार्क टेक्स्ट कलर */
  text-align: center;
  margin-bottom: 50px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.recognition-card {
  background: var(--white);
  border: 1px solid var(--border); /* आपका बॉर्डर कलर */
  border-radius: var(--radius-sm);  /* आपका 14px बॉर्डर रेडियस */
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}


.recognition-content {
  display: flex;
  flex-direction: column; /* आइकॉन को ऊपर और टेक्स्ट को नीचे करने के लिए */
  align-items: center;
  text-align: center; /* टेक्स्ट को सेंटर करने के लिए */
  gap: 20px; /* आइकॉन और टेक्स्ट के बीच का गैप */
  width: 100%;
}

.recognition-icon {
  width: 44px; /* वर्टिकल लेआउट के लिए आइकॉन का साइज थोड़ा बढ़ाया गया है */
  height: 44px;
  stroke: var(--primary); /* आइकॉन लाइन्स के लिए आपका प्राइमरी ऑरेंज कलर */
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.recognition-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary); /* आपका रेड हाइलाइट / ऑरेंज कलर */
  line-height: 1.45;
}

/* Hover Effects */
.recognition-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.recognition-content img{
    width: 80px;
}
/* ---------- Download Centre Section ---------- */
.download-centre-section {

  padding: 80px 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); /* 14px */
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}


.download-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.download-card:hover::before {
  opacity: 1;
}

.download-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.file-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background-color: var(--primary-50); /* लाइट ऑरेंज टिंट */
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.file-icon-box {
  color: var(--primary);
  background-color: var(--primary-50);
  padding: 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.file-svg {
  width: 22px;
  height: 22px;
}

.download-card-body {
  margin-bottom: 24px;
}

.download-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px 0;
}

.file-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.download-card-footer {
  margin-top: auto; /* फुटर को कार्ड में सबसे नीचे बनाए रखने के लिए */
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}

/* ---------- Photo Gallery Slider Section ---------- */
.gallery-section {
  background-color: var(--light);
  padding: 80px 0;
}

/* Slick slider wrapper */
.gallery-slider {
  margin: 0 -10px; /* स्लाइड के बीच पैडिंग को स्क्रीन किनारों से संतुलित करने के लिए */
}

/* प्रत्येक स्लाइड के बीच में गैप/पैडिंग देने के लिए */
.gallery-slider .gallery-slide {
  padding: 10px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm); /* 14px */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 310px; /* स्लाइड इमेज की समान ऊंचाई */
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* होवर एनिमेशन */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

/* कैप्शन ओवरले */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 65%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-tag {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* डॉट नेविगेशन को थोड़ा नीचे खिसकाने के लिए स्पेस */
.gallery-slider .slick-dots {
  bottom: -40px;
}
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler:focus {
    box-shadow: unset;
}



#about{
    position: relative;
}
#about::after{
   content: "";
    position: absolute;
    left: -300px;
    top: -200px;
    width: 880px;
    height: 880px;
    border-radius: 100%;
    background: radial-gradient(#ef600f33, transparent);
    z-index: -1;
}

/* ==========================================
   PRESIDENT MESSAGE SECTION - UPDATED UI
   No image | highlighted | theme-following
   ========================================== */

.president-message-section{
    padding: 70px 0;
    background: #ffffff;
    position: relative;
}

.president-message-card{
    position: relative;
    background: linear-gradient(135deg, #fff8f4 0%, #ffffff 58%, #fffaf7 100%);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
    border: 1px solid rgba(234, 88, 12, 0.08);
}


/* faded quote icon */
.president-message-card::after{
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 38px;
    top: 26px;
    font-size: 92px;
    line-height: 1;
    color: rgba(234, 88, 12, 0.07);
    z-index: 0;
}

.president-message-inner{
    position: relative;
    z-index: 2;
    padding: 44px 48px 40px 54px;
}

.president-message-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #fff1e8;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.08);
}

.president-message-badge i{
    font-size: 13px;
}

.president-message-title{
    font-size: 36px;
    line-height: 1.22;
    color: #111827;
    margin-bottom: 24px;
    max-width: 920px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.president-message-content{
    max-width: 980px;
}

.president-message-content p{
    font-size: 16px;
    line-height: 1.95;
    color: #4b5563;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.president-message-content p:last-child{
    margin-bottom: 0;
}

.president-message-content p strong{
    color: #111827;
    font-weight: 700;
}

.president-signature{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.president-signature::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 10px;
}

.president-signature strong{
    font-size: 21px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.president-signature span{
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* subtle decorative glow */
.president-message-card .pm-glow{
    display: none;
}





.cta {
    background: #001157;
    color: #fff;
    text-align: center;
}
.cta h2 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
}
.cta .btn {
    background: #f97316;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 5px;
    display: inline-block;
}

.edsa-footer {
    background-color: #0b1120;
    color: #94a3b8;
    position: relative;
    font-family: 'Inter', -apple-system, sans-serif;
}
.edsa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ea580c 0%, #ea580c 33%, #ffffff 33%, #ffffff 66%, #16a34a 66%, #16a34a 100%);
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    background-color: #ea580c;
    border-color: #ea580c;
}

/* Col 2: Quick Links */
.footer-links-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 15px 10px;
}
.footer-links-grid li a {
    color: #8f9baf;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.footer-links-grid li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ea580c;
    border-radius: 50%;
    display: inline-block;
}
.footer-links-grid li a:hover {
    color: #ea580c;
}

/* Col 3: Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 13px;
    color: #8f9baf;
    line-height: 1.5;
}
.footer-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(234, 88, 12, 0.1); /* Dark brownish-orange tint */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 12px;
    flex-shrink: 0;
}

/* Col 4: Newsletter */
.footer-newsletter-form .pill-input {
    background-color: rgba(255, 255, 255, 0.03); /* Extremely dark, almost transparent */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 13px;
    color: #ffffff;
    box-shadow: none;
    transition: border-color 0.3s;
}
.footer-newsletter-form .pill-input::placeholder {
    color: #64748b;
}
.footer-newsletter-form .pill-input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ea580c;
    outline: none;
}
#newsletter_btn{
    width: 100%;
    margin-top: 5px;
    border-radius: 50px;
    padding: 7px;
    background: #ea580c;
    border: 0;
    color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #070b15; /* Even darker than footer background */
    font-size: 12px;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.8);
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    width: 140px;
    height: 130px;
    background: #fff;
    border-radius: 10px;
    flex-grow: 1;
}
.footer-brand video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #8f9baf;
    margin-bottom: 0;
    margin-top: 0;
    width: 70%;
    margin-left: 30px;
}
.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background-color: #ea580c;
}

/* ==========================================
   BENEFITS VOLUNTEER SLIDER STYLES
   ========================================== */
.benefits-slider-container {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
}

.slider-volunteer-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px; /* Space for slider dots */
}

.slider-volunteer-card:hover {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.slider-avatar-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 0px;
  overflow: hidden;
  background: #ffffff;
  border: 2px dashed var(--primary-orange);
}

.slider-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.slider-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.slider-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f0fdf4;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 50px;
}

.slider-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-orange {
  color: var(--primary-orange);
}

.slider-stat span {
  font-size: 0.95rem;
}

.slider-stat small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-view-profile {
  background: var(--primary-50);
  color: var(--primary-orange) !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  transition: all 0.25s ease;
}

.slider-volunteer-card:hover .btn-view-profile {
  background: var(--gradient-primary);
  color: #ffffff !important;
}

/* Custom Slick Dots layout */
.benefits-volunteer-slider .slick-dots {
  bottom: -15px;
}

.benefits-volunteer-slider .slick-dots li button:before {
  color: var(--primary-orange);
  font-size: 10px;
}

.benefits-volunteer-slider .slick-dots li.slick-active button:before {
  color: var(--primary-orange);
}

@media (max-width:600px){
  .d-flex{ align-items:center; text-align:center; }
}

@media (min-width: 991px) {
    .navbar.scrolled {
        transform: translateY(-125px);
    }
}

@media (max-width: 1199px) {
    .navbar-expand-lg .navbar-nav {
        gap: 20px;
        padding: 25px 0px;
    }
    .custom-toggler {
        background: transparent;
        width: auto;
        height: auto;
        position: relative;
        padding: 0;
        border: 0 !important;
    }
    .custom-toggler span {
        display: block;
        height: 2px;
        width: 25px;
        background: #fc824a;
        margin: 6px 0;
        transition: 0.4s;
    }
        .custom-toggler.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
        .custom-toggler.active span:nth-child(2) {
        opacity: 0;
    }
        .custom-toggler.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
        .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive Breakpoints */
@media (max-width: 991.98px) {
  .apply-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .row{
      flex-direction: column-reverse;
  }
  .hero-lead {
  
    max-width: max-content;
}
.hero-cta {
   
    margin-bottom: 0;
}
}

@media (max-width: 575.98px) {
    .hero-badge{
        margin-bottom: 14px;
        font-weight: 400;
        font-size: 12px;
    }
    .btn {
    font-weight: 500;
   
    padding: 13px 20px;
    
    font-size: 13px;
}
.hero-lead {
    margin-bottom: 22px;
  
}

  .apply-grid {
    grid-template-columns: 1fr;
  }
  .apply-card {
    padding: 30px 24px;
    min-height: 110px;
  }
  .hero-visual {
    
    min-height: auto;
}
.glass-card.card-cert {
    bottom: -2%;}
    .glass-card.card-member {
    top: 76%;
    right: 0px;
    }
    .hero-cta {
        margin-bottom: 0;
        flex-direction: column-reverse;
        align-items: center;
    }
    .btn-primary{
        width: max-content;
    }
    .container{
        padding: 0px 20px;
    }
    .stat .num {
    font-size: 40px;
    }
    .stat {
    text-align: center;
    padding: 5px;
}
.section-lead {
    max-width: 680px;
    margin: 0 auto 30px;
}
section {
    padding: 40px 0;
}
.story-body {
    padding: 20px;}
    .story-body p {
    margin-bottom: 0;
}
.footer-bottom {
    
    justify-content: center !important;
}
.showcase-overlay {
    opacity:1 !important;
}
 .content-hub-table thead th,
  .content-hub-table tbody td {
    padding: 16px 12px;
    font-size: 0.9rem;
  }
  .content-hub-table .topic-cell {
    padding-left: 16px;
  }
  .recognition-grid {
    grid-template-columns: 1fr;
  }
  .recognition-card {
    padding: 35px 20px;
    min-height: 190px;
  }
   .download-grid {
    grid-template-columns: 1fr;
  }
  .download-card {
    padding: 24px;
  }
      .edsa-top-bar .container {
        flex-direction: column;
    }
    .left-links {
        flex-direction: column;
        gap: 5px;
        padding: 5px 0px;
    }
        .right-links {
        display: none !important;
    }
    .hero {
    padding: 50px 0 50px;
    }
    .hero .row{
      flex-direction: column;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
    max-width: 480px;
    margin: 0;
    margin-top: 40px;
}
.president-box .d-flex {
   
    flex-direction: column;
}
.hero{
    text-align: center;
}
.president-box{
     text-align: center;
}
.president-box h2::after {
   
    margin: auto;
    right: 0;
    
}
.president-photo {
    width: 200px;
    height: 200px;
   
    margin: auto;
}
.section-lead, .president-box p, p{
    font-size:16px;
}
.apply-section, .content-hub-section, .recognition-section, .download-centre-section, .gallery-section {
    padding: 40px 0;
}
.cta h2 {
    font-size: 24px;
}
    .edsa-footer {
        text-align: center;
    }
    .footerlogo {
        flex-direction: column;
        align-items: center;
    }
    .footer-desc {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
    }
        .footer-brand, .footer-social {
        justify-content: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
        .footer-links-grid li a {
        justify-content: center;
    }
        .footer-contact-list {
        gap: 30px;
        padding: 0px 40px;
    }
        .footer-contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1199.98px){
    .president-message-title{
        font-size: 32px;
    }

    .president-message-inner{
        padding: 40px 38px 36px 46px;
    }
}

@media (max-width: 991.98px){
    .president-message-section{
        padding: 55px 0;
    }

   

    .president-message-card::after{
        right: 24px;
        top: 20px;
        font-size: 72px;
    }

    .president-message-inner{
        padding: 34px 26px 30px 34px;
    }

    .president-message-title{
        font-size: 28px;
        margin-bottom: 18px;
    }

    .president-message-content p{
        font-size: 15px;
        line-height: 1.85;
    }

    .president-signature strong{
        font-size: 19px;
    }
}

@media (max-width: 767.98px){
    .president-message-section{
        padding: 45px 0;
    }

    .president-message-card{
        border-radius: 16px;
    }



    .president-message-card::after{
        font-size: 52px;
        right: 16px;
        top: 16px;
    }

    .president-message-inner{
        padding: 26px 18px 24px 24px;
    }

    .president-message-badge{
        font-size: 11px;
        padding: 8px 12px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .president-message-title{
        font-size: 22px;
        line-height: 1.3;
    }

    .president-message-content p{
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .president-signature{
        margin-top: 22px;
        padding-top: 16px;
    }

    .president-signature strong{
        font-size: 17px;
    }

    .president-signature span{
        font-size: 13px;
    }
}