
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    background: #f9f9f9;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.nav-menu li a:hover {
    background: #8B0000;      /* Dark Red */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

  /* ── NAVBAR ── */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
  }

 .nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-icon {
    width: 70px;
    height: 70px;
    background: #fff;   /* Remove maroon background */
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
}

/* IMPORTANT - Add this */
.nav-logo-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Fill the circle */
    border-radius: 50%;
}

.nav-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.nav-logo-sub {
    font-size: 15px;
    color: #666;
}

  .nav-links {
    display: flex;
    gap: 28px;
  }

  .nav-links a {
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: #8B1A1A;
  }

  .nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn-login {
    background: #8B1A1A;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-login:hover {
    background: #6e1414;
  }

  /* SLIDE BANNER */
  .hero-slider{

position:relative;

width:100%;

height:650px;

overflow:hidden;

}

.slide{

position:absolute;

width:100%;

height:100%;

display:none;

animation:fade 1s;

}

.slide.active{

display:block;

}

.slide img{

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

.content{

position:absolute;

left:8%;

top:50%;

transform:translateY(-50%);

color:#fff;

max-width:700px;

}

.content h1{

font-size:65px;

font-weight:700;

margin-bottom:20px;

line-height:1.2;

}

.content p{

font-size:22px;

margin-bottom:35px;

}

.btn1{

display:inline-block;

padding:14px 35px;

background:#8B0000;

color:#fff;

border-radius:5px;

margin-right:15px;

font-size:18px;

transition:.4s;

}

.btn1:hover{

background:#b30000;

}

.btn2{

display:inline-block;

padding:14px 35px;

border:2px solid #fff;

color:#fff;

border-radius:5px;

font-size:18px;

transition:.4s;

}

.btn2:hover{

background:#fff;

color:#000;

}

.prev,.next{

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:40px;

color:#fff;

padding:15px;

cursor:pointer;

user-select:none;

transition:.3s;

}

.prev{

left:20px;

}

.next{

right:20px;

}

.prev:hover,

.next:hover{

background:rgba(255,255,255,.2);

border-radius:50%;

}

@keyframes fade{

from{opacity:.4}

to{opacity:1}

}

/* =====================
      DROPDOWN MENU
===================== */

.dropdown{
    position:relative;
}


/* Dropdown menu */
.dropdown-menu{
    position:absolute;
    top:calc(100% + 8px);   /* move submenu slightly down */
    left:0;

    min-width:220px;
    background:#fff;

    border-radius:12px;
    padding:10px 0;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    display:none;
    z-index:9999;
}

/* Keep menu open */

.dropdown:hover .dropdown-menu{

    display:block;

}


.dropdown-menu li{

    list-style:none;

}


.dropdown-menu li a{

    display:block;

    padding:12px 20px;

    color:#5D4037;

    text-decoration:none;

}


.dropdown-menu li a:hover{

    background:#8B1A1A;

    color:#fff;

}

/* -------------------------- */

.caption{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    background:rgba(0,0,0,.45);
    padding:25px 40px;
    border-radius:10px;
}

.caption h1{
    font-size:50px;
    margin-bottom:15px;
}

.caption p{
    font-size:22px;
}

.fade{
    animation:fade 1s;
}

@keyframes fade{
    from{opacity:.4;}
    to{opacity:1;}
}

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #8B1A1A 0%, #5C1010 100%);
    padding: 72px 40px 60px;
    text-align: center;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
  }

  .hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto 16px;
  }

  .hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }

  .hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-white {
    background: #fff;
    color: #8B1A1A;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-white:hover {
    background: #f0f0f0;
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* ── STATS ── */
  .stats{
    display:flex;
    justify-content:center;
    gap:25px;
    margin:50px auto;
    flex-wrap:wrap;
}

.stat{
    background:#ffffff;
    padding:25px;
    width:220px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:all 0.3s ease;
    cursor:pointer;
}

.stat:hover{
    background:#8B0000;
    color:#fff;
    transform:translateY(-10px);
    box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

.stat-num{
    font-size:36px;
    font-weight:bold;
    color:#8B0000;
    transition:0.3s;
}

.stat:hover .stat-num{
    color:#FFD700;
}

.stat-label{
    margin-top:10px;
    font-size:18px;
    transition:0.3s;
}

.stat:hover .stat-label{
    color:#fff;
}

  /* Section Header */

  .section{
    max-width:1250px;
    margin:auto;
    padding:60 20px;
}

.section-alt{
    max-width:1100px;
    margin:60px auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
    transition:all .4s ease;
    cursor:pointer;
}

.section-header h2{
    font-size:42px;
    color:#222;
    transition:.4s;
}

.section-header p{
    font-size:20px;
    color:#666;
    transition:.4s;
}

/* Hover Effect */

.section-header:hover h2{
    color:#8B0000;
    letter-spacing:2px;
    transform:scale(1.05);
}

.section-header:hover p{
    color:#000;
}

/* ================= LEADERSHIP SLIDER ================= */

/* PRESIDENT BANNER */
.president-banner{
    padding:70px 20px;
    background:#f8f5ef;
}

.president-box{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
    background:#3E2723;
    border-radius:24px;
    padding:40px;
    color:#fff;
}

.president-box img{
    width:280px;
    height:340px;
    object-fit:cover;
    border-radius:20px;
    border:5px solid #D4AF37;
}

.president-content span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:2px;
}

.president-content h2{
    font-size:44px;
    margin:12px 0 18px;
}

.president-content p{
    font-size:18px;
    line-height:1.8;
}


/* COMMITTEE SECTIONS */
.committee-section{
    padding:70px 20px;
    background:#fff;
}

.senior-section{
    background:#f8f5ef;
}

.junior-section{
    background:#fff;
}

.committee-grid{
    max-width:1200px;
    margin:35px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.committee-card{
    background:#fff;
    border-radius:20px;
    padding:22px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.committee-card:hover{
    transform:translateY(-6px);
}

.committee-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #D4AF37;
    margin-bottom:16px;
}

.committee-card h3{
    margin:0 0 6px;
    color:#3E2723;
}

.committee-card p{
    margin:0;
    color:#8B1A1A;
    font-weight:600;
}


/* MOBILE */
@media(max-width:768px){

    .president-box{
        flex-direction:column;
        text-align:center;
    }

    .president-box img{
        width:220px;
        height:260px;
    }

    .president-content h2{
        font-size:32px;
    }

    .committee-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ================= VICE PRESIDENT FEATURE ================= */

.vp-feature{
    padding:50px 20px;
    background:#fff;
}

.vp-box{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:center;
    background:#f8f5ef;
    border-radius:24px;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.vp-image img{
    width:100%;
    height:360px;
    object-fit:cover;
    object-position: top center;
    border-radius:18px;
    border:4px solid #D4AF37;
}

.vp-content span{
    color:#8B1A1A;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.vp-content h2{
    font-size:38px;
    margin:12px 0 18px;
    color:#3E2723;
}

.vp-content p{
    font-size:17px;
    line-height:1.8;
    color:#5D4037;
}

.vp-contact{
    display:flex;
    gap:25px;
    margin-top:22px;
    font-weight:600;
    color:#3E2723;
}


/* ================= OTHER OFFICE BEARERS ================= */

/* ================= LEADERSHIP STRIP ================= */

.leadership-strip{
    padding:70px 20px;
    background:#2B1D16;
    color:#fff;
}

.leadership-header{
    text-align:center;
    margin-bottom:40px;
}

.leadership-header span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.leadership-header h2{
    font-size:42px;
    margin:12px 0 10px;
    color:#fff;
}

.leadership-header p{
    color:#d7c8b6;
    font-size:16px;
}

.leadership-strip-row{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* .leader-strip-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:26px;
    padding:30px 24px;
    text-align:center;
    backdrop-filter:blur(8px);
    transition:.3s;
    min-height:420px;
} */
 .leader-strip-card{
    background:rgba(255,255,255,0.08);
    border-radius:26px;
    padding:45px 24px 30px;   /* top padding increased */
    text-align:center;
    min-height:500px;
    overflow:visible;         /* important */
}

.leader-strip-card:hover{
    transform:translateX(6px);
    border-color:#D4AF37;
}

/* .leader-photo img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #D4AF37;
    margin-bottom:22px;
    box-shadow:0 12px 25px rgba(0,0,0,0.35);
} */

.leader-photo{
    width:210px;
    height:210px;
    border-radius:50%;
    overflow:hidden;          /* keeps perfect circle */
    border:5px solid #D4AF37;
    margin:0 auto 22px;
    box-shadow:0 12px 25px rgba(0,0,0,0.35);
}

.leader-photo img{
    width:100%;
    height:100%;
    object-fit:cover;         /* fill the circle */
    object-position:center top;
    transform:scale(0.90);    /* zoom out slightly so head is visible */
    border-radius:50%;
}

.leader-info h3{
    margin:0 0 8px;
    font-size:24px;
    color:#fff;
}

.leader-info h4{
    margin:0 0 12px;
    color:#D4AF37;
    font-size:16px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.leader-info p{
    margin:0;
    color:#e7dccf;
    line-height:1.7;
}

/* Mobile */

@media(max-width:768px){

    .leadership-strip{
        padding:55px 15px;
    }

    .leadership-header h2{
        font-size:30px;
    }

    .leadership-strip-row{
        grid-template-columns:1fr;
    }

    .leader-strip-card{
        min-height:auto;
    }

    .leader-photo img{
        width:140px;
        height:140px;
    }
}
/* --------------------------------------------*/

/* ================= SENIOR ADVOCATE COMMITTEE ================= */

.senior-committee-panel{
    padding:80px 20px;
    background:linear-gradient(135deg,#3E2723,#5D4037);
    color:#fff;
}

.committee-heading{
    text-align:center;
    margin-bottom:45px;
}

.committee-heading span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.committee-heading h2{
    font-size:42px;
    margin:12px 0 12px;
    color:#fff;
}

.committee-heading p{
    color:#e5d6c3;
    font-size:17px;
}

.senior-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.senior-member{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(212,175,55,0.35);
    border-radius:26px;
    padding:45px 20px 30px;   /* top padding increased */
    text-align:center;
    backdrop-filter:blur(8px);
    transition:.3s;
    overflow:visible;
}

.senior-member:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

/* .senior-member img{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #D4AF37;
    margin-bottom:22px;
    box-shadow:0 14px 28px rgba(0,0,0,0.35);
} */

.senior-member img{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:contain;          /* important */
    background:#fff;             /* white background */
    padding:6px;                 /* space inside circle */
    border:6px solid #D4AF37;
    margin-bottom:22px;
    box-shadow:0 14px 28px rgba(0,0,0,0.35);
}

.senior-member h3{
    margin:0 0 8px;
    font-size:24px;
    color:#fff;
}

.senior-member p{
    margin:0;
    color:#D4AF37;
    font-weight:700;
    letter-spacing:1px;
}

/* Mobile */
@media(max-width:768px){

    .committee-heading h2{
        font-size:30px;
    }

    .senior-grid{
        grid-template-columns:1fr;
    }

    .senior-member img{
        width:170px;
        height:170px;
    }
}
/* ============================================= */

/* ================= JUNIOR ADVOCATE COMMITTEE ================= */

/* ================= PREMIUM JUNIOR COMMITTEE ================= */

.junior-premium-section{
    padding:90px 20px;
    background:#121212;
    position:relative;
}

.junior-premium-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 35%),
        radial-gradient(circle at bottom left, rgba(212,175,55,0.05), transparent 35%);
    pointer-events:none;
}

/* PREMIUM CARD - PHOTO INSIDE BOX */
.premium-card{
    background:#1b1b1b;
    border-radius:28px;
    padding:45px 24px 30px;
    overflow:visible;        /* important */
    position:relative;
    min-height:390px;
}

.premium-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

/* Photo container */
.premium-photo{
    margin-bottom:22px;
}

/* Photo inside card */
/* .premium-photo img{
    width:190px;
    height:190px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #D4AF37;
    background:#fff;
    box-shadow:0 14px 28px rgba(0,0,0,0.35);
} */

.premium-photo img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:contain;      /* full face visible */
    background:#fff;
    padding:5px;
    border:6px solid #D4AF37;
    box-shadow:0 12px 24px rgba(0,0,0,0.35);
}

/* Text */
.premium-card h3{
    margin:0 0 10px;
    font-size:24px;
    color:#fff;
}

.premium-card p{
    margin:0;
    color:#D4AF37;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
}
.premium-header{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:1;
}

.premium-header span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;
}

.premium-header h2{
    font-size:46px;
    color:#fff;
    margin:14px 0 14px;
}

.premium-header p{
    color:#cfcfcf;
    font-size:17px;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.premium-grid{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
    position:relative;
    z-index:1;
}

.premium-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#D4AF37,#F5D76E,#D4AF37);
}

/* Mobile */
@media(max-width:992px){
    .premium-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .premium-header h2{
        font-size:32px;
    }

    .premium-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .premium-photo img{
        width:165px;
        height:165px;
    }

    .premium-card{
        min-height:auto;
        padding-top:88px;
    }
}

/* ============================================= */

  /* ── FEATURE CARDS ── */
  
/* ================= FEATURES ================= */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .4s ease;
    cursor:pointer;
    border:2px solid transparent;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    border-color:#8B0000;
    background:#fff8f8;
}

.card-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    margin:0 auto 20px;
    transition:.4s;
}

.red{
    background:#8B0000;
}

.blue{
    background:#0d6efd;
}

.green{
    background:#198754;
}

.card:hover .card-icon{
    transform:rotate(360deg) scale(1.15);
}

.card h3{
    font-size:24px;
    margin-bottom:15px;
    transition:.3s;
}

.card:hover h3{
    color:#8B0000;
}

.card p{
    color:#666;
    line-height:1.7;
    transition:.3s;
}

.card:hover p{
    color:#222;
}

/* ===========================
   Membership Upload Box
=========================== */

.form-group{
    display:flex;
    flex-direction:column;
    width:100%;
}

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.form-group input[type="file"]{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:8px;
    background:#fff;
    box-sizing:border-box;
}

#submitBtn:disabled{
    background:#999;
    cursor:not-allowed;
    opacity:0.6;
}

#submitBtn{
    background:#8B1A1A;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

  /* ===========================
   NEWS & EVENTS
=========================== */

/* .two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}*/

.two-col{
    display:grid;
    grid-template-columns:48% 48%;
    justify-content:space-between;
    gap:20px;
}

.col-header{
    font-size:32px;
    font-weight:bold;
    color:#222;
    margin-bottom:10px;
    transition:.4s;
}

.col-subheader{
    color:#666;
    margin-bottom:25px;
}

/* News Card */

.news-item{
    display:flex;
    gap:20px;
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
}

.news-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
    border-left:6px solid #8B0000;
    background:#fff8f8;
}

.news-date{
    width:70px;
    min-width:70px;
    height:70px;
    background:#8B0000;
    color:#fff;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.news-item:hover .news-date{
    background:#FFD700;
    color:#8B0000;
}

.news-title{
    font-size:20px;
    font-weight:bold;
    margin-bottom:8px;
    transition:.4s;
}

.news-item:hover .news-title{
    color:#8B0000;
}

.news-desc{
    color:#666;
}

/* Events */

.event-item{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
}

.event-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
    background:#fff8f8;
    border-left:6px solid #8B0000;
}

.event-tag{
    display:inline-block;
    background:#8B0000;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    margin-bottom:15px;
    transition:.4s;
}

.event-item:hover .event-tag{
    background:#FFD700;
    color:#8B0000;
}

.event-name{
    font-size:22px;
    font-weight:bold;
    margin-bottom:15px;
    transition:.4s;
}

.event-item:hover .event-name{
    color:#8B0000;
}

.event-meta{
    color:#666;
    display:flex;
    gap:20px;
}

/* Heading Office Bearer Hover */

.office-section{
  max-width:1450px;
    margin:auto;
    padding:40px 20px;

/* background:linear-gradient(135deg,#4d0000,#6f0000,#350000); */
background:transparent;

}

.section-title{

color:#fff;

font-size:45px;

text-align:center;

margin-bottom:60px;

letter-spacing:2px;

}

/* ===============================
        Welcome Section
================================= */

/*=========================
     Welcome Section
==========================*/

.welcome-section{

    max-width:1300px;
    margin:80px auto;
    padding:20px;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
}

.welcome-left{

    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-left:6px solid #5D4037;

}

.welcome-tag{

    background:#5D4037;
    color:#fff;
    padding:8px 18px;
    border-radius:25px;
    font-size:13px;
    letter-spacing:1px;

}

.welcome-left h2{

    font-size:40px;
    margin:20px 0;
    color:#222;

}

.welcome-left p{

    font-size:17px;
    color:#555;
    line-height:1.9;
    text-align:justify;
    margin-bottom:20px;

}

.welcome-sign{

    margin-top:35px;
    border-top:1px solid #ddd;
    padding-top:20px;

}

.welcome-sign h4{

    color:#5D4037;
    margin-bottom:5px;

}

.welcome-sign span{

    color:#777;

}

/* Right Side */

.welcome-right{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.welcome-card{

    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;

}

.welcome-card i{

    font-size:42px;
    color:#5D4037;
    margin-bottom:15px;

}

.welcome-card h3{

    font-size:32px;
    color:#5D4037;
    margin-bottom:10px;

}

.welcome-card p{

    color:#666;

}

.welcome-card:hover{

    background:#5D4037;
    transform:translateY(-8px);

}

.welcome-card:hover i,
.welcome-card:hover h3,
.welcome-card:hover p{

    color:#D4AF37;

}

/* Responsive */

@media(max-width:992px){

.welcome-section{

grid-template-columns:1fr;

}

}

/*  Welcome Message End */

/* .bearers-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:40px;

} */

/* .bearers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
} */

.bearers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    
}

/* Premium Clean Card */

/* ===========================
   Luxury Card Hover
=========================== */

/* ===========================
   Dark Red Luxury Hover
=========================== */

.luxury-card{
    width:350px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* Hover */

.luxury-card:hover{
    background:linear-gradient(135deg,#5A0000,#7B0000,#8B0000);
    border-color:#8B0000;
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(90,0,0,.45);
}

/* Profile */

.profile{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:#f5f5f5;
    color:#5A0000;
    border:3px solid #8B0000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    font-weight:bold;
    transition:.4s;
}

.luxury-card:hover .profile{
    background:#ffffff;
    color:#8B0000;
    transform:scale(1.08);
}

/* Name */

.luxury-card h3{
    color:#222;
    transition:.3s;
}

.luxury-card:hover h3{
    color:#fff;
}

/* Role */

.luxury-card h4{
    color:#666;
    transition:.3s;
}

.luxury-card:hover h4{
    color:#f5f5f5;
}

/* District */

.luxury-card p{
    color:#777;
    transition:.3s;
}

.luxury-card:hover p{
    color:#fff;
}

/* Divider */

.line{
    width:60px;
    height:2px;
    background:#8B0000;
    margin:18px auto;
    transition:.4s;
}

.luxury-card:hover .line{
    width:120px;
    background:#fff;
}

/* Button */

.luxury-card button{
    background:#ffffff;
    color:#8B0000;
    border:2px solid #ffffff;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

/* Button Hover */

.luxury-card button:hover{
    background:#f5f5f5;
    color:#5A0000;
    transform:scale(1.05);
}

/*==================================
        CTA SECTION
==================================*/

.cta-banner{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    padding:80px 40px;

    border-radius:20px;

    text-align:center;

    margin:80px auto;

    max-width:1200px;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.cta-banner::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.cta-banner::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;

    right:-100px;

}

.cta-content{

    position:relative;

    z-index:10;

}

.cta-icon{

    width:90px;

    height:90px;

    background:#fff;

    color:#8B0000;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:25px;

}

.cta-banner h2{

    color:#fff;

    font-size:38px;

    margin-bottom:20px;

}

.cta-banner p{

    color:#d1d5db;

    font-size:18px;

    max-width:750px;

    margin:0 auto 35px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-register{

    background:#8B0000;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.4s;

}

.btn-register:hover{

    background:#5A0000;

    transform:translateY(-4px);

}

.btn-login2{

    background:#fff;

    color:#0F172A;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.4s;

}

.btn-login2:hover{

    background:#e5e7eb;

    transform:translateY(-4px);

}

  /* ── FOOTER ── */
  /*==============================
        FOOTER
==============================*/

.footer{

    background:#111827;

    color:#fff;

    margin-top:80px;

}

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:40px;

    padding:70px 30px;

}

.footer-box h2{

    font-size:28px;

    margin-bottom:20px;

}

.footer-box h2 i{

    color:#ffffff;

    margin-right:10px;

}

.footer-box h3{

    margin-bottom:20px;

    font-size:22px;

    position:relative;

}

.footer-box h3::after{

    content:"";

    width:50px;

    height:3px;

    background:#2563eb;

    display:block;

    margin-top:8px;

}

.footer-box p{

    color:#cbd5e1;

    line-height:1.8;

}

.footer-box ul{

    list-style:none;

    padding:0;

}

.footer-box ul li{

    margin-bottom:15px;

    color:#cbd5e1;

}

.footer-box ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}

.social-icons{

    margin-top:25px;

}

.social-icons a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#1f2937;

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#2563eb;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:20px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    color:#cbd5e1;

}

.footer-bottom a{

    color:#cbd5e1;

    text-decoration:none;

    margin:0 8px;

}

.footer-bottom a:hover{

    color:#fff;

}

/* Responsive */

@media(max-width:992px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-bottom{

flex-direction:column;

gap:15px;

}

}

/* About Page Start */

/*==========================
PAGE BANNER
==========================*/

.page-banner{

height:300px;

background:url('../assets/images/banner1.jpg') center/cover;

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.page-overlay{

position:absolute;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

.page-content{

position:relative;

text-align:center;

color:#fff;

}

.page-content h1{

font-size:55px;

}

.page-content p{

font-size:18px;

margin-top:10px;

}

/* ABOUT */

.about-section{

max-width:1300px;

margin:80px auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

padding:20px;

}

.about-left img{

width:100%;

border-radius:15px;

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.about-tag{

background:#5D4037;

color:#fff;

padding:8px 20px;

border-radius:30px;

}

.about-right h2{

font-size:40px;

margin:20px 0;

}

.about-right p{

line-height:1.9;

color:#555;

margin-bottom:20px;

text-align:justify;

}

.about-btn{

background:#5D4037;

color:#fff;

padding:14px 35px;

border-radius:30px;

text-decoration:none;

}

.about-btn:hover{

background:#D4AF37;

color:#222;

}

/* MISSION */

.mission-section{

max-width:1300px;

margin:50px auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:20px;

}

.mission-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.mission-card:hover{

background:#5D4037;

color:#fff;

transform:translateY(-10px);

}

.mission-card i{

font-size:45px;

color:#D4AF37;

margin-bottom:20px;

}

/* HISTORY */

.history-section{

background:#f8f8f8;

padding:80px 20px;

margin-top:60px;

}

.history-content{

max-width:1300px;

margin:auto;

text-align:center;

}

.history-content h2{

font-size:40px;

margin-bottom:25px;

}

.history-boxes{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.history-box{

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.history-box h3{

font-size:38px;

color:#5D4037;

}

/*=========================
      Elite Members
=========================*/

/*=========================
      ELITE CARD
=========================*/

.elite-grid{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.elite-card{
    width:320px;          /* Increase card width */
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    transition:0.4s ease;
    border:1px solid #e5e5e5;
}

.elite-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(139,26,26,.25);
    border-color:#8B1A1A;
}

.elite-card img{
    width:100%;
    height:360px;      /* Bigger photo */
    object-fit:cover;
}

.elite-content{
    padding:25px;
}

.elite-content h3{
    font-size:28px;
    color:#5D4037;
    margin-bottom:8px;
}

.elite-content h4{
    font-size:20px;
    color:#8B1A1A;
    margin-bottom:15px;
}

.elite-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.elite-content a{
    display:inline-block;
    padding:12px 35px;
    background:#8B1A1A;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.elite-content a:hover{
    background:#5D4037;
}

/* About Page End */



/*======================
      MEMBER PAGE
=======================*/

.member-search{
    max-width:1200px;
    margin:60px auto;
    text-align:center;
}

.member-search h2{
    font-size:42px;
    color:#5D4037;
}

.member-search p{
    color:#666;
    margin:15px 0 30px;
}

.member-search input{

    width:450px;
    padding:15px;

    border-radius:40px;

    border:1px solid #ccc;

    font-size:16px;

}

/*======================
      MEMBERS
=======================*/

.members-section{

    max-width:1400px;

    margin:60px auto;

}

.members-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.member-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.member-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(139,26,26,.20);

}

.member-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.member-card h3{

    margin-top:20px;

    color:#5D4037;

    font-size:24px;

}

.member-card h4{

    color:#8B1A1A;

    margin:10px 0;

}

.member-card p{

    color:#666;

    margin-bottom:20px;

}

.member-card a{

    display:inline-block;

    margin-bottom:25px;

    background:#8B1A1A;

    color:#fff;

    padding:12px 35px;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.member-card a:hover{

    background:#5D4037;

}

/* PRESIDENT CARD */

/* Normal Member Card */
.member-card{
    width:300px;
    min-height:520px;
    transition:.3s;
}

/* President Card */

.president-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px 0 60px;
}
/* Center President Card */

.president-row{
    display:flex;
    justify-content:center;
    margin:50px 0;
}

.president-card{
    width:340px;
    border:3px solid #8B1A1A;
    box-shadow:0 15px 35px rgba(139,26,26,.20);
    transform:scale(1.05);
}


.president-card img{
    height:340px;         /* Bigger image only */
    object-fit:cover;
}

.president-card h3{
    font-size:28px;
    color:#8B1A1A;
}

.president-card:hover{
    transform:scale(1.08);
}

/*==========================
   SENIOR EXECUTIVE MEMBERS
===========================*/

/* Senior Executive Grid */

.senior-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:40px;
}

/* Senior Executive Card */

.senior-card{
    width:250px;                 /* Smaller than member card */
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:0.3s ease;
    border-top:4px solid #8B1A1A;
}

.senior-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(139,26,26,.20);
}

/* Photo */

.senior-card img{
    width:100%;
    height:240px;          /* Smaller image */
    object-fit:cover;
}

/* Name */

.senior-card h3{
    font-size:20px;
    color:#5D4037;
    margin:15px 0 8px;
}

/* Designation */

.senior-card h4{
    font-size:16px;
    color:#8B1A1A;
    margin-bottom:10px;
}

/* Description */

.senior-card p{
    font-size:14px;
    color:#666;
    padding:0 15px;
    margin-bottom:18px;
}

/* Button */

.senior-card a{
    display:inline-block;
    padding:10px 24px;
    margin-bottom:20px;
    background:#8B1A1A;
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    transition:0.3s;
}

.senior-card a:hover{
    background:#5D4037;
}

/*==========================
   JUNIOR COMMITTEE MEMBERS
===========================*/

.junior-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}

.junior-card{
    width:210px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
    border-top:3px solid #8B1A1A;
}

.junior-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(139,26,26,.18);
}

.junior-card img{
    width:100%;
    height:190px;
    object-fit:cover;
}

.junior-card h3{
    font-size:18px;
    color:#5D4037;
    margin:12px 8px 5px;
}

.junior-card h4{
    font-size:14px;
    color:#8B1A1A;
    margin-bottom:15px;
}

.junior-card a{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    background:#8B1A1A;
    color:#fff;
    text-decoration:none;
    border-radius:20px;
    font-size:13px;
    transition:.3s;
}

.junior-card a:hover{
    background:#5D4037;
}

/* Member Page End */

/* =================================
   MEMBERSHIP REGISTRATION PAGE
================================= */

body{
    background:#e8dcc8;
}

.page-content h1{

    color:#5D4037;

    font-weight:800;

    text-shadow:none;

}

.registration{
    max-width:1100px;
    margin:60px auto;
}


.form-box{

    background:linear-gradient(135deg,#5D4037,#8B1A1A);

    padding:35px;

    margin-bottom:30px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}


.form-box h2{

    color:#D4AF37;

    text-align:center;

    margin-bottom:25px;

    font-size:26px;

}


.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}


.form-grid input,
.form-grid select,
.form-grid textarea{

    padding:14px;

    border:none;

    border-radius:10px;

    background:#fff;

    font-size:15px;

}


.form-grid textarea{

    grid-column:1/3;

    height:100px;

}


.form-grid label{

    color:#fff;

    font-weight:bold;

}


.registration button{

    display:block;

    margin:35px auto;

    background:#D4AF37;

    color:#5D4037;

    padding:15px 45px;

    border:none;

    border-radius:30px;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

}


.registration button:hover{

    background:#8B1A1A;

    color:#fff;

}


@media(max-width:768px){

.form-grid{

    grid-template-columns:1fr;

}


.form-grid textarea{

    grid-column:1;

}

}

/* Reference Members Section */
.reference-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:15px;
}

.reference-card{
    background:#f8f5ef;
    border:1px solid #d7c5b3;
    border-radius:14px;
    padding:22px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.reference-card h4{
    margin-bottom:18px;
    color:#8B1A1A;
    font-size:18px;
    border-bottom:2px solid #d7c5b3;
    padding-bottom:10px;
}

.reference-card .form-group{
    margin-bottom:16px;
}

.reference-card label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
    color:#5D4037;
}

.reference-card input{
    width:100%;
    padding:12px 14px;
    border:1px solid #c9b29b;
    border-radius:10px;
    font-size:14px;
    background:#fff;
    box-sizing:border-box;
}

/* Mobile */
@media(max-width:768px){
    .reference-grid{
        grid-template-columns:1fr;
    }
}

/* Membership Registration Page End */

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: #e5e5e5;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .navbar { padding: 12px 16px; }
    .nav-links { display: none; }
    .hero { padding: 48px 20px 40px; }
    .hero h1 { font-size: 26px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 36px 20px; }
    .cards-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .bearers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-banner { padding: 40px 20px; }
    .footer { padding: 32px 20px 20px; }
  }
