 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .header {
            background-image: url(img/History.jpg) ;
            background-color: rgba(175, 16, 16, 0.744);
            background-blend-mode: multiply;
            background-size: cover;
            background-position: center;
            background:(135deg, #c41e3a, #a01729);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            
            display:flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;  /* Removes underline from the link */
            color: inherit;         /* Makes the text use the parent's color */
        }

        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            display: inline-block;
        }

        .college-name {
            font-size: 15px;
            font-weight: bold;
            line-height: 1;
            
    }


        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1rem;
        }

        .nav-menu li {
            list-style: none; /* Redundant, but makes it clear */
        }

        .nav-menu li a {
            display: inline-block;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none; /* Removes underline from links */
            color: inherit; /* Keeps text color consistent with parent */
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .nav-menu li a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.251), rgba(0, 0, 0, 0.218)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23999" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .large-text {
            position: absolute;
            font-size: 8rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.066);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }

        .btn {
            background: #c41e3a;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            background: #a01729;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }

        .quick-links {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: #c41e3a;
            padding: 1rem;
            border-radius: 10px 0 0 10px;
            color: white;
            z-index: 50;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quick-links:hover {
            background: #a01729;
            transform: translateY(-50%) translateX(-5px);
        }

        /* Slider dots */
        .slider-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .choose-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .choose-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #333;
        }

        .choose-section .highlight {
            color: #c41e3a;
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: #666;
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #c41e3a;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }

        /* News Section */
        .news-section {
            margin: 4rem 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-icon {
            width: 40px;
            height: 40px;
            background: #c41e3a;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .section-title {
            font-size: 2rem;
            color: #333;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #c41e3a;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .news-date {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .news-content {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .news-link {
            color: #c41e3a;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            color: #a01729;
        }

        /* BHC News Banner */
        .bhc-banner {
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border-radius: 10px;
        }

        .bhc-banner h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .bhc-banner .highlight {
            color: #c41e3a;
        }

        .bhc-banner p {
            font-size: 1.2rem;
            color: #666;
        }

        .bhc-banner a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .bhc-banner a:hover {
            color: #c41e3a;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .program-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .program-card:hover {
            transform: translateY(-5px);
            border-color: #c41e3a;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: #f8f9fa;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .section-title-center {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .quote-icon {
            font-size: 3rem;
            color: #c41e3a;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .testimonial-role {
            color: #c41e3a;
            font-weight: 500;
        }

        /* Events Section */
        .events-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: #c41e3a;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
        }

        .event-type {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            color: white;
            display: inline-block;
        }

        .event-type.intramurals {
            background: #e74c3c;
        }

        .event-type.career-fair {
            background: #3498db;
        }

        .event-type.book-day {
            background: #2ecc71;
        }

        .event-date {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .event-time {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .event-btn {
            background: #c41e3a;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .event-btn:hover {
            background: #a01729;
            transform: translateY(-2px);
        }

        /* Partnership Section */
        .partnership-section {
            background: #f8f9fa;
            padding: 4rem 2rem;
            text-align: center;
        }

        .partnership-section h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .partner-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .partner-placeholder {
            font-size: 1.2rem;
            color: #666;
            font-weight: 500;
        }

       /* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 3rem 1rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
            display:flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;  /* Removes underline from the link */
            color: inherit;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: inline-block;
}

.footer-college-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c41e3a;
  line-height: 1;
}


.footer-info {
  max-width: 600px;
}

.footer-info p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-contact p {
  margin-bottom: 0.3rem;
}

.footer-nav {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 2rem 0 1rem;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  cursor: pointer;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.footer-menu li:hover {
  background: rgb(233, 233, 233);
  color: #da1a1a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bdc3c7;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    padding: 0 1rem;
  }

  .footer-logo {
    flex-direction: column; /* Stack logo and text vertically on mobile for better fit */
  }

  .footer-logo-img {
    width: 50px;
    height: 50px;
  }

  .footer-college-name {
    font-size: 1.2rem;
  }
}




        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .large-text {
                font-size: 4rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-menu {
                gap: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* The sidenav */
.sidenav {
    height: 35%;
    width: 0; /* Start hidden */
    position: fixed;
    top: 7%;
    right: 0;
    
    background-color: #b30e2c86;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 999;
    border-radius: 5%;
    border-color: #f5f5f5;
    
}

.sidenav a {
    padding: 6px 18px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    background-color: rgba(255,255,255,0.1);
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
}

.openbtn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #b30e2c;
    color: #fff;
    padding: 12px 16px;
    border: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1000;
    font-weight: bold;
    transition: background-color 0.2s;
}
.openbtn:hover {
    background-color: #8f0a21;
}

.quick-links-icon {
    width: 24px;   /* Adjust size */
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
}

/* About US PAGE */

.hero-section {
    background-color: #a01729;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.story-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background-color: #fdf9f3;
}

.story-content {
    flex: 1 1 300px;
}

.story-image {
    flex: 1 1 300px;
    text-align: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-box {
    border: 2px solid #9a0029;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.mission-box h3 {
    color: #9a0029;
}

.timeline-section {
    padding: 2rem;
    text-align: center;
}

.timeline-button {
    background: #fff;
    color: #9a0029;
    border: 2px solid #9a0029;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.timeline-content {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.achievements-section {
    padding: 2rem;
    background: #f8f8f8;
    text-align: center;
}

.achievement-box {
    border: 2px solid #9a0029;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.leadership-section {
    padding: 2rem;
    text-align: center;
}

.leader-placeholder {
    width: 200px;
    height: 150px;
    border: 2px solid #9a0029;
    margin: 1rem auto;
    border-radius: 5px;
}

.vision-section {
    background-color: #9a0029;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.vision-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.vision-card {
    background: white;
    color: #9a0029;
    padding: 1rem;
    border-radius: 5px;
    flex: 1 1 150px;
}

.footer {
    background: #aaa;
    padding: 1rem;
    text-align: center;
}

.footer-logo {
    width: 50px;
}


/* Admission Page */


.admission-process {
  background: #f9f6f2;
  padding: 3rem 1rem;
}

/* === Process Steps Boxes === */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.step {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 10px;
  width: 280px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  
  background: #a01729;
  color: #fff;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;

  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step span:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  background: #c11d36; /* Slightly lighter red on hover */
  cursor: pointer;
}

.step p {
  color: #555;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Animation for future use */
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* === Programs Section === */
.programs-section,
.scholarships-section {
  padding: 2.5rem 1rem;
  text-align: center;
}

.program-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.program-buttons button,
.details-button {
  padding: 0.6rem 1.5rem;
  background: #a01729;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-buttons button:hover,
.details-button:hover {
  background: #fff;
  color: #a01729;
  border: 2px solid #a01729;
}

/* === Info Section === */
.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
  background: #f9f6f2;
  justify-content: center;
}

.info-box {
  background: #fff;
  border: 2px solid #a01729;
  border-radius: 5px;
  padding: 1rem;
  flex: 1 1 300px;
}

/* === Apply Call to Action === */
.apply-section {
  background: #a01729;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.apply-section h2 {
  margin-bottom: 0.5rem;
}

.apply-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.apply-section button {
  background: #fff;
  color: #a01729;
  border: 2px solid #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.apply-section button:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}