/* ===============================
   THEME COLORS
================================ */
:root {
  --primary: #fcaa19;     /* Gold */
  --secondary: #2e3192;   /* Blue */
  --dark: #1c1f5a;
  --light: #f8f9fa;
}

/* ===============================
   GLOBAL
================================ */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
}
/* ===============================
   LOGO
================================ */
.logo-img {
  height: 80px;
}

/* ===============================
   TEXT
================================ */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 260px; /* control width */
}

/* force 2 lines */
.brand-text span {
  display: block;
}

/* top line */
.brand-top {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

/* bottom line */
.brand-bottom {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.brand-reg {
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {

  .logo-img {
    height: 50px;
  }

  .brand-text {
    max-width: 180px;
  }

  .brand-top {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .brand-bottom {
    font-size: 18px;
  }
  
}

/* ===============================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 576px) {

  .brand-text {
    max-width: 140px;
  }

  .brand-top {
    font-size: 13px;
  }

  .brand-bottom {
    font-size: 14px;
  }
  
}

/* ===============================
   NAVBAR
================================ */
.navbar-custom {
  background: rgba(46, 49, 146, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: 0.3s;
}

.navbar-scrolled {
  background: var(--secondary) !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* LOGO */
.logo-text {
  background: linear-gradient(45deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 700;
}

/* NAV LINKS */
.nav-hover {
  color: #fff !important;
  margin: 0 12px;
  position: relative;
  font-weight: 500;
}

/* underline only for normal links */
.nav-hover:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-hover:not(.dropdown-toggle):hover::after {
  width: 100%;
}

.nav-hover:hover {
  color: var(--primary) !important;
}

/* ACTIVE */
.nav-link.active {
  color: var(--primary) !important;
}

/* ===============================
   DROPDOWN
================================ */
.dropdown-modern {
  border: none;
  border-radius: 12px;
  padding: 10px;
  background: rgba(46, 49, 146, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* dropdown items */
.dropdown-modern .dropdown-item {
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

/* hover */
.dropdown-modern .dropdown-item:hover {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateX(5px);
}

/* ===============================
   SUBMENU
================================ */
.dropdown-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 180px;
  background: rgba(46, 49, 146, 0.95);
  border-radius: 10px;
  padding: 10px;
}

.dropdown-submenu:hover .submenu {
  display: block;
}

/* ===============================
   ARROWS
================================ */
.arrow-down {
  font-size: 12px;
  margin-left: 5px;
}

.arrow-right {
  float: right;
  font-size: 12px;
}

/* remove bootstrap arrow */
.dropdown-toggle::after {
  display: none !important;
}

/* ===============================
   BUTTONS
================================ */
.btn-login {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46,49,146,0.4);
}

/* ===============================
   HERO
================================ */
.hero {
  height: auto;
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* ===============================
   SECTION TITLE
================================ */
.section-title {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 10px auto;
}

/* ===============================
   CARDS
================================ */
.card-modern {
  border: none;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-modern:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary);
}

/* ===============================
   ICONS
================================ */
.icon-box {
  font-size: 40px;
  color: var(--primary);
}

/* ===============================
   GALLERY
================================ */
.gallery img {
  border-radius: 12px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===============================
   FOOTER
================================ */
footer {
  background: var(--secondary);
  color: #ddd;
  padding: 20px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {

  .navbar-custom {
    background: var(--secondary);
  }

  .nav-hover {
    margin: 8px 0;
  }

  .submenu {
    position: static;
    display: none;
  }

  .dropdown-submenu:hover .submenu {
    display: block;
  }

  .btn-login {
    width: 100%;
    margin-top: 10px;
  }
}

/* ===============================
   SMOOTH TRANSITION
================================ */
* {
  transition: all 0.2s ease-in-out;
}
/* ===============================
   ABOUT HERO (MAIN HIGHLIGHT)
================================ */
.about-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2e3192, #1c1f5a);
  color: #fff;
  text-align: center;
  position: relative;
}

/* Heading */
.about-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: auto;
}

/* Highlight word */
.about-heading span {
  color: #f5b014;
}

/* Subtext */
.about-subtext {
  margin-top: 20px;
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Divider line */
.about-divider {
  width: 80px;
  height: 3px;
  background: #f5b014;
  margin: 30px auto;
  border-radius: 5px;
}

/* Button */
.btn-about {
  background: #f5b014;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about:hover {
  background: #fff;
  color: #2e3192;
}

/* Responsive */
@media (max-width: 768px) {
  .about-heading {
    font-size: 28px;
  }

  .about-subtext {
    font-size: 16px;
  }
}
@media (max-width: 991px) {

  /* FIX CONTAINER LAYOUT */
  .navbar .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;   /* 🔥 IMPORTANT */
    align-items: center;
  }

  /* BRAND CENTER */
  .navbar-brand {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  /* LOGO */
  .logo-img {
    height: 100px;   /* 100px too big, causing layout push */
    margin-bottom: 8px;
  }

  /* TEXT FIX (MAIN FIX) */
  .brand-text {
    width: 100%;          /* 🔥 removes shift */
    max-width: 100%;      /* 🔥 remove restriction */
    text-align: center;
    padding: 0 10px;      /* spacing from edges */
  }

  .brand-text span {
    display: block;
    text-align: center;
  }

  .brand-top {
    font-size: 18px;
  }

  .brand-bottom {
    font-size: 18px;
  }

  /* TOGGLE CENTER */
  .navbar-toggler {
    margin: 10px auto;
    display: block;
	border-color: rgba(255,255,255,0.6);
  }

/* Custom white hamburger icon */
.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='white' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

  /* MENU CENTER */
  .navbar-collapse {
    text-align: center;
    width: 100%;
  }

}
/* ===============================
   BREAK IMAGE EFFECT
================================ */
/* push carousel below navbar */
.carousel {
  margin-top:100px; /* match your navbar height */
}
.carousel-item,
.break-box img {
  height: 100vh;
  width: 100%;
  object-fit: cover;  /* nice full background */
}

/* Image full cover */
.break-box img {
  width: 100%;
  height: 100%;   /* 🔥 full screen */
  object-fit: cover;
}

/* Broken overlay effect */
.break-box::before,
.break-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgba(46,49,146,0.6);
  z-index: 2;
  transition: 0.8s;
}

/* top piece */
.break-box::before {
  top: 0;
  left: 0;
}

/* bottom piece */
.break-box::after {
  bottom: 0;
  left: 0;
}

/* ACTIVE SLIDE ANIMATION */
.carousel-item.active .break-box::before {
  transform: translateY(-100%);
}

.carousel-item.active .break-box::after {
  transform: translateY(100%);
}

/* zoom effect */
.carousel-item.active img {
  transform: scale(1.08);
}

/* caption */
.carousel-caption {
  bottom: 40%;
  z-index: 3;
}

.carousel-caption h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
/* ===============================
   MOBILE HEADER FIX
================================ */
@media (max-width: 991px) {

  /* center layout */
  .navbar .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-brand {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
  }

  /* reduce logo (IMPORTANT) */
  .logo-img {
    height: 60px;
    margin-bottom: 5px;
  }

  /* text */
  .brand-text {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .brand-top {
    font-size: 14px;
  }

  .brand-bottom {
    font-size: 14px;
  }

  .brand-reg {
    font-size: 11px;
  }

  /* toggle center */
  .navbar-toggler {
    margin: 10px auto;
    display: block;
  }

  /* menu center */
  .navbar-collapse {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   FULL IMAGE FIX
================================ */
.carousel-item,
.break-box img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* ===============================
   MOBILE IMAGE FULL VIEW
================================ */
@media (max-width: 768px) {

  /* REMOVE FIXED HEIGHT */
  .carousel,
  .carousel-inner,
  .carousel-item,
  .break-box {
    height: auto;   /* 🔥 KEY FIX */
  }

  /* IMAGE FULL WIDTH */
  .break-box img {
    width: 100%;
    height: auto;   /* 🔥 maintain ratio */
    object-fit: cover;
    display: block;
  }
  .carousel {
  margin-top:210px; /* match your navbar height */
}
}
.about-bg {
  position: relative;
  background: url('assets/img/bg.jpg') center center/cover no-repeat;
  padding: 100px 0;
}

/* Overlay (IMPORTANT for readability) */
.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Keep content above overlay */
.about-bg .container {
  position: relative;
  z-index: 2;
}

/* Optional: subtle gradient mix (more premium) */
.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(46,49,146,1),  rgba(156,27,2,1));
}

/* Text clarity */
.about-bg h2 {
  font-size: 2.5rem;
}

.about-bg p {
  font-size: clamp(14px, 1.2vw, 18px);
}
/* ===============================
   HIGHLIGHT SECTION
================================ */
.highlight-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2e3192, #1c1f5a);
  color: #fff;
}

/* heading */
.main-heading {
  font-size: 38px;
  font-weight: 700;
}

/* highlighted text */
.highlight-text {
  background: linear-gradient(45deg, #f5b014, #fcaa19);
  color: #000;
  padding: 5px 12px;
  border-radius: 6px;
}

/* subtext */
.highlight-subtext {
  margin-top: 20px;
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* mobile */
@media (max-width: 768px) {
  .main-heading {
    font-size: 26px;
  }

  .highlight-subtext {
    font-size: 15px;
  }
}
/* ===============================
   LEADERSHIP SECTION
================================ */
.leaders-section {
  background: #f8f9fa;
}

/* title */
.section-title {
  color: #2e3192;
  font-weight: 700;
  margin-bottom: 10px;
}

/* card design */
.leader-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
}

/* hover effect */
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* image */
.leader-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #fcaa19;
}

/* name */
.leader-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

/* designation */
.designation {
  color: #2e3192;
  font-weight: 600;
  margin-bottom: 10px;
}

/* contact text */
.contact {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

/* contact links */
.contact a {
  text-decoration: none;
  color: #333;
  margin-left: 5px;
  transition: 0.3s;
}

/* hover effect */
.contact a:hover {
  color: #fcaa19;
}

/* icons */
.contact i {
  color: #2e3192;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .leader-card {
    padding: 20px;
  }

  .leader-card img {
    width: 100px;
    height: 100px;
  }

}
/* ===============================
   IMPORTANT LINKS
================================ */
.important-links {
  background: #fff;
}

/* link box */
.link-box {
  display: block;
  background: linear-gradient(135deg, #2e3192, #1c1f5a);
  color: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

/* icon */
.link-box i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  color: #fcaa19;
}

/* text */
.link-box h6 {
  font-weight: 600;
  margin-top: 5px;
}

/* hover */
.link-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(45deg, #fcaa19, #2e3192);
  color: #fff;
}

/* mobile */
@media (max-width: 768px) {
  .link-box {
    padding: 20px 10px;
  }

  .link-box i {
    font-size: 24px;
  }
}
/* ===============================
   PREMIUM FOOTER
================================ */
.footer-premium {
  background: linear-gradient(135deg, #2e3192, #1c1f5a);
  color: #fff;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.footer-premium::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(252,170,25,0.15);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(80px);
}

/* title */
.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

/* underline animation */
.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #fcaa19;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.footer-title:hover::after {
  width: 70px;
}

/* text */
.footer-text {
  color: #ddd;
  font-size: 14px;
  line-height: 1.7;
}

/* links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

/* hover effect */
.footer-links a:hover {
  color: #fcaa19;
  padding-left: 6px;
}

/* contact */
.footer-premium p {
  font-size: 14px;
  color: #ccc;
}

.footer-premium a {
  color: #ccc;
  text-decoration: none;
}

.footer-premium a:hover {
  color: #fcaa19;
}

/* icons */
.footer-premium i {
  color: #fcaa19;
  margin-right: 8px;
  font-size:20px;
}

/* social */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #000;
  transform: translateY(-5px);
}

/* bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 15px;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .footer-premium {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social a {
    margin: 5px;
  }

}
/* ===============================
   CTA ANIMATED SECTION
================================ */
.cta-animated {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(270deg, #2e3192, #c33764, #1d2671);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
}

/* 🔥 Animated Gradient */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* TEXT */
.cta-text {
  font-size: 42px;
  font-weight: 700;
  animation: fadeUp 1.5s ease;
}

/* Highlight word */
.cta-text span {
  color: #fcaa19;
  position: relative;
}

/* Shine effect */
.cta-text span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* Shine animation */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Fade + Slide */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating glow circles */
.cta-animated::before,
.cta-animated::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(252,170,25,0.2);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s infinite alternate;
}

.cta-animated::before {
  top: -50px;
  left: -50px;
}

.cta-animated::after {
  bottom: -50px;
  right: -50px;
}

/* floating animation */
@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .cta-text {
    font-size: 26px;
  }
}
/* ===============================
   IMPORTANT LINKS - BIG CARDS
================================ */
.important-links {
  background: #f8f9fa;
}

/* BIG BOX */
.link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 180px;                 /* 🔥 increase height */
  padding: 30px;

  border-radius: 20px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #2e3192, #1c1f5a);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  transition: all 0.4s ease;
}

/* ICON BIG */
.link-box i {
  font-size: 40px;               /* 🔥 bigger icon */
  color: #fcaa19;
  margin-bottom: 15px;
}

/* TEXT */
.link-box h6 {
  font-size: 18px;
  font-weight: 600;
}

/* HOVER EFFECT */
.link-box:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg, #fcaa19, #2e3192);
  color: #fff;
}

/* ICON HOVER */
.link-box:hover i {
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .link-box {
    height: 200px;
  }

  .link-box i {
    font-size: 35px;
  }

  .link-box h6 {
    font-size: 20px;
  }
}