/* ==============================================
   🌿 Tirgat School  - FINAL CSS
   ============================================== */

/* -------------------------------
   🌈 Root Color Variables
--------------------------------*/

:root {
  --primary: #fd5016;
  --primary-dark: #000000;
  --secondary-color: #f4b400;
  --accent: #00BCD4;
  --light-bg: #f9fbfd;
  --card-bg: #ffffff;
  --muted: #6c757d;
  --text-dark: #1e2b33;
  --text-light: #eaf6ff;
  --border-light: #dee2e6;
  --footer-bg: #000;
  --footer-text: #cfd8dc;
  --accent-shadow: rgba(0, 151, 167, 0.15);
}



/* Global Resets & Base */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Global Paragraph Styling - Consistent Size */
p {
  font-size: 1rem;
}
 
/* TOP BAR */
.top-bar {
  background: var(--primary-dark);
  color: var(--light-bg);
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.social i {
  margin-left: 10px;
  cursor: pointer;
}

.top-cta span {
  margin-right: 15px;
}

.apply-btn {
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
}

/* MAIN HEADER */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px 1px 0px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 55px;
  margin-right: 10px;
  margin-left: 15px;
}

.logo h2 {
  font-size: 20px;
  color: var(--primary);
}

.logo p {
  font-size: 12px;
  color: #666;
}

 
/* Mobile Nav */
.menu-icon {
  cursor: pointer;
  font-size: 20px;
}
 
li.nav-item {
    font-weight: 700;
    font-size: medium;
}

/* HELPLINE */
.helpline {
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--light-bg);
  padding: 10px 15px;
}

.helpline i {
  font-size: 20px;
  margin: 0;
}

.helpline span {
  font-size: 11px;
}

.helpline strong {
  font-size: 14px;
  display: block;
}

.admission-help {
    margin-left: 10px;
}
.menu-icon {
  margin-left: 15px;
  cursor: pointer;
}

/* STICKY HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.main-header.sticky-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}





hgroup {
  float: left;
  margin: 2px 2px 2px 10px;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100vh;
  background: #0b3d91;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.side-menu a:hover {
  color: #ff9800;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}


aside a {
  display: block;
  padding: 1.2rem;
  text-decoration: none;
  font-size: 1rem;
  color: #818181;
  border-bottom: 1px solid #414141;
}

.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  float: left;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 38px;
  margin: 10px 0;
  position: relative;
  border-top: 6px solid #303030;
  display: block;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #303030;
  height: 6px;
  width: 38px;
  position: absolute;
  top: -16px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* SIDE NAV */
.side-nav{
    width: 150px;
    height:100vh;
    background:#0b3d91;
    left:0;
    top:0;
    padding-top:20px;
}

/* main menu */
.side-nav a{
    display:block;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
}

/* dropdown parent */
.side-nav .dropdown{
    position:relative;
}

/* dropdown menu RIGHT SIDE */
.side-nav .dropdown-menu{
    position:absolute;
    left:100%;
    top:0;
    margin-left:5px;
    background:#0f4aa8;
    border:none;
    min-width:200px;
    display:none;
}

/* show on hover */
.side-nav .dropdown:hover .dropdown-menu{
    display:block;
}

/* dropdown links */
.side-nav .dropdown-item{
    color:#fff;
    padding:10px 15px;
}

.side-nav .dropdown-item:hover{
    background:#ffb400;
    color:#000;
}
 
.side-nav li.nav-item.dropdown {
    list-style: none;
    padding: 10px 0px;
}

.side-nav li.nav-item {
    list-style: none;
    padding: 10px 0px;
}




/* -------------------------------
   🧑‍⚕️ Banner Section
--------------------------------*/


.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: 0;
}

 


.carousel-caption.d-none.d-md-block h5 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.carousel-caption.d-none.d-md-block p {
  font-size: 1rem;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: none !important;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #fff !important;
}

.btn-white-clr {
  color: var(--light-bg);
}

.creative-btn--wrap .creative-slide--btn {
  color: var(--primary);
  margin-left: 18px;
  font-size: 1.4em;
  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
  font-weight: 400;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  outline: none;
  outline-color: transparent;
  box-shadow: none;
  will-change: transform;
  backface-visibility: hidden;
}

.creative-btn--circle .circle {
  position: absolute;
  right: calc(100% - 10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  clip-path: circle(25% at 50% 50%);
  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: #ffffff;
  will-change: transform;
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
  transform: translate(-100%, 0%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: #000;
}

.creative-btn--circle .circle-outline {
  fill: transparent;
  width: 10px;
  stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
  margin-left: 4pt;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
  position: absolute;
  left: 4pt;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
  transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
  transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
  margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
  clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
  transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
  transform: translate(0%, 0%);
  opacity: 1;
  border: 1px solid;
  border-radius: 50%;
}


/* -------------------------------
   🧑‍⚕️ About Section start

--------------------------------*/



.welcome-section {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px;
}

.left-visual {
  position: relative;
  width: 420px;
}

.main-img {
  width: 100%;
  border-radius: 12px;
}

.overlay-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  border-radius: 12px;
}

/* 🔴 PERFECT ROUND YELLOW CIRCLE */
.badge-circle {
  position: absolute;
  top: 40%;
  right: -60px;
  width: 140px;
  height: 140px;
  background: #f2a64b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge-circle span {
  line-height: 1.4;
}

.right-content h2 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
}

.right-content p {
  color: #555;
  line-height: 1.7;
}

.est {
  font-size: 60px;
  color: var(--primary);
  font-weight: 300;
  margin: 30px 0;
}

.know-more {
  color: #0b6b3a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #0b6b3a;
}



/* -------------------------------
   🧑‍⚕️ About Section end
--------------------------------*/

/* -------------------------------
   🧑‍⚕️ Our Leadership Section
--------------------------------*/

.leadership-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.leader-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
}

.leader-img img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 20px;
}

.leader-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 5px;
}

.designation {
  font-size: 14px;
  color: #6b7280;
}

/* -------------------------------
   💊 Infrastructure & Facilities
--------------------------------*/
.learning-by-doing {
  padding: 60px 20px;
  text-align: center;
  background: #f9faff;
  font-family: 'Poppins', sans-serif;
}

.learning-by-doing h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.learning-by-doing .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1 1 220px;
  text-align: left;
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  border-bottom-color: --var(primary);
  /* example hover color */
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}



/* -------------------------------
   💊 Learning by Doing Section start
--------------------------------*/



/* Image Styling */
#multiItemCarousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}



/* -------------------------------
   💊 Learning by Doing Section end
--------------------------------*/


/* -------------------------------
   💊  life at future link Section 
--------------------------------*/

.middle-wing {
  max-width: 1200px;
  margin: auto;
}

.middle-wing .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.middle-wing .text-area {
  flex: 1 1 500px;
}

.middle-wing h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.middle-wing p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

.middle-wing .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
}

.apply-btn:hover {
  background: --var(--secondary-color);
  border: 1px solid #fff;
}

.middle-wing .image-area {
  flex: 1 1 500px;
}

.middle-wing .image-area img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* -------------------------------
   💊  life at future link Section end 
--------------------------------*/



/* -------------------------------
   💊 CTA Background image Section  
--------------------------------*/
.admission-hero {
  background-image: url("../images/building/frontpic.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* 🔥 FIXED BACKGROUND */
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 70%;
  padding: 80px 20px;
  background: #fff;
  margin: 0 auto;
  border-radius: 15px;
}

.hero-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  color: #000;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}







/* -------------------------------
   💊 CTA Background image Section End  
--------------------------------*/




.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  min-height: 100vh;
}

/* Stack */

.hero-stack {
  position: relative;
}

.hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 2rem;
  transition: transform 0.6s;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swap animation */

.hero-swap {
  animation: heroSwap 1.3s ease-out forwards;
}

@keyframes heroSwap {
  30% {
    transform: translate(-500px, -50%) rotateY(65deg);
  }

  100% {
    transform: translate(-30px, -50%) scale(0.5);
    z-index: -1;
  }
}





.bg-bg {
  background-image: url("../images/bg/backgournddesign.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
}



.middle-wing {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}



@keyframes gelatine {

  0%,
  100% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.9, 1.1);
  }

  50% {
    transform: scale(1.1, 0.9);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

/* ANIMATED BACKGROUND */

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background-color: #ff3cac;
  background-image: linear-gradient(225deg,
      #ff3cac 0%,
      #784ba0 50%,
      #2b86c5 100%);
  animation: animate 25s linear infinite;
  bottom: -150px;
  opacity: 0.5;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li {
  opacity: 0.12 !important;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* -------------------------------
    Treatment Cards
--------------------------------*/
.treatment-card {
  border-radius: 16px;
  background-color: var(--card-bg);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.treatment-card img {
  border-radius: 10%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 151, 167, 0.1);
  transition: all 0.4s ease;
  width: 30%;
}

.treatment-card:hover {
  transform: translateY(-8px);
  background: var(--text-light);
  box-shadow: 0 12px 30px var(--accent-shadow);
}

.treatment-card:hover img {
  transform: scale(1.08);
}

.treatment-card h4 {
  color: var(--primary-dark);
}

.treatment-card p {
  color: var(--muted);
}

section#treatments h4.fw-semibold.mb-3 {
  font-weight: 500 !important;
  margin-bottom: 5px !important;
  font-size: 14px;
}

section#treatments p {
  font-size: 14px;

}

/* -------------------------------
   🖼 Gallery
--------------------------------*/


/* -------------------------------
   📢 CTA Section
--------------------------------*/
#cta {
  background: var(--primary);
  color: var(--text-light);
  text-align: center;
  position: relative;
  z-index: 1;
}

#cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

#cta p {
  color: #e3faff;
  margin-bottom: 1.5rem;
}

#cta .btn-light {
  background-color: #fff;
  color: var(--primary-dark);
  border-radius: 30px;
  padding: 0.7rem 2rem;
  transition: all 0.3s ease;
}

#cta .btn-light:hover {
  background-color: #e0f7fa;
  color: var(--primary);
  transform: translateY(-3px);
}

.cta-back::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}




/* -------------------------------
   📢  Treatment Result Section
--------------------------------*/


.carousel-item {
  transition: transform 0.8s ease, opacity 0.8s ease;
}






/* -------------------------------
   📢  Appointment Section 
--------------------------------*/

#appointment {
  background-color: #fafbff;
}

.why-choose-box {
  background-color: var(--primary) !important;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.why-choose-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  text-transform: capitalize;
}

.book-box {
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.4s ease;
}

.book-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2, 136, 209, 0.12);
}

.book-box h5 {
  font-family: 'Poppins', sans-serif;
  color: #b4574e;
  font-style: italic;
}

.book-box h2 {
  color: #1a2d3f;
}

.form-control,
.form-select {
  border: 1px solid #b4574e;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #0288d1;
  box-shadow: 0 0 6px rgba(2, 136, 209, 0.2);
}

.btn-primary {
  background-color: #b4574e;
  border: none;
}

.btn-primary:hover {
  background-color: #963f3b;
}

.accordion-button {
  background-color: #fff !important;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #0288d1;
  box-shadow: 0 4px 12px rgba(2, 136, 209, 0.2);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  color: #555;
}

.accordion-item {
  border: none;
}

.info-box {
  background-color: var(--card-bg);
  border-left: 5px solid var(--primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 151, 167, 0.1);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px var(--accent-shadow);
}

.info-box h3 {
  color: var(--primary);
  font-weight: 700;
}

.info-box p {
  color: var(--muted);
  line-height: 1.7;
}

p.timing {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  border: 1px solid var(--border-light);
  border-radius: 50%;
  padding: 15px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #a85046;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

div#testimonialSlider .carousel-item.active h5.fw-semibold.text-primary.mb-0 {
  color: var(--primary) !important;
}


/* -------------------------------
   ⚙️ Footer
--------------------------------*/
.footer-section {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-bottom: 0 !important;
}


.footer-title {
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.footer-subtitle {
  color: #fff;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-bottom: 10px;
}

.footer-links {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.8;
}

.footer-link {
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #ffffff20;
  text-align: center;
  padding: 15px 0;
}

.footer-bottom p {
  color: var(--footer-text) !important;
  font-size: 0.9rem;
}

.contact-info i {
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff !important;
  padding-right: 10px;
}

.contact-info a:hover {
  color: #0d6efd;
  /* Bootstrap primary color */
  text-decoration: underline;
}

.contact-info {
  line-height: 1.6;
}



/* ==============================================
   🌿 END Footer CSS
   ============================================== */

/* -------------------------------
   🧑‍⚕️ Call and Whatsapp  Section
--------------------------------*/
/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

/* Common Button Styles */
.floating-buttons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Call Button */
.call-btn {
  background-color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25d366;
}

/* Hover Effects */
.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}



/* ==============================================
   🌿 END Call and Whatsapp CSS
   ============================================== */






/* ==============================================
   
  🌿 About US Page css Start

   ============================================== */

/*this css use top banner in header*/

.inner-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background: url("../images/banner/about-banner.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-content {
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
  color: #fff;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 15px;
}

.banner-content a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.banner-content span {
  margin: 0 6px;
  opacity: 0.7;
}

/* Mobile Responsive */
/*@media (max-width: 768px) {*/
/*  .inner-banner {*/
/*    height: 220px;*/
/*  }*/

/*  .banner-content h1 {*/
/*    font-size: 28px;*/
/*  }*/
/*}*/


/*  History Section Start   */

.history-section {
  background-color: #ffffff;
}

.history-title {
  color: vsr(--primary);
  font-size: 2.5rem;
  font-weight: 600;
}

.history-content {
  position: relative;
  padding-left: 30px;
}

.history-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 100%;
  background-color: #d9d9d9;
}

.history-block {
  margin-bottom: 30px;
}

.history-block h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.history-block p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .history-content {
    padding-left: 15px;
  }

  .history-title {
    font-size: 2rem;
  }
}

/* History Section End  */


/* philosophy Section  */

.philosophy-section {
  background: var(--bs-secondary-bg);
  padding: 120px 20px;
  text-align: center;
}

.quote-icon {
  font-size: 120px;
  color: var(--primary);
  margin-bottom: 30px;
  font-family: serif;
  line-height: 0.2;
}

.philosophy-section h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 400;
  color: #1f2a44;
  max-width: 900px;
  margin: 0 auto 30px;
}

.philosophy-section p {
  font-size: 18px;
  color: #44506a;
  max-width: 720px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 80px 16px;
  }

  .philosophy-section h2 {
    font-size: 28px;
  }

  .philosophy-section p {
    font-size: 16px;
  }
}

/* ==============================================
   
  🌿 About US Page css End

   ============================================== */




/* ==============================================
   
  🌿  mission & vision Page css Start

   ============================================== */

/* mission and vision section start  */

.mission-vision {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
 
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1d2b64;
  margin-bottom: 15px;
}

.section-title span {
  color: #1d2b64;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto 60px;

  font-size: 16px;
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.mv-box {
  max-width: 450px;
  margin: auto;
}

.mv-icon {
  font-size: 48px;

  margin-bottom: 20px;
}

.mv-box h3 {
  font-size: 26px;

  margin-bottom: 15px;
}

.mv-box p {

  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }
}

.mv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(77%) saturate(1346%) hue-rotate(208deg) brightness(92%) contrast(92%);
}

.mv-icon img {
  filter: none;
}

.mv-icon {
  background: #1d2b64;
}

.mv-icon img {
  filter: brightness(0) invert(1);
}

.mv-icon {
  transition: all 0.4s ease;
}

.mv-box:hover .mv-icon {
  transform: rotate(6deg) scale(1.12);
}

.mv-box {
  transition: all 0.35s ease;
}

.mv-box:hover {
  transform: translateY(-12px);
}

.mv-icon img {
  transition: all 0.4s ease;
}

.mv-box:hover .mv-icon img {
  transform: scale(1.15);
}

.mv-box h3 {
  transition: color 0.3s ease;
}





/* mission and vision section end   */



/* ==============================================
   
  🌿  mission & vision Page css End

   ============================================== */




















/* ==============================================
   
  🌿  mission & vision Page css End

   ============================================== */




/* Our leasership section start */
.chairman-section {
  padding: 90px 0;
  background: #f8fafc;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

.chairman-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.chairman-image::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #b00020;
  /* brand color */
}

.chairman-image img {
  width: 100%;
  display: block;
}

.chairman-content .role {
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
}

.chairman-content h2 {
  font-size: 34px;
  margin: 10px 0 25px;
  color: #0f172a;
}

.quote-box {
  background: #ffffff;
  border-left: 5px solid var(--primary);
  padding: 22px 26px;
  margin-bottom: 22px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  position: absolute;
  top: -18px;
  left: 20px;
  font-size: 60px;
  color: #b00020;
  opacity: 0.2;
}

.quote-box p {
  font-size: 18px;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}

 










/* Our leadership section end */


/* ==============================================
   
  🌿   Leadership section Page css End

   ============================================== */


/* ==============================================
   
  🌿    Facilities  Page css  Start

   ============================================== */

.academies-section {
  background: url("../images/building/frontpic.png") center/cover no-repeat;
  padding: 90px 0;
  position: relative;
}

.academies-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.academies-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: #fff;
}

/* LEFT */
.academies-left .small-title {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.8;
}

.academies-left h2 {
  font-size: 48px;
  margin: 15px 0;
}

.academies-left p {
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 25px;
}



/* RIGHT GRID */
.academies-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD BASE */
.academy-card {
background: var(--primary);
  padding: 28px;
  border-radius: 18px;
  min-height: 220px;
  position: relative;
  transition: 0.35s ease;
  cursor: pointer;
}

.academy-card img {
  width: 36px;
  margin-bottom: 15px;
}

.academy-card h4 {
  margin-bottom: 10px;
}

.academy-card p {
  font-size: 14px;
  opacity: 0.9;
}

.academy-card .arrow {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 20px;
  transition: 0.3s;
}

/* GLASS CARD */
.academy-card.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* RED CARD */
.academy-card.red {
  background: var(--primary);
}

/* HOVER EFFECT */
.academy-card:hover {
  transform: translateY(-8px);
}

.academy-card:hover .arrow {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .academies-wrapper {
    grid-template-columns: 1fr;
  }

 
}

.academies-left {
  margin: auto 0;
}

 

/* smart class room start */

.info-image-section {
  padding: 80px 20px;
  background: #ffffff;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.info-content {
  flex: 1;
}

.info-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 30px;
}

.info-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-container {
    flex-direction: column;
  }

  .info-content h2 {
    margin-top: 20px;
  }
}

/* smart class room end */


.auto-blink {
  animation: blinkEffect 1.5s infinite;
}

@keyframes blinkEffect {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}







/* ==============================================
   
  🌿    Facilities  Page css end

   ============================================== */






/* ==============================================
   
  🌿    Contact us   Page css Start

   ============================================== */


.contact-info-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.info-box .icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.info-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}















/* ==============================================
   
  🌿     Contact us  Page css end

   ============================================== */



/* ==============================================
   
  🌿     Footer Section css Start

   ============================================== */










.site-footer {
  background: var(--primary);
  color: #ccc;
  padding: 50px 0 0px;
  font-family: Arial, sans-serif;
}
.foo-logo {
    background: #ffffff;
    border-radius: 20px;
    margin: 0 auto;
    justify-content: center;
    align-content: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-col p {
  line-height: 1.7;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #f9f9f93d;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #777;
}



.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons .icon {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #2f2f6f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons .icon:hover {
  background: #ffd400;
  color: #000;
}

.copyright-txt {
  color: var(--footer-text);

}


/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-bottom p {
    margin-bottom: 0px;
}


/* ==============================================
   
  🌿     Footer Section css End

   ============================================== */



/* ==============================================
   
  🌿     Academic Affilication css Start

   ============================================== */
/* activity-section  */
.activity-section {
  padding: 40px 20px;
  background: #f9faff;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0));
}

.activity-overlay {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding: 20px;
  background: #000000;
  background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(9, 9, 121, 0.05) 72%, rgba(0, 212, 255, 0) 78%);
}

.activity-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.activity-overlay p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Hover Effect */
.activity-card:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    height: 280px;
  }
}

.activity-overlay p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  display: none;
}

.activity-card:hover p {
  display: block;
  transition: all;
}

/* activity-section */



/* ==============================================
   
  🌿     Academic Affilication css End

   ============================================== */


/* ==============================================
   
  🌿     Academic Calendar css Start

   ============================================== */












.pdf-container {
  width: 100%;
  background: #222;
  padding: 10px;
  border-radius: 8px;
}

#pdf-render {
  width: 100%;
  background: #fff;
}

.pdf-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.pdf-controls button,
.download-btn {
  background: #6a4cff;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

 


/* ==============================================
   
  🌿     Academic Calendar css End

============================================== */



/* ==============================================
   
  🌿     Faculty page css Start

============================================== */











/* leadership table section css */

.leadership-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

 

.leadership-title {
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.leadership-title .icon {
  font-size: 28px;
  color: #2b2b7b;
}

.leadership-table {
  width: 100%;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 600;
  color: #007b83;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 20px;
  background: #f3f3f3;
  margin-bottom: 12px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.table-row:hover {
  background: #eaeaea;
}

/* Responsive */
@media (max-width: 768px) {
  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .table-row div:first-child {
    font-weight: 600;
    color: #007b83;
  }
}




/* leadership table section css end */
/* faculty table section css start */

.faculty-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

 

/* Heading */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.section-title .icon {
  font-size: 28px;
  color: #5a5ae6;
}

.section-title h2 {
  background: #5a5ae6;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 600;
}

/* Table */
.faculty-table {
  width: 100%;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  font-weight: 600;
  color: #007b83;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  padding: 18px 20px;
  background: #f3f3f3;
  margin-bottom: 12px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.table-row:nth-child(even) {
  background: #eaeaea;
}

.table-row:hover {
  background: #dcdcdc;
}

/* Responsive */
@media (max-width: 992px) {
  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-row div {
    position: relative;
    padding-left: 0;
  }

  .table-row div:nth-child(1)::before {
    content: "Name: ";
    font-weight: 600;
  }

  .table-row div:nth-child(2)::before {
    content: "Qualification: ";
    font-weight: 600;
  }

  .table-row div:nth-child(3)::before {
    content: "Designation: ";
    font-weight: 600;
  }

  .table-row div:nth-child(4)::before {
    content: "Experience: ";
    font-weight: 600;
  }
}




/* faculty table section css end  */

/* ==============================================
   
  🌿     Faculty page css End

============================================== */

/* ==============================================
   
  🌿     Online admission  page css start

============================================== */

 

.admission-section {
  padding: 80px 20px;
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

 

.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111;
}

.admission-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.admission-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #111;
}

.admission-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.admission-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.admission-content ul li {
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }

  .admission-content {
    padding: 30px 20px;
  }
}



/* ==============================================
   
  🌿     Online admission  page css End

============================================== */


/* ==============================================
   
  🌿   Gallery   page css Start

============================================== */


  .school-gallery {
  padding: 80px 0;
  background: #f5f7fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0c3c78;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media(max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}



/* ==============================================
   
  🌿        Gallery   page css End

============================================== */


/* ==============================================
   
  🌿         Contact Us css start

============================================== */

.contact-info h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p{
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-form-box{
    width: 100%;
    /* background: #fff; */
    /* padding: 40px; */
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

.contact-form-box h3{
    font-size: 24px;
    color: #000000;
}

.subtitle{
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form-box form input,
.contact-form-box form select,
.contact-form-box form textarea{
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.row-input{
    display: flex;
    gap: 15px;
}

.row-input input{
    width: 50%;
}

.contact-form-box button{
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover{
    background: #8f0012;
}
i.fas.fa-phone-alt {
    transform: rotate(90deg);
}

/* Responsive */
@media(max-width: 992px){
    .contact-container{
        flex-direction: column;
    }

    .contact-info,
    .contact-form-box{
        width: 100%;
    }

    .row-input{
        flex-direction: column;
    }

    .row-input input{
        width: 100%;
    }
}
.pdf-wrapper iframe {
    width: 100%;
    height: 1000px;
}

/* ==============================================
   
  🌿         Contact css End

============================================== */


/* ==============================================
   
  🌿          Gallery css start

============================================== */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gallery-card img{
width:100%;
height:230px;
object-fit:cover;
transition:0.4s;
}

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
opacity:0;
transition:0.4s;
}

.gallery-overlay h4{
color:#fff;
margin-bottom:15px;
font-size:20px;
}

.gallery-btn{
background:#007bff;
color:#fff;
padding:8px 18px;
border-radius:5px;
text-decoration:none;
font-size:14px;
}

.gallery-btn:hover{
background:#0056b3;
}

.gallery-card:hover img{
transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}





/* ==============================================
   
  🌿          Gallery css End

============================================== */



































/* ==============================================
   📱 Responsive CSS - Mobile & Tablet Styles
   ============================================== */

/* Mobile Header */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary);
        color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 30px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .logo img {
        width: 10%;
        margin-right: 10px;
        margin-left: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: #ffffff;
        font-size: 18px;
        margin: 15px 0;
        display: block;
    }

    .nav-menu a:hover {
        color: var(--secondary-color);
    }

    .menu-icon {
        display: block;
    }
}

/* Top Bar Mobile */
@media (max-width: 767px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .admission-help {
        display: none;
    }

    i.fas.fa-phone {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .social {
        margin-bottom: 5px;
    }

    .top-cta span {
        display: block;
        margin-bottom: 5px;
    }
    .carousel-indicators {
    margin-bottom: 0px
}
}

/* Leadership Mobile */
@media (max-width: 767px) {
    .leadership-grid {
        gap: 20px;
    }

    .leader-card {
        max-width: 100%;
        padding: 20px;
    }
}

/* Desktop: sirf first image show kare */
@media (min-width: 992px) {
    #multiItemCarousel .carousel-item .col-md-3 {
        display: none;
    }

    #multiItemCarousel .carousel-item .col-md-3:first-child {
        display: block;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* Mobile */
@media (max-width: 991px) {
    #multiItemCarousel img {
        height: 220px;
    }
}

/* Hero Content Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* Middle Wing Mobile */
@media (max-width: 750px) {
    .content {
        flex-direction: column-reverse;
    }

    .btn {
        margin: 10px auto 40px;
    }
}

/* Carousel Item Mobile */
@media (max-width: 767px) {
    .carousel-item .col-md-3 {
        display: none;
    }

    .carousel-item .col-md-3:nth-child(1) {
        display: block;
    }
}

/* Floating Buttons Responsive */
@media (max-width: 576px) {
    .floating-buttons {
        right: 15px;
        bottom: 20px;
    }

    .floating-buttons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* General Responsive */
@media (max-width: 767px) {
    .consultant-info {
        padding-top: 30px;
    }

    section#cta .cta-box {
        padding: 20px !important;
    }

    section#appointment .why-choose-box {
        padding: 20px !important;
    }

    section#appointment .book-box {
        padding: 20px !important;
    }
    .container {
    max-width: 100% !important;
    } 
}


section.campus-section {
    background: var(--primary);
}
.form-group {
    padding: 20px;
    display: flex;
    gap: 15px;
}

.campus-section .campus-subtext {
    color: #fff;
    font-size: 30px;
}
.campus-section .campus-title {
    color: #fff;
    font-weight: 900;
    font-size: 3rem;
}

.social i {
    margin-left: 10px;
    cursor: pointer;
    color: #fff;
    }
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 20px 0px;
}

ul.dropdown-menu.show {
    margin-top: 15px;
}
.visit-btn{
display:inline-block;
margin-top:20px;
padding:14px 32px;
background:#ffffff;
color:#8b0d2f;
font-size:20px;
font-weight:600;
border-radius:30px;
text-decoration:none;
transition:0.3s;
}

.visit-btn:hover{
background:#ffdede;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.campus-card-content h5 {
    color: #fff;
    padding: 11px;
    align-items: center;
    font-weight: 700;
}

.campus-card-content:hover span {
    float: right;
    transition: revert-layer;
}

.footer-logo img.School.Logo {
    width: 100%;
}

.campus-card img {
    width: 100%;
    border-radius: 20px;
}

.footer-container-bottam {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 30px;
    gap: 30px;
}

@media (max-width: 576px) {
    .footer-container-bottam {
        grid-template-columns: 1fr;
    }
}









/*faculty-table*/

 .faculty-table{
width:100%;
border-collapse:collapse;
font-family:Arial, sans-serif;
}

.faculty-table th{
background:#990000;
color:#fff;
padding:12px;
text-align:center;
font-size:16px;
}

.faculty-table td{
padding:10px;
text-align:center;
border:1px solid #ddd;
font-size:14px;
}

.faculty-table tr:nth-child(even){
background:#f7f7f7;
}

.faculty-table tr:hover{
background:#f1f1f1;
transition:0.3s;
}

.faculty-table{
box-shadow:0 5px 15px rgba(0,0,0,0.1);
border-radius:6px;
overflow:hidden;
}
.faculty-table table#table {
    width: 100%;
}
.faculty-table th span {
    color: #fff !important;
}

 
.form-check{
background:#f2f2f2;
padding:10px;
margin:15px 0;
font-size:14px;
display:flex;
gap:8px;
align-items:flex-start;
}

.form-check a{
color:#0066cc;
text-decoration:underline;
}
.form-check input[type="checkbox"] {
    width: 10%;
 
}

/* Mobile Responsive */
@media (max-width:768px){
.faculty-table th,
.faculty-table td{
font-size:12px;
padding:8px;
}
img.footer-company {
    width: 35%;
}
}

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-content{
position:relative;
max-width:500px;
width:90%;
}

.popup-img{
width:100%;
border-radius:8px;
}

.close-btn{
position:absolute;
top:-10px;
right:-10px;
background:#fff;
padding:5px 10px;
cursor:pointer;
font-size:22px;
border-radius:50%;
}

div#exampleModalLong {
    z-index: 9999;
}


.gallery-item{
margin-bottom:25px;
}

.gallery-thumb{
position:relative;
overflow:hidden;
border-radius:8px;
}

.gallery-thumb img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
}

.gallery-thumb:hover img{
transform:scale(1.1);
}

.overlayer{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.gallery-thumb:hover .overlayer{
opacity:1;
}

.lbox-details{
text-align:center;
color:#fff;
}

.lbox-details span{
font-size:28px;
color:#fff;
}

@media (max-width:768px){

.gallery-thumb img{
height:180px;
}

}

.ulockd-service-details h3 {
    padding: 10px 25px;
}
.ulockd-service-details p {
    padding: 0px 25px;
}
img.footer-company {
    width: 100px;
}
/* ==============================================
   📱 END Responsive CSS
   ============================================== */

