/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #f79b56;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #f79b56 !important;
  color: #f79b56;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #f79b56;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #f79b56;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #f79b56;
}

.btn-secondary:active {
  background: #f79b56;
  color: #fff;
  border: 1px solid #fff;
}

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

.btn-primary-outline {
  border: 1px solid #f79b56;
  color: #f79b56;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #f79b56;
  color: #f79b56;
}

.btn-primary-outline:active {
  background: #f79b56;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #f79b56;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #f79b56;
}

a.text-primary:hover {
  color: #f79b56 !important;
}

a.text-light:hover {
  color: #f79b56 !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #f79b56;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #714329;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #f79b56 !important;
}

.bg-secondary {
  background: #714329 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #f79b56 !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #f79b56;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}
.map-and-image {
  display: flex;
  gap: 20px; /* Adds spacing between the map and image */
  align-items: center; /* Vertically aligns the map and image */
}

.my-custom-map {
  flex: 1; /* Ensures the map takes up available space */
}

.map-image {
  flex: 1; /* Ensures the image takes up available space */
}

.map-image img {
  max-width: 100%; /* Makes the image responsive */
  height: auto;
}

@media (max-width: 768px) {
  .map-image {
    display: none; /* Hides the image on screens smaller than 768px */
  }

  .my-custom-map iframe {
    width: 100%; /* Makes the map width 100% on small screens */
    height: 300px; /* Adjusts the height for smaller screens */
  }
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    background: #714329 !important;
  }
}


.navigation {
  background-image: linear-gradient(to right, transparent 50%, #f79b56 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #f79b56 30%);
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #f79b56;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #e78e5a;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #f79b56;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #f79b56;
  background: transparent;
}
/* Hero Section Animation Styles */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
}

.hero-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  opacity: 0;
  animation: heroZoomOut 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 35, 66, 0.9) 30%, rgba(244, 97, 9, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

/* Animation Keyframes */
@keyframes heroZoomOut {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-text-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 0.8s ease forwards;
}

@keyframes textFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay System */
[data-delay="0.3s"] { animation-delay: 0.3s; }
[data-delay="0.6s"] { animation-delay: 0.6s; }
[data-delay="0.9s"] { animation-delay: 0.9s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-image {
    object-position: 70% center;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  @media (max-width: 768px) {
    .hero-section {
      min-height: auto;
      padding: 60px 0;
    }
  }
  .gradient-overlay {
    background: linear-gradient(45deg, rgba(10, 35, 66, 0.95) 30%, rgba(244, 97, 9, 0.5) 100%);
  }
  
  h1.text-white {
    font-size: 2.5rem;
  }
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #f79b56;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #f79b56;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #f79b56;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #f79b56;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #f79b56 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.youtube-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #ff9900;
  font-weight: bold;
  padding: 8px 14px; /* Reduced padding */
  border-radius: 6px; /* Slightly smaller border radius */
  text-decoration: none;
  font-size: 18px; /* Reduced font size */
  border: 2px solid #fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.youtube-btn:hover {
  background-color:  #ffcc66;
  transform: translateY(-2px);
}

.youtube-btn i {
  margin-right: 6px; /* Reduced spacing */
  font-size: 16px; /* Smaller icon size */
}
.student-portal-btn {
  background: #ff9900; /* Blue color */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}

.student-portal-btn:hover {
  background: #ffcc66; /* Darker blue on hover */
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .student-portal-btn {
    width: 100%; /* Full-width button on smaller screens */
    text-align: center;
    display: block;
    padding: 10px;
  }
}

.cuet-classes-section {
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.container-clat {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.section-heading1 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.class-timing {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-list li {
  margin-bottom: 15px;
  padding: 10px;
  border-left: 4px solid #114883;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.curriculum-list li strong {
  color: #114883;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-heading1 {
    font-size: 1.5rem;
  }

  .class-timing {
    font-size: 1rem;
  }

  .curriculum-list li {
    font-size: 0.9rem;
  }
}

      

        .container-uni {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        
        .institutes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
        }

        .institute-card {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .institute-card i {
            color: #007bff;
            font-size: 20px;
        }

        .institute-card:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .institutes-grid {
                grid-template-columns: 1fr;
            }
        }
        .timeline-container {
          max-width: 800px;
          margin: 0 auto;
          background: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          overflow: hidden;
      }

      .timeline-header {
          background: #2c3e50;
          color: white;
          padding: 20px;
          text-align: center;
      }

      .timeline-table {
          width: 100%;
          border-collapse: collapse;
      }

      .timeline-table th,
      .timeline-table td {
          padding: 15px;
          text-align: left;
          border-bottom: 1px solid #eee;
      }

      .timeline-table th {
          background-color: #34495e;
          color: white;
      }

      .timeline-table tr:nth-child(even) {
          background-color: #f9f9f9;
      }

      .timeline-table tr:hover {
          background-color: #f5f5f5;
      }

      .tentative {
          color: #e74c3c;
          font-size: 0.9em;
      }

      @media screen and (max-width: 600px) {
         

          .timeline-container {
              border-radius: 0;
          }

          .timeline-table th,
          .timeline-table td {
              padding: 10px;
              font-size: 14px;
          }

          .timeline-header {
              padding: 15px;
          }

          .timeline-header h1 {
              font-size: 1.5em;
          }
      }

      .faculty-section {
        max-width: 1100px;
        margin: 40px auto;
        padding: 20px;
        text-align: center;
      }
    
      .section-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
      }
    
      .faculty-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }
    
      .faculty-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
        width: 320px;
        text-align: center;
        padding: 15px;
      }
    
      .faculty-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
      }
    
      .faculty-card:hover {
        transform: translateY(-5px);
      }
    
      .faculty-card a {
        display: block;
        text-decoration: none;
        color: #1e1e4b;
        font-size: 18px;
        font-weight: bold;
        padding: 10px 0;
        transition: color 0.3s;
      }
    
      .faculty-card a:hover {
        color: #ffcc66;
      }
    
      .faculty-card small {
        font-size: 15px;
        color: #555;
      }
    
      @media (max-width: 992px) {
        .faculty-grid {
          flex-direction: column;
          align-items: center;
        }
    
        .faculty-card {
          width: 90%;
        }
      }

    .testimonial-section {
      max-width: 1000px;
      margin: 30px auto;
      padding: 20px;
      text-align: center;
  }

  .testimonial-title {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
  }

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

  .testimonial-video {
      flex: 1;
      min-width: 300px;
      max-width: 480px;
      position: relative;
  }

  .testimonial-video iframe {
      width: 100%;
      height: 250px;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
      .testimonial-container {
          flex-direction: column;
          align-items: center;
      }
  }
  .container-testimonial {
    max-width: 900px; /* Adjust container width */
    margin: auto;
}
.video-card {
    display: flex;
    justify-content: center;
}

.custom-card {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-video-container {
    position: relative;
    width: 100%;
    height: 500px; /* Increased height */
    overflow: hidden;
    border-radius: 10px;
}

.custom-video-container video {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.custom-card-body {
    padding: 10px 0;
}

.custom-video-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

h6 {
    font-size: 14px;
    color: gray;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #06BBCC;
  padding: 2px;
}

@media (max-width: 768px) {
  .testimonial-image {
    width: 60px;
    height: 60px;
  }
}
 
.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-list li {
  margin-bottom: 15px;
  padding: 10px;
  border-left: 4px solid #114883;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.curriculum-list li strong {
  color: #114883;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-heading1 {
    font-size: 1.5rem;
  }

  .class-timing {
    font-size: 1rem;
  }

  .curriculum-list li {
    font-size: 0.9rem;
  }
}
.program-structure-wrapper {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.structure-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: #4a5568;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.curriculum-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
}

.card-header {
  padding: 1.5rem;
  background: #1a365d;
  border-radius: 12px 12px 0 0;
}

.card-title {
  color: #1a365d;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.4;

}

.card-subtitle {
  font-size: 1.1rem;
  color: #cbd5e0;
  display: block;
  margin-top: 0.5rem;
}

.card-body {
  padding: 2rem 1.5rem;
}

.curriculum-group {
  margin-bottom: 1.5rem;
}

.subject-category {
  color: #2d3748;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.subject-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f6ad55;
  border-radius: 50%;
}

.subject-list {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
}

.subject-list li {
  margin-bottom: 0.5rem;
  position: relative;
  color: #4a5568;
}

.subject-list li::before {
  content: "•";
  color: #f6ad55;
  position: absolute;
  left: -1rem;
}

.language-options {
  color: #4a5568;
  margin: 0;
  padding-left: 1.5rem;
}

.ias-card .card-header {
  background: #2b6cb0;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .structure-grid {
      gap: 1.5rem;
  }
}
.key-features {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.25rem;
  color: #0A2342;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1.75rem;
  color: #F46109;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  color: #0A2342;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-desc {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 1.75rem;
  }
  
  .features-grid {
      gap: 1.5rem;
  }
  
  .feature-card {
      padding: 1.5rem;
  }
}

.upsc-enrollment-section {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.upsc-enrollment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.upsc-enroll-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.upsc-section-heading {
  color: #0A2342;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.upsc-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #F46109;
}

.upsc-enroll-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upsc-enroll-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.upsc-enroll-item:last-child {
  border-bottom: 0;
}

.upsc-icon {
  font-size: 1.8rem;
  min-width: 50px;
  text-align: center;
}

.upsc-content h3 {
  color: #0A2342;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.upsc-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.upsc-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.upsc-advantage {
  text-align: center;
  padding: 1.5rem;
  background: #fff8f4;
  border-radius: 8px;
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.upsc-advantage h3 {
  color: #0A2342;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.upsc-advantage p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .upsc-enrollment-container {
      grid-template-columns: 1fr;
  }
  
  .upsc-enroll-card {
      padding: 1.5rem;
  }
  
  .upsc-section-heading {
      font-size: 1.5rem;
  }
}
.card-video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px !important;
}

.video-container {
  position: relative;
  width: 80%; /* Reduce width */
  height: 300px; /* Increase height */
  margin: auto; /* Center the video */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card {
  border: none;
  transition: transform 0.3s ease-in-out;
}

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

.card-body {
  padding: 15px;
}

h4.video-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

h6 {
  font-size: 14px;
  color: gray;
}
.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}


.form-control:focus {
  border-color: #494a43;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #e7b187;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 200px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #f79b56;
}

.filter-controls li:hover {
  color: #f79b56;
}

/*# sourceMappingURL=maps/style.css.map */
.app-promotion-section {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.app-promotion-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-content {
  max-width: 500px;
}

.app-title {
  color: #0A2342;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.app-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.org-code-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.code-label {
  display: block;
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.code-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.org-code {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #F46109;
  background: #fff4ed;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.copy-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.copy-btn:hover {
  color: #F46109;
}
.download-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.ios-btn {
  background: #0A2342;
  color: white;
}

.android-btn {
  background: #F46109;
  color: white;
}
.web-btn {
  background: #0A2342;
  color: white;
}
.store-btn:hover {
  transform: translateY(-2px);
}

.phone-mockup {
  position: relative;
  background: #0A2342;
  border-radius: 30px;
  padding: 1rem;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.screen-content {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 177%; /* 16:9 aspect ratio */
}

.screen-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-logo {
  text-align: center;
  margin-bottom: 20px;
}

.app-logo img {
  width: 100px;
}

@media (max-width: 768px) {
  .app-promotion-container {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .code-wrapper {
      justify-content: center;
  }
  
  .download-btns {
      justify-content: center;
  }
  
  .phone-mockup {
      max-width: 250px;
  }
}
.unique-event-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.unique-event-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.unique-event-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.unique-event {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.unique-event-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.unique-event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.unique-event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.unique-event-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .unique-event-gallery {
      grid-template-columns: 1fr;
  }
}
.unique-event-video-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 20px;
}

.unique-event-video-player {
  width: 100%;
  max-width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.unique-event-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.unique-event-image {
  width: 30%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .unique-event-video-gallery {
      flex-direction: column;
      align-items: center;
  }

  .unique-event-video-player {
      max-width: 100%;
      height: auto;
  }

  .unique-event-gallery {
      flex-direction: column;
      align-items: center;
  }

  .unique-event-image {
      width: 80%;
  }
}
.founder-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.founder-content {
  text-align: left;
}

.founder-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-top: 1rem;
  text-align: center;
}

.founder-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}

.founder-image {
  text-align: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .founder-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .founder-image img {
      max-width: 300px;
  }
}
/* Animation CSS */
.animate-img {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animate-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add delay for staggered animations */
.animate-img.delay-1 {
    animation-delay: 0.2s;
}
/* Include Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  animation: bounce 1.5s infinite;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  background-color: #25D366;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.apply-now-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.apply-now-content {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.apply-now-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: #333;
}

.apply-now-content h5 {
  margin-bottom: 15px;
}

.apply-now-content label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
}

.apply-now-content input,
.apply-now-content select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.apply-now-submit {
  width: 100%;
  padding: 10px;
  background: #F46109;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.apply-now-submit:hover {
  background: #F46109;
}

@media (max-width: 600px) {
  .apply-now-content {
    width: 95%;
  }
}
/* Apply Now Modal */
.apply-now-modal, .thank-you-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.apply-now-content, .thank-you-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
}

.apply-now-close, .thank-you-close {
  cursor: pointer;
  background: red;
  color: white;
  padding: 5px 10px;
  border: none;
  margin-top: 10px;
}

/* Prevent background scrolling */
body.modal-open {
  overflow: hidden;
}
.apply-now-modal, .error-modal, .thank-you-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.apply-now-content, .error-modal-content, .thank-you-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.apply-now-close, .error-close, .thank-you-close {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: red;
}
.video-play-btn {
  width: 80px;
  height: 80px;
  background-color: #f79b56;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-play-btn i {
  color: white;
  font-size: 30px;
}

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

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 700px;
  background: #000;
  padding: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 90%;
  }
}
.success-slider {
  position: relative;
  max-width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.success-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.success-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.success-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
}

/* Fade animation */
.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .success-slider {
    height: 250px;
  }
  .success-caption {
    font-size: 14px;
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
  }
  .p-5 {
    padding: 20px !important;
  }
}

@media (max-width: 480px) {
  .success-slider {
    height: 200px;
  }
  .success-caption {
    font-size: 12px;
    bottom: 8px;
    left: 8px;
  }
}