 :root {
     --college-blue: #c03321;
     --college-lightblue: #3b82f6;
     --college-yellow: #fbbf24;
     --college-red: #025347;
     --college-gray: #6b7280;
     --college-light: #f3f4f6;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body{
     font-family: 'Inter', sans-serif;
     color: #333;
     line-height: 1.6;
     background-color: #edf1f5;
    overflow-x: hidden;

 }

 p {
     letter-spacing: 0.5px;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Poppins', sans-serif;
     font-weight: 600;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .marquee {
     background-color: #025347;
         height: 38px;
 }

 .section {
     padding: 80px 0;
 }

 .text-center {
     text-align: center;
 }

 marquee span {
     font-size: 16px;
     color: #ffffff;
     margin-top: 7px;
 }

 .section-title {
     font-size: 2.5rem;
     color: var(--college-blue);
     margin-bottom: 25px;
     position: relative;
 }

 .secretary-image p {
     text-align: center !important;
     color: #002752;
     padding-top: 20px;
 }

 .section-title:after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: var(--college-yellow);
     margin-top: 10px;
 }

 .text-center .section-title:after {
     margin-left: auto;
     margin-right: auto;
 }

 .section-subtitle {
     font-size: 1.125rem;
     color: var(--college-gray);
     margin-bottom: 40px;
     max-width: 700px;
 }
 
 .section-content {
    text-align: justify;
    margin-top: 10px;
}

 .text-center .section-subtitle {
     margin-left: auto;
     margin-right: auto;
 }

 .btn {
     display: inline-block;
     padding: 12px 24px;
     font-weight: 500;
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-primary {
     background-color: var(--college-blue);
     color: white;
 }

 .btn-primary:hover {
     background-color: #152b63;
     box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
 }

 .btn-secondary {
     background-color: white;
     color: var(--college-blue);
     border: 2px solid var(--college-blue);
 }

 .btn-secondary:hover {
     background-color: var(--college-blue);
     color: white;
 }

 .btn-white {
     background-color: white;
     color: var(--college-blue);
 }

 .btn-white:hover {
     background-color: #f1f5f9;
 }

 .grid {
     display: grid;
     gap: 30px;
 }

 .flex {
     display: flex;
 }

 .items-center {
     align-items: center;
 }

 .justify-between {
     justify-content: space-between;
 }

 .flex-col {
     flex-direction: column;
 }

 .gap-4 {
     gap: 1rem;
 }

 .gap-6 {
     gap: 1.5rem;
 }

 .gap-8 {
     gap: 2rem;
 }

 .mt-4 {
     margin-top: 1rem;
 }

 .mt-8 {
     margin-top: 2rem;
 }

 .mb-4 {
     margin-bottom: 1rem;
 }

 .mb-8 {
     margin-bottom: 2rem;
 }

 .py-2 {
     padding-top: 0.5rem;
     padding-bottom: 0.5rem;
 }

 .px-4 {
     padding-left: 1rem;
     padding-right: 1rem;
 }

 .bg-light {
     background-color: var(--college-light);
 }

 .bg-blue {
     background-color: var(--college-blue);
     color: white;
 }

 .bg-white {
     background-color: white;
 }

 .rounded {
     border-radius: 8px;
 }

 .shadow {
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .shadow-lg {
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes scaleIn {
     from {
         transform: scale(0.95);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 .animate-fade-in {
     opacity: 0;
     animation: fadeIn 0.7s ease-in-out forwards;
 }

 .animate-scale-in {
     animation: scaleIn 0.7s ease-in-out forwards;
 }

 .animate-slide-in-left {
     animation: slideInLeft 0.7s ease-in-out forwards;
 }

 .animate-slide-in-right {
     animation: slideInRight 0.7s ease-in-out forwards;
 }

 .animate-float {
     animation: float 4s ease-in-out infinite;
 }

 .delay-100 {
     animation-delay: 100ms;
 }

 .delay-200 {
     animation-delay: 200ms;
 }

 .delay-300 {
     animation-delay: 300ms;
 }

 .delay-400 {
     animation-delay: 400ms;
 }

 .delay-500 {
     animation-delay: 500ms;
 }

 /* Header */
 header {
     position: fixed;
     width: 100%;
     z-index: 1000;
     padding:15px 0px 0px;
     transition: all 0.3s ease;
 }

 header.scrolled {
     background-color: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 8px 0;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .logo img {
     height: 100px;
     width: auto;
     border-radius: 100px;
 }

 .logo-text h1 {
     font-size: 26px;
     color: #ffde42;
     line-height: 1.2;
 }
.logo-text h4{
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
}
 .logo-text p {
    font-size: 14px;
    color: #fff6aa;
    margin-top: -2px;
 }

 nav ul {
     display: flex;
     list-style: none;
     gap: 25px;
 }

 .nav-link {
     color: #ffffff;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }

 .nav-link:hover {
     color: var(--college-blue);
 }

 .nav-link:after {
     content: '';
     /*position: absolute;*/
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     /*background: var(--college-blue);*/
     transition: all 0.3s ease;
 }

 .nav-link:hover:after {
     /*width: 100%;*/
 }

 .dropdown {
     position: relative;
 }

 .dropdown-content {
     position: absolute;
     top: 100%;
     left: 0;
     width: 335px;
     background: white;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     border-radius: 6px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 100;
     /*overflow: hidden;*/
 }

 .dropdown:hover .dropdown-content {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-content a {
     display: block;
     padding: 10px 15px;
     color: #333;
     transition: all 0.2s;
     border-bottom: 1px dotted #333
 }

 .dropdown-content a:hover {
     background: var(--college-light);
     color: var(--college-blue);
 }

 .header-right {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .search-box {
     position: relative;
 }

 .search-input {
     background: #f1f1f1;
     border: none;
     border-radius: 20px;
     padding: 8px 15px 8px 35px;
     font-size: 0.875rem;
     outline: none;
     transition: all 0.3s;
 }

 .search-input:focus {
     background: #fff;
     box-shadow: 0 0 0 2px var(--college-blue);
 }

 .search-icon {
     position: absolute;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: #999;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: var(--college-blue);
     cursor: pointer;
 }

 /* Hero Section */
 .hero {
     position: relative;
     height: 90vh;
     min-height: 600px;
     overflow: hidden;
 }

 .hero-slide {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 1s ease-in-out;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgb(0 38 80), rgb(0 0 0 / 0%) 30%, rgb(98 98 98 / 0%));
 }

 #header.scrolled .logo-text p {
     font-size: 17px;
     color: #00224f !important;
     margin-top: -2px;
 }
 #header.scrolled .logo-text h4 {
    font-size: 20px;
    color: #0a5645;
    line-height: 1.2;
}
 #header.scrolled .nav-link {
     color: #222222 !important;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }
 .sub-header.scrolled .nav-link {
     color: #FFF !important;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }
 .hero-content {
     position: relative;
     z-index: 1;
     color: white;
     max-width: 700px;
     transition: all 1s ease;
     transform: translateY(20px);
     opacity: 0;
 }

 .hero-slide.active .hero-content {
     transform: translateY(0);
     opacity: 1;
     transition-delay: 0.3s;
 }

 .hero-subtitle {
     color: var(--college-yellow);
     font-weight: 500;
     font-size: 1.125rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 8px;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 16px;
     line-height: 1.2;
 }

 .hero-text {
     font-size: 1.25rem;
     margin-bottom: 32px;
     opacity: 0.9;
 }

 .hero-buttons {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 .hero-nav {
     position: absolute;
     bottom: 32px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 8px;
     z-index: 2;
 }

 .hero-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .hero-dot.active {
     width: 32px;
     border-radius: 12px;
     background: var(--college-yellow);
 }

 .hero-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.3);
     color: white;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     cursor: pointer;
     z-index: 2;
     transition: all 0.3s;
 }

 .hero-arrow:hover {
     background: rgba(0, 0, 0, 0.5);
 }

 .hero-arrow.prev {
     left: 20px;
 }

 .hero-arrow.next {
     right: 20px;
 }

 /* About Section */
 .about {
     position: relative;
     padding-bottom: 0px;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     border-radius: 8px;
     box-shadow: 0 0px 3px rgb(30 58 138);
 }

 .secretary {
     background-color: #1e3a8a24;
     padding-top: 100px;
     padding-bottom: 100px;
     margin-top: 100px;
 }

 .nav-link:hover {
     display: block;
     /*padding: 10px 0px !important;*/
     color: #ffde42;
     text-decoration: none;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
 }

 .scrolled .logo-text h1 {
     font-size: 26px;
     color: #c03321 !important;
     line-height: 1.2;
 }

 #about p {
     text-align: justify;
 }

 .nav-link {
     display: block;
     padding: 10px 0px !important;
     color: #ffffff;
     text-decoration: none;
     transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
 }

 .secretary-message {
     background-color: #1e3a8a24;
     padding-top: 100px;
     padding-bottom: 100px;
     margin-top: 100px;
 }



 .about-float-image {
     position: absolute;
     top: 26px;
     left: -10px;
     width: auto;
     height: auto;
     -o-object-fit: cover;
     object-fit: cover;
     border-radius: 8px;
     border: 4px solid white;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     margin-top: 80px;
 }

 .stat-card {
     background: white;
     padding: 24px;
     border-radius: 8px;
     text-align: center;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
     border-top: 4px solid var(--college-blue);
 }

 .stat-card:nth-child(even) {
     border-top-color: var(--college-yellow);
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--college-blue);
     margin-bottom: 8px;
 }

 .stat-label {
     color: #3a3a3a;
 }

 .mission a:hover {
     color: #ffde42;
 }

 .mission {
     padding: 100px 0;
     background-image: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?ixlib=rb-4.0.3');
     background-attachment: fixed;
     background-position: center;
     background-size: cover;
     color: white;
     text-align: center;

 }

 .mission-title {
     font-size: 2.5rem;
     margin-bottom: 24px;
 }

 .mission-text {
     font-size: 1.25rem;
     max-width: 800px;
     margin: 0 auto 48px;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 32px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .value-card {
     background: rgba(255, 255, 255, 0.1);
     -webkit-backdrop-filter: blur(5px);
     backdrop-filter: blur(5px);
     padding: 24px;
     border-radius: 8px;
 }

 .value-icon {
     width: 64px;
     height: 64px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 16px;
 }

 /* Programs Section */
 .programs {
     background-color: #fff !important;
 }

 .program-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 30px;
 }

 .program-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgb(30 58 138 / 18%);
     transition: all 0.3s ease;
 }

 .program-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .program-icon {
     width: 56px;
     height: 56px;
     background: rgba(59, 130, 246, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.75rem;
     margin-bottom: 16px;
 }

 .program-content {
     padding: 24px;
 }

 .program-title {
     font-size: 1.25rem;
     color: var(--college-blue);
     margin-bottom: 8px;
 }

 .program-description {
     color: var(--college-gray);
     margin-bottom: 16px;
 }

 .program-link {
     display: inline-flex;
     align-items: center;
     color: var(--college-blue);
     font-weight: 500;
     transition: all 0.3s;
 }

 .program-link:hover {
     color: var(--college-lightblue);
 }

 .program-link i {
     margin-left: 8px;
     transition: transform 0.3s;
 }

 .program-link:hover i {
     transform: translateX(4px);
 }

 /* Campus Section */
 .campus-tabs {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 48px;
 }

 .campus-tab {
     padding: 10px 24px;
     background: white;
     border-radius: 30px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
 }

 .campus-tab.active {
     background: var(--college-blue);
     color: white;
 }

 .campus-gallery {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 24px;
 }

 .gallery-item {
     position: relative;
     height: 250px;
     border-radius: 8px;
     overflow: hidden;
     cursor: pointer;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     -o-object-fit: cover;
     object-fit: cover;
     transition: transform 0.7s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .gallery-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 24px;
     opacity: 0;
     transition: opacity 0.3s;
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-title {
     color: white;
     font-size: 1.25rem;
     margin-bottom: 8px;
 }

 .gallery-description {
     color: rgba(255, 255, 255, 0.8);
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
     animation: fadeIn 0.5s ease forwards;
 }

 .campus-tour {
     margin-top: 64px;
     background: white;
     padding: 32px;
     border-radius: 8px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
 }

 .tour-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     align-items: center;
 }

 .video-placeholder {
     position: relative;
     aspect-ratio: 16/9;
     background: #f1f1f1;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background-image: url(assets/images/gallery/gallery1.jpg);
 }

 .play-btn {
     width: 64px;
     height: 64px;
     background: var(--college-blue);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .play-btn:hover {
     transform: scale(1.1);
 }

 /* Faculty Section */
 .faculty {
     background: #f8fafc;
 }

 .faculty-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 30px;
 }

 .faculty-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }

 .faculty-image {
     position: relative;
     height: 260px;
     overflow: hidden;
 }

 .faculty-image img {
     width: 100%;
     height: 100%;
     -o-object-fit: cover;
     object-fit: cover;
     transition: transform 0.7s;
 }

 .faculty-card:hover .faculty-image img {
     transform: scale(1.1);
 }

 .faculty-info {
     padding: 20px;
 }

 .faculty-name {
     font-size: 1.25rem;
     color: var(--college-blue);
     text-align: center;
 }

 .faculty-position {
     font-size: 0.875rem;
     color: var(--college-gray);
     margin-bottom: 8px;
 }

 .faculty-contact {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
     padding: 20px;
     transform: translateY(100%);
     transition: transform 0.3s;
 }

 .faculty-card:hover .faculty-contact {
     transform: translateY(0);
 }

 .contact-item {
     display: flex;
     align-items: center;
     color: white;
     margin-bottom: 8px;
 }

 .contact-item i {
     margin-right: 8px;
     font-size: 0.875rem;
 }

 .faculty-specialization {
     border-top: 1px solid #eee;
     padding-top: 12px;
     margin-top: 12px;
     font-size: 0.875rem;
 }

 .faculty-features {
     margin-top: 64px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 24px;
     text-align: center;
 }

 .feature-icon {
     width: 64px;
     height: 64px;
     background: rgba(30, 58, 138, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 16px;
 }

 /* News Section */
 .news-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 30px;
 }

 .news-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     margin-bottom: 30px;
     transition: all 0.3s;
 }

 .news-card:hover {
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .news-flex {
     display: flex;
     flex-direction: column;
 }

 @media (min-width: 768px) {
     .news-flex {
         flex-direction: row;
     }

     .news-image {
         width: 40%;
     }
 }

 .news-image {
     position: relative;
     height: 260px;
     width: 100%;
 }

 .news-category {
     position: absolute;
     top: 16px;
     left: 16px;
     background: var(--college-blue);
     color: white;
     font-size: 0.75rem;
     font-weight: 500;
     padding: 4px 12px;
     border-radius: 20px;
 }

 .news-image img {
     width: 100%;
     height: 100%;
     -o-object-fit: cover;
     object-fit: cover;
 }

 .news-content {
     padding: 24px;
 }

 .news-meta {
     display: flex;
     font-size: 0.875rem;
     color: var(--college-gray);
     margin-bottom: 8px;
 }

 .news-meta-item {
     display: flex;
     align-items: center;
     margin-right: 16px;
 }

 .news-meta-item i {
     margin-right: 4px;
 }

 .news-title {
     font-size: 1.25rem;
     color: var(--college-blue);
     margin-bottom: 12px;
 }

 .news-excerpt {
     color: #1a1a1a;
     margin-bottom: 16px;
 }

 .news-link {
     color: var(--college-blue);
     font-weight: 500;
     display: inline-flex;
     align-items: center;
 }

 .news-link i {
     margin-left: 4px;
     transition: transform 0.3s;
 }

 .news-link:hover i {
     transform: translateX(4px);
 }

 .events-container {
     background: var(--college-light);
     border-radius: 8px;
     padding: 24px;
 }

 .event-year {
     font-size: 15px;
 }

 .events-title {
    font-size: 30px;
    color: var(--college-blue);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.2);
}


 .event-card {
     background: white;
     padding: 16px;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
     margin-bottom: 16px;
     transition: all 0.3s;
 }

 .event-card:hover {
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }

 .event-header {
     display: flex;
 }

 .event-date {
     min-width: 60px;
     background: var(--college-blue);
     color: white;
     text-align: center;
     padding: 8px;
     border-radius: 6px;
     margin-right: 16px;
 }

 .event-month {
     font-size: 0.75rem;
     text-transform: uppercase;
 }

 .event-day {
     font-size: 1.5rem;
     font-weight: 700;
 }

 .event-info h4 {
     color: var(--college-blue);
     margin-bottom: 4px;
 }

 .event-meta {
     font-size: 0.875rem;
     color: var(--college-gray);
 }

 .event-meta-item {
     display: flex;
     align-items: center;
     margin-top: 4px;
 }

 .event-meta-item i,
 .event-meta-item span {
     margin-right: 4px;
 }

 .newsletter {
     background: var(--college-blue);
     color: white;
     border-radius: 8px;
     padding: 24px;
     margin-top: 32px;
 }

 .newsletter h3 {
     font-size: 1.25rem;
     margin-bottom: 16px;
 }

 .newsletter p {
     opacity: 0.8;
     margin-bottom: 16px;
 }

 .newsletter-form {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .newsletter-input {
     padding: 12px;
     border-radius: 6px;
     border: none;
     font-size: 1rem;
 }

 .newsletter-button {
     background: white;
     color: var(--college-blue);
     border: none;
     border-radius: 6px;
     padding: 12px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
 }

 .newsletter-button:hover {
     background: var(--college-yellow);
     color: white;
 }

 /* Testimonials Section */
 .testimonials {
     background: var(--college-blue);
     color: white;
     position: relative;
     overflow: hidden;
 }

 .testimonials::before {
     content: '';
     position: absolute;
     top: 40px;
     left: 40px;
     width: 160px;
     height: 160px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
 }

 .testimonials::after {
     content: '';
     position: absolute;
     bottom: 40px;
     right: 40px;
     width: 240px;
     height: 240px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
 }

 .testimonials .section-title,
 .testimonials .section-subtitle {
     color: white;
 }

 .testimonials .section-subtitle {
     opacity: 0.8;
 }

 .testimonials .section-title:after {
     background: var(--college-yellow);
 }

 .testimonial-slider {
     position: relative;
     max-width: 900px;
     margin: 0 auto;
     height: 400px;
 }

 .testimonial-slide {
     position: absolute;
     width: 100%;
     opacity: 0;
     transition: all 0.7s ease;
     transform: translateX(50px);
 }

 .testimonial-slide.active {
     opacity: 1;
     transform: translateX(0);
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.1);
     -webkit-backdrop-filter: blur(5px);
     backdrop-filter: blur(5px);
     border-radius: 12px;
     padding: 32px;
 }

 .testimonial-content {
     display: flex;
     gap: 24px;
 }

 .testimonial-image {
     flex-shrink: 0;
 }

 .testimonial-image img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     border: 4px solid rgba(255, 255, 255, 0.3);
     -o-object-fit: cover;
     object-fit: cover;
 }

 .testimonial-text {
     position: relative;
 }

 .testimonial-quote {
     font-size: 3rem;
     color: rgba(255, 255, 255, 0.3);
     margin-bottom: 16px;
 }

 .testimonial-quote-text {
     font-size: 1.125rem;
     line-height: 1.7;
     margin-bottom: 24px;
 }

 .testimonial-author h4 {
     font-size: 1.25rem;
 }

 .testimonial-author p {
     opacity: 0.7;
 }

 .testimonial-nav {
     display: flex;
     justify-content: center;
     margin-top: 32px;
 }

 .testimonial-dot {
     width: 12px;
     height: 12px;
     background: rgba(255, 255, 255, 0.4);
     border-radius: 50%;
     margin: 0 4px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .testimonial-dot.active {
     background: white;
     width: 32px;
     border-radius: 12px;
 }

 .testimonial-arrows {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 -20px;
 }

 .testimonial-arrow {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .testimonial-arrow:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .testimonial-arrow.prev {
     margin-left: -20px;
 }

 .testimonial-arrow.next {
     margin-right: -20px;
 }

 /* Contact Section */
 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .contact-card {
     background: white;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background: rgba(30, 58, 138, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.25rem;
     color: var(--college-blue);
 }

 .contact-text h4 {
     font-size: 1.125rem;
     margin-bottom: 4px;
 }

 .contact-text p {
     color: var(--college-gray);
     font-size: 0.875rem;
 }

 .contact-form {
     background: white;
     padding: 32px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-label {
     display: block;
     margin-bottom: 6px;
     color: #444;
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 1rem;
     transition: all 0.3s;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--college-blue);
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 .map {
     height: 300px;
     border-radius: 8px;
     overflow: hidden;
     margin-top: 40px;
 }

 .map iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 /* Footer */
 .footer {
     background: #141e39;
     color: white;
     padding-top: 80px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 15px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }

 .footer-logo img {
     height: 100px;
     margin-right: 12px;
     border-radius: 50px;
 }

 .footer-about {
     opacity: 1;
     text-align: justify;
     margin-bottom: 20px;
 }

 .footer-links {
     padding-left: 15px !important;
 }

 .footer-links a:before {
     content: "\00BB";
     color: #fbbf24;
     font-weight: bold;
     display: inline-block;
     width: 1em;
     margin-left: -1em;
 }

 .footer-links a:hover {
     color: #fbbf24;
 }

 .social-links {
     display: flex;
     gap: 12px;
 }

 .social-link {
     width: 36px;
     height: 36px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
 }

 .social-link:hover {
     background: #fff;
     transform: translateY(-3px);
 }

 .footer-title {
     font-size: 1.25rem;
     margin-bottom: 24px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-title:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 2px;
     background: var(--college-yellow);
 }

 .footer-links {
     list-style: none;
 }

 .footer-link {
     padding: 8px 0;
     display: block;
     opacity: 1;
     transition: all 0.3s;
 }

 .footer-link:hover {
     opacity: 1;
     transform: translateX(4px);
 }

 .footer-contact-item {
     display: flex;
     gap: 12px;
     margin-bottom: 16px;
 }

 .footer-contact-icon {
     color: var(--college-yellow);
 }

 .footer-contact-text {
     opacity: 1;
 }

 .footer-bottom a {
     color: #fbbf24;
 }

 .footer-bottom a:hover {
     color: #ffffff;
 }

 .footer-bottom {
     text-align: center;
     padding: 24px 0;
     margin-top: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 1;
     font-size: 0.875rem;
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .container {
         padding: 0 16px;
     }

     .section {
         padding: 60px 0;
     }

     .hero-title {
         font-size: 2.75rem;
     }
 }

 @media (max-width: 768px) {
     .nav-desktop {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero-title {
         font-size: 2.25rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .about-float-image {
         display: none;
     }

     .grid-col-2,
     .grid-col-3,
     .grid-col-4 {
         grid-template-columns: 1fr;
     }

     .tour-grid,
     .contact-grid,
     .news-grid {
         grid-template-columns: 1fr;
     }

     .testimonial-slider {
         height: 500px;
     }

     .testimonial-content {
         flex-direction: column;
     }

     .testimonial-image {
         margin: 0 auto;
     }
 }

 @media (max-width: 576px) {
     .hero-title {
         font-size: 2rem;
     }

     .hero-buttons {
         flex-direction: column;
         width: 100%;
     }

     .hero-buttons .btn {
         width: 100%;
         text-align: center;
     }

     .section-title {
         font-size: 1.75rem;
     }

     .header-right {
         display: none;
     }
 }

 /* Animation Helper Classes */
 .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Mobile Menu */
 .mobile-menu {
     position: fixed;
     top: 80px;
     left: 0;
     width: 100%;
     background: white;
     padding: 20px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transform: translateY(-100%);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s;
     z-index: 999;
 }

 .mobile-menu.active {
     transform: translateY(0);
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu-link {
     display: block;
     padding: 12px 0;
     border-bottom: 1px solid #eee;
     font-weight: 500;
 }

 .mobile-submenu {
     padding-left: 20px;
     display: none;
 }

 .mobile-submenu.active {
     display: block;
 }

 .mobile-menu-link.has-submenu {
     position: relative;
 }

 .submenu-toggle {
     position: absolute;
     right: 0;
     top: 12px;
     width: 24px;
     height: 24px;
     text-align: center;
     line-height: 24px;
 }

 @media (max-width: 991px) {

     .desktop-bars {
         display: none;
     }

     .mobile-menu-btn {
         color: #fff !important;
     }

     body {
         font-family: 'Inter', sans-serif;
         color: #333;
         line-height: 1.6;
         width: 100% !important;
     }

     .logo-text h1 {
         font-size: 12px !important;
         color: #ffde42;
         line-height: 1.2;
     }

     .logo-text p {
         font-size: 10px !important;
         color: #ffffff;
         margin-top: 0px;
         margin-bottom: 0px;
     }

     .logo img {
         height: 40px !important;
         width: auto;
         border-radius: 100px;
     }

     header {
         position: fixed;
         width: 100% !important;
         z-index: 1000;
         padding: 15px 0;
         transition: all 0.3s ease;
     }

     .scrolled .logo-text h1 {
         font-size: 15px !important;
         color: #c03321 !important;
         line-height: 1.2;
     }

     #header.scrolled .logo-text p {
         font-size: 13px !important;
         color: #00224f !important;
         margin-top: -2px;
     }

     .secretary-image img {
         width: 100%;
     }

     .stats-grid {
         grid-template-columns: 1fr 1fr;
     }

     .tour-grid,
     .contact-grid {
         grid-template-columns: 1fr 1fr;
     }

     .testimonial-slider {
         height: 500px;
     }

     .testimonial-content {
         flex-direction: column;
     }

     .testimonial-image {
         margin: 0 auto;
     }
 }

 @media (max-width: 419px) {
     body {
         font-family: 'Inter', sans-serif;
         color: #333;
         line-height: 1.6;
         width: 128% !important;
     }

     header {
         position: fixed;
         width: 80% !important;
         z-index: 1000;
         padding: 15px 0;
         transition: all 0.3s ease;
     }
 }

 .desktop-bars {
     background: transparent !important;
     padding: 0px !important;
     border: none !important;
     margin-top: -15px;
     margin-left: 15px;
 }

 .offcanvas {
     position: fixed;
     bottom: 0;
     z-index: 1050;
     display: flex;
     flex-direction: column;
     max-width: 100%;
     visibility: hidden;
     background-color: #1e3a8ac9 !important;
     background-clip: padding-box;
     outline: 0;
     transition: transform .3s ease-in-out;
 }

 .offcanvas-body li {
     list-style: none;
     border-bottom: 1px dashed #ffffffd1;
 }

 .offcanvas-body ul {
     padding-left: 0px !important
 }

 .offcanvas-header h5 {
     color: #ffde42;
 }

 .offcanvas-header .btn-close {
     background-color: #fff !important;
     opacity: 1;
 }

 .scrolled .desktop-bars {
     color: #002853 !important;
 }

 .page-banner .auto-container {
     position: relative;
     z-index: 1;
 }

 .auto-container {
     position: static;
     max-width: 1200px;
     padding: 5px 15px;
     margin: 0 auto;
 }

 .bread-crumb {
     position: relative;
 }

 .page-banner .bread-crumb li {
     position: relative;
     display: inline-block;
     line-height: 30px;
     margin-left: 5px;
     color: #ffd85a;
     font-size: 16px;
     font-weight: 600;
 }
 .page-banner {
   background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(62 77 59 / 58%) 35%, rgb(255 255 255 / 0%) 100%), url(/frontend/images/banner.png);
    background-position: 100% 100%;
    background-size: cover;
    padding: 45px 0px;
 }
 .page-banner {
     text-align: center;
 }

 .page-banner .auto-container h2 {
     color:#ffffff;
 }

 header.sub-header {
     position: relative;
 }

 .enter-body-content {
     padding: 50px 0px 0px;
 }

 .pagination {
     gap: 0px !important;
     justify-content: center;
 }
.sub-header .logo-text h1 {
    font-size: 26px;
    color: #c03321 !important;
    line-height: 1.2;
}
.sub-header .logo-text h4 {
    font-size: 20px;
    color: #10543e !important;
    line-height: 1.2;
}
.sub-header .logo-text p {
   font-size: 17px;
    color: #00224f !important;
    margin-top: -2px;
}
.bg-menu{
background-color: #234640;
    margin-top: 5px;
}
.bg-menu ul{
    margin-bottom: 0px;
}        
/* Highlight active link in yellow */
.nav-desktop .nav-link.active,
.nav-desktop li.active > a.nav-link,
.nav-desktop a.active {
    color: yellow !important;
    font-weight: bold;
}

/* Blue background for active submenu items */
.nav-desktop .dropdown-content a.active {
    background-color: blue !important;
    color: yellow !important;
    font-weight: bold;
    border-radius: 4px;
    padding: 5px 10px;
    display: block;
}
.nav-desktop ul{
    padding-left: 0px !important;
}
.has-children .dropdown-submenu a{
    padding: 10px 15px !important;
}    
.quote{
    padding: 5px 5px 1px 5px;
    background-color: #BDBDBD57;
    border-style: solid;
    border-width: 0px 5px 0px 5px;
    border-color: #FFE346;
    border-radius: 10px 10px 10px 10px;
}
marquee span{
  align-items: center;
}
marquee img{
   margin-right: 10px;
}
marquee p{
 margin: 0px;
}
.enter-body-content h2{
    font-size: 25px;
    color: #035748;
    font-family: 'Inter', sans-serif;
    margin-bottom: 11px;
}
.enter-body-content h2:not(:first-of-type) {
      margin-top: 35px;
    margin-bottom: 35px;
}
.enter-body-content p{
     font-family: 'Inter', sans-serif;
     color: #333;
     line-height: 1.6;
 }
.bg-menu .fa-chevron-down:before{
   display: none; 
}
.bg-menu .dropdown-toggle::after{
    margin-left: 0px;
}
.enter-body-content h3{
    font-size: 18px;
    color: #c03321;
}
.main-album-gallry img{
    width: 100% !important;
    height: auto;
}
.main-album-gallry h3{
    text-align: center;
    margin-top: 15px;
}
.news-meta-item{
    font-size: 14px;
    color: #444444c7;
}
/* Menu Design */
 .nav-desktop .dropdown:hover>.dropdown-content {
     display: block;
     top: 100%;
     left: 0;
 }

 .dropdown-submenu .dropdown-content {
     top: 0;
     left: 100%;
 }

 .dropdown-submenu:hover>.dropdown-content {
     display: block;
 }

 .nav-desktop .dropdown-content {
     display: none;
     position: absolute;
     background: white;
     min-width: 180px;
     z-index: 1000;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .nav-desktop ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .nav-desktop li {
     position: relative;
 }
.top-header ul{
    list-style: none;
    display: flex;
    color: #fff; 
    gap: 20px;
    float: right;
 }
 .top-header ul li a:hover{
 color: #fff6aa;
 }
  .sub-header .top-header ul li a:hover{
     color: #c03321 !important;
  }
 .sub-header .top-header ul{
      color: #222222 !important; 
 }
 @media (min-width: 200px) and (max-width: 1000px) {
.top-header ul{
    float: none;
    padding: 0px;
    gap: 5px;
}
.sub-header .logo-text h1 {
    font-size: 26px;
    color: #c03321 !important;
    line-height: 1.2;
}
.sub-header .logo-text p {
    font-size: 17px;
    color: #00224f !important;
    margin-top: -2px;
}
header{
    width: 100% !important;
}
.filament-tiptap-grid, .filament-tiptap-grid-builder{
    display: inline !important;
}
.mobile-menu{
  top: 211px;
}
    .logo-text h1 {
        font-size: 18px !important;
        color: #ffde42;
        line-height: 1.2;
    }

.logo-text h4 {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.2;
}
}

/*form style*/
.error-message {
    color: red;
    font-size: 0.85em;
    margin-top: 4px;
}

.career-container {
    font-family: 'Georgia', serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    line-height: 1.6;
    color: #000;
}

.career-container h2 {
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
}

.career-container table {
    width: 100%;
    margin-top: 30px;
}

.career-container td {
    padding: 8px 4px;
    vertical-align: top;
}

.career-container .label {
    font-weight: bold;
    width: 250px;
}

.career-container .colon {
    width: 20px;
}

.career-container .apply-title {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.career-container .notice {
    font-style: italic;
    font-size: 0.95em;
    margin-top: 30px;
}
.career-form{
    width: 70%;
    padding: 15px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.danger{
  color: red;  
}
.upload-resume input{
   border: 1px solid #333;
}