/* -------------------- Global -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------------------------------Top Banner Section ---------------------------------------------- */
.top-banner-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 80px;
  flex-wrap: wrap;
  gap: 10px;
}

/* Carousel container */
.top-banner-carousel-section {
  width: 800px;
  overflow: hidden;
  border-radius: 6px;
  padding: 0px 12px;
  position: relative;
  height: 35px;
  display: flex;
  align-items: center;
}

/* Carousel text list */
.top-banner-carousel-section ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  animation: scrollText 35s linear infinite;
  margin-top: 7.5px;
}

.top-banner-carousel-section li {
  white-space: nowrap;
  font-size: 16px;
  color: white;
  font-weight: 600;
}

/* Keyframe for scrolling effect */
@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Icon sections */
.top-banner-icon-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.icon-item img {
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

.icon-item p {
  margin-bottom: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

/* -------------------- Main Navbar Section -------------------- */

.navbar > .container-fluid {
  padding: 0px 14px;
  height: 45px !important;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.navbar-nav .nav-link {
  font-size: 18px;
  padding: 0 30px !important;
  color: #fff !important;
}

@media (max-width: 600px) {
  .navber-buttons {
    justify-content: center;
  }
}

/* --------------------------------------------------
   📌 MEDIA QUERY: 991px – 1024px
-------------------------------------------------- */

@media (max-width: 991px) {
  .top-banner-icon-section {
    gap: 9px;
  }
}

@media (max-width: 400px) {
  .top-banner-icon-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .icon-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-icons {
    gap: 9px;
    flex-wrap: nowrap;
    font-size: 16px;
  }

  .icon-item img {
    width: 18px;
    height: 18px;
  }

  .social-icons img {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .navbar > .container-fluid {
    padding: 0px 15px !important;
  }
  .navbar-nav .nav-link {
    font-size: 14px !important;
    padding: 0 7px !important;
  }
  .login-btn {
    padding: 8px 11px !important;
    font-size: 14px !important;
  }

  .top-banner-icon-section {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    gap: 10px;
  }
  .navber-buttons {
    justify-content: center;
  }
}

/* --------------------------------------------------
   📌 MEDIA QUERY: 1025px – 1280px
-------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1280px) {
  .navbar > .container-fluid {
    padding: 0px 10px !important;
  }
  .navbar-nav .nav-link {
    font-size: 15px !important;
    padding: 0 7px !important;
  }
  .login-btn {
    padding: 9px 16px !important;
    font-size: 15px !important;
    width: 155px !important;
  }
}

/* --------------------------------------------------
   📌 MEDIA QUERY: 1281px – 1366px
-------------------------------------------------- */
@media (min-width: 1281px) and (max-width: 1366px) {
  .navbar > .container-fluid {
    padding: 0px 40px !important;
  }
  .navbar-nav .nav-link {
    font-size: 15px !important;
    padding: 0 20px !important;
  }
  .login-btn {
    padding: 9px 16px !important;
    font-size: 15px !important;
    width: 155px !important;
  }
}

/* --------------------------------------------------
   📌 MEDIA QUERY: 1367px – 1440px
-------------------------------------------------- */
@media (min-width: 1367px) and (max-width: 1440px) {
  .navbar > .container-fluid {
    padding: 0px 40px !important;
  }
  .navbar-nav .nav-link {
    font-size: 17px !important;
    padding: 0 25px !important;
  }
  .login-btn {
    padding: 9px 16px !important;
    font-size: 15px !important;
    width: 155px !important;
  }
}

/* --------------------------------------------------
   📌 LAST — (max-width: 1280px collapse styles)
-------------------------------------------------- */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute !important;
    top: 65px !important; /* height of your navbar */
    left: -10px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background: linear-gradient(135deg, #1c3f94, #01021d) !important;
    padding: 20px 15px;
    border-radius: 0 !important;
    z-index: 9999;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    padding: 10px 0 !important;
    text-align: center;
  }
  .navbar-nav {
    gap: 10px;
  }
  .login-btn {
    padding: 11px 13px !important;
    font-size: 14px !important;
    width: 162px;
    border-radius: 5px;
    width: 155px !important;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='red' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

/*---------------------------------------------------Dropdown Section--------------------------------------------------------- */


.dropdown-section {
  margin-top: 12px;
}
.dropdown-section .dropdown a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

.dropdown-section .dropdown-menu {
  min-width: 300px;
  /* max-height: 400px;        */
  background-color: #1c3e94d1;

  /* overflow-y: auto;         */
  /* overflow-x: visible;    ✅ CRITICAL: allow submenu to escape */

  position: relative;     /* ✅ anchor for absolute submenu */
}







.dropdown-section .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 6px 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;

}

.dropdown-section .dropdown-menu .dropdown-item:hover {
  background-color: #ee1b22;
  color: #fff;
  border-left: 3px solid #fff;
}

.login-btn {
  background-color: #1c3f94 !important;
  color: #fff !important;
  padding: 12px 10px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 13px !important;
  width: 155px !important;
}

.login-btn:hover {
  background-color: transparent !important;
  color: #ee1b22 !important;
  border-color: #ee1b22 !important;
}

.call-btn {
  display: flex !important;
  width: 155px !important;
  align-items: center !important;
  padding: 0px 0px !important;
  background-color: #1c3f94 !important;
  color: #fff !important;
  gap: 12px;
}

.call-btn:hover {
  background-color: transparent !important;
  color: #ee1b22 !important;
  border: 2px solid #ee1b22 !important;
}

/* Dropdown toggle hidden by default */

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.dropdown-section {
  gap: 45px;
  display: flex;
  justify-content: center;
  align-items:  center;
}

.dropdown-close-btn {
  background: #ff2b2b; /* bright red */
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* animation */
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.dropdown-close-btn:hover {
  background: #d90000;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
}

/* Press (tap) effect */
.dropdown-close-btn:active {
  transform: scale(0.95) rotate(-5deg);
  background: #b80000;
}

/* Optional subtle glowing animation */
@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
  }
}

.dropdown-close-btn {
  animation: pulseRed 2s infinite ease-in-out;
}

@media (max-width: 1200px) {
  .dropdown-section {
    position: fixed !important;
    top: -11px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;

    /* --- GLASSMORHISM CHANGES START HERE --- */
    
    /* 1. Make the background partially transparent (RGBA needed for this) */
    /* I've used your existing colors and added a transparency layer (alpha = 0.8) */
    background: rgba(28, 63, 148, 0.8); /* Adjusted #1c3f94 (dark blue) */
    background: linear-gradient(135deg, rgba(28, 63, 148, 0.8), rgba(1, 2, 29, 0.8)); /* Adjusted #01021d (darker blue) */

    /* 2. Apply the background blur effect (THE KEY TO GLASS) */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    /* 3. Add a subtle, light border for a crisp "glass" edge */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: none !important; /* Optional: adds rounded corners, enhancing glass look */
    
    /* --- GLASSMORHISM CHANGES END HERE --- */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto !important;
    gap: 15px;

    /* Your existing transition properties */
    transform-origin: right;
    transform: scaleX(0);
    opacity: 0; /* Changed opacity to 0 for the default hidden state */

    transition: transform 0.35s ease, opacity 0.3s ease;
}
  .dropdown-section.open {
    /* CHANGE HERE */
    transform: scaleX(1);
    opacity: 1;
    padding-top: 20px;
  }

  .dropdown-wrapper-fixed {
    /* width: 100vw !important; */
    max-width: 100vw !important;
     z-index: 2147483647 !important;  /* ✅ MAX POSSIBLE z-index */
  }

  .dropdown-toggle-btn {
    display: block !important;
    margin-left: auto !important;
    position: relative;
  }

  .dropdown-section .dropdown {
    width: 100%;
    text-align: center;
    margin: 18px 0;
  }

  .dropdown-section .dropdown-toggle {
    color: white;
    font-size: 22px;
    font-weight: 600;
  }
}

/* --------------------------------------------------
   📌 Banner Content
-------------------------------------------------- */

.full-banner-content-layout {
  display: flex;
  justify-content: space-between;
  height: 800px;
  padding: 0px 60px;
}

.right-banner-content-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 343px;
  align-items: center;
  width: 50px;
  gap: 35px;
}

.Meghalaya {
  color: #ee1b22;
  font-family: Merriweather;
  font-weight: 700;
  font-size: 56px;
}

.banner-heading h1 {
  font-family: Merriweather;
  font-weight: 700;
  font-size: 40px;
}

.left-banner-content-layout {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-top: 75px;
  padding-left: 20px;
  padding-right: 30px;
}

.banner-heading span {
  font-family: Merriweather;
  font-weight: 700;
  font-size: 56px;
}

.banner-para {
  width: 600px;
  font-family: Poppins;
  font-weight: 300;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1%;
}

.banner-button button {
  background-color: #1c3f94;
  border-radius: 8px;
  padding: 16px 33px;
  font-family: Poppins;
  font-weight: 700;
  font-size: 17px;
  border: none;
}

.banner-button button:hover {
  background-color: #ee1b22;
}

.ba-bcom {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
}

.download-prospectus-inner p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}

.download-prospectus button {
  border-radius: 8px;
  font-weight: 600;
  padding: 11px 22px;
  border: 2px solid #ee1b22;
  background-color: transparent;
  color: #ee1b22;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.download-prospectus button:hover {
  background-color: #ee1b22;
  color: #fff;
}

.download-prospectus {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bottom-button {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bottom-button button {
  padding: 15px;
  border-radius: 50%;
}

/* ---------------- Full Banner Section ---------------- */

.full-banner-section {
  position: relative;
  width: 100%;
  min-height: 670px;
  height: 100vh;
  max-height: 640px;

  background-image: url("../images/bluishoverlay.png"),
    url("../images/Rectangle\ 274\ \(35\).png");



  background-position: center, center;
  background-size: cover, cover;

  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
  color: white;
  z-index: 0;
}

/* ============================ TABLETS (max-width: 992px) ============================ */

@media (max-width: 1370px) {
  .top-banner-section {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }
    .top-banner-carousel-section {
    width: 100%;
  }

}

@media (max-width: 992px) {
  .full-banner-content-layout {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .left-banner-content-layout {
    padding: 0;
    align-items: center;
    gap: 25px;
    padding-top: 30px;
  }



  .banner-heading h1 {
    font-size: 32px;
  }
  .banner-heading span {
    font-size: 42px;
  }
  .banner-para {
    width: 100%;
    font-size: 18px;
    line-height: 140%;
  }

  .download-prospectus {
    flex-direction: column;
    align-items: center;
  }
  .download-prospectus-inner {
    width: 180px;
  }
  .download-prospectus button {
    padding: 8px 32px;
    font-size: 14px;
  }

  .top-banner-section {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }
  .top-banner-carousel-section {
    width: 100%;
  }
}

/* ============================ MOBILE (max-width: 576px) ============================ */

@media (max-width: 576px) {
  .navbar > .container-fluid {
    padding: 0px 10px;
  }
  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 6px 10px !important;
  }

  .top-banner-section {
    padding: 8px 10px;
  }
  .top-banner-carousel-section {
    width: 100%;
    height: 30px;
  }
  .top-banner-carousel-section li {
    font-size: 14px;
  }

  .full-banner-content-layout {
    padding: 20px 15px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner-heading h1 {
    font-size: 26px;
  }
  .banner-heading span {
    font-size: 34px;
  }
  .banner-para {
    font-size: 16px;
    width: 100%;
  }

  .download-prospectus {
    flex-direction: column;
    align-items: center;
  }

  .download-prospectus button {
    padding: 16px 41px;
    font-size: 13px;
  }



  .navbar-brand img {
    width: 145px;
  }
}

/* ============================ SMALL MOBILE (max-width: 400px) ============================ */

@media (max-width: 400px) {
  .full-banner-content-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    gap: 15px;
  }

  .banner-heading h1 {
    font-size: 30px;
    line-height: 1.2;
  }
  .banner-heading span {
    font-size: 35px;
  }
  .Meghalaya {
    font-size: 22px;
  }

  .banner-para p {
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    padding: 0px 25px;
  }

  .download-prospectus {
    flex-direction: column;
  }
  .download-prospectus-inner .ba-bcom {
    font-size: 20px;
  }
  .download-prospectus-inner p {
    font-size: 10px;
  }

  .download-prospectus button,
  .banner-button button {
    font-size: 10px;
    padding: 16px 41px;
  }

  .top-banner-carousel-section ul {
    gap: 40px;
  }
  .left-banner-content-layout {
    gap: 20px;
  }
  .navbar-brand img {
    width: 145px;
  }
}

/* 📱 Small Devices: Navbar 80% + Dropdown 20% */
@media (max-width: 575px) {
  .together-navber-dropdown {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100%;
    padding: 0 10px;
    gap: 0;
  }

  .main-navbar {
    width: 85% !important;
    flex-shrink: 0;
  }

  .dropdown-wrapper-fixed {
    width: 15% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-shrink: 0;
  }

  .dropdown-toggle-btn {
    display: block !important;
    padding: 6px 10px !important;
    border: none;
    border-radius: 6px;
    font-size: 14px !important;
    margin-top: 7px !important;
    /* margin-bottom: 29px; */
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .together-navber-dropdown {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100%;
    padding: 0 10px;
    gap: 0;
  }

  .main-navbar {
    width: 85% !important;
    flex-shrink: 0;
  }

  .dropdown-wrapper-fixed {
    width: 15% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-shrink: 0;
  }

  .dropdown-toggle-btn {
    display: block !important;
    margin-top: 18px !important;

    padding: 10px 26px;
    border: none;
    border-radius: 6px;
    font-size: 14px !important;
  }

  .dropdown-section .dropdown-toggle {
    color: white;
    font-size: 22px;
    font-weight: 600;
  }
}

/* --------------------------------------------------
   ✅ FIX — SHOW DROPDOWN BUTTON BETWEEN 991px–1200px
-------------------------------------------------- */
@media (min-width: 991px) and (max-width: 1200px) {
  .dropdown-wrapper-fixed {
    display: flex !important;
  }

  .dropdown-toggle-btn {
    display: block !important;
  }
}




/* ✅ FINAL FIX: Make right banner visible on small devices */
@media (max-width: 992px) {
  .right-banner-content-layout {
    display: flex !important;
    flex-direction: column!important;
    justify-content: flex-start !important;
    align-items: flex-end !important;
    width: 100% !important;
    height: auto !important;
    gap: 15px !important;
    margin-top: 0px !important;
    margin-right: 28px;
  }

  /* Resize icons for mobile */
  .right-banner-content-layout img {
    width: 40px !important;
    height: auto !important;
  }
}




















