* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    background: #0a192f;
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    /* same as gap */
}

/* SUBMENU HIDDEN */
.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #0a192f;
    list-style: none;
    min-width: 180px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
}

.submenu {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.dropdown:hover .submenu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* SUBMENU ITEMS */
.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 10px;
    color: white;
}

.submenu a:hover {
    background: #1c3b70;
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .submenu {
    display: flex;
}

.logo img {
    height: 85px;
}

.title {
    flex: 1;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

@media(max-width:768px) {

    .submenu {
        position: static;
        display: none;
        background: #112240;
    }

    .submenu.active {
        display: block;
    }

    .submenu a {
        padding: 12px;
    }
}

/* MOBILE */
@media(max-width:768px) {

    nav {
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .logo img {
        height: 60px;
    }

    .title {
        order: 3;
        width: 100%;
        margin-top: 5px;
        font-size: 1rem;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .menu {
        position: absolute;
        top: 90px;
        left: -100%;
        width: 100%;
        background: #0a192f;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 15px 0;
    }
}

/* SLIDER */
.slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}

/* DOT INDICATORS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-bg {
    width: 100vw;
    height: 60vh;
    /* reduced from 100vh */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    margin-left: calc(-50vw + 50%);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 20px;
}

.hero-text {
    color: white;
    max-width: 850px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 12px 28px;
    border: none;
    background: #00aaff;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #0088cc;
}

/* ABOUT SECTION */
.about-section {
    background: #ffffff;
    padding: 40px 30px;
}

/* CONTAINER */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* 🔥 BIG LEFT IMAGE */
.about-image {
    flex: 1.2;
}

.about-image img {
    width: 100%;
    height: 100%;
    /* increased height */
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* RIGHT CONTENT BALANCE */
.about-content {
    flex: 1;
}

/* CONTENT */
.about-content h3 {
    font-size: 1.6rem;
    color: #0a192f;
    margin-bottom: 10px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* LIST */
.about-content ul {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 8px;
    color: #444;
}

.inner-content ul {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.inner-content ul li {
    margin-bottom: 8px;
    color: #444;
}

/* BUTTON */
.about-btn {
    padding: 10px 18px;
    border: none;
    background: #0a192f;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.about-btn:hover {
    background: #1c3b70;
}

/* HOVER */
.about-container:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-content ul {
        text-align: left;
        display: inline-block;
    }
}

/* NEWS SECTION */
.news-section {
    background: #f9fbff;
    padding: 80px 30px;
}

/* VIEW ALL BUTTON WRAPPER */
.news-action {
    text-align: center;
    margin-top: 30px;
}

/* BUTTON */
.view-all-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #0a192f;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* HOVER EFFECT */
.view-all-btn:hover {
    background: #1c3b70;
    transform: translateY(-3px);
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* CARD */
.news-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

/* IMAGE */
.news-card img {
    width: 100%;
    height: 280px;
    /* increased height */
    object-fit: cover;
    display: block;
}

/* IMAGE HOVER ZOOM */
.news-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.news-card h3 {
    margin: 10px 15px;
    font-size: 1.1rem;
    color: #0a192f;
}

.news-card p {
    margin: 0 15px;
    font-size: 0.9rem;
    color: #555;
}

/* TAG */
.tag {
    display: inline-block;
    margin: 10px 15px 0;
    background: #0a192f;
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}

/* DATE */
.date {
    display: block;
    margin: 15px;
    font-size: 0.8rem;
    color: gray;
}

/* HOVER EFFECT */
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* HOD SECTION */
.hod-section {
    background: #ffffff;
    padding: 80px 30px;
}

/* MAIN LAYOUT */
.hod-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    background: #f9fbff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* IMAGE */
.hod-image img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* TEXT */
.hod-content h3 {
    font-size: 1.5rem;
    color: #0a192f;
}

.role {
    color: gray;
    margin-bottom: 15px;
}

.hod-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* BUTTON */
.hod-btn {
    margin-top: 10px;
    padding: 10px 18px;
    border: none;
    background: #0a192f;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.hod-btn:hover {
    background: #1c3b70;
}

/* FAQ SECTION */
.faq-section {
    background: #f9fbff;
    padding: 80px 30px;
}

/* CONTAINER */
.faq-container {
    max-width: 1000px;
    margin: auto;
}

/* SECTION HEADING */
/* SECTION HEADING */
.faq-heading {
    margin: 40px 0 20px;
    padding: 12px 18px;
    background: #0a192f;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 8px 18px rgba(10, 25, 47, 0.15);
}

/* FAQ ITEM */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

/* QUESTION BUTTON */
.faq-question {
    width: 100%;
    padding: 18px 22px;
    border: none;
    background: white;
    color: #0a192f;

    font-size: 1rem;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    transition: 0.3s ease;
}

/* HOVER */
.faq-question:hover {
    background: #f2f6fc;
}

/* PLUS ICON */
.faq-question span {
    font-size: 1.4rem;
    transition: 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

/* ANSWER TEXT */
.faq-answer p {
    padding: 0 22px 20px;
    color: #555;
    line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ANNOUNCEMENT SECTION */
.announcement-section {
    background: #f9fbff;
    padding: 80px 30px;
}

/* CENTER */
.announcement-container {
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.announcement-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-6px);
}

/* FULL HEIGHT IMAGE SECTION */
.announcement-image {
    width: 100%;
    height: 100%;
    /* 👈 FULL HERO-STYLE HEIGHT */
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* key for full-fill without distortion */
    display: block;
}

/* CONTENT BELOW IMAGE */
.announcement-content {
    padding: 25px;
    text-align: center;
}

.announcement-content h3 {
    color: #0a192f;
    margin-bottom: 10px;
}

.announcement-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* BUTTON */
.announcement-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0a192f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.announcement-btn:hover {
    background: #1c3b70;
}

/* MOBILE */
@media(max-width:768px) {

    .faq-question {
        font-size: 0.95rem;
        padding: 16px;
    }

    .faq-answer p {
        padding: 0 16px 18px;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hod-container {
        flex-direction: column;
        text-align: center;
    }

    .hod-image img {
        width: 100%;
        height: auto;
    }
}

/* FULL WIDTH COURSES */
.courses-section {
    background: #f9fbff;
    padding: 80px 0;
}

/* 2 COLUMN GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 30px;
}

/* CARD */
.course-card {
    height: 340px;
    /* increased height */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: white;
}

/* TEXT */
.overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* HOVER EFFECT */
.course-card:hover {
    transform: scale(1.03);
}

.course-card:hover {
    filter: brightness(1.1);
}

.news-card,
.course-card {
    border-radius: 16px;
}

@media(max-width:768px) {
    .news-card img {
        height: 220px;
    }

    .course-card {
        height: 240px;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .course-card {
        height: 220px;
    }
}

/* LABS SECTION */
.labs-section {
    background: url('facilities.jpeg') no-repeat center center/cover;
    padding: 100px 30px;
    position: relative;
}

/* DARK OVERLAY */
.labs-overlay {
    background: rgba(10, 25, 47, 0.85);
    padding: 60px 30px;
    border-radius: 16px;
    max-width: 1100px;
    margin: auto;
}

/* LIGHT TITLE */
.section-title.light {
    color: white;
}

/* GRID */
.labs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* CARD */
.lab-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    color: white;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* HOVER */
.lab-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

/* TEXT */
.lab-card h3 {
    margin-bottom: 8px;
}

.lab-card p {
    font-size: 0.9rem;
    color: #ddd;
}

/* MOBILE */
@media(max-width:768px) {
    .labs-grid {
        grid-template-columns: 1fr;
    }
}


/* RESEARCH SECTION */
.research-section {
    background: #ffffff;
    padding: 80px 30px;
}

/* GRID */
.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* BOX */
.research-box {
    background: #f9fbff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

/* HEADINGS */
.research-box h3 {
    margin-bottom: 20px;
    color: #0a192f;
}

/* ITEMS */
.research-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.research-item:hover {
    transform: translateX(5px);
}

/* TITLE */
.research-item h4 {
    color: #0a192f;
    margin-bottom: 5px;
}

/* TEXT */
.research-item p {
    font-size: 0.9rem;
    color: #555;
}

/* MOBILE */
@media(max-width:768px) {
    .research-grid {
        grid-template-columns: 1fr;
    }
}

/* STATS SECTION */
.stats-section {
    background: url('count.png') no-repeat center center/cover;
    padding: 100px 30px;
    position: relative;
}

/* OVERLAY */
.stats-overlay {
    background: rgba(10, 25, 47, 0.85);
    padding: 60px 30px;
    border-radius: 16px;
    max-width: 1000px;
    margin: auto;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

/* BOX */
.stat-box {
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* NUMBER */
.stat-box h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

/* TEXT */
.stat-box p {
    font-size: 1rem;
    color: #ddd;
}

/* MOBILE */
@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h2 {
        font-size: 2.2rem;
    }
}

/* FACULTY SECTION */
.faculty-section {
    background: #ffffff;
    padding: 80px 30px;
}

/* GRID */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.faculty-card {
    position: relative;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    cursor: pointer;
}

/* IMAGE FULL HEIGHT */
.faculty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.faculty-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* TEXT */
.faculty-card h3 {
    margin-bottom: 5px;
}

.faculty-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* BUTTON */
.faculty-card button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #0a192f;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.faculty-card button:hover {
    background: #0a192f;
    color: white;
}

/* HOVER EFFECT */
.faculty-card:hover img {
    transform: scale(1.1);
}

.faculty-card:hover {
    transform: translateY(-8px);
}

/* MOBILE */
@media(max-width:768px) {
    .faculty-card {
        height: 300px;
    }
}

/* CONTACT SECTION */
.contact-section {
    background: #0a192f;
    color: white;
    padding: 80px 30px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

/* BOX */
.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 14px;
    backdrop-filter: blur(8px);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* HEADINGS */
.contact-box h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

/* TEXT */
.contact-box p {
    margin-bottom: 10px;
    color: #ddd;
    line-height: 1.6;
}

/* BUTTON */
.contact-btn {
    margin-top: 15px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background: white;
    color: #0a192f;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1c3b70;
    color: white;
}

/* HOVER EFFECT */
.contact-box:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: #0a192f;
    color: white;
    padding: 60px 30px 20px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* LOGO */
.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
    color: white;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    font-size: 0.9rem;
}

/* MOBILE */
@media(max-width:768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
        display: block;
    }
}

/* VIDEO SECTION */
.video-section {
    background: #0a192f;
    padding: 80px 30px;
    color: white;
    text-align: center;
}

/* HEADER TEXT */
.video-header {
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}

.video-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.video-header p {
    color: #ccc;
    line-height: 1.6;
}

/* VIDEO CONTAINER */
.video-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* IFRAME */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* THRUST AREAS SECTION */
.thrust-section {
    background: #f9fbff;
    padding: 80px 30px;
}

/* GRID */
.thrust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.thrust-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* ICON */
.thrust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* TITLE */
.thrust-card h3 {
    color: #0a192f;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* TEXT */
.thrust-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* HOVER */
.thrust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* MOBILE */
@media(max-width:768px) {
    .video-header h2 {
        font-size: 1.5rem;
    }
}

/* SECTIONS */
section {
    padding: 80px 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}

.contact {
    background: #0a192f;
    color: white;
    text-align: center;
}

@media(max-width:768px) {
    .announcement-image {
        height: 55vh;
        /* reduce height for mobile */
    }
}