    :root {
      --primary-color: #eb5552;
      --secondary-color: #2d3436;
      --accent-color: #00b894;
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--secondary-color);
      overflow-x: hidden;
    }

    .navbar {
      padding: 15px 0;
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
    }

    .navbar .container {
      max-width: 100%;
      width: 100%;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
    }


    .navbar-brand {
      font-weight: 600;
      color: #eb5552 !important;
    }

    .nav-link {
      font-weight: 500;
      padding: 0.5rem 0.75rem;
    }

    .navbar-nav {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      font-size: 18px;
    }

    .navbar-nav .nav-item + .nav-item {
      margin-left: 0;
    }

    .hero {
      background: #f7f7f7;
      padding: 80px 0;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .hero p {
      color: #777;
    }

    .btn-primary {
      background-color: #eb5552;
      border: none;
    }

    .btn-primary:hover {
      background-color: #d94a47;
    }

    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 10px;
      min-width: 240px;
      margin-top: 10px !important;
      transition: all 0.3s ease;
    }

    .dropdown-item {
      border-radius: 8px;
      padding: 8px 20px;
      font-weight: 500;
      color: #444;
      transition: all 0.2s;
    }

    .dropdown-item:hover {
      background-color: #fff1f0;
      color: #eb5552;
      padding-left: 25px;
    }

    /* Multi dropdown */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: 1px !important;
      margin-top: 0 !important;
      display: none;
    }

    .dropdown-submenu:hover>.dropdown-menu {
      display: block;
    }

    .dropdown-submenu>.dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .dropdown-submenu>.dropdown-toggle::after {
      transform: rotate(-90deg);
    }

    @media (max-width: 991px) {
      .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 20px !important;
        box-shadow: none;
        border-left: 2px solid #eb5552;
      }

      .dropdown-submenu:hover>.dropdown-menu {
        display: none;
        /* Disable hover on mobile, use click */
      }

      .dropdown-submenu .dropdown-menu.show {
        display: block;
      }
    }


    section h2 {
      font-size: 36px;
    }

    .card {
      border-radius: 14px;
      overflow: hidden;
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .card-img-top {
      height: 220px;
      object-fit: cover;
    }

    .btn {
      border-radius: 30px;
      padding: 10px 20px;
    }

    .hero {
      min-height: 90vh;
      background: radial-gradient(circle at top right, rgba(235, 85, 82, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(0, 184, 148, 0.05), transparent);
      padding: 100px 0;
    }

    .hero-image-blob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110%;
      height: 110%;
      background: var(--primary-color);
      opacity: 0.1;
      filter: blur(80px);
      border-radius: 50%;
    }

    .carousel-fade .carousel-item {
      transition-duration: 1.5s;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin: 0 5px;
      background-color: var(--primary-color);
    }

    .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .x-small {
      font-size: 0.75rem;
    }

    /* ========== ABOUT SECTION ========== */
    .about-section {
      background: linear-gradient(180deg, #fff 0%, #f9f9fb 100%);
      position: relative;
    }

    .about-card {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border-radius: 20px !important;
    }

    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    }

    .about-card.active {
      background: var(--primary-color);
      color: #fff;
    }

    .about-card.active .text-muted {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .feature-icon-box {
      width: 60px;
      height: 60px;
      background: rgba(235, 85, 82, 0.1);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .about-card.active .feature-icon-box {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .about-card:hover .feature-icon-box {
      transform: rotate(10deg) scale(1.1);
    }

    .stats-grid {
      /* border-top: 1px solid rgba(0,0,0,0.05); */
      padding-top: 5px;
    }

    .stats-icon {
      font-size: 1.2rem;
      color: var(--primary-color);
      opacity: 0.5;
    }

    .tracking-wider {
      letter-spacing: 2px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: #1a1a1a;
      color: #fff;
    }

    .footer-heading {
      color: #fff;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links li a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-links li a:hover {
      color: var(--primary-color);
      padding-left: 5px;
    }

    .footer-contact {
      list-style: none;
      padding: 0;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    .footer-contact-icon {
      color: var(--primary-color);
    }

    .footer-text .hover:hover {
      color: #eb5552 !important;
      padding-left: 5px;
    }

    /* ========== CONTACT SECTION ========== */
    .contact-section {
      padding: 80px 0;
      background: #fdfdfd;
    }

    .contact-info-card {
      padding: 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .contact-icon-box {
      width: 50px;
      height: 50px;
      background: rgba(235, 85, 82, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.25rem;
      margin-bottom: 20px;
    }

    .contact-form-wrapper {
      background: #fff;
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    }

    .form-control {
      border-radius: 12px;
      padding: 12px 18px;
      border: 1px solid #eee;
      background: #fcfcfc;
      transition: all 0.3s;
    }

    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 4px rgba(235, 85, 82, 0.1);
      background: #fff;
    }

    .map-card {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
      height: 400px;
      border: none;
    }

    /* ========== GALLERY SECTION ========== */
    .gallery-section {
      padding: 80px 0;
      background: #fff;
    }

    .gallery-filter-btn {
      padding: 10px 25px;
      border-radius: 50px;
      border: 2px solid #eee;
      background: transparent;
      color: #666;
      font-weight: 600;
      transition: all 0.3s;
      margin: 5px;
    }

    .gallery-filter-btn.active,
    .gallery-filter-btn:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
      box-shadow: 0 5px 15px rgba(235, 85, 82, 0.3);
    }

    .gallery-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 25px;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-info h5 {
      color: #fff;
      margin: 0;
      font-weight: 700;
      transform: translateY(20px);
      transition: transform 0.4s;
    }

    .gallery-info p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.85rem;
      margin: 5px 0 0;
      transform: translateY(20px);
      transition: transform 0.4s 0.1s;
    }

    .gallery-item:hover .gallery-info h5,
    .gallery-item:hover .gallery-info p {
      transform: translateY(0);
    }

    /* ========== VISION & MISSION ========== */
    .vision-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    }

    .vision-card {
      background: #fff;
      border-radius: 30px;
      padding: 50px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
      height: 100%;
      transition: all 0.4s ease;
      border: 1px solid rgba(235, 85, 82, 0.05);
      position: relative;
      overflow: hidden;
    }

    .vision-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-color);
      opacity: 0;
      transition: 0.3s;
    }

    .vision-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(235, 85, 82, 0.1);
    }

    .vision-card:hover::before {
      opacity: 1;
    }

    .vision-icon-wrapper {
      width: 80px;
      height: 80px;
      background: rgba(235, 85, 82, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 30px;
      transition: 0.3s;
    }

    .vision-card:hover .vision-icon-wrapper {
      background: var(--primary-color);
      color: #fff;
      transform: rotateY(180deg);
    }

    .mission-list {
      list-style: none;
      padding: 0;
    }

    .mission-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      color: #555;
      line-height: 1.6;
    }

    .mission-list li::before {
      content: '\F26E';
      font-family: "bootstrap-icons";
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
    }

    .core-values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .value-item {
      background: #fdfdfd;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      border: 1px solid #eee;
      transition: 0.3s;
    }

    .value-item:hover {
      background: #fff;
      border-color: var(--primary-color);
      transform: scale(1.05);
    }

    .value-item i {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 10px;
      display: block;
    }

    .value-item span {
      font-weight: 600;
      color: #333;
    }

    /* ========== PRINCIPAL SECTION ========== */
    .principal-section {
      padding: 100px 0;
      background: #fff;
    }

    .principal-img-wrapper {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .principal-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .principal-experience-badge {
      position: absolute;
      bottom: 30px;
      right: -20px;
      background: var(--primary-color);
      color: #fff;
      padding: 20px 35px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(235, 85, 82, 0.3);
      transform: rotate(-5deg);
    }

    .principal-experience-badge h4 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 0;
    }

    .principal-experience-badge span {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .principal-quote {
      position: relative;
      padding: 40px;
      background: rgba(235, 85, 82, 0.03);
      border-left: 5px solid var(--primary-color);
      border-radius: 0 20px 20px 0;
      margin: 40px 0;
    }

    .principal-quote i {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 3rem;
      color: rgba(235, 85, 82, 0.1);
    }

    .principal-quote p {
      font-size: 1.1rem;
      font-style: italic;
      color: #444;
      line-height: 1.8;
      margin: 0;
    }

    .principal-signature {
      margin-top: 30px;
    }

    .principal-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 5px;
    }

    .principal-desig {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.9rem;
    }

    .acad-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 30px;
    }

    .acad-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #666;
    }

    .acad-list li i {
      color: var(--primary-color);
    }

    /* ========== COURSES SECTION ========== */
    .courses-container {
      padding: 80px 0;
      background: #fdfdfd;
    }

    .course-tabs {
      border: none !important;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
    }

    .course-tab-link {
      padding: 12px 30px;
      border-radius: 50px !important;
      border: 2px solid #eee !important;
      color: #666 !important;
      font-weight: 600;
      transition: all 0.3s;
      background: #fff !important;
    }

    .course-tab-link.active {
      background: var(--primary-color) !important;
      border-color: var(--primary-color) !important;
      color: #fff !important;
      box-shadow: 0 10px 20px rgba(235, 85, 82, 0.2);
    }

    .course-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.02);
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      border-color: rgba(235, 85, 82, 0.1);
    }

    .course-badge {
      display: inline-block;
      padding: 5px 15px;
      background: rgba(235, 85, 82, 0.1);
      color: var(--primary-color);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .course-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #222;
    }

    .course-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      border-top: 1px solid #eee;
      padding-top: 15px;
    }

    .course-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: #666;
    }

    .course-meta-item i {
      color: var(--primary-color);
    }

    /* ========== SCHOLARSHIPS SECTION ========== */
    .scholarship-section {
      padding: 80px 0;
      background: #fff;
    }

    .scholarship-card {
      background: #fff;
      border-radius: 25px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.03);
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
    }

    .scholarship-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(235, 85, 82, 0.1);
      border-color: rgba(235, 85, 82, 0.2);
    }

    .scholarship-icon {
      width: 70px;
      height: 70px;
      background: rgba(235, 85, 82, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 2rem;
      margin-bottom: 25px;
    }

    .scholarship-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #222;
    }

    .scholarship-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .scholarship-list li {
      padding: 10px 0 10px 25px;
      position: relative;
      font-size: 0.95rem;
      color: #555;
      border-bottom: 1px solid #f8f8f8;
    }

    .scholarship-list li::before {
      content: '\F26E';
      font-family: "bootstrap-icons";
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
    }

    .scholarship-footer {
      margin-top: 25px;
    }

    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 50px;
      background: #f8f9fa;
      color: #333;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      transition: 0.3s;
    }

    .btn-download:hover {
      background: var(--primary-color);
      color: #fff;
    }

    .downloads-section {
      background: #fff;
    }

    .downloads-card {
      background: #fff;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 20px 65px rgba(0, 0, 0, 0.07);
    }

    .downloads-card h5 {
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .downloads-list li {
      border-bottom: 1px solid #f0f0f0;
      padding: 14px 0;
    }

    .downloads-list li:last-child {
      border-bottom: none;
    }

    .download-link {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .download-link:hover {
      color: var(--primary-color);
    }

    .download-link i {
      font-size: 1rem;
      color: var(--primary-color);
    }

    /* ========== DEPARTMENT PAGES ========== */
    .dept-hero {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(235, 85, 82, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
      border-bottom: 1px solid #eee;
    }

    .faculty-section {
      padding: 80px 0;
      background: #fdfdfd;
    }

    .faculty-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .faculty-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(235, 85, 82, 0.1);
    }

    .faculty-img-box {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      background: #f0f0f0;
    }

    .faculty-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .faculty-card:hover .faculty-img-box img {
      transform: scale(1.05);
    }

    .faculty-info {
      padding: 25px;
      text-align: center;
    }

    .faculty-name {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: #222;
    }

    .faculty-desig {
      font-size: 0.85rem;
      color: var(--primary-color);
      font-weight: 600;
      text-transform: capitalize;
      margin-bottom: 15px;
      display: block;
    }

    .faculty-edu {
      font-size: 0.9rem;
      color: #666;
      padding-top: 15px;
      border-top: 1px solid #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .dept-info-card {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      margin-bottom: 30px;
    }

    /* ========== ACTIVITIES PAGES ========== */
    .activity-hero {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(235, 85, 82, 0.08) 0%, #fff 100%);
      position: relative;
      overflow: hidden;
    }

    .activity-hero::after {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(235, 85, 82, 0.03);
      border-radius: 50%;
    }

    .coordinator-section {
      padding: 80px 0;
      background: #fff;
    }

    .activity-objectives {
      padding: 80px 0;
      background: #fdfdfd;
    }

    .objective-item {
      background: #fff;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      border: 1px solid #f5f5f5;
      margin-bottom: 20px;
      transition: 0.3s;
    }

    .objective-item:hover {
      border-color: var(--primary-color);
      transform: translateX(10px);
    }

    @media screen and (max-width : 650px) {
      
      .sm-22 {
        font-size: 20px;
      }

      .sm-15 {
        font-size: 15px;
      }

      .sm-18 {
        font-size: 18px;
      }

      .sm-22 {
        font-size: 22px;
      }

      .sm-24{
        font-size: 24px !important;
      }

      .sm-26{
        font-size: 26px !important;
      }
    }