:root {
    --primary-color: #c06a1f;
    /* Orange from logo */
    --secondary-color: #1E8E8E;
    /* Blue-green from logo */
    --accent-color: #E52525;
    /* Red from logo */
    --dark-color: #000000;
    /* Black from logo */
    --light-color: #f8f9fa;
    --gradient-color: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #333;
}
a{text-decoration: none!important;}
/* Header Styles */
.top-header {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 15px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navigation Styles */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

/*.navbar-nav .nav-link::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -5px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background-color: var(--primary-color);*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.navbar-nav .nav-link:hover::after {*/
/*    width: 100%;*/
/*}*/

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.admission-open {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 30px 30px;
    font-weight: bold;
    animation: pulse 2s infinite;
    margin-left: 15px;
    display: block;
    margin-bottom: -20px;
    text-align: center;
    z-index: 1;
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Notification Bar */
.notification-area {
    background-color: var(--secondary-color);
    position: relative;
    height: 55px;

}

.notification-bar {
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.notification-content {
    display: inline-flex;
    width:max-content;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.notification-item {
    padding: 0 50px;
    white-space: nowrap;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    text-align: center;
    color: #21e5e5;
    padding: 20px;
    background-color: rgb(120 201 201 / 0%);
    border-radius: 10px;
    max-width: 800px;
    text-shadow: 2px 2px 2px #000;
}

.slider-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.slider-content p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Statistics Section with Enhanced Animation */
.stats-section {
    padding: 60px 0 0px 0;
    background-color: transparent;
    margin-top: -100px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 0 20px 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    /* overflow: hidden; */
    border: 1px solid #42b4b4;
   width: 165px;
    height: 160px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
}
.stat-icon {
    font-size: 30px;
    color: #42b4b4;
    margin-bottom: 5px;
    position: absolute;
    top: -50px;
    left: 28%;
    z-index: 20;
    background: #fff;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 2px;
}
/* About Section */
.about-section {
    padding: 80px 0 20px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--light-color);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 300px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
    color: white;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.quote-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto;
    display: block;
   
}

.quote-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}
.about-img{
    display: flex;
    align-items: center;
    position: relative;

}
.about-img::before{
    content: "";
    position: absolute;
    background-color: #fff;
    right:-20px;
    top: 40px;
    width: 90%;
    height: 90%;
    z-index: -1;
    border: 15px dotted var(--secondary-color);
}
/* Modal Styles */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--secondary-color);
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}

.submit-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

/* Affiliation Section with Enhanced Animation */
.affiliation-section {
    padding: 60px 0 30px 0;
    background-color: var(--light-color);
}

.logo-scroll {
    display: flex;
    overflow: hidden;
    margin-top: 40px;
}

.logo-container {
    display: flex;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 180px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.logo-item:hover::before {
    opacity: 0.1;
}

.logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
}

/* Why Choose Us Section with Enhanced Animation */
.why-choose-section {
    padding: 60px 0;
}

.choose-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.choose-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* .choose-card:hover .choose-icon {
    transform: rotateY(360deg);
} */

.choose-icon {
    font-size: 3rem;
    color: var(--primary-color);
    /* margin-bottom: 20px; */
    /* transition: all 0.8s ease; */
    width: 80px;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -1px;
    top: -1px;
    border: 1px solid #1e8e8e;
}

.choose-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
    margin-left: 65px;
    height: 55px;
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Study Destination Section with Enhanced Animation */
.study-destination-section {
    padding: 80px 0;
}

.destination-map {
    width: 100%;
    height: 600px;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.destination-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.campus-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.campus-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.campus-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.campus-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.campus-card:hover .campus-image::before {
    opacity: 1;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.campus-card:hover .campus-image img {
    transform: scale(1.1) rotate(2deg);
}

.campus-info {
    padding: 20px;
    background-color: white;
    position: relative;
    z-index: 2;
}

.campus-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.campus-card:hover .campus-name {
    color: var(--primary-color);
}

/* Study Program Section */
.study-program-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.search-box {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid #ddd;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--accent-color);
}

.program-list {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.program-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--gradient-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.program-item:hover::before {
    transform: scaleY(1);
}

.program-item:hover {
    background-color: var(--light-color);
    padding-left: 30px;
}

.program-item:last-child {
    border-bottom: none;
}

.program-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.apply-link {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Gallery Section with Enhanced Animation */
.gallery-section {
    padding: 80px 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 250px;
    position: relative;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 126, 0, 0.7), rgba(30, 142, 142, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.photo-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.photo-item:hover::before {
    opacity: 1;
}

.photo-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.photo-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1) rotate(3deg);
}

.photo-item::before,
.photo-item::after {
    pointer-events: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 126, 0, 0.3), rgba(30, 142, 142, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Us Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--secondary-color);
    transform: rotate(360deg);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}

.form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
    background: url(../images/footer-bg.jpg);
    background-size: cover;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(4 46 48 / 91%);
    z-index: 0;
}
.footer .container{z-index: 1;
position: relative;}
.footer-widget h4 {
    color: #fff;
    margin-bottom: 20px;
    z-index: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .admission-open {
        display: inline-block;
        margin: 10px 0;
    }

    .slider-content h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
    }

    .slider-container {
        height: 400px;
    }

    .logo-item {
        width: 150px;
        height: 90px;
    }

    .campus-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
    .social-links {
     justify-content: end;
}
.stat-card {
   
    
    margin-bottom: 50px;
}
.navbar-nav
{
    position: absolute!important;
    left: 0;
    top: 0;
    background: #fff;
    width: 80%;
}
.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid var(--secondary-color);
    text-align: left;
    padding-left: 50px;
}
.about-img::before {
  
    right: 20px;
   
}
}

.study-program-section {
    background: #f7f9fc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    max-width: 750px;
    margin: auto;
    color: #555;
}

/* Search Box */
.search-box {
    display: flex;
    width: 100%;
    max-width: 450px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.3s;
}

.search-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-btn {
    background: #007bff;
    border: none;
    color: #fff;
    padding: 0 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    background: #0056d2;
}

/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Program Card */
.program-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 2px 2px 5px var(--secondary-color);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.program-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.apply-btn {
    display: inline-block;
    padding: 8px 18px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.apply-btn:hover {
    background: var(--primary-color);
}


/* Social Icons */
.social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #d9d9d9;
    border: 1px solid #3a4b63;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

/* General */
.section-title {
    font-size: 2rem;
    font-weight: 700;
}

/* Mission & Vision Image Box */
.mv-image-wrapper {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
}

.mv-image-wrapper img {
    object-fit: cover;
}

.mv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.mv-quote {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 1.1rem;
    font-style: italic;
}

/* Left Border Accent */
.border-left-accent {
    border-left: 4px solid var(--secondary-color);
    padding-left: 16px;
}

/* Founder Image */
.founder-img-wrapper {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.founder-img-wrapper img {
    object-fit: cover;
}

/* Founder Quote Box */
.founder-quote-box {
    background: #e8f0ff;
    padding: 20px;
    border-left: 4px solid var(--bs-primary);
    border-radius: 6px;
}

.quote-text {
    color: #003366;
    font-size: 1.1rem;
}

.quote-author {
    margin-top: 10px;
    font-weight: 600;
    color: #0055aa;
}

/* Core Values Cards */
.value-card {
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 28px;
}

/* Animation */
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: url(../images/breadcrumb.jpg)
        center/cover no-repeat;
    padding: 40px 0;
    position: relative;
    color: white;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* overlay effect */
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #e0e0e0;
}

.breadcrumb-item.active {
    color: #f0f0f0;
}
h3{
    color: var(--secondary-color)!important;
    font-weight: 700;
}
.value-icon{
   
    background:var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

/* Generic Card Hover */
.contact-card, .card {
    border-radius: 12px;
    background: #fff;
    transition: 0.3s ease;
    border: 1px solid var(--secondary-color)!important;
    padding: 15px;
}

.contact-card:hover, .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-control, .form-select{ 
    border: 1px solid var(--secondary-color)!important;
}
/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Info Icons */
.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Icons */
.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}

.social-circle:hover {
    opacity: 0.8;
}

/* Callback Background */
.callback-bg {
    background: linear-gradient(135deg, #005fcc, #003f85);
}

 .program-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
            height: 100%;
            text-align: left;
        }
        .program-card img {
            height: 180px;
            object-fit: cover;
        }
        .badge-top {
            position: absolute;
            top: 12px;
            left: 12px;
        }
        .badge-year {
            position: absolute;
            bottom: 12px;
            left: 12px;
        }
        .chip {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            background: #e6f6f4;
            color: #0a7c72;
            margin: 3px;
        }
        .text-cyan {
            color: #0a7c72;
        }
        .bg-cyan{background:#42b4b4!important;}
        .study-destination-section .card-body{border:1px solid #42b4b4!important;}
        
        /* Card Hover Animation */
.country-card {
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,124,114,0.08), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.country-card:hover::before {
    opacity: 1;
}

/* Flag Icon */
.country-flag {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0a7c72;
}

/* Button */
.btn-view {
    margin-top: 15px;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
}
.country-flag {
    font-size: 3rem;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #000;
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.8), rgba(23,162,184,0.8));
    z-index: -1;
}


.dropdown-menu li{padding: 10px 15px;position: relative;}
           .dropdown-menu li:before{
            content: "\f02d"; /* Font Awesome book icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid icon */
            position: absolute;
            left: 10px;
            top: 13px;
            width: 20px;
            height: 20px;
            color: #0a7c72;
            transition: 3s all ease;
        }
        .dropdown-menu li:hover:before{
            content: "\f518"; /* Font Awesome book icon */
        }
 
        
        .dropdown-menu li:after{
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: #0a7c72;
            transition: 2s all ease;
        }
        .dropdown-menu li:hover:after{
            width: 100%;
        }
        .testimonial-section {
    background: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-icon {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-course {
    color: #777;
    font-size: 0.95rem;
}
.custom-table-border{
  border: 1px solid #1e8e8e !important;
  border-collapse: collapse !important;
}

.custom-table-border th,
.custom-table-border td{
  border: 1px solid #1e8e8e !important;
}



.whatsapp-float {
      position: fixed;
      width: 55px;
      height: 55px;
      bottom: 115px;
      right: 25px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 26px;
      box-shadow: 0 4px 15px rgba(0,0,0,.2);
      z-index: 1000;
      transition: transform .3s ease;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    
    @media (max-width:768px) {
        .whatsapp-float {
    display: none !important;
}
    }