  :root {
    --navy: #16163A;
    --blue: #80B3FF;
    --white: #ffffff;
    --blue-light: #b3d0ff;
    --blue-dim: rgba(128,179,255,0.13);
    --blue-border: rgba(128,179,255,0.25);
    --card-bg: rgba(255,255,255,0.04);
    --radius: 14px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── BACKGROUND MESH ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 80% 10%, rgba(128,179,255,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 10% 80%, rgba(128,179,255,0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── WRAPPER ── */
  .wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

 
  /* ── BUTTONS ── */
  .btn {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    padding: 9px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    border: none;
  }

  .btn-primary {
    background: #45DB7C;
    color: var(--white);
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(128,179,255,0.35); }

  .btn-outline {
    background: #F14C4C;
    color: var(--white);
    border: 1.5px solid var(--blue);
  }
  .btn-outline:hover { background: var(--blue-dim); transform: translateY(-2px); }

  .btn-ghost {
    background: #5d97ee;
    color: var(--white);
    border: 1px solid var(--blue-border);
  }
  .btn-ghost:hover { background: rgba(128,179,255,0.2); transform: translateY(-2px); }

  .btn-lg { padding: 13px 34px; font-size: 1.1rem; }

  .nav-btns { display: flex; gap: 10px; flex-wrap: wrap; }

  /* ── HERO ── */
  .hero {
   
    text-align: center;
  }

  .hero-badge {
    display: inline-block;
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
  }

  h1 {
    font-family: system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 18px;
  }

  h1 .accent { color: var(--blue); }

  .hero-sub {
    margin: 0 auto 16px;
    color: var(--blue-light);
    font-size: 1.05rem;
  }

  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

  /* ── DIVIDER ── */
  .divider {
    border: none;
    border-top: 1px solid var(--blue-border);
    margin: 0;
  }

  /* ── SECTION ── */
  section { padding: 30px 0; }

  h2 {
    font-family: system-ui, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
  }

  h2 .accent { color: var(--blue); }

  h3 {
    font-family: system-ui, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
  }

  p { color: rgba(255,255,255,0.82); margin-bottom: 14px; }
  p:last-child { margin-bottom: 0; }

  
  /* ── WHY SECTION ── */
  .why-intro { max-width: 680px; }

  .reasons-label {
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 28px 0 16px;
  }

  .reasons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .reasons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    padding: 14px 18px;
    color: rgba(255,255,255,0.85);
    transition: border-color 0.2s;
  }
  .reasons-list li:hover { border-color: var(--blue); }

  .dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: 8px;
  }

  /* ── DOWNLOAD SECTION ── */
  .download-hero {
    background: linear-gradient(135deg, rgba(128,179,255,0.1) 0%, rgba(22,22,58,0) 100%);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }

  .download-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .download-cta-text h2 { margin-bottom: 6px; }

  .steps-list {
    counter-reset: steps;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.97rem;
  }

  .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--navy);
    font-family: system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── SPECS TABLE ── */
 .specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

/* Mobile Scroll Wrapper */
.table-wrapper{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) transparent;
}

/* Chrome Scrollbar */
.table-wrapper::-webkit-scrollbar{
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track{
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.table-wrapper::-webkit-scrollbar-thumb{
    background: var(--blue);
    border-radius: 20px;
}

.specs-table th,
.specs-table td {
    padding: 13px 20px;
    text-align: left;
    font-size: 0.96rem;
    white-space: nowrap;
}

.specs-table th {
    background: rgba(128,179,255,0.12);
    color: var(--blue);
    font-family: system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--blue-border);
}

.specs-table td {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(128,179,255,0.09);
}

.specs-table tr:last-child td{
    border-bottom: none;
}

.specs-table tr:hover td{
    background: rgba(128,179,255,0.04);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .specs-table{
        min-width: 650px;
    }

    .specs-table th,
    .specs-table td{
        padding: 12px 14px;
        font-size: 14px;
    }

    .specs-table th{
        font-size: 15px;
    }
}

@media(max-width:480px){

    .specs-table{
        min-width: 600px;
    }

    .specs-table th,
    .specs-table td{
        padding: 10px 12px;
        font-size: 13px;
    }

    .specs-table th{
        font-size: 14px;
    }
}
 
  /* ── SECTION LABEL ── */
  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  /* ── FADE IN ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero > * {
    animation: fadeUp 0.55s ease both;
  }
  .hero > *:nth-child(1) { animation-delay: 0.05s; }
  .hero > *:nth-child(2) { animation-delay: 0.15s; }
  .hero > *:nth-child(3) { animation-delay: 0.25s; }
  .hero > *:nth-child(4) { animation-delay: 0.35s; }

   /* ── SECTION LAYOUT ── */
  .content-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--blue-border);
  }
  .content-section:last-of-type { border-bottom: none; }

  .section-intro {  margin-bottom: 28px; }

  /* ── STEPS ── */
  .btn-inline-wrap { margin: 18px 0 14px; }

  .steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
  }
  .steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 18px;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.97rem;
    transition: border-color 0.2s;
  }
  .steps-list li:hover { border-color: var(--blue); }
  .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--navy);
    font-family: system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── INFO CARDS ── */
  .info-card {
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .info-card:hover { border-color: var(--blue); transform: translateY(-3px); }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  @media(max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

  /* ── BULLET LIST ── */
  .dot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }
  .dot-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.97rem;
    transition: border-color 0.2s;
  }
  .dot-list li:hover { border-color: var(--blue); }
  .dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: 8px;
  }

  /* ── NOTE BOX ── */
  .note-box {
    background: rgba(128,179,255,0.07);
    border: 1px solid rgba(128,179,255,0.3);
    border-left: 3px solid var(--blue);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
  }
  .note-box strong { color: var(--blue); }

  /* ── EXPERT TIP ── */
  .tip-box {
    background: rgba(128,179,255,0.09);
    border: 1px solid rgba(128,179,255,0.3);
    border-left: 3px solid #80FFB3;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
  }
  .tip-box strong { color: #80FFB3; }

  /* ── GAME TABLE ── */
  .table-wrap {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--blue-border);
  }
  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
  }
  thead th {
    background: rgba(128,179,255,0.12);
    color: var(--blue);
    font-family: system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.97rem;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--blue-border);
  }
  tbody td {
    padding: 11px 16px;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(128,179,255,0.08);
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover td { background: rgba(128,179,255,0.04); }

  /* ── CONCLUSION CARD ── */
  .conclusion-card {
    background: linear-gradient(135deg, rgba(128,179,255,0.1) 0%, rgba(22,22,58,0) 100%);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    padding: 38px 34px;
  }

  .faq-section{
    padding: 70px 20px;
}

.faq-heading{
    text-align: center;
    margin-bottom: 45px;
}

.faq-heading h2{
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.faq-heading h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 20px;
    background: var(--blue);
}

.faq-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.faq-column{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item{
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover{
    border-color: var(--blue);
}

.faq-question{
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
}

.faq-question h3{
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
}

.faq-icon{
    color: var(--blue);
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s ease;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p{
    padding: 0 20px 22px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer{
    max-height: 400px;
}

.faq-item.active .faq-icon{
    transform: rotate(45deg);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .faq-grid{
        grid-template-columns: 1fr;
    }

    .faq-heading h2{
        font-size: 30px;
    }

    .faq-question{
        padding: 18px 16px;
    }

    .faq-question h3{
        font-size: 16px;
    }

    .faq-answer p{
        padding: 0 16px 18px;
        font-size: 14px;
    }
}

@media(max-width:480px){

    .faq-section{
        padding: 50px 14px;
    }

    .faq-heading h2{
        font-size: 26px;
    }

    .faq-question h3{
        font-size: 15px;
    }
}



  /* ess pages */
.main-container{
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.main-heaing{
    text-align: center;
    margin-bottom: 30px;
}

.main-heaing h1{
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.main-heaing h1::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 10px;
    background: var(--blue);
}

.main-container p{
    font-size: 17px;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 20px;
}

.main-container p:last-child{
    margin-bottom: 0;
}

.main-container a{
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s ease;
}

.main-container a:hover{
    color: var(--white);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .main-container{
        margin: 30px 15px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .main-heaing h1{
        font-size: 32px;
    }

    .main-container p{
        font-size: 15px;
        line-height: 1.8;
    }

    .main-container .hero-sub{
        font-size: 16px;
    }
}

@media(max-width:480px){

    .main-heaing h1{
        font-size: 28px;
    }

    .main-container{
        padding: 22px 16px;
    }

    .main-container p{
        font-size: 14px;
    }
}

/* header footer */

/* =========================
        HEADER CSS
========================= */

.main-header{
    width: 100%;
    background: #0A0A1A;
    border-bottom: 4px solid var(--blue);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.header-wrap{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  width: 190px;  
  height:auto;
  display:block;
  object-fit:contain;
}

.navbar{
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links li a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links li a:hover{
    color: var(--blue);
}

.header-btns{
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn{
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.login-btn{
    background: transparent;
    border-color: var(--blue-border);
    color: var(--white);
}

.login-btn:hover{
    background: rgba(128,179,255,0.1);
}

.register-btn{
    background: var(--blue);
    color: var(--navy);
}

.register-btn:hover{
    transform: translateY(-2px);
}

.menu-toggle{
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-btns{
    display: none;
}



/* =========================
        MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

    .header-wrap{
        height: 75px;
    }

    .logo img{
        width: 160px;
    }

    .navbar{
        position: fixed;
        top: 75px;
        left: -100%;               /* Left side se aayega */
        width: 320px;
        height: calc(100vh - 75px);
        background: #16163A;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 35px;
        transition: 0.4s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
        border-right: 1px solid var(--blue-border);
        z-index: 1000;
    }

    .navbar.active{
        left: 0;
    }

    .nav-links{
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }

    .nav-links li a{
        font-size: 16px;
    }

    .header-btns.desktop-btns{
        display: none;
    }

    .mobile-btns{
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-btns .btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .menu-toggle{
        display: block;
    }
}

/* Smaller Devices */
@media(max-width:768px){

    .header-wrap{
        height: 70px;
    }

    .logo img{
        width: 145px;
    }

    .container{
        padding: 0 15px;
    }

    .navbar{
        width: 300px;
    }
}

@media(max-width:480px){

    .logo img{
        width: 130px;
    }

    .navbar{
        width: 100%;
        padding: 30px 20px;
    }

    .btn{
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* =========================
        FOOTER CSS
========================= */

.main-footer{
     background: #0A0A1A;
    border-top: 4px solid var(--blue);
    margin-top: 80px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    padding: 65px 20px 40px;
}

.footer-col h3{
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col p{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 15px;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 14px;
}

.footer-col ul li a{
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover{
    color: var(--blue);
    padding-left: 5px;
}

.footer-bottom{
    border-top: 1px solid rgba(128,179,255,0.1);
    text-align: center;
    padding: 18px 15px;
}

.footer-bottom p{
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

/* =========================
        MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

   
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 20px 35px;
    }

    .footer-col h3{
        font-size: 20px;
    }
}

@media(max-width:480px){

    .footer-bottom p{
        font-size: 13px;
        line-height: 1.7;
    }
}

.center-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 20px 15px;
}

.center-img img{
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 1px solid var(--blue-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    padding: 20px;
}

.center-img img:hover{
    transform: translateY(-4px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .center-img{
        margin: 30px 0;
    }

    .center-img img{
        max-width: 100%;
        border-radius: 16px;
    }
}

@media(max-width:480px){

    .center-img{
        padding: 0 10px;
    }

    .center-img img{
        border-radius: 14px;
    }
}

/* author */

.author-section{
    padding: 70px 20px;
}

.author-card{
    max-width: 1150px;
    margin: auto;
    background: var(--card-bg);
    border: 1px solid var(--blue-border);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.author-img{
    flex: 0 0 280px;
}

.author-img img{
    width: 300px;
    height: 400px;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid var(--blue-border);
}


.author-content{
    flex: 1;
}

.author-content h1{
    font-size: 38px;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 700;
}

.author-content p{
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.author-content p:last-child{
    margin-bottom: 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

    .author-card{
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width:768px){

    .author-section{
        padding: 55px 15px;
    }

    .author-card{
        padding: 25px 20px;
        border-radius: 20px;
        gap: 25px;
    }

    .author-content h2{
        font-size: 30px;
    }

    .author-content p{
        font-size: 15px;
        line-height: 1.8;
    }
}

@media(max-width:480px){

    .author-content h2{
        font-size: 26px;
    }

    .author-content p{
        font-size: 14px;
    }
}

/* =========================
        MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .author-img {
        flex: 0 0 240px;           /* Slightly smaller on tablet */
    }
    
    .author-img img {
        width: 240px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .author-img {
        flex: 0 0 200px;
    }
    
    .author-img img {
        width: 200px;
        height: 270px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .author-img {
        flex: 0 0 100%;           
        max-width: 260px;         
        margin: 0 auto;            
    }
    
    .author-img img {
        width: 100%;
        height: auto;
        max-height: 320px;
        border-radius: 14px;
    }
}