@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--orange-primary: #f57c00;
	--orange-dark: #e65100;
	--orange-light: #fff3e0;
}

* {
	font-family: "Poppins", sans-serif;
}

.navbar-orange {
	background: var(--orange-primary);
	padding: 0;
}

.navbar-brand {
	color: #fff !important;
	font-weight: 700;
}

.navbar-nav .nav-link {
	color: #fff !important;
	font-weight: 500;
	padding: 1rem 1rem;
	transition: 0.3s;
}

.navbar-nav .nav-link:hover {
	background: var(--orange-dark);
}

.dropdown-menu {
	border: none;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.dropdown-item {
	padding: .7rem 1rem;
}

.dropdown-item:hover {
	background: var(--orange-light);
	color: var(--orange-dark);
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
	.navbar .dropdown:hover>.dropdown-menu {
		display: block;
		margin-top: 0;
	}

	.navbar .dropdown-menu {
		margin-top: 0;
	}
}

/* Custom Toggler */
.navbar-toggler {
	border: none;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 1.4rem;
}

.navbar-toggler:focus {
	box-shadow: none;
}

@media (max-width: 991.98px) {

	.navbar-brand img {
		width: 100px;
	}
	.navbar-nav .nav-link {
		padding: .85rem 0;
	}

	.navbar-collapse {
		background: var(--orange-primary);
		padding: 10px 0;
	}
}

/* ====================== notice =============== */
.notice-scroll {
    overflow: hidden;
    width: 100%;
    background: #fff3e0;
}

.notice-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: notice-scroll 25s linear infinite;
    padding: 12px 0;
}

.notice-text a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s;
}

.notice-text a:hover {
    color: var(--orange-primary);
    text-decoration: none;
}

.notice-text span {
    color: var(--orange-primary);
    font-weight: 700;
}

.notice-text:hover {
    animation-play-state: paused;
}

@keyframes notice-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}



/* ==================== about section ============= */

.about-section {
    background: #fff;
}

.section-title h2 {
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--orange-primary);
    margin: 0 auto;
    border-radius: 10px;
}

.custom-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--orange-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.custom-card h3 {
    color: var(--orange-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.custom-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.vision-card {
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    color: #fff;
}

.vision-card h3,
.vision-card p {
    color: #fff;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .custom-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}


/* ================= Courses ================= */

.course-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--orange-primary);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon i {
    color: #fff;
    font-size: 32px;
}

.course-card h4 {
    color: var(--orange-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .course-card {
        padding: 25px 20px;
    }

    .course-icon {
        width: 65px;
        height: 65px;
    }

    .course-icon i {
        font-size: 26px;
    }

    .course-card h4 {
        font-size: 18px;
    }
}


/* ================= Other Facilities ================= */

.other-facilities {
    background: #fff8f2;
}

.facility-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    padding: 35px 30px;
    position: relative;
}

.facility-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.facility-top {
    margin-bottom: 25px;
}

.facility-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon i {
    color: #fff;
    font-size: 40px;
}

.facility-box h3 {
    text-align: center;
    color: var(--orange-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.facility-box p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

.facility-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 28px;
    color: #555;
}

.facility-box ul li:last-child {
    border-bottom: none;
}

.facility-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--orange-primary);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .facility-box {
        padding: 25px 20px;
    }

    .facility-icon {
        width: 75px;
        height: 75px;
    }

    .facility-icon i {
        font-size: 32px;
    }

    .facility-box h3 {
        font-size: 20px;
    }
}


/* ====================  faculties ================ */
/* ================= Faculty ================= */

.faculty-section {
    background: #f8f9fa;
}

.department-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    margin-bottom: 35px;
}

.department-title {
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    color: #fff;
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 600;
}

.department-title i {
    margin-right: 10px;
}

.department-card table {
    margin: 0;
}

.department-card thead {
    background: #fff3e0;
}

.department-card th {
    color: var(--orange-dark);
}

.department-card td,
.department-card th {
    padding: 14px 20px;
    vertical-align: middle;
}

.department-card tbody tr:hover {
    background: #fff8f2;
}

@media (max-width: 768px) {
    .department-title {
        font-size: 18px;
        padding: 15px;
    }

    .department-card td,
    .department-card th {
        padding: 10px;
        font-size: 14px;
    }
}



/* ===================== admission ============ */
/* ================= Admission ================= */

.seat-badge {
    background: var(--orange-primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
}

.admission-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid var(--orange-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.admission-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-icon i {
    font-size: 32px;
}

.admission-card h3 {
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.admission-card ul {
    list-style: none;
    padding: 0;
}

.admission-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.admission-card li:before {
    content: "✓";
    color: var(--orange-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-box {
    background: #fff3e0;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
}

.info-box i {
    font-size: 50px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.document-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.contact-box {
    background: linear-gradient(
        135deg,
        var(--orange-primary),
        var(--orange-dark)
    );
    color: #fff;
    padding: 50px;
    border-radius: 20px;
}

.contact-box i {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-box h3 {
    margin-top: 15px;
    font-weight: 600;
}

@media (max-width:768px) {

    .admission-card {
        padding: 25px;
    }

    .contact-box {
        padding: 35px 20px;
    }
}


/* ================= Gallery ================= */

.gallery-filter button {
    border: none;
    background: #fff;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    font-weight: 500;
    transition: .3s;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: var(--orange-primary);
    color: #fff;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245,124,0,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 600;
}

@media(max-width:768px){
    .gallery-card img{
        height:220px;
    }
}


/* ===================== contact us ================= */

/* ================= Contact Page ================= */

.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-top: 4px solid var(--orange-primary);
}

.contact-card h3 {
    color: var(--orange-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    color: var(--orange-primary);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.15rem rgba(245,124,0,.2);
}

.contact-btn {
    background: var(--orange-primary);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
}

.contact-btn:hover {
    background: var(--orange-dark);
    color: #fff;
}

@media (max-width:768px) {

    .contact-card {
        padding: 25px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item i {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* ================== footer ============= */

.footer-section {
    background: #F57C00;
	background: linear-gradient(61deg, rgba(245, 124, 0, 1) 0%, rgba(209, 142, 27, 1) 41%, rgba(56, 166, 235, 1) 100%);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-section p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: var(--orange-dark);
    transform: translateY(-3px);
}

.footer-section hr {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}