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

:root {
  --blue-color: #0346AD;
  --green-color: #00927A;
  --red-color: #E72627;
  --white-color: #ffffff;
  --black-color: #222;
  --yellow-color: #D9920C;
  --text-color: #2d3034;
  --hover-color: #09a78d;
}

html {
  font-size: clamp(14px, 1.2vw, 16px);
}

.gredient-bg {
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124, 58, 237, .16), transparent 60%), radial-gradient(900px 500px at 90% 0%, rgba(14, 165, 233, .18), transparent 60%), #f6f8fb !important;
}

body {
  display: block;
  margin: 0;
  font-family: 'Noto Sans Devanagari', sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgb(188 176 208 / 10%), transparent 60%), radial-gradient(900px 500px at 90% 0%, rgba(187, 206, 214, 0.08), transparent 60%), #f6f8fb !important;
}

main,
header {
  max-width: 1920px;
  margin: 0 auto;
}

@media screen {
  html {
    margin: 0 !important;
  }
}

a {
  text-decoration: none;
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--blue-color);
}

ol,
ul {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.5;
  outline: medium none;
  margin-left: 20px;
}

li {
  margin-bottom: 10px;
}

ol li::marker {
  font-weight: 500;
}

ul li::marker {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  content: "◆  ";
}

.toc-list li::marker {
  content: "▶ ";
  color: var(--blue-color);
  font-size: 0.9rem;
}

img {
  width: 100%;
  height: auto;
}

.tt-image-wrapper {
  position: relative;
  display: inline-block;
}

.tt-image-wrapper img {
  display: block;
}

.tt-image-copyright {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
}

.btn-primary {
  text-decoration: none;
  padding: 10px 20px;
  color: var(--black-color);
  background-color: white;
  border-radius: 40px;
  display: block;
  width: fit-content;
}

.btn-primary:hover {
  background-color: var(--blue-color);
  color: var(--white-color);
}

.btn-secondary {
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  background-color: var(--blue-color);
  border-radius: 40px;
  display: block;
  width: fit-content;
  border: 0.5px solid rgba(128, 128, 128, 0.505);
}

.btn-secondary:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}

p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.4;
  outline: medium none;
  margin-bottom: 10px;
}

.px-1 {
  padding: 0 10px
}

table {
  width: 100%;
}

thead {
  background: #d2d2d24f;
}

td {
  padding: 5px;
  border: 1px solid rgba(222, 222, 222, 0.668);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  transition: all 0.3s ease-in-out;
  font-family: 'Baloo Bhai 2', cursive;
  line-height: 1.2;
  font-weight: 500;
  margin: 10px 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2rem);
}

.h2-home {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.4rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 3vw, 1.2rem);
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 20px;
}

.container {
  position: relative;
}

header {
  display: flex;
  height: 70px;
  padding: 0 10px;
}

.logo-container {
  width: 20%;
}

.custom-logo {
  width: 100%;
  height: auto;
}

.page-container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.overlay {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #00000099;
}

/* FONT SECTION */

@font-face {
  font-family: 'Baloo Bhai 2';
  src: url('../fonts/baloo-bhai-2/BalooBhai2-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo Bhai 2';
  src: url('../fonts/baloo-bhai-2/BalooBhai2-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo Bhai 2';
  src: url('../fonts/baloo-bhai-2/BalooBhai2-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('../fonts/noto-sans-devanagari/NotoSansDevanagari-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('../fonts/noto-sans-devanagari/NotoSansDevanagari-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('../fonts/noto-sans-devanagari/NotoSansDevanagari-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

header {
  position: relative;
  align-items: center;
}

/* ==================================================
   BASE MENU
================================================== */
.nav-container {
  width: 80%;
  margin-top: -7px;
}

#menu-primary-menu {
  justify-content: flex-end;
}

.primary-menu {
  background: transparent;
}

.menu li::marker {
  content: "";
}

.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 1rem;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  margin-top: 3px;
  display: block;
  padding: 0.5rem 1.1rem;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Hover: white text + red background */
.primary-menu a:hover {
  color: var(--white-color);
}

/* ==================================================
   SUBMENU – DESKTOP
================================================== */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black-color);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 1025px) {
  .primary-menu li:hover>.sub-menu {
    display: block;
  }
}

/* ==================================================
   3RD LEVEL FLYOUT
================================================== */
.primary-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

/* Flip left when needed */
.primary-menu .sub-menu .sub-menu.open-left {
  left: auto;
  right: 100%;
}

.menu-item {
  margin-bottom: 0 !important;
}

/* ==================================================
   SUBMENU ARROWS
================================================== */
.primary-menu .menu-item-has-children>a {
  padding-right: 1.8rem;
}

.primary-menu .menu-item-has-children>a::after {
  content: "▼";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65em;
  color: var(--white-color);
}

.primary-menu .menu-item-has-children>a:hover::after {
  color: var(--black-color);
}

/* ==================================================
   TOGGLE BUTTON
================================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black-color);
  display: block;
  margin: 5px 0;
}

.toggle-mobile-logo {
  display: none;
}

/* ==================================================
   CLOSE BUTTON
================================================== */
.menu-close {
  position: absolute;
  top: 0.25rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--black-color);
  cursor: pointer;
  display: none;
  z-index: 10002;
}

/* ==================================================
   OVERLAY
================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ===========================
   RIPPLE ZOOM HOVER EFFECT
=========================== */
.primary-menu a {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Ripple layer */
.primary-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background-color: var(--white-color);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  z-index: -1;
  border-radius: 2px;
}

/* Hover: ripple expands */
.primary-menu a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Keep text visible */
.primary-menu a:hover {
  color: var(--black-color);
}

/* cricma Newsletter Form */
.newsletter-section {
  background-color: var(--blue-color);
  padding: 10px;
  margin-top: 50px;
}

.cricma-newsletter-form {
  padding: 18px;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 1px 40px;
  display: flex;
  gap: 10px;
}

.cricma-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.cricma-newsletter-form input[type="email"]:focus {
  border-color: var(--blue-color);
}

.cricma-newsletter-form button {
  padding: 12px 18px;
  background: var(--blue-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

.cricma-newsletter-form button:hover {
  background: #a30000;
}

/* Messages */
.newsletter-success {
  color: #155724;
  background: #d4edda;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-error {
  color: #721c24;
  background: #f8d7da;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 480px) {
  .cricma-newsletter-form {
    flex-direction: column;
  }

  .cricma-newsletter-form button {
    width: 100%;
  }

  .align-right {
    text-align: left;
  }
}




/* ==================================================
   MOBILE OFFCANVAS
================================================== */
@media (max-width: 1024px) {
  .logo-container {
    width: 50%;
  }

  .nav-container {
    width: 50%;
  }

  .toggle-mobile-logo {
    display: block;
    background-color: white;
  }

  .toggle-mobile-logo a {
    padding: 0.5rem;
  }

  .menu-toggle {
    float: right;
    display: block;
    padding: 5px;
  }

  .primary-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
  }

  .primary-menu.active {
    transform: translateX(0);
    background-color: var(--blue-color);
  }

  .menu-close {
    display: block;
  }

  .primary-menu ul {
    flex-direction: column;
  }

  .primary-menu a {
    color: var(--white-color);
  }

  .primary-menu a:hover .menu-close {
    color: black;
  }

  /* Disable hover dropdowns */
  .primary-menu li:hover>.sub-menu {
    display: none;
  }

  /* Accordion submenu */
  .primary-menu .sub-menu {
    position: static;
    display: none;
  }

  .primary-menu .menu-item-has-children.active>.sub-menu {
    display: block;
  }

  /* Indentation */
  .primary-menu .sub-menu a {
    padding-left: 2rem;
    font-size: 0.95em;
  }

  .primary-menu .sub-menu .sub-menu a {
    padding-left: 3rem;
    font-size: 0.9em;
  }

  .primary-menu .menu-item-has-children>a {
    position: relative;
    line-height: 1.2;
  }

  .primary-menu .menu-item-has-children>a::after {
    top: 0.8rem;
    transform: none;
  }

  .primary-menu .menu-item-has-children.active>a::after {
    transform: rotate(180deg);
  }
}




/* Footer staretd */
footer {
  margin-top: 50px;
  background-color: var(--black-color);
  width: 90;
  margin: 0 auto;
}

.footer-holder {
  width: 90;
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
  padding: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.footer-heading {
  color: var(--white-color);
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 500;
}

.footer-grid-inner {
  padding: 20px;
}

.footer-inner-block {
  padding: 30px 0;
}

.footer-description {
  color: var(--white-color);
}

.footer-navigation {
  margin-left: 0;
}

.footer-menu a {
  color: var(--white-color);
  font-size: 1rem;
}