:root {
  --primary-blue: rgba(219, 39, 119, 0.99) !important;
  --accent-blue: rgba(236, 72, 153, 0.99) !important;
  --light-blue: rgba(252, 231, 243, 0.99) !important;
  --dark-blue: rgba(157, 23, 77, 0.99) !important;
  --secondary-blue: rgba(244, 114, 182, 0.99) !important;
  --text-dark: rgba(30, 27, 37, 0.99) !important;
  --text-medium: rgba(82, 82, 91, 0.99) !important;
  --text-light: rgba(161, 161, 170, 0.99) !important;
  --white: rgba(255, 255, 255, 0.99) !important;
  --white-transparent: rgba(255, 255, 255, 0.95) !important;
  --white-semi: rgba(255, 255, 255, 0.1) !important;
  --background-light: rgba(253, 242, 248, 0.99) !important;
  --background-card: rgba(255, 255, 255, 0.99) !important;
  --alert-red: rgba(239, 68, 68, 0.99) !important;
  --alert-red-light: rgba(252, 165, 165, 0.99) !important;
  --shadow-light: rgba(219, 39, 119, 0.1) !important;
  --shadow-medium: rgba(219, 39, 119, 0.15) !important;
  --shadow-dark: rgba(0, 0, 0, 0.3) !important;
  --overlay-dark: rgba(0, 0, 0, 0.4) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*margin-top: 80px;*/
  padding-top: 40px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-light);
}

/* .logo-container20 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.logo-left20,
.logo-right20 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-right20 {
  flex-direction: row-reverse;
}

.logo-image20 {
  flex-shrink: 0;
}

.logo-image20 img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-imageNIELIT20 {
  height: 100px;
  width: 180px;
}

.logo-text20 h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.logo-text20 p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}

.logo-text20 h6 {
  margin: 2px 0 0 0;
  color: #666;
  line-height: 1.3;
}

.logo-right20 .logo-text20 {
  text-align: right;
}

.meity-logo20 {
  max-height: 60px;
}

.header20 {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  box-shadow: 0 4px 20px var(--shadow-medium);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  min-height: 80px;
}

.nav-container20 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  min-height: 80px;
  position: relative;
}

.logo20 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  order: 1;
}

.logo-icon20 {
  width: 40px;
  height: 40px;
  background: var(--white-semi);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-menu20 {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1;
  padding: 0 0rem;
  order: 2;
}

.nav-item20 {
  position: relative;
  flex-shrink: 0;
}

.nav-link20 {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link20:hover {
  background: var(--white-semi);
  transform: translateY(-2px);
  color: var(--white);
}

.dropdown-toggle20:hover::after {
  transform: rotate(180deg);
}

.dropdown-menu20 {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  padding: 1rem 0;
  min-width: 250px;
  z-index: 1000;
  border: 1px solid var(--light-blue);
}

.dropdown-menu20.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item20:hover .dropdown-menu20 {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item20 {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-item20:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
  transform: translateX(5px);
}

.dropdown-toggle20 i {
  transition: transform 0.3s ease;
  margin-left: 0.3rem;
  font-size: 0.7rem;
}

.nav-item20:hover .dropdown-toggle20 i {
  transform: rotate(180deg);
}*/

.cta-button20 {
  background: var(--white);
  color: var(--primary-blue);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-light);
  font-size: 0.9rem;
  flex-shrink: 0;
  white-space: nowrap;
  order: 3;
  position: relative;
}

.cta-button20:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--shadow-medium);
}
.logo-container20 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.logo-left20,
.logo-right20 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-right20 {
  flex-direction: row-reverse;
}

.logo-image20 {
  flex-shrink: 0;
}

/* .logo-image20 img {
  height: 60px;
  width: auto;
  object-fit: contain;
} */

.logo-imageNIELIT20 {
  height: 90px;
  width: auto;
}
.MYImage {
  width: 55px;
  height: 70px;
}
.logo-text20 h6 {
  margin: 2px 0 0 0;
  color: #666;
  line-height: 1.3;
  font-size: 12px;
}

.textMEITY {
  text-align: right;
}

/* Header Styles */
.header20 {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  box-shadow: 0 4px 20px var(--shadow-medium);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container20 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  min-height: 60px;
  position: relative;
}

.nav-menu20 {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1;
  padding: 0;
}

.nav-item20 {
  position: relative;
  flex-shrink: 0;
}

.nav-link20 {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link20:hover {
  background: var(--white-semi);
  transform: translateY(-2px);
  color: var(--white);
}

.dropdown-menu20 {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  padding: 1rem 0;
  min-width: 250px;
  z-index: 1000;
  border: 1px solid var(--light-blue);
}

.nav-item20:hover .dropdown-menu20 {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item20 {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-item20:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
  transform: translateX(5px);
}

.dropdown-toggle20 i {
  transition: transform 0.3s ease;
  margin-left: 0.3rem;
  font-size: 0.7rem;
}

.nav-item20:hover .dropdown-toggle20 i {
  transform: rotate(180deg);
}

.icon-style {
  font-size: 0.7rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle20 {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle20:hover {
  background: var(--white-semi);
}

/* Demo Content */
.demo-content {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.demo-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.demo-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .logo-container20 {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .logo-left20,
  .logo-right20 {
    gap: 10px;
  }

  .logo-imageNIELIT20 {
    height: 80px;
    width: 140px;
  }

  .logo-text20 h6 {
    font-size: 11px;
  }


}

@media (max-width: 768px) {
  .logo-container20 {
    text-align: right;
  }
  .logo-left20,
  .logo-right20 {
    gap: 0px;
  }
  .mobile-menu-toggle20 {
    display: block;
  }
  .header20 {
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .nav-menu20 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    flex-direction: column;
    align-items: stretch;
    /* padding: 1rem; */
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-radius: 0 0 12px 12px;
  }

  .nav-menu20.active {
    display: flex;
    max-height: fit-content;
    overflow-y: scroll;
    max-height: 80vh;
  }

  .nav-item20 {
    width: 100%;
  }

  .nav-link20 {
    /* padding: 1rem; */
    border-radius: 8px;
    /* margin-bottom: 0.5rem; */
    justify-content: space-between;
  }

  .dropdown-menu20 {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    /* border-radius: 8px; */
    /* margin-top: 0.5rem; */
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: none;
    opacity: 1;
    pointer-events: auto;
    overflow-y: scroll !important;
  }

  .nav-item20.active .dropdown-menu20 {
    display: block;
    overflow-y: scroll;
    max-height: 20vh;
  }

  /*.nav-item20:hover .dropdown-menu20 {*/
  /*  display: none;*/
  /*}*/

  .nav-item20.active:hover .dropdown-menu20 {
    display: block;
  }

  .dropdown-item20 {
    padding: 0.5rem 1rem;
  }

  .logo-container20 {
    padding: 2px 5px;
  }

  .logo-left20 {
    flex-direction: row;
    text-align: center;
    gap: 5px;
    width: 100%;
  }

  .logo-right20 {
    flex-direction: row;
    width: 100%;
  }
  h6 {
    padding-right: 5px;
  }
  .logo-imageNIELIT20 {
    height: 40px;
    width: 70px;
  }
  .MYImage {
    width: 60px;
    height: 55px;
    padding-left: 25px;
    margin-left: 10px;
  }
  .logo-text20 h6 {
    font-size: 9px;
  }
  .textMEITY {
    text-align: left;
  }
  .logo-text20 {
    text-align: left;
    width: 100vw;
    /*margin-left: 30px;*/
  }
  body {
    padding-top: 0px;
  }

  .demo-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-container20 {
    padding: 5px;
  }

  .logo-imageNIELIT20 {
    height: 50px;
    width: 80px;
  }

  .logo-text20 h6 {
    font-size: 9px;
  }

  .nav-container20 {
    padding: 0 0.5rem;
  }

  .demo-content h1 {
    font-size: 1.5rem;
  }

  .demo-content p {
    font-size: 1rem;
  }
}

.footer20 {
  background: var(--dark-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container20 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand20 {
  max-width: 300px;
}

.footer-logo20 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-blue);
}

.footer-description20 {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section20 h3 {
  color: var(--light-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.footer-links20 li {
  margin-bottom: 8px;
}

.footer-links20 a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links20 a:hover {
  color: var(--light-blue);
}

.footer-bottom20 {
  border-top: 1px solid var(--white-semi);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
}

.two-columns20 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
  padding: 0;
}

.two-columns20 li {
  margin-bottom: 8px;
}

.center-columns20 {
  display: flex;
  justify-content: center;
  gap: 40px;
}
ul {
  list-style: none;
  padding: 0;
}
.icon-style {
  font-size: 2rem;
  color: #f7f8f8;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-style:hover {
  transform: rotate(180deg); /* Optional: rotate on hover */
}

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .footer-container20 {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .footer-brand20 {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 20px;
  }

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

  .center-columns20 {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .footer-section20 h3 {
    font-size: 16px;
  }

  .footer-links20 a {
    font-size: 13px;
  }
}

/* Mobile Styles (max-width: 767px) */
@media screen and (max-width: 767px) {
  .footer20 {
    padding: 30px 0 0;
  }
  .cta-button20 {
    display: none;
  }
  .footer-container20 {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .footer-brand20 {
    grid-column: span 1;
    text-align: center;
    border-bottom: 1px solid #34495e;
    padding-bottom: 25px;
  }

  .footer-logo20 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .footer-description20 {
    font-size: 13px;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-section20 {
    text-align: center;
    border-bottom: 1px solid #34495e;
    padding-bottom: 25px;
  }

  .footer-section20:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-section20 h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3498db;
  }

  .center-columns20 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-links20 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links20 li {
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }

  .footer-links20 a {
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 13px;
  }

  .footer-links20 a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
  }

  .footer-bottom20 {
    padding: 15px 10px;
    margin-top: 30px;
  }

  .footer-bottom20 p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}

/* Extra Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .footer20 {
    padding: 25px 0 0;
  }

  .footer-container20 {
    padding: 0 10px;
    gap: 25px;
  }

  .footer-logo20 {
    font-size: 20px;
  }

  .footer-description20 {
    font-size: 12px;
  }

  .footer-section20 h3 {
    font-size: 15px;
  }

  .footer-links20 a {
    font-size: 12px;
    padding: 6px 12px;
  }

  .footer-bottom20 {
    padding: 12px 8px;
  }

  .footer-bottom20 p {
    font-size: 11px;
  }
}

/* Landscape Mobile (max-height: 500px and orientation: landscape) */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer20 {
    padding: 20px 0 0;
  }

  .footer-container20 {
    gap: 20px;
  }

  .footer-section20 {
    padding-bottom: 15px;
  }

  .footer-bottom20 {
    padding: 10px;
    margin-top: 20px;
  }
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  background: var(--white-semi);
  transform: translateY(-2px);
  color: var(--white);
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none; /* Bootstrap uses this */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.dropdown-menu.show {
  display: block !important; /* Important to override transitions */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
  transform: translateX(5px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--white-semi);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cta-button {
  background: var(--white);
  color: var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--shadow-medium);
}
