        /* General Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }/* Top Header Styling */
/* Top Header Styling */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    background: #da2c38;
    color: #fff;
    padding: 10px 20px;
  flex-wrap: wrap;
}

.top-header .left-section,
.top-header .right-section {
  display: flex;
  align-items: center;
  flex: 1;
      color: #fff;

}

.top-header .left-section {
  justify-content: flex-start;
}

.top-header .right-section {
  justify-content: flex-end;
}

.top-header a {
    color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.top-header i {
  margin-right: 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    text-align: center;
  }
  .top-header .left-section,
  .top-header .right-section {
    justify-content: center;
    margin-bottom: 5px;
  }
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #ddd;background: hsla(40, 100%, 96%, 1);

background: linear-gradient(90deg, hsla(40, 100%, 96%, 1) 0%, hsla(11, 100%, 92%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(40, 100%, 96%, 1) 0%, hsla(11, 100%, 92%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(40, 100%, 96%, 1) 0%, hsla(11, 100%, 92%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FFF9ED", endColorstr="#FFDCD4", GradientType=1 );
}
/* Container styling */
.college-name-container {
    text-align: center;
    font-family: 'Staatliches', serif; /* Font family applied globally */
}


.main-header .college-logo {
    max-width: 90px;
    height: auto;
	margin-left:150px;
	margin-right:150px;

}

.main-header .college-text {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.main-header .college-text h1 {
    font-size:42px;
    font-weight: bold;
    color: #021b35;
    margin: 5px 0;
	 text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.5), /* Depth shadow */
        0 0 8px rgba(243, 156, 18, 0.7); /* Glow effect */
    letter-spacing: 1px;
  font-family: "Oswald", serif;
}

.main-header .college-text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #f39c12;
    margin: 5px 0;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.5), /* Depth shadow */
        0 0 8px rgba(243, 156, 18, 0.7); /* Glow effect */
    letter-spacing: 1px;
}


.main-header .college-text h3 {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .main-header .college-logo {
        max-width: 100px;
        margin: 10px 0;
    }

    .main-header .college-text h1 {
        font-size: 28px;
    }

    .main-header .college-text h2 {
        font-size: 20px;
    }

    .main-header .college-text h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-header .college-logo {
        max-width: 80px;
    }

    .main-header .college-text h1 {
        font-size: 24px;
    }

    .main-header .college-text h2 {
        font-size: 18px;
    }

    .main-header .college-text h3 {
        font-size: 12px;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #021b35;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-toggler {
    border: none;
    background-color: #f39c12;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 10px;
    display: flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.navbar .nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.navbar .nav-link:hover, 
.navbar .nav-link.active {
    color: #f39c12;
    transform: scale(1.1);
}

.navbar .dropdown-menu {
    background-color: #021b35;
    border: none;
    border-radius: 5px;
}

.navbar .dropdown-menu .dropdown-item {
    color: #fff;
    font-size: 14px;
    padding: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f39c12;
    color: #fff;
}

/* Search Field */
.search-form .form-control {
    border: 2px solid #f39c12;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #021b35;
    color: #fff;
    margin-right: 10px;
}

.search-form .form-control::placeholder {
    color: #fff;
}

.search-form .btn-search {
    background-color: #f39c12;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.search-form .btn-search:hover {
    background-color: #fff;
    color: #f39c12;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar .nav-link {
        font-size: 14px;
        margin: 5px 0;
    }

    .search-form {
        margin-top: 10px;
        flex-direction: column;
    }

    .search-form .form-control {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Slider */
.carousel-inner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-inner img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .carousel-inner img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-inner img {
        height: 200px;
    }
}
        /* Section Titles */
        .section-title {
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            color: #6c5b7b;
            margin: 40px 0 20px;
        }

        /* Columns for News, Tenders, and Results */
        .info-column {
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            position: relative;
        }

        .info-column h3 {
            font-size: 20px;
            color: #6c5b7b;
            font-weight: bold;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .info-item .icon {
            width: 50px;
            height: 50px;
            background: #6c5b7b;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            margin-right: 15px;
            position: relative;
        }

        .info-item .icon .date {
            position: absolute;
            bottom: -10px;
            background: #ff7f50;
            font-size: 10px;
            padding: 3px 5px;
            border-radius: 5px;
        }

        .info-item a {
            color: #6c5b7b;
            font-weight: bold;
            text-decoration: none;
        }

        .info-item a:hover {
            color: #ff7f50;
        }

        /* Footer */
        .footer {
            background: #6c5b7b;
            color: white;
            padding: 30px 0;
        }

        .footer a {
            color: #ff7f50;
            text-decoration: none;
        }.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container i {
    font-size: 24px;
    margin-bottom: 5px;
}

.card-header {
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.card-footer {
    border-top: none;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.marquee-container {
    display: flex;
    align-items: center;
    background-color: #2c2f54; /* Navy Blue */
    padding: 10px;
    overflow: hidden;
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Smaller Latest News Label */
.marquee-container .label {
    background-color: #dc3545; /* Red */
    padding: 4px 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-right: 10px;
    color: #fff;
    white-space: nowrap;
    display: inline-block;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

/* Marquee area for scrolling text */
.marquee-container marquee {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.85rem;
    color: #fff;
}

/* Optional: Styling for individual news items within marquee */
.marquee-container marquee span {
    display: inline-block;
    margin-right: 20px;
}

.marquee-container marquee span i {
    margin-right: 8px;
    color: #ffd700; /* Gold for icons */
}

.marquee-container marquee span .date {
    font-size: 0.8rem;
    color: #ddd;
}

/* Principal Message Section */
.principal-message { 
background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/prin_bg.jpg') repeat center center;
    
  /* Background sizes for each layer:
     - The overlay covers the entire element
     - The image tiles with 500px by 500px tiles */
  background-size: 100% 100%, 500px 500px;
    padding: 60px 20px;
    text-align: center;
}
.signature {
      text-align: right;
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    
    .social-icons {
      text-align: right;
    }
    
    .social-icons a {
      color: #fff;
      margin-left: 10px;
      font-size: 24px;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .social-icons a:hover {
      color: #ccc;
    }

.principal-message .container {
    max-width: 1200px;
	color:#fff;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6); /* Add semi-transparent background for readability */
    padding: 20px;
    border-radius: 15px;
}

.message-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.image-container {
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.principal-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	border:solid 4px #fff;
}

.message-content {
    flex: 2;
    text-align: left;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
	color:#000;
}

.message-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #b81f2f;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-wrapper {
        flex-direction: column;
    }

    .image-container {
        max-width: 200px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .message-content {
        text-align: center;
    }

    .message-text {
        font-size: 1rem;
    }
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #b81f2f;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-wrapper {
        flex-direction: column;
    }

    .image-container {
        max-width: 200px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .message-content {
        text-align: center;
    }

    .message-text {
        font-size: 1rem;
    }
}
/* Sidebar Container */
.sidebar {
    background: #f7f9fc;
    border: 1px solid #dcdfe3;
    border-radius: 5px;
    padding: 20px;
    max-width: 300px;
    margin: 20px auto;
}

/* Sidebar Title */
.sidebar-title {
    font-size: 1.5em;
    color: #002855;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-left: 4px solid #002855;
    padding-left: 10px;
}
/* Sidebar Container */
.sidebar {
    background-color: #f8f9fc; /* Light background for the sidebar */
    border: 1px solid #d6dbe2;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    max-width: 300px; /* Set the sidebar width */
    margin: 0 auto;
}

/* Sidebar Title */
.sidebar-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #002d6a; /* Dark blue color for the title */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-left: 5px solid #002d6a; /* Highlighted border */
    padding-left: 10px;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu Items */
.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #003d6b; /* Blue background for menu items */
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu li a:hover {
    background-color: #0057a3; /* Lighter blue on hover */
}

/* Icons inside the menu */
.sidebar-menu li a i {
    font-size: 1.2em;
    margin-right: 10px;
    color: #ffc107; /* Icon color (Yellow) */
}

/* Arrow Icon for Navigation */
.sidebar-menu li a .arrow {
    font-size: 1em;
    color: #fff; /* White arrow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        max-width: 100%;
        padding: 15px;
    }
}
        .icon-cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px auto;
            max-width: 1200px;
        }

        .icon-card {
            background: linear-gradient(135deg, #8EC5FC, #E0C3FC);
            width: 250px;
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .icon-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        .icon-card i {
            font-size: 40px;
            margin-bottom: 10px;
            color: #fff;
        }

        .icon-card p {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
            margin: 0;
        }

        /* Enhanced Gradient Colors */
        .icon-card.admission {
            background: linear-gradient(135deg, #56CCF2, #2F80ED); /* Bright Blue Gradient */
        }

        .icon-card.examination {
            background: linear-gradient(135deg, #FF9A8B, #FF6A88, #FF99AC); /* Vibrant Pink Gradient */
        }

        .icon-card.anti-ragging {
            background: linear-gradient(135deg, #FAD961, #F76B1C); /* Bright Yellow-Orange Gradient */
        }

        .icon-card.student-union {
            background: linear-gradient(135deg, #43E97B, #38F9D7); /* Vibrant Green-Blue Gradient */
        }

        @media (max-width: 768px) {
            .icon-cards-container {
                flex-direction: column;
                align-items: center;
            }

            .icon-card {
                width: 90%;
                margin: 10px 0;
            }
        }
        .gallery-container {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }

        .gallery-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 images per row */
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 200px; /* Fixed height for uniformity */
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 10px;
            font-size: 16px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .caption {
            opacity: 1;
        }

        /* Modal Styling */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s ease, opacity 0.3s ease;
        }

        .modal.open {
            visibility: visible;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }

        .modal-content img {
            width: 60%; /* Adjust image size to 60% of the modal container */
            height: auto; /* Maintain aspect ratio */
            border-radius: 10px;
            margin: 0 auto;
            display: block;
        }

        .modal-caption {
            color: #fff;
            text-align: center;
            margin-top: 10px;
            font-size: 18px;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            padding: 5px 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 images per row for medium screens */
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr; /* 1 image per row for small screens */
            }
        }
/* Footer Base Styles */
.footer {
    background: linear-gradient(to bottom, #072448, #021b35);
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 10px 0 25px;
}

/* Footer Top Sections */
.footer-top {
    padding-bottom: 30px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 10px;
}

.college-name {
    font-size: 18px;
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 5px;
}

.college-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
    color: #ccc;
}

.footer-contact i {
    color: #f39c12;
    margin-right: 8px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    color: #f39c12;
    margin-bottom: 15px;
    border-left: 4px solid #f39c12;
    padding-left: 10px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links i {
    color: #f39c12;
    margin-right: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    background: #021b35;
    padding: 10px 0;
    border-top: 2px solid #f39c12;
    margin-top: 20px;
}

.footer-bottom-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-col-left,
.footer-col-center,
.footer-col-right {
    flex: 1;
    font-size: 14px;
}

.footer-col-left {
    text-align: left;
}

.footer-col-center {
    text-align: center;
}

.footer-col-right {
    text-align: right;
}

.footer-bottom a {
    color: #f39c12;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom span {
    background: #f39c12;
    color: #021b35;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}
/* Footer Address Bar */
.footer-address-bar {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.footer-address-bar i {
    color: #f39c12;
    margin-right: 8px;
}

.footer-address-bar a {
    color: #fff;
    text-decoration: none;
}

.footer-address-bar a:hover {
    text-decoration: underline;
}

.footer-address-bar p {
    margin: 0;
    line-height: 1.5;
}/* Footer Social Icons */
.footer-social {
    text-align: center;
    margin-top: 15px;
}

.footer-social .social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20%;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social .facebook {
    background-color: #3b5998;
}

.footer-social .instagram {
    background-color: #c13584;
}

.footer-social .twitter {
    background-color: #1da1f2;
}

.footer-social .youtube {
    background-color: #ff0000;
}

.footer-social .social-icon:hover {
    transform: scale(1.1);
    color: #fff;
}
/* Scroll to Top Button */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

#scrollTop:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

#scrollTop i {
    font-size: 20px;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar (for horizontal scrolling) */
}

::-webkit-scrollbar-thumb {
    background-color: #f39c12; /* Scrollbar thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 3px solid #021b35; /* Add space around thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e67e22; /* Hover effect for scrollbar thumb */
}

::-webkit-scrollbar-track {
    background-color: #021b35; /* Scrollbar track color */
    border-radius: 10px; /* Rounded corners for the track */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Add shadow inside the track */
}

::-webkit-scrollbar-corner {
    background-color: #021b35; /* Corner area for scrollbars */
}

/* Scrollbar for Firefox */
* {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #f39c12 #021b35; /* Thumb color and track color */
}
* Left Content */
.left-content {
    flex: 2;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

 .page-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        color: #00172d;
        text-align: center; /* Ensures the text is centered */
    }

    .page-title::after {
        content: "";
        display: block;
        width: 50px; /* Initial visible width */
        height: 3px;
        background-color: #f39c12;
        margin: 10px auto 0; /* Centers the underline */
        transition: width 0.4s ease; /* Animation for width on hover */
    }

    .page-title:hover::after {
        width: 70px; /* Slightly wider underline on hover */
    }

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-list .bullet {
    margin-right: 10px;
    color: #f39c12;
    font-size: 12px;
}

/* Right Sidebar */
.right-sidebar {
    flex: 1;
    padding: 20px;
    background: #eaf4fc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Breadcrumb */
.breadcrumb {
    background-color: #fefae0;
    padding: 20px 10px;
    font-size: 14px;
    color: #333;
}

.breadcrumb a {
    text-decoration: none;
    color: #f39c12;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.principal-message-section {
    background: linear-gradient(to right, #021b35, #032541);
    color: #fff;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.principal-message-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.principal-image img {
    width: 220px;
    height: auto;
    border-radius: 15px;
    border: 4px solid #f39c12;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.principal-message {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.principal-message .title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.principal-message .quote {
    font-size: 18px;
    font-style: italic;
    color: #f39c12;
    margin-bottom: 15px;
}

.principal-message .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-read-more:hover {
    background-color: #d98210;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

	        /* CSS from the previous response */
        .sidebar {
            background-color: #f8f9fc; /* Light background for the sidebar */
            border: 1px solid #d6dbe2;
            border-radius: 5px;
            padding: 20px;
            width: 100%;
            max-width: 300px; /* Set the sidebar width */
            margin: 0 auto;
        }

        .sidebar-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #002d6a; /* Dark blue color for the title */
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            border-left: 5px solid #002d6a; /* Highlighted border */
            padding-left: 10px;
        }

        .sidebar-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sidebar-menu li {
            margin-bottom: 10px;
        }

        .sidebar-menu li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #003d6b; /* Blue background for menu items */
            color: #fff;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease-in-out;
            font-size: 14px;
            font-weight: 500;
        }

        .sidebar-menu li a:hover {
            background-color: #0057a3; /* Lighter blue on hover */
        }

        .sidebar-menu li a i {
            font-size: 1.2em;
            margin-right: 10px;
            color: #ffc107; /* Icon color (Yellow) */
        }

        .sidebar-menu li a .arrow {
            font-size: 1em;
            color: #fff; /* White arrow */
        }

        @media (max-width: 768px) {
            .sidebar {
                max-width: 100%;
                padding: 15px;
            }
        }   .navbar-nav .nav-link.active {
        background-color: #f39c12; /* Highlight color for active item */
        color: #fff !important; /* Text color for active item */
        border-radius: 5px;
    }

    .navbar-nav .dropdown-menu .dropdown-item.active {
        background-color: #f39c12; /* Highlight color for active dropdown item */
        color: #fff !important; /* Text color for active dropdown item */
    }
	.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    text-align: center;
}

    .principal-container {
      display: flex;
      flex-wrap: wrap;
      background-color: #f8f9fa; /* White background */
      border-radius: 12px;
      overflow: hidden;
	  margin-bottom:20px;
    }

    .principal-photo {
      flex: 1;
      position: relative;
      background-image: url("images/prin.jpg"); /* Replace with your image */
      background-size: cover;
      background-position: center;
      height: 400px;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      padding: 20px;
      color: #ffffff;
    }

    .photo-overlay {
      background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
      padding: 15px 20px;
      border-radius: 10px;
      text-align: center;
      width: 90%;
    }

    .photo-overlay h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .photo-overlay p {
      font-size: 1rem;
      margin: 0;
    }

    .social-links {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .social-links a {
       display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #f39c12;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .social-links a:hover {
      transform: scale(1.2);
      color: #fff; /* Hover color */
	      transform: scale(1.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background: #f39c12;
    }

    .principal-content {
      flex: 2;
      padding: 40px;
    }

    .principal-content h2 {
      font-size: 2rem;
      color: #343a40;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 4px solid #c3511e;
      display: inline-block;
    }

    .principal-content p {
      font-size: 1rem;
      color: #495057;
      line-height: 1.8;
      text-align: justify;
    }

    .principal-content strong {
      color: #c3511e;
    }

    .content-footer {
      margin-top: 20px;
      font-weight: 500;
      color: #343a40;
    }

    .content-footer span {
      font-size: 1.1rem;
      font-weight: 700;
      color: #495057;
    }

    @media (max-width: 768px) {
      .principal-photo {
        height: 300px;
      }

      .principal-content {
        padding: 20px;
      }
    }        .advertisement-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .advertisement-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
        }

        .advertisement-item:last-child {
            border-bottom: none;
        }

        .advertisement-calendar {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #6C5B7B;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 5px;
            font-size: 14px;
        }

        .advertisement-calendar .month {
            font-weight: bold;
            font-size: 12px;
        }

        .advertisement-calendar .date {
            font-size: 18px;
        }

        .advertisement-title {
            flex: 1;
        }

        .advertisement-title h3 {
            font-size: 16px;
            color: #555;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .advertisement-title h3 .new-icon {
            background: #F67280;
            color: #fff;
            padding: 4px 10px;
            font-size: 12px;
            border-radius: 3px;
            animation: blink 1s infinite alternate;
        }

        .advertisement-actions {
            display: flex;
            gap: 10px;
        }

        .advertisement-actions .btn {
            background: #6C5B7B;
            color: #fff;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: background 0.3s ease;
            border: none;
        }

        .advertisement-actions .btn:hover {
            background: #C06C84;
        }

        .pdf-viewer {
            margin-top: 20px;
            width: 100%;
            height: 600px;
            border: 1px solid #ddd;
            border-radius: 10px;
            display: none;
        }

        @keyframes blink {
            0% {
                opacity: 1;
            }
            100% {
                opacity: 0.6;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .advertisement-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .advertisement-calendar {
                width: 50px;
                height: 50px;
            }

            .pdf-viewer {
                height: 400px;
            }
        }
		.department-card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.department-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.department-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 15px;
}

.department-name h5 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Responsive design */
@media (max-width: 768px) {
  .department-card img {
    height: 200px;
  }

  .department-name h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .department-card img {
    height: 150px;
  }

  .department-name h5 {
    font-size: 1rem;
  }
}
