/* primary color #1d428b, secondary color #e8bb0a, accent #d62828, dark text #1a1a1a, light background #FFFFFF, section background #F7F8FC,  Navbar → White

Buttons → Blue

Hover → Red

Important Cards → Yellow Accent

Footer → Blue              */
/*==================================================
  GOOGLE FONTS
==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

/* ROOT VARIABLES */

:root {
  --primary: #1d428b;
  --secondary: #e8bb0a;
  --accent: #d62828;
  --dark: #1a1a1a;
  --white: #ffffff;
  --section: #f7f8fc;
  --border: #e8edf5;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --transition: 0.35s ease;
}

/* Global  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;

  transition: var(--transition);
}

ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

button {
  transition: var(--transition);
}

section {
  position: relative;
}

.container {
  max-width: 1280px;
}

/*==================================================
  COMMON BUTTON
==================================================*/

.btn {
  transition: 0.35s;

  font-weight: 600;

  border-radius: 8px;
}

.btn:focus {
  box-shadow: none;
}

/*TOP ADMISSION BAR*/
.top-bar {
  background: linear-gradient(135deg, var(--primary), #14336d);
  color: var(--white);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1055;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Shine Effect */

.top-bar::before {
  content: "";

  position: absolute;

  top: 0;

  left: -45%;

  width: 35%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );

  transform: skewX(-25deg);

  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% {
    left: -45%;
  }

  100% {
    left: 120%;
  }
}

/*==========================
      CONTENT
==========================*/

.topbar-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

/*==========================
      TEXT
==========================*/

.topbar-left {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 0.3px;
}

.topbar-left i {
  color: var(--secondary);

  font-size: 18px;
}

.topbar-left span {
  white-space: nowrap;
}

/*==========================
      RIGHT
==========================*/

.topbar-right {
  display: flex;

  align-items: center;

  gap: 15px;
}

/*==========================
      APPLY BUTTON
==========================*/

.apply-btn {
  background: var(--secondary);

  color: var(--dark);

  font-weight: 700;

  border: none;

  padding: 10px 22px;

  border-radius: 50px;

  font-size: 14px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);

  transition: 0.35s;
}

/* Shine */

.apply-btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transition: 0.7s;
}

.apply-btn:hover::before {
  left: 100%;
}

.apply-btn:hover {
  background: var(--accent);

  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 14px 28px rgba(214, 40, 40, 0.25);
}

/*==========================
      PULSE
==========================*/

.apply-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 187, 10, 0.55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(232, 187, 10, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 187, 10, 0);
  }
}

/*==========================
      CLOSE BUTTON
==========================*/

.top-close {
  width: 34px;

  height: 34px;

  border-radius: 50%;

  border: none;

  background: rgba(255, 255, 255, 0.12);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: 0.3s;
}

.top-close:hover {
  background: var(--accent);

  transform: rotate(90deg);
}

/* hide  */
.top-bar.hide-bar {
  transform: translateY(-100%);
   pointer-events:none;
  opacity: 0;
}

/*==========================
      RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .topbar-content {
    flex-wrap: wrap;

    justify-content: center;

    text-align: center;

    gap: 12px;
  }

  .topbar-left {
    justify-content: center;

    width: 100%;
  }
}

@media (max-width: 576px) {
  .top-bar {
    padding: 10px 0;
  }

  .topbar-content {
    flex-direction: column;

    gap: 10px;
  }

  .topbar-left {
    font-size: 13px;

    text-align: center;
  }

  .topbar-left span {
    white-space: normal;

    line-height: 1.5;
  }

  .apply-btn {
    width: 100%;

    justify-content: center;

    padding: 10px;
  }

  .top-close {
    position: absolute;

    top: 8px;

    right: 10px;

    width: 28px;

    height: 28px;

    font-size: 14px;
  }
}

/*MAIN NAVBAR*/
.main-navbar {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  border-bottom: 1px solid rgba(29, 66, 139, 0.08);
  backdrop-filter: blur(10px);
  transition:
    top 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Hide Top Bar */
.top-bar.hide-bar {
  transform: translateY(-100%);
}

/* Navbar moves up */
.main-navbar.nav-up {
  top: 0;
}

/* Body Padding */
body {
  padding-top: 145px;
}

/* Sticky Shrink */

.main-navbar.scrolled {
  padding: 8px 0;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/*==================================================
                CONTAINER
==================================================*/

.main-navbar .container {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

/*==================================================
                LOGO
==================================================*/

.navbar-brand {
  padding: 0;

  margin-right: 18px;
}

.logo {
  height: 90px;

  width: auto;

  object-fit: contain;

  transition: 0.35s ease;
}

.main-navbar.scrolled .logo {
  height: 68px;
}

/*==================================================
            NAVIGATION LINKS
==================================================*/

.navbar-nav {
  align-items: center;

  gap: 8px;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  position: relative;

  color: var(--primary);

  font-weight: 600;

  font-size: 15px;

  padding: 10px 12px;

  transition: 0.3s;
}

/* Underline */

.navbar-nav .nav-link::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -2px;

  transform: translateX(-50%);

  width: 0;

  height: 3px;

  background: var(--secondary);

  border-radius: 30px;

  transition: 0.35s;
}

/* Hover */

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

/* Active */

.navbar-nav .nav-link.active {
  color: var(--primary);

  font-weight: 700;
}

.navbar-nav .nav-link.active::after {
  width: 70%;
}

/*==================================================
                CTA BUTTON
==================================================*/

.inquiry-btn {
  background: var(--primary);

  color: #fff;

  font-weight: 600;

  font-size: 15px;

  padding: 11px 22px;

  border-radius: 50px;

  border: none;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  transition: 0.35s;

  box-shadow: 0 10px 20px rgba(29, 66, 139, 0.15);
}

.inquiry-btn:hover {
  background: var(--accent);

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 16px 28px rgba(214, 40, 40, 0.22);
}

/*==================================================
            HAMBURGER
==================================================*/

.navbar-toggler {
  border: none;

  padding: 0;

  width: 38px;

  height: 38px;

  position: relative;

  box-shadow: none !important;
}

.toggler-icon,
.toggler-icon::before,
.toggler-icon::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 3px;

  background: var(--primary);

  border-radius: 30px;

  transition: 0.35s;
}

.toggler-icon {
  top: 50%;

  transform: translateY(-50%);
}

.toggler-icon::before {
  top: -10px;
}

.toggler-icon::after {
  top: 10px;
}

/* Open */

.navbar-toggler.open .toggler-icon {
  background: transparent;
}

.navbar-toggler.open .toggler-icon::before {
  top: 0;

  transform: rotate(45deg);

  background: var(--accent);
}

.navbar-toggler.open .toggler-icon::after {
  top: 0;

  transform: rotate(-45deg);

  background: var(--accent);
}

/*==================================================
            MOBILE MENU
==================================================*/

@media (max-width: 991px) {
  .main-navbar {
    top: 60px;
  }

  .logo {
    height: 60px;
  }

  .main-navbar.scrolled .logo {
    height: 54px;
  }

  .navbar-collapse {
    margin-top: 18px;

    background: #fff;

    border-radius: 18px;

    padding: 20px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

    animation: menuFade 0.35s ease;
  }

  .navbar-nav {
    gap: 4px;
  }

  .navbar-nav .nav-link {
    padding: 14px 12px;

    border-radius: 10px;
  }

  .navbar-nav .nav-link:hover {
    background: var(--section);
  }

  .inquiry-btn {
    margin-top: 15px;

    width: 100%;
  }
}

/*==================================================
            SMALL MOBILE
==================================================*/

@media (max-width: 576px) {
  .logo {
    height: 52px;
  }

  .main-navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    padding: 18px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
  }

  .inquiry-btn {
    padding: 12px;

    font-size: 14px;
  }
}

/*==================================================
            MOBILE MENU ANIMATION
==================================================*/

@keyframes menuFade {
  from {
    opacity: 0;

    transform: translateY(-15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==================================================
                DROPDOWN MENU
==================================================*/

/* Hide Bootstrap default arrow */

.dropdown-toggle::after {
  display: none;
}

/* Custom Arrow */

.dropdown-arrow {
  font-size: 11px;

  margin-left: 6px;

  transition: all 0.35s ease;

  color: var(--primary);
}

.nav-item.show .dropdown-arrow,
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);

  color: var(--accent);
}

/*==================================================
        DESKTOP DROPDOWN
==================================================*/

@media (min-width: 992px) {
  .custom-dropdown {
    display: block;

    visibility: hidden;

    opacity: 0;

    transform: translateY(18px);

    pointer-events: none;

    min-width: 250px;

    margin-top: 18px;

    padding: 10px 0;

    border: none;

    border-radius: 16px;

    border-top: 4px solid var(--secondary);

    background: #fff;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);

    transition: all 0.35s ease;
  }

  /* Show */

  .nav-item.dropdown:hover > .custom-dropdown {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
  }
}

/*==================================================
        DROPDOWN ITEMS
==================================================*/

.custom-dropdown .dropdown-item {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  color: var(--primary);

  font-size: 15px;

  font-weight: 500;

  position: relative;

  transition: 0.3s;
}

/* Left Border */

.custom-dropdown .dropdown-item::before {
  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 0;

  height: 65%;

  background: var(--secondary);

  border-radius: 0 6px 6px 0;

  transition: 0.3s;
}

/* Hover */

.custom-dropdown .dropdown-item:hover {
  background: var(--section);

  color: var(--accent);

  padding-left: 30px;
}

.custom-dropdown .dropdown-item:hover::before {
  width: 5px;
}

/* Active */

.custom-dropdown .dropdown-item.active {
  background: var(--section);

  color: var(--primary);

  font-weight: 600;
}

/*==================================================
        DIVIDER
==================================================*/

.custom-dropdown .dropdown-divider {
  margin: 8px 0;

  opacity: 0.08;
}

/*==================================================
        MOBILE DROPDOWN
==================================================*/

@media (max-width: 991px) {
  .custom-dropdown {
    border: none;

    box-shadow: none;

    background: transparent;

    margin-top: 0;

    padding-left: 15px;

    padding-top: 6px;

    padding-bottom: 6px;
  }

  .custom-dropdown .dropdown-item {
    padding: 10px 14px;

    border-radius: 8px;

    margin-bottom: 3px;

    font-size: 14px;
  }

  .custom-dropdown .dropdown-item:hover {
    padding-left: 20px;
  }

  .custom-dropdown .dropdown-item::before {
    display: none;
  }
}

/*==================================================
        DROPDOWN ANIMATION
==================================================*/

@keyframes dropdownFade {
  from {
    opacity: 0;

    transform: translateY(12px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==================================================
        MEGA MENU READY
==================================================*/

.dropdown-menu {
  animation: dropdownFade 0.35s ease;
}

/*==================================================
        SUBTLE HOVER SHADOW
==================================================*/

.custom-dropdown:hover {
  box-shadow: 0 22px 55px rgba(29, 66, 139, 0.12);
}

/*==================================================
            STICKY NAVBAR EFFECTS
==================================================*/

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(29, 66, 139, 0.08);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  animation: navbarSlide 0.35s ease;
}

@keyframes navbarSlide {
  from {
    transform: translateY(-100%);

    opacity: 0.8;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

/*==================================================
            NAV LINK HOVER EFFECT
==================================================*/

.navbar-nav .nav-link {
  overflow: hidden;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}

/*==================================================
            BUTTON RIPPLE EFFECT
==================================================*/

.apply-btn,
.inquiry-btn {
  position: relative;

  overflow: hidden;
}

.apply-btn::after,
.inquiry-btn::after {
  content: "";

  position: absolute;

  width: 0;

  height: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  transition: 0.6s;
}

.apply-btn:hover::after,
.inquiry-btn:hover::after {
  width: 320px;

  height: 320px;
}

/*==================================================
            LOGO HOVER
==================================================*/

.logo {
  transition: all 0.35s ease;
}

.navbar-brand:hover .logo {
  transform: scale(1.04);
}

/*==================================================
            NAVBAR TRANSITIONS
==================================================*/

.main-navbar,
.logo,
.nav-link,
.inquiry-btn,
.dropdown-menu {
  transition: all 0.35s ease;
}

/*==================================================
            REMOVE BOOTSTRAP OUTLINES
==================================================*/

.navbar-toggler:focus,
.nav-link:focus,
.btn:focus {
  box-shadow: none !important;

  outline: none;
}

/*==================================================
            ACCESSIBILITY
==================================================*/

.nav-link:focus-visible,
.dropdown-item:focus-visible {
  outline: 2px solid var(--secondary);

  outline-offset: 4px;

  border-radius: 8px;
}

/*==================================================
            SMOOTH SECTION OFFSET
==================================================*/

html {
  scroll-padding-top: 140px;
}

/*==================================================
            DESKTOP SPACING
==================================================*/

@media (min-width: 1200px) {
  .navbar-nav {
    gap: 16px;
  }

  .container {
    max-width: 1320px;
  }
}

/*==================================================
            TABLET
==================================================*/

@media (max-width: 991px) {
  .main-navbar {
    top: 60px;
  }

  .main-navbar.scrolled {
    top: 0;
  }

  .navbar-collapse {
    max-height: 80vh;

    overflow-y: auto;
  }

  .navbar-collapse::-webkit-scrollbar {
    width: 5px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: var(--primary);

    border-radius: 20px;
  }
}

/*==================================================
            MOBILE
==================================================*/

@media (max-width: 576px) {
  .main-navbar {
    padding: 10px 0;
  }

  .top-bar {
    font-size: 13px;
  }

  .navbar-nav {
    gap: 2px;
  }

  .logo {
    height: 50px;
  }

  .main-navbar.scrolled .logo {
    height: 45px;
  }

  .inquiry-btn {
    font-size: 14px;
  }
}

/*==================================================
            VERY SMALL DEVICES
==================================================*/

@media (max-width: 360px) {
  .logo {
    height: 44px;
  }

  .topbar-left {
    font-size: 12px;
  }

  .apply-btn {
    font-size: 12px;

    padding: 8px 18px;
  }
}

/*==================================================
            REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/*==================================================
            AOS FIXES
==================================================*/

[data-aos] {
  pointer-events: auto;
}

/*==================================================
            SELECTION
==================================================*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

 /* NAVBAR MOVE TO TOP */
.main-navbar.nav-up{
    top:0;
}


























/* HERO SECTION styling starts from here*/
.hero-section{
    position:relative;
    /* background:url("/assets/images/school-hero.jpeg") center center/cover no-repeat; */
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    isolation: isolate;
}

/* hero background  */
.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../../assets/images/school-hero.jpeg")
               center center/cover no-repeat;
    z-index:-2;
    animation:heroZoom 20s ease-in-out infinite alternate;
    transform-origin:center;
}

/* overlay  */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(10,24,55,.90) 0%,
        rgba(29,66,139,.72) 42%,
        rgba(29,66,139,.28) 72%,
        rgba(29,66,139,.05) 100%
    );
    z-index:-1;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

/*Hero overlay watermark*/
.hero-watermark{
    position:absolute;
    right:-80px;
    top:50%;
    transform:translateY(-50%);
    width:650px;
    height:650px;
    background:url("../../assets/images/logo.png") center/contain no-repeat;
    opacity:.06;
    pointer-events:none;
    z-index:0;
    animation:rotateLogo 80s linear infinite;
}

@keyframes rotateLogo{
    from{
        transform:translateY(-50%) rotate(0deg);
    }
    to{
        transform:translateY(-50%) rotate(360deg);
    }
}

@media(max-width:991px){
.hero-watermark{
    width:420px;
    height:420px;
    right:-120px;
    opacity:.04;
}
}

@media(max-width:576px){
.hero-watermark{
    display:none;
}
}

/* Content */
.hero-content{
    position:relative;
    z-index:5;
    max-width:680px;
}

/* Badge */
.hero-badge{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.2);
     animation:floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
    100%{

        transform:translateY(0);
    }
}

/* Title */
.hero-title{
    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:22px;
    font-family:'Poppins',sans-serif;
}

/* Text */
.hero-text{
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:620px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* Primary */
.hero-btn-primary{
    background:var(--secondary);
    color:#1A1A1A;
    font-weight:700;
    padding:14px 34px;
    border-radius:50px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(232,187,10,.30);
}

.hero-btn-primary:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(214,40,40,.28);
}

/* Outline */
.hero-btn-outline{
    border:2px solid rgba(255,255,255,.65);
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}

.hero-btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/* Info */
.hero-info{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.info-box h4{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:4px;
    font-size:28px;
}

.info-box span{
    color:#fff;
    font-size:15px;
}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero-title{

    font-size:56px;

}

}


@media(max-width:991px){

.hero-section{

    min-height:85vh;

    text-align:center;

}

.hero-content{

    margin:auto;

}

.hero-title{

    font-size:46px;

}

.hero-text{

    font-size:17px;

}

.hero-buttons{

    justify-content:center;

}

.hero-info{

    justify-content:center;

}

}


@media(max-width:576px){

.hero-section{

    min-height:80vh;

}

.hero-title{

    font-size:34px;

}

.hero-text{

    font-size:15px;

}

.hero-badge{

    font-size:12px;

}

.hero-btn-primary,

.hero-btn-outline{

    width:100%;

}

.hero-info{

    gap:20px;

}

.info-box{

    width:100%;

}

}





/* ---------------------------------------------------------------------------------------------------------------------- */

/* features section styling starts from here  */
.features-section{
    background:var(--section);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.features-section::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(29,66,139,.05);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.features-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(232,187,10,.08);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

/*========================*/
.section-tag{
    display:inline-block;
    background:rgba(29,66,139,.08);
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:18px;
    font-family:'Poppins',sans-serif;
}

.section-description{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*========================*/
.feature-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--secondary);
    transform:scaleX(0);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.feature-card:hover::before{
    transform:scaleX(1);

}

.feature-icon{
    width:80px;
    height:80px;
    background:rgba(29,66,139,.08);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    color:var(--primary);
    font-size:34px;
    transition:.35s;
}

.feature-card:hover .feature-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.feature-card h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;

}

.feature-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/*========================*/
@media(max-width:991px){
.section-title{
    font-size:34px;
}
.features-section{
    padding:70px 0;
}
}

@media(max-width:576px){
.section-title{
    font-size:28px;
}
.section-description{
    font-size:15px;
}
.feature-card{
    padding:30px 22px;
}
.feature-icon{
    width:70px;
    height:70px;
    font-size:28px;
}
}

/* ------------------------------------------------------------------------------------------------------------------------ */

/* our leadership vision section starts from here   */
.leadership-section{
    background:#fff;
    padding:50px 0;
    position:relative;
}

/* Card */
.leader-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid var(--secondary);
}

.leader-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.14);
}

/* Image */
.leader-image{
    overflow:hidden;
}

.leader-image img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.5s;
}

.leader-card:hover img{
    transform:scale(1.08);
}

/* Content */
.leader-content{
    padding:30px;
    position:relative;
}

.quote-icon{
    color:var(--secondary);
    font-size:28px;
    margin-bottom:18px;
}

.leader-content h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:4px;
}

.leader-content span{
    display:inline-block;
    color:var(--accent);
    font-weight:600;
    margin-bottom:18px;
}

.leader-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* Responsive */
@media(max-width:991px){
.leadership-section{
    padding:70px 0;
}
.leader-image img{
    height:300px;
}
}

@media(max-width:576px){
.leadership-section{
    padding:60px 0;
}
.leader-image img{
    height:260px;
}
.leader-content{
    padding:22px;
}
}

.compact-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
    max-width:430px;
    margin:auto;
}

.compact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.compact-card .leader-image{
    padding:25px 20px 10px;
}

.compact-card .leader-image img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #e8bb0a;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.compact-card .leader-content{
    padding:15px 28px 30px;
}

.compact-card h4{
    font-size:22px;
    font-weight:700;
    color:#1d428b;
    margin-bottom:6px;
}

.compact-card .designation{
    display:inline-block;
    background:#e8bb0a;
    color:#000;
    font-size:14px;
    font-weight:600;
    padding:6px 18px;
    border-radius:30px;
    margin-bottom:18px;
}

.compact-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

.quote-icon{
    font-size:28px;
    color:#d62828;
    margin-bottom:12px;
}

@media(max-width:768px){

    .compact-card{
        max-width:100%;
    }

    .compact-card .leader-image img{
        width:120px;
        height:120px;
    }

    .compact-card h4{
        font-size:20px;
    }

    .compact-card p{
        font-size:14px;
    }

}

.qualification{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    color:#666;
    font-size:15px;
    font-weight:600;
    margin:8px 0 12px;
}

.qualification i{
    color:#1d428b;
}


/* ---------------------------------------------------------------------------------------------------------------- */

/* campus gallery section starts from here  */
.campus-section{
    background:#fff;
    padding:50px 0;
}

/* Gallery */
.campus-gallery{
    background:#fff;
    padding:14px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* Image */
.campus-img{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    cursor:pointer;
}

.campus-img.large{
    aspect-ratio:16/10;
}

.campus-img.small{
    aspect-ratio:16/10;
}

.campus-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

/* Overlay */
.campus-img::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );
    opacity:0;
    transition:.35s;
    z-index:1;
}

/* Icon */
.campus-img::after{
    content:"\f00e";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.8);
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
    z-index:2;
}

.campus-img:hover img{
    transform:scale(1.08);
}

.campus-img:hover::before{
    opacity:1;
}

.campus-img:hover::after{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}

/* Button */
.gallery-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.gallery-btn:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-3px);
}

/* Indicators */
.campus-indicators{
    position:static;
    margin-top:25px;
}

.campus-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50% !important;
    background:#c8d2e3 !important;
    opacity:1;
    margin:0 5px !important;
}

.campus-indicators .active{
    width:30px !important;
    border-radius:20px !important;
    background:var(--primary) !important;
}

/* Responsive */
@media(max-width:991px){
.campus-section{
    padding:70px 0;
}
}

@media(max-width:576px){
.campus-section{
    padding:60px 0;
}

.campus-gallery{
    padding:10px;
}

.gallery-btn{
    width:100%;
}
}

/* -------------------------------------------------------------------------------------------- */

/* what our parents say section styling starts from here  */
.testimonial-section{
    background:var(--section);
    padding:50px 0;
}

/* Card */
.testimonial-card{
    background:#fff;
    max-width:850px;
    margin:auto;
    padding:55px;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    text-align:center;
    position:relative;
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

/* Quote */
.testimonial-card::before{
    content:"“";
    position:absolute;
    left:35px;
    top:20px;
    font-size:90px;
    color:rgba(29,66,139,.08);
    font-family:Georgia;
}

/* Stars */
.testimonial-stars{
    color:var(--secondary);
    font-size:20px;
    margin-bottom:20px;
    letter-spacing:3px;
}

/* Text */
.testimonial-card p{
    color:#555;
    line-height:1.9;
    font-size:18px;
    font-style:italic;
}

/* User */
.testimonial-user{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:35px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--secondary);
}

.testimonial-user h5{
    color:var(--primary);
    margin-bottom:4px;
    font-weight:700;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

/* Carousel */
.carousel-indicators{
    margin-top:25px;
}

.carousel-indicators button{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#c7d4ea;
}

.carousel-indicators .active{
    width:34px;
    border-radius:25px;
    background:var(--primary);
}

/* Responsive */
@media(max-width:991px){
.testimonial-card{
    padding:40px;
}
}

@media(max-width:576px){
.testimonial-section{
    padding:60px 0;
}
.testimonial-card{
    padding:30px 20px;
}
.testimonial-card p{
    font-size:15px;
}
.testimonial-user{
    flex-direction:column;
}
}

/* ----------------------------------------------------------------------------------------------------------------- */

/* quick contact section styling starts from here  */
.contact-section{
    padding:50px 0;
    background:var(--section);
}

/* Left */
.contact-info{
    background:var(--primary);
    color:#fff;
    padding:45px;
    border-radius:24px;
    height:100%;
    box-shadow:0 20px 45px rgba(29,66,139,.18);
}

.contact-info h4{
    font-weight:700;
    margin-bottom:15px;
}

.contact-info>p{
    color:rgba(255,255,255,.8);
    margin-bottom:35px;
}

.info-item{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.info-icon{
    width:55px;
    height:55px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--secondary);
    font-size:20px;
    flex-shrink:0;
}

.info-item h6{
    color:#fff;
    margin-bottom:5px;
}

.info-item p{
    color:rgba(255,255,255,.8);
    margin:0;
    line-height:1.7;
}

/* Right */
.contact-form{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

textarea.form-control{
    height:auto;
    min-height:150px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .25rem rgba(29,66,139,.15);
}

.contact-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.contact-btn:hover{
    background:var(--accent);
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:991px){
.contact-section{
    padding:70px 0;
}

.contact-info{
    margin-bottom:25px;
}
}

@media(max-width:576px){
.contact-section{
    padding:60px 0;
}

.contact-info,
.contact-form{
    padding:28px;
}

.info-item{
    gap:12px;
}

.info-icon{
    width:45px;
    height:45px;
    font-size:16px;
}

.contact-btn{
    height:52px;
}
}