  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --brand-red: #D32F2F;
      --brand-gold: #FFAB00;
      --text-dark: #1A1A1B;
      --text-gray: #555555;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  body {
      font-family: 'Outfit', sans-serif;
      background: #f9f9f9;
  }

  /* Header Main */
  .premium-header {
      background: var(--white);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      padding: 10px 0;
  }

  .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .header-logo img {
      height: 80px;
      transition: transform 0.3s;
  }

  .header-logo img:hover {
      transform: scale(1.05);
  }

  /* Navigation */
  .nav-list {
      display: flex;
      list-style: none;
      /* gap: 15px; */
  }

  .nav-link {
      color: var(--text-gray);
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      padding: 10px 15px;
      border-radius: 8px;
      transition: all 0.3s;
  }

  .nav-link:hover,
  .nav-link.active {
      color: var(--brand-red);
      background: rgba(211, 47, 47, 0.05);
  }

  /* Dropdown Premium Look */
  .nav-item-dropdown {
      position: relative;
  }

  .mega-dropdown {
      position: absolute;
      top: 150%;
      left: 0;
      width: 250px;
      background: var(--white);
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      list-style: none;
      padding: 15px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border-top: 4px solid var(--brand-red);
  }

  .nav-item-dropdown:hover .mega-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .mega-dropdown li a {
      display: block;
      padding: 10px 15px;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 14px;
      border-radius: 8px;
      transition: 0.3s;
  }

  .mega-dropdown li a:hover {
      background: #fdf2f2;
      color: var(--brand-red);
      padding-left: 20px;
  }

  /* --- PREMIUM BUTTONS  --- */

  .header-btns {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .btn-premium-outline {
      position: relative;
      padding: 7px 16px;
      font-size: 14px;
      font-weight: 700;
      color: #D32F2F;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 2px solid #D32F2F;
      border-radius: 12px;
      background: transparent;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      overflow: hidden;
      z-index: 1;
  }

  .btn-premium-outline:hover {
      color: #ffffff;
      border-color: #D32F2F;
      box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
      transform: translateY(-2px);
  }

  .btn-premium-outline::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #D32F2F;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: -1;
  }

  .btn-premium-outline:hover::before {
      left: 0;
  }

  .btn-premium-gradient {
      position: relative;
      padding: 7px 16px;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
      border-radius: 12px;
      border: 1px solid #FF4500;
      box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
          inset 0 -4px 0 rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .btn-glow {
      position: absolute;
      width: 100%;
      height: 100%;
      background: inherit;
      top: 0;
      left: 0;
      filter: blur(15px);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: -1;
      border-radius: 12px;
  }

  .btn-premium-gradient:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
          inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  }

  .btn-premium-gradient:hover .btn-glow {
      opacity: 0.6;
  }

  @keyframes pulse-red {
      0% {
          box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
      }

      70% {
          box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
      }
  }

  .btn-premium-gradient {
      animation: pulse-red 2s infinite;
  }

  .btn-premium-gradient:active,
  .btn-premium-outline:active {
      transform: translateY(1px);
  }

  @media (max-width: 1000px) {
      .header-inner {
          padding: 10px 15px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
      }

      .header-logo img {
          height: 40px !important;
          width: auto;
      }

      .header-btns {
          display: flex;
          align-items: center;
          gap: 8px;
      }




      .btn-premium-gradient {
          padding: 6px 8px !important;
          font-size: 10px !important;
          letter-spacing: 0.5px !important;
          box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
      }

      .mobile-toggle {
          display: flex !important;
          flex-direction: column;
          gap: 4px;
          background: none;
          border: none;
          cursor: pointer;
          padding: 5px;
          z-index: 1002;
      }

      .mobile-toggle span {
          width: 22px;
          height: 2px;
          background: var(--brand-red);
          transition: 0.3s;
      }

      .header-nav {
          position: fixed;
          top: 0;
          right: -100%;
          width: 320px;
          /* Increased width */
          height: 100vh;
          background: var(--white);
          padding: 80px 20px;
          display: block !important;
          transition: 0.4s ease-in-out;
          box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
          box-sizing: border-box;
          overflow-y: auto;
      }

      .header-nav.active {
          right: 0;
      }

      /* Make nav-list vertical on mobile */
      .nav-list {
          flex-direction: column;
          gap: 10px;
          padding: 0;
          margin: 0;
      }

      /* Dropdown menu mobile fix */
      .nav-item-dropdown .mega-dropdown {
          position: static;
          display: none;
          box-shadow: none;
          border-top: none;
          padding-left: 10px;
          opacity: 1;
          visibility: visible;
          transform: none;
      }

      .nav-item-dropdown.open .mega-dropdown {
          display: block;
      }

      /* Adjust nav-link padding and font size on mobile */
      .nav-link {
          padding: 8px 12px;
          font-size: 16px;
      }

  }

  /* =================== ABOUT SECTION CSS ================--- */
  .about-premium-section {
      padding: 100px 0;
      margin-top: 100px;
      background: #d1d1d1;
      font-family: 'Outfit', sans-serif;
      overflow: hidden;
  }

  .container-about {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .about-flex-row {
      display: flex;
      align-items: center;
      gap: 60px;
  }

  /* Image Styling */
  .about-img-column {
      flex: 1;
      position: relative;
  }

  .img-frame-wrapper {
      position: relative;
      z-index: 2;
  }

  .main-about-img {
      width: 100%;
      border-radius: 30px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      z-index: 2;
      position: relative;
      border: 10px solid #fff;
  }

  .experience-badge {
      position: absolute;
      bottom: -30px;
      right: -30px;
      background: #D32F2F;
      color: #fff;
      padding: 25px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 15px 30px rgba(211, 47, 47, 0.3);
      z-index: 3;
      animation: floating 3s ease-in-out infinite;
  }

  .exp-year {
      font-size: 24px;
      font-weight: 800;
      display: block;
  }

  .exp-text {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
  }

  @keyframes floating {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-15px);
      }
  }

  .shape-blob {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 250px;
      height: 250px;
      background: rgba(255, 171, 0, 0.1);
      border-radius: 50%;
      z-index: 1;
  }

  /* Content Styling */
  .about-text-column {
      flex: 1.2;
  }

  .top-tag {
      color: #D32F2F;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      display: block;
      margin-bottom: 10px;
  }

  .about-title {
      font-size: 42px;
      font-weight: 800;
      color: #111;
      line-height: 1.2;
  }

  .about-title span {
      color: #D32F2F;
  }

  .about-subtitle {
      font-size: 18px;
      color: #555;
      font-weight: 600;
      margin-top: 15px;
  }

  .accent-line {
      width: 70px;
      height: 5px;
      background: #FFAB00;
      margin: 20px 0;
      border-radius: 3px;
  }

  .about-description .p-lead {
      font-size: 18px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 20px;
      font-weight: 500;
  }

  .about-description p {
      color: #666;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 30px;
  }

  /* Highlights Grid */
  .about-highlights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 40px;
  }

  .h-item {
      background: #fdf2f2;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      transition: 0.3s;
  }

  .h-item:hover {
      background: #D32F2F;
  }

  .h-item:hover i,
  .h-item:hover h5,
  .h-item:hover p {
      color: #fff;
  }

  .h-item i {
      font-size: 24px;
      color: #D32F2F;
      margin-bottom: 10px;
  }

  .h-item h5 {
      font-size: 16px;
      font-weight: 800;
      color: #111;
      margin-bottom: 5px;
  }

  .h-item p {
      font-size: 12px;
      color: #666;
      margin: 0;
  }

  /* Button */
  .btn-about-premium {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #111;
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      transition: 0.3s;
  }

  .btn-about-premium:hover {
      background: #D32F2F;
      transform: scale(1.05);
  }

  /* Responsive */
  @media (max-width: 992px) {
      .about-flex-row {
          flex-direction: column;
          text-align: center;
      }

      .accent-line {
          margin: 20px auto;
      }

      .about-highlights-grid {
          grid-template-columns: 1fr 1fr 1fr;
      }

      .experience-badge {
          right: 50%;
          transform: translateX(50%);
          bottom: -20px;
      }
  }

  @media (max-width: 576px) {
      .about-title {
          font-size: 32px;
      }

      .about-highlights-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ================about-origin-section================ */



  /* --- ABOUT ORIGIN SECTION CSS --- */
  .about-origin-section {
      padding: 80px 0 120px 0;
      background-color: #ffffff;
      font-family: 'Outfit', sans-serif;
      color: #333;
      position: relative;
  }

  .container-about {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Row 1: Header Styling */
  .origin-header-row {
      display: flex;
      gap: 25px;
      align-items: flex-start;
      margin-bottom: 80px;
  }

  .v-line-sena {
      width: 8px;
      height: 120px;
      background: #D32F2F;
      /* Brand Red */
      border-radius: 4px;
      flex-shrink: 0;
      margin-top: 10px;
  }

  .origin-tag {
      color: #D32F2F;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      display: block;
      margin-bottom: 10px;
  }

  .origin-title {
      font-size: 38px;
      font-weight: 800;
      color: #111;
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .origin-title span {
      color: #D32F2F;
  }

  .origin-lead-text {
      font-size: 16px;
      color: #666;
      line-height: 1.8;
      max-width: 900px;
  }

  /* Row 2: Grid Layout with 2 Images */
  .childhood-layout-grid {
      display: grid;
      grid-template-columns: 1.2fr 1.5fr;
      /* Images choti, Text zyada */
      gap: 60px;
      align-items: center;
  }

  /* Images Layout (Asymmetrical) */
  .childhood-images-wrapper {
      position: relative;
      padding-right: 40px;
      /* Space for overlapping image */
  }

  .image-box-main {
      width: 100%;
      height: 450px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      position: relative;
  }

  .image-box-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .img-overlay-sena {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  }

  .image-box-sub {
      position: absolute;
      bottom: -50px;
      /* Overlap bottom */
      right: -20px;
      /* Overlap right */
      width: 200px;
      height: 200px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
      border: 8px solid #ffffff;
      /* Separation border */
      z-index: 2;
  }

  .image-box-sub img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Text Content Styling */
  .childhood-text-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
  }

  .sanskar-box h3,
  .education-abvp-box h3 {
      font-size: 22px;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
      border-left: 4px solid #FFAB00;
      /* Gold accent line */
      padding-left: 15px;
  }

  .sanskar-box p,
  .education-abvp-box p {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
  }

  .sanskar-box b,
  .education-abvp-box b {
      color: #D32F2F;
      font-weight: 700;
  }

  /* Responsive Fixes */
  @media (max-width: 992px) {
      .childhood-layout-grid {
          grid-template-columns: 1fr;
          /* Single column */
          gap: 80px;
          /* Extra gap for overlapping image */
      }

      .childhood-images-wrapper {
          order: -1;
          /* Images on top */
          max-width: 500px;
          margin: 0 auto;
          padding-right: 30px;
      }

      .origin-header-row {
          flex-direction: column;
          text-align: center;
      }

      .v-line-sena {
          width: 100px;
          height: 8px;
          margin: 0 auto 20px auto;
      }

      .origin-lead-text {
          margin: 0 auto;
      }
  }

  @media (max-width: 576px) {
      .origin-title {
          font-size: 28px;
      }

      .image-box-main {
          height: 300px;
      }

      .image-box-sub {
          width: 150px;
          height: 150px;
          bottom: -30px;
          right: -10px;
      }

      .sanskar-box h3,
      .education-abvp-box h3 {
          font-size: 18px;
      }
  }


  /* ===============kali-sena-official-section============== */

  .kali-sena-clean-section {
      padding: 100px 0;
      background-color: #f0eeee;
      /* PURE WHITE BACKGROUND */
      font-family: 'Outfit', sans-serif;
      position: relative;
  }

  .container-sena {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .sena-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 70px;
      align-items: center;
  }

  /* Image Side */
  .sena-premium-frame {
      position: relative;
  }

  .sena-premium-frame img {
      width: 100%;
      border-radius: 40px 10px 40px 10px;
      /* Unique Premium Curve */
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
      border: 1px solid #eee;
  }

  .sena-experience-tag {
      position: absolute;
      top: 30px;
      left: -20px;
      background: #FFAB00;
      /* Gold */
      color: #111;
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 10px 20px rgba(255, 171, 0, 0.3);
      z-index: 2;
  }

  /* Text Side */
  .sena-mini-title {
      color: #D32F2F;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      display: block;
  }

  .sena-main-title {
      font-size: 38px;
      font-weight: 800;
      color: #111;
      margin: 10px 0;
  }

  .sena-main-title span {
      color: #D32F2F;
  }

  .sena-accent-line {
      width: 60px;
      height: 5px;
      background: #FFAB00;
      margin-bottom: 30px;
  }

  .sena-intro-text {
      font-size: 17px;
      color: #444;
      line-height: 1.7;
      margin-bottom: 30px;
  }

  /* Mission Mini Cards */
  .mission-cards-row {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
  }

  .m-card {
      background: #fff8f0;
      border: 1px solid #ffe8cc;
      padding: 15px 25px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: #D32F2F;
  }

  .m-card i {
      font-size: 18px;
  }

  /* Detail List */
  .detail-item {
      margin-bottom: 30px;
  }

  .detail-item h4 {
      font-size: 20px;
      font-weight: 800;
      color: #111;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .detail-item h4 i {
      color: #D32F2F;
      font-size: 18px;
  }

  .detail-item p {
      color: #666;
      font-size: 15px;
      line-height: 1.8;
      padding-left: 28px;
  }

  .sena-summary {
      border-top: 1px solid #eee;
      padding-top: 25px;
      font-style: italic;
      color: #777;
      font-size: 15px;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .sena-grid-layout {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .sena-experience-tag {
          left: 20px;
      }

      .mission-cards-row {
          flex-wrap: wrap;
      }
  }

  /* ===========footer============= */
  .premium-footer {
      background-color: #0a0a0a;
      color: #ffffff;
      padding: 80px 20px 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      /* Border color changed to Tomato */
      border-top: 3px solid tomato;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 40px;
  }

  .footer-column h4 {
      /* Text color changed to Tomato */
      color: tomato;
      font-size: 1.2rem;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
  }

  .footer-column h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 30px;
      height: 2px;
      /* Underline color changed to Tomato */
      background: tomato;
  }

  .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -1px;
  }

  .footer-logo span {
      /* Logo accent color changed to Tomato */
      color: tomato;
  }

  .about-text {
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 25px;
      font-size: 0.95rem;
  }

  .footer-column ul {
      list-style: none;
      padding: 0;
  }

  .footer-column ul li {
      margin-bottom: 12px;
  }

  .footer-column ul li a {
      color: #cbd5e1;
      text-decoration: none;
      transition: 0.3s;
      font-size: 0.95rem;
  }

  .footer-column ul li a:hover {
      /* Hover link color changed to Tomato */
      color: tomato;
      padding-left: 5px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 15px;
      color: #cbd5e1;
      font-size: 0.95rem;
  }

  .contact-item i {
      /* Icon color changed to Tomato */
      color: tomato;
      margin-top: 4px;
  }

  .contact-item a {
      color: #cbd5e1;
      text-decoration: none;
      transition: 0.3s;
  }

  .contact-item a:hover {
      color: #ffffff;
  }

  .social-links {
      display: flex;
      gap: 15px;
  }

  .social-links a {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      /* Social icon color changed to Tomato */
      color: tomato;
      text-decoration: none;
      transition: 0.3s;
  }

  .social-links a:hover {
      /* Hover background changed to Tomato */
      background: tomato;
      color: #000;
      transform: translateY(-3px);
  }

  .footer-bottom {
      margin-top: 60px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      color: #64748b;
      font-size: 0.85rem;
  }

  /* Responsive Grid */
  @media (max-width: 992px) {
      .footer-container {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 600px) {
      .footer-container {
          grid-template-columns: 1fr;
          /* text-align: center; */
      }
  }
