  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
  }

  ul {
      list-style: none;
      padding: 0;
  }

  body {
      overflow-x: hidden;
  }

  a {
      text-decoration: none;
  }

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      padding: 0;
      margin: 0;
      color: black;
  }

  .container {
      max-width: 1250px;
      margin: 0 auto;
      padding: 0 15px;
  }

  /* Top Bar */
  .top-bar {
      background: linear-gradient(to right, #b03060, #6a3093);
      color: white;
      padding: 8px 0;
      font-size: 14px;
      overflow: hidden;
      position: relative;
      text-align: center;
  }

  /* Center container */
  .marquee {
      width: 80%;
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
  }

  /* Moving text */
  .marquee-content {
      display: inline-block;
      white-space: nowrap;
      /* position: absolute; */
      will-change: transform;
  }

  /* Header Section */
  .main-header {
      background: #fff;
      padding: 3px 0;
      border-bottom: 1px solid #eee;
  }

  .dropdown a i {
      padding-left: 5px !important;
  }

  .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo img {
      width: 100px;
  }

  .header-info {
      display: flex;
      gap: 30px;
  }

  .info-item {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .info-icon {
      background: #913d7e;
      color: white;
      width: 45px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50% 50% 50% 5px;
      font-size: 20px;
  }

  .info-text strong {
      display: block;
      font-size: 16px;
      color: #333;
  }

  .info-text span {
      font-size: 14px;
      color: #666;
  }

  .social-links {
      display: flex;
      gap: 8px;
      margin-top: 5px;
  }

  .social-links a {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      text-decoration: none;
  }

  .fb {
      background: #3b5998;
  }

  .ig {
      background: #e4405f;
  }

  .yt {
      background: #cd201f;
  }

  .wa {
      background: #25d366;
  }

  /* Sticky Navbar */
  .navbar {
      background: linear-gradient(to right, #b03060, #6a3093);
      padding: 0;
      z-index: 1000;
      transition: 0.3s;
  }

  .navbar.sticky {
      position: fixed;
      top: 0;
      width: 100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      gap: 16px;
  }

  .nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 13px;
      font-weight: bold;
      padding: 15px 10px;
      display: block;
  }

  /* Desktop Dropdown Animation */
  .dropdown {
      position: relative;
  }

  .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 200px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 10;
      /* Animation Setup */
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
  }

  .dropdown:hover>.dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown-menu li a {
      color: #333 !important;
      padding: 12px 15px !important;
      border-bottom: 1px solid #eee;
      /* font-weight: normal; */
  }

  .dropdown-menu li a:hover {
      background: #f8f8f8;
      color: #b03060 !important;
  }

  /* Admission Button */
  .admission-btn a {
      background: #000;
      padding: 10px 15px !important;
      border-radius: 3px;
  }

  /* Mobile Controls */
  .menu-toggle {
      display: none;
      font-size: 24px;
      color: #913d7e;
      cursor: pointer;
  }

  .mobile-close {
      display: none;
      text-align: right;
      padding: 20px;
      font-size: 30px;
      color: white;
      cursor: pointer;
  }

  /* Responsive Right to Left Sidebar */
  @media (max-width: 992px) {
      .header-info {
          display: none;
      }

      .menu-toggle {
          display: block;
      }

      .nav-links {
          position: fixed;
          right: -100%;
          top: 0;
          height: 100vh;
          width: 300px;
          background: #913d7e;
          flex-direction: column;
          justify-content: flex-start;
          padding-top: 10px;
          transition: 0.4s ease-in-out;
          overflow-y: auto;
      }

      .nav-links.active {
          right: 0;
      }

      .mobile-close {
          display: block;
      }

      .nav-links li {
          width: 100%;
          text-align: left;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Mobile Dropdown Logic (Accordion) */
      .dropdown-menu {
          position: static;
          background: #7a2d69;
          width: 100%;
          display: none;
          /* JS will toggle this */
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
      }

      .dropdown-menu li a {
          color: #efefef !important;
          padding-left: 30px !important;
      }

      /* Responsive active class for accordion */
      .dropdown.open .dropdown-menu {
          display: block;
      }
  }

  /* ==================== banner satrt ==================  */
  .banner-slider {
      width: 100%;
      overflow: hidden;
  }

  .slick-list {
      overflow: hidden !important;
  }

  /* Slide */
  .slide {
      position: relative;
      height: 100vh;
      display: flex !important;
      align-items: center;
      padding: 0 8%;
  }

  /* Image */
  .bg-img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      z-index: 1;
  }

  .slide.slick-active .bg-img {
      transform: scale(1.1);
      transition: 6s ease;
  }

  /* Overlay */
  .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
      z-index: 2;
  }

  /* Content */
  .content {
      position: relative;
      z-index: 3;
      color: #fff;
      max-width: 600px;

      opacity: 0;
      transform: translateY(50px);
      transition: 0.8s ease;
  }

  .slide.slick-active .content {
      opacity: 1;
      transform: translateY(0);
  }

  .content h2 {
      font-size: 52px;
      margin-bottom: 20px;
      text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  }

  .content p {
      font-size: 18px;
      margin-bottom: 25px;
      line-height: 1.6;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  }

  .btn {
      padding: 12px 28px;
      background: linear-gradient(135deg, #0E84C2, #00b4db);
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      display: inline-block;
  }

  /* DOTS */
  .slick-dots {
      bottom: 20px;
  }

  .slick-dots li button:before {
      display: none;
  }

  .slick-dots li button {
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
  }

  .slick-dots li.slick-active button {
      width: 25px;
      border-radius: 20px;
      background: #0E84C2;
  }

  /* 🔥 MOBILE FIX */
  @media (max-width: 768px) {

      .slide {
          height: 75vh;
          padding: 0 20px;
      }

      .content h2 {
          font-size: 28px;
      }

      .content p {
          font-size: 14px;
      }

      .slick-prev,
      .slick-next {
          display: none !important;
      }
  }

  /* ==================== banner end ==================  */

  /* ================= about us start ===============  */
  :root {
      --primary-gradient: linear-gradient(135deg, #b33664 0%, #6d479a 100%);
      --text-dark: #333;
      --text-light: #666;
  }

  .about-section-main {
      display: flex;
      flex-wrap: wrap;
      max-width: 1250px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
      margin: 80px auto;

  }

  .about-section h2 {
      font-size: 35px;
  }

  .about-section h2 span {
      color: #b33664;
  }

  /* Left Side: About Section */
  .about-section {
      flex: 1;
      padding: 50px;
      min-width: 350px;
  }

  .about-section h5 {
      color: #b33664;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 700;
  }

  .about-section h2 {
      font-size: 32px;
      color: var(--text-dark);
      margin-bottom: 20px;
      font-weight: 700;
  }

  .about-section p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 15px;
  }

  .read-more-btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--primary-gradient);
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      transition: transform 0.3s;
  }

  .read-more-btn:hover {
      transform: translateY(-2px);
  }

  /* Right Side: Form Section */
  .form-container {
      flex: 1;
      background: var(--primary-gradient);
      padding: 30px;
      min-width: 350px;
      color: white;
  }

  .form-container h3 {
      text-align: center;
      font-size: 26px;
      margin-bottom: 30px;
      font-weight: 600;
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 10px;
      color: #fff;
  }

  .enquiry-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .input-group {
      position: relative;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
      width: 100%;
      padding: 8px 15px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 5px;
      color: white;
      outline: none;
      transition: 0.3s;
  }

  .enquiry-form input::placeholder,
  .enquiry-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
  }

  .enquiry-form select option {
      color: #333;
  }

  .enquiry-form input:focus,
  .enquiry-form select:focus {
      background: rgba(255, 255, 255, 0.25);
      border-color: #fff;
  }

  .submit-btn {
      background: #fff;
      color: #6d479a;
      border: none;
      padding: 15px;
      border-radius: 5px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.3s;
      margin-top: 10px;
  }

  .submit-btn:hover {
      background: #f0f0f0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Settings */
  @media (max-width: 768px) {
      .about-section-main {
          margin: 10px;
      }

      .about-section,
      .form-container {
          padding: 30px;
      }
  }

  /* ================= about us end ===============  */

  /* =================== class counter start ====  */
  :root {
      --classmate-orange: #f3704b;
      --classmate-green: #67c191;
      --classmate-blue: #7bcce3;
      --classmate-red: #d32f2f;
  }


  .classmate-section-wrapper {
      margin-bottom: 80px;
      background-color: #e9ecefc2;
      padding: 60px 0;
  }

  /* --- Content Styling --- */
  .classmate-section-tag {
      color: #b33664;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 10px;
      text-transform: uppercase;
  }

  .classmate-section-title {
      font-size: 35px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .classmate-section-title span {
      color: #b33664;
  }


  .classmate-section-desc {
      color: #666;
      font-size: 1rem;
      margin-bottom: 30px;
  }

  /* --- Progress Bars --- */
  .classmate-skill-item {
      margin-bottom: 20px;
  }

  .classmate-progress-wrap {
      height: 38px;
      background: #f0f0f0;
      border-radius: 5px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .classmate-progress-fill {
      height: 100%;
      display: flex;
      align-items: center;
      padding-left: 15px;
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
  }

  .classmate-percent-text {
      position: absolute;
      right: 15px;
      color: #000;
      font-weight: 700;
  }

  /* Custom Colors */
  .bg-orange-custom {
      background-color: var(--classmate-orange);
  }

  .bg-green-custom {
      background-color: var(--classmate-green);
  }

  .bg-blue-custom {
      background-color: var(--classmate-blue);
  }

  /* --- Image & Counter Section --- */
  .classmate-media-container {
      position: relative;
      display: flex;
      gap: 15px;
  }

  .classmate-img-box {
      flex: 1;
      border-radius: 15px;
      overflow: hidden;
      height: 500px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .classmate-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Floating Counter Card */
  .classmate-stats-card {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      width: 160px;
      padding: 30px 15px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      z-index: 5;
  }

  .classmate-stat-unit {
      margin-bottom: 20px;
  }

  .classmate-stat-unit:last-child {
      margin-bottom: 0;
  }

  .classmate-stat-number {
      display: block;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--classmate-red);
      line-height: 1;
  }

  .classmate-stat-label {
      font-size: 12px;
      color: #777;
      font-weight: 500;
  }

  /* --- Responsive Tweaks --- */
  @media (max-width: 991px) {
      .classmate-section-title {
          font-size: 2.2rem;
      }

      .classmate-media-container {
          margin-top: 50px;
      }
  }

  @media (max-width: 576px) {
      .classmate-media-container {
          flex-direction: column;
      }

      .classmate-stats-card {
          position: relative;
          top: 0;
          left: 0;
          transform: none;
          width: 100%;
          margin: 20px 0;
      }

      .classmate-img-box {
          height: 350px;
      }
  }

  /* =================== class counter  end ====  */

  /* =================== team leader start ============  */
  :root {
      --primary-text: #333;
      --secondary-text: #555;
      --accent-border: #b03060;
      --arrow-color: #ffb400;
  }

  .team-leader {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 80px;
  }

  /* Header Styles */
  .sub-heading {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 5px;
      color: #b33664;
  }

  .main-heading {
      font-size: 35px;
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: 700;
  }

  .main-heading span {
      color: #b33664;
  }

  .intro-text {
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--secondary-text);
      font-size: 16px;
  }

  /* Leadership Grid */
  .leader-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
  }

  .leader-card {
      flex: 1;
      min-width: 300px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Image styling */
  .img-container {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      border: 5px solid #f0f0f0;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .leader-name {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 5px 0;
  }

  .leader-title {
      font-size: 14px;
      color: var(--secondary-text);
      margin-bottom: 20px;
  }

  /* Message Box with Triangle Arrow */
  .message-box {
      position: relative;
      border: 2px solid var(--accent-border);
      padding: 25px;
      border-radius: 4px;
      min-height: 200px;
      display: flex;
      align-items: center;
      background-color: #fff;
  }

  /* The Yellow Triangle */
  .message-box::before {
      content: "";
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-bottom: 15px solid var(--arrow-color);
  }

  .message-text {
      font-size: 14px;
      color: var(--primary-text);
      margin: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .leader-grid {
          flex-direction: column;
          align-items: center;
      }

      .leader-card {
          width: 100%;
          margin-bottom: 40px;
      }
  }

  /* =================== team leader end ============  */

  /* =========================== footer start =========  */
  .footer {
      background: #eef3f7;
      padding: 60px 0 0;
  }

  .footer-box h3.logo {
      font-size: 20px;
      font-weight: 700;
      color: #0a3d62;
  }

  .footer-box img {
      width: 105px;
      border-radius: 50px;
  }

  .footer-box p {
      font-size: 14px;
      color: #333;
      line-height: 1.7;
      margin: 15px 0;
  }

  .footer-box h4 {
      color: #d63384;
      margin-bottom: 18px;
      font-weight: 700;
      font-size: 16px;
  }

  .footer-box ul {
      list-style: none;
      padding: 0;
  }

  .footer-box ul li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 28px;
  }

  .footer-box ul li::before {
      content: "\f105";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 3px;
      width: 18px;
      height: 18px;
      line-height: 18px;
      background: #d63384;
      color: #fff;
      text-align: center;
      border-radius: 50%;
      font-size: 11px;
      transition: 0.3s;
  }

  .footer-box ul li:hover::before {
      background: #6f42c1;
      transform: translateX(4px);
  }

  .footer-box ul li a {
      text-decoration: none;
      color: #d63384;
      font-size: 14px;
      transition: 0.3s;
  }

  .footer-box ul li a:hover {
      padding-left: 5px;
  }

  /* SOCIAL ICONS */
  .social-icons a {
      display: inline-block;
      margin-right: 10px;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      color: #fff;
      font-size: 16px;
  }

  .social-icons a:nth-child(1) {
      background: #3b5998;
  }

  .social-icons a:nth-child(2) {
      background: #e4405f;
  }

  .social-icons a:nth-child(3) {
      background: #ff0000;
  }

  .social-icons a:nth-child(4) {
      background: #25d366;
  }

  /* CONTACT */
  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  .contact-item i {
      width: 35px;
      height: 35px;
      background: #e9eef3;
      border-radius: 50%;
      text-align: center;
      line-height: 35px;
      margin-right: 10px;
      color: #0a3d62;
  }

  .map iframe {
      width: 100%;
      height: 200px;
      border-radius: 10px;
  }

  .footer-bottom {
      margin-top: 40px;
      padding: 15px;
      text-align: center;
      color: #fff;
      background: linear-gradient(90deg, #d63384, #6f42c1);
  }

  .footer-bottom p {
      color: #fff;
  }

  @media (max-width: 768px) {
      .footer {
          padding: 40px 20px 0;
      }

      .footer-box {
          margin-bottom: 30px;
      }
  }

  /* =========================== footer end =========  */

  /* ========================== activity section start  */
  .activity-section {
      width: 100%;
      margin-bottom: 80px;
  }

  .grid-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
  }

  .grid-item {
      position: relative;
      width: 100%;
      height: 300px;
  }

  /* IMAGE */
  .grid-item.image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* TEXT */
  .grid-item.text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      color: #fff;
  }

  .grid-item.text h5 {
      font-size: 14px;
      margin-bottom: 10px;
      color: #ffff;
  }

  .grid-item.text h2 {
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: 600;
      color: #fff;
  }

  .grid-item.text p {
      font-size: 14px;
      line-height: 1.6;
      color: #ffff;
  }

  /* COLORS */
  .green {
      background: #6bb38f;
  }

  .blue {
      background: #6ab0c3;
  }

  .orange {
      background: #e7794a;
  }

  .red {
      background: #d96b6b;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
      .grid-container {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 576px) {
      .grid-container {
          grid-template-columns: 1fr;
      }

      .grid-item {
          height: auto;
      }

      .grid-item.text {
          padding: 30px 20px;
      }
  }

  /* ========================== activity section end  */

  /* =================== usp section ======  */
  /* SECTION */
  .usp-section {
      padding: 60px 20px;
      text-align: center;
      background: #dee2e691;
      margin-bottom: 80px;
  }



  .usp-section h5 {
      color: #b33664;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 14px;
      margin-bottom: 5px;
  }

  .usp-section h2 {
      font-size: 32px;
      font-weight: 700;
  }

  .usp-section h2 span {
      color: #c73b63;
  }

  .usp-section p {
      max-width: 800px;
      margin: 10px auto 40px;
      color: #555;
  }

  /* GRID */
  .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  /* CARD */
  .usp-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
  }

  .usp-card:hover {
      transform: translateY(-5px);
  }

  /* ICON */
  .usp-icon {
      width: 80px;
      height: 80px;
      border: 2px solid #eee;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .usp-icon i {
      font-size: 28px;
      color: #c73b63;
  }

  .usp-card h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
  }

  .usp-card p {
      font-size: 14px;
      color: #666;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
      .usp-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 600px) {
      .usp-grid {
          grid-template-columns: 1fr;
      }

      .usp-section h2 {
          font-size: 24px;
      }
  }

  /* =================== usp section end======  */

  /* =================== galley section start  */
  .custom-gallery {
      margin-top: 80px;
  }

  /* TABS */
  .gallery-tabs {
      margin-bottom: 30px;
  }

  .tab-btn {
      border: none;
      padding: 10px 25px;
      margin: 5px;
      background: #eee;
      cursor: pointer;
      border-radius: 30px;
      transition: 0.3s;
      font-weight: 500;
  }

  .tab-btn.active,
  .tab-btn:hover {
      background: #b03060;
      color: #fff;
  }

  /* EXISTING GALLERY CSS (UNCHANGED) */
  .gallery-section {
      margin-bottom: 80px;
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

  .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
  }

  .overlay {
      position: absolute;
      inset: 0;
      background: #b030605c;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: 0.3s;
      pointer-events: none;
  }

  .overlay i {
      color: #fff;
      font-size: 30px;
      border: 2px solid #fff;
      border-radius: 50%;
      padding: 15px;
  }

  .gallery-item:hover .overlay {
      opacity: 1;
  }

  /* LIGHTBOX */
  .lightbox {
      position: fixed;
      inset: 0;
      background: rgb(0 0 0 / 62%);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
  }

  .lightbox img {
      max-width: 90%;
      max-height: 90%;
  }

  .lightbox.active {
      display: flex;
  }

  .close {
      position: absolute;
      top: 91px;
      right: 60px;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
  }

  /* RESPONSIVE */
  @media(max-width:1024px) {
      .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media(max-width:600px) {
      .gallery-grid {
          grid-template-columns: 1fr;
      }
  }

  /* =================== galley section end  */


  /* ========================= review section satrt == */
  .review-section {
      margin-bottom: 80px;
  }

  /* Header Section */
  .review-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .review-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #000;
  }

  .review-header h2 span {
      color: #b33664;
      /* Orange color */
  }

  .review-header p {
      max-width: 900px;
      margin: 15px auto;
      color: #000;
      font-size: 15px;
      line-height: 1.5;
  }

  /* Review Wrapper */
  .review-wrapper {
      display: flex;
      gap: 40px;
      position: relative;
      align-items: flex-start;
  }

  /* Left Side Info */
  .brand-info {
      flex: 0 0 280px;
      padding-top: 10px;
  }

  .brand-logo img {
      max-width: 105px;
      display: block;
  }

  .brand-info h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #000;
      line-height: 1.4;
  }

  .stars-container {
      margin-bottom: 10px;
  }

  .stars-container .stars {
      color: #FFB400;
      font-size: 22px;
  }

  .rating-summary p {
      font-size: 14px;
      color: #555;
  }

  .write-review {
      margin-top: 25px;
      padding: 12px 25px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .write-review:hover {
      background: #f8f8f8;
      border-color: #999;
  }

  /* Slider Area */
  .slider-container {
      flex: 1;
      min-width: 0;
      /* Important for Slick inside Flexbox */
      position: relative;
  }

  .testimonial-slider {
      margin: 0 -15px;
      /* Adjusts for slide padding */
  }

  .review-card {
      padding: 15px;
      outline: none;
  }

  .user-info {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 12px;
  }

  .user-img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
  }

  .user-img-alt {
      width: 55px;
      height: 55px;
      background: #FF5722;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 22px;
  }

  .user-meta h4 {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .user-meta span {
      font-size: 13px;
      color: #888;
  }

  .card-stars {
      color: #FFB400;
      font-size: 18px;
      margin-bottom: 10px;
  }

  .verified-icon {
      color: #4285F4;
      font-size: 16px;
  }

  .review-text {
      font-size: 14px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 8px;

      /* FIX */
      display: block;
      overflow: visible;
      word-break: break-word;
      overflow-wrap: break-word;
  }

  .review-wrapper {
      overflow: hidden;
  }

  .slider-container {
      flex: 1;
      min-width: 0;
      overflow: hidden;
  }

  .read-more {
      color: #777;
      text-decoration: none;
      font-size: 13px;
      border-bottom: 1px solid transparent;
  }

  .read-more:hover {
      border-bottom-color: #777;
  }

  /* Navigation Buttons */
  .slider-nav {
      display: flex;
      gap: 15px;
      justify-content: flex-end;
      margin-top: 30px;
      padding-right: 15px;
  }

  .nav-btn {
      background: #aa3063;
      color: white;
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s;
  }

  .nav-btn:hover {
      opacity: 0.85;
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {

      .review-wrapper {
          flex-direction: column;
      }

      .brand-info {
          text-align: center;
      }

      .brand-logo img {
          margin: 0 auto 15px;
      }

      .review-text {
          font-size: 13px;
          line-height: 1.5;

          /* FULL TEXT SHOW */
          display: block;
          overflow: visible;
      }

      .testimonial-slider {
          margin: 0;
          /* REMOVE negative margin */
      }

      .testimonial-slider .slick-slide {
          padding: 0 10px;
          box-sizing: border-box;
      }

      .review-card {
          width: 100%;
          overflow: hidden;
      }

      .slider-nav {
          justify-content: center;
      }

      .slider-container {
          width: 100%;
          overflow: hidden;
      }

      .testimonial-slider {
          margin: 0;
      }

      .review-text {
          font-size: 13px;
          line-height: 1.5;
      }
  }


  /* ========================= review section end == */

  /* ===================== breadcrumb start  */
  /* Breadcrumb Section */
  .breadcrumb {
      width: 100%;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-bottom: 0 !important;

      /* Gradient same like image */
      background: linear-gradient(to right, #7a1c2f, #3c2a63);
      color: #fff;
      padding: 40px 20px;
  }

  .breadcrumb h1 {
      font-size: 48px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .breadcrumb h1 {
          font-size: 36px;
      }
  }

  @media (max-width: 576px) {
      .breadcrumb {
          min-height: 160px;
          padding: 30px 15px;
      }

      .breadcrumb h1 {
          font-size: 26px;
      }
  }

  /* ===================== breadcrumb end  */

  /* =================== director start  */
  .director-section {
      margin-top: 80px;
      margin-bottom: 80px;
  }

  .director-img img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
  }

  .director-content h3 {
      font-size: 35px;
      font-weight: 700;
      color: #b33664;
      padding-bottom: 10px;
  }

  .director-content span {
      font-size: 18px;
      font-weight: 700;
  }

  .director-content p {
      padding-top: 10px;
      text-align: justify;
  }

  .director-img {
      display: flex;
      height: 100%;
      justify-content: center;
      padding-bottom: 14px;
  }

  @media (max-width:776px) {
      .director-content h3 {
          font-size: 25px;
          text-align: center;
      }

      .director-content span {
          text-align: center;
          display: block;
      }
  }

  /* ============== team page start  */
  /* SECTION */
  .team-section {
      padding: 60px 0;
      background: #f5f5f5;
  }

  /* CARD */
  .team-card {
      background: #fff;
      border-radius: 20px;
      padding: 35px 25px;
      text-align: center;
      border: 1px solid #e6e6e6;
      transition: 0.3s;
      height: 100%;
  }

  .team-card:hover {
      transform: translateY(-6px);
  }

  /* IMAGE */
  .team-img {
      width: 130px;
      height: 130px;
      margin: auto;
      margin-bottom: 20px;
  }

  .team-img img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
  }

  /* TEXT */
  .team-card h4 {
      font-weight: 600;
      margin-bottom: 5px;
  }

  .team-role {
      color: #ff6b00;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .team-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
  }

  /* SOCIAL */
  .team-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: #f1f1f1;
      border-radius: 50%;
      margin: 5px;
      color: #ff6b00;
      transition: 0.3s;
      text-decoration: none !important;
  }

  .team-social a:hover {
      background: #ff6b00;
      color: #fff;
  }

  /* ============== team page end  */


  /* ======================= video page start  */
  /* SECTION */
  .video-section {
      margin-top: 80px;
      margin-bottom: 80px;
  }

  /* CARD */
  .video-card {
      background: #0f172a;
      border-radius: 18px;
      padding: 15px;
      border: 2px solid #1e293b;
      position: relative;
      transition: 0.3s;
  }

  .video-card:hover {
      border-color: #6366f1;
  }

  /* VIDEO */
  .video-box {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
  }

  .video-box iframe {
      width: 100%;
      height: 200px;
      border: none;
  }

  /* TIME BADGE */
  .time-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 3px 6px;
      border-radius: 5px;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
      .video-box iframe {
          height: 180px;
      }
  }

  /* ======================= video page end  */



  /* ===================== conatct -us start  */
  .sarwati-contact-section {
      padding: 80px 0;
  }

  /* LEFT BOX */
  .sarwati-contact-info {
      background: linear-gradient(to bottom, #c1355a, #b03060);
      color: #fff;
      padding: 40px;
      height: 100%;
  }

  .sarwati-info-item {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .sarwati-info-item:last-child {
      border-bottom: none;
  }

  .sarwati-icon-box {
      min-width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #2b2b2b;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
  }

  .sarwati-info-text h4 {
      font-weight: 700;
      margin-bottom: 5px;
      color: #fff;
  }

  .sarwati-info-text p {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
      color: #fff;
  }

  /* RIGHT FORM */
  .sarwati-contact-form {
      background: linear-gradient(to bottom, #c1355a, #6a3093);
      padding: 40px;
      color: #fff;
      height: 100%;
  }

  .sarwati-contact-form h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 30px;
      position: relative;
      color: #fff;
  }

  .sarwati-contact-form h2::after {
      content: "";
      width: 80px;
      height: 3px;
      background: #000;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
  }

  /* FORM */
  .sarwati-form-control {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.6);
      color: #fff;
      margin-bottom: 20px;
      padding: 12px 15px;
  }

  .sarwati-form-control::placeholder {
      color: #fff;
  }

  .sarwati-form-control:focus {
      background: transparent;
      color: #fff;
      box-shadow: none;
      border-color: #fff;
  }

  textarea.sarwati-form-control {
      height: 120px;
      resize: none;
  }

  .sarwati-submit-btn {
      background: #fbbf24;
      color: #fff;
      border: none;
      padding: 12px 30px;
      display: block;
      margin: 20px auto 0;
      border-radius: 5px;
      font-weight: 600;
      transition: 0.3s;
  }

  .sarwati-submit-btn:hover {
      background: #f59e0b;
  }

  .sarwati-map-section {
      margin-bottom: 80px;
  }

  /* Responsive */
  @media(max-width: 991px) {

      .sarwati-contact-info,
      .sarwati-contact-form {
          padding: 25px;
      }
  }

  @media(max-width: 768px) {
      .sarwati-info-item {
          flex-direction: column;
          align-items: flex-start;
      }

      .sarwati-icon-box {
          margin-bottom: 10px;
      }
  }

  /* ===================== conatct -us end  */

  /* ================= admision page start  */
  /* Admission Left Content Design */


  .admission-content {
      background: #ffffff;
      border-radius: 10px;
      padding: 25px;
      border-left: 5px solid #a83c71;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      height: 100%;

  }

  .admission-content h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #222;
  }

  .admission-content h5 {
      font-size: 16px;
      font-weight: 600;
      color: #007bff;
      margin-bottom: 15px;
  }

  .admission-list {
      padding-left: 18px;
      margin-bottom: 15px;
  }

  .admission-list li {
      font-size: 14px;
      margin-bottom: 8px;
      color: #444;
      line-height: 1.6;
      position: relative;
  }

  .admission-list li::marker {
      color: #007bff;
  }

  .admission-content p {
      font-size: 14px;
      color: #555;
      border-top: 1px dashed #ddd;
      padding-top: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .admission-content {
          padding: 20px;
      }
  }

  /* ================= admision page end  */

  .about-content h3 {
      font-size: 35px;
      font-weight: 700;
  }

  .about-content span {
      color: #a83c71;
  }

  .about-content p {
      color: black;
      text-align: justify;
      padding-top: 10px;
  }

  .about-img img {
      border-radius: 10px;
  }

  /* 
  .video-box {
      width: 100%;
      height: 220px;
      overflow: hidden;
      border-radius: 10px;
  }

  .video-box iframe {
      width: 100%;
      height: 100%;
  } */

  .school-section {
      padding: 80px 0;
  }

  .school-certification img {
      border: 1px solid #ccc;
  }