﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI';
    overflow-x: hidden;
}

/* TOP HEADER */

.top-header {

    background: #0b2242;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.social-icons a {

    color: white;
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffc107;
}

.top-contact i {
    margin-right: 6px;
    color: #ffc107;
}

/* NAVBAR */

.main-navbar {

    background: linear-gradient(to right, #001f4d, #002d73);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-img {

    width: 70px;
    margin-right: 15px;
}

.school-title h2 {

    color: white;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.school-title h1 {

    color: white;
    font-size: 32px;
    margin: 0;
    line-height: 34px;
    font-weight: 700;
}

.school-title p {

    color: #ffc107;
    margin: 0;
    font-size: 13px;
}

.navbar-nav .nav-link {

    color: white !important;
    font-weight: 600;
    margin: 0 6px;
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #ffc107 !important;
}

.dropdown-menu {

    border-radius: 0;
    border: none;
}

.dropdown-item:hover {

    background: #002d73;
    color: white;
}

.portal-buttons {

    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

.portal-buttons a {

    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;

    font-weight: 600;
    font-size: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    white-space: nowrap;
    min-width: 145px;

    transition: 0.3s;
}
.student-btn {

    background: #ffc107;
    color: black;
}

.staff-btn {

    background: #0d5db8;
    color: white;
}

/* HERO SECTION */

.hero-section {

    height: 620px;

    background:
        linear-gradient(rgba(0,20,60,0.7),
        rgba(0,20,60,0.6)),
        url('../images/school-banner.jpg');

    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {

    color: white;
    max-width: 650px;
}

.welcome-text {

    color: #ffc107;
    font-size: 26px;
    font-family: cursive;
}

.hero-content h1 {

    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 55px;
}

.hero-content h2 {

    font-size: 62px;
    color: #ffc107;
    font-weight: 800;
    line-height: 70px;
}

.hero-content p {

    font-size: 20px;
    line-height: 34px;
    margin-bottom: 35px;
    max-width: 600px;
}

.explore-btn {

    background: transparent;
    border: 2px solid white;
    padding: 12px 28px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    border-radius: 6px;
    transition: 0.3s;
}

.portal-buttons a {

    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* NOTIFICATIONS */

.notification-section {

    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.notification-box,
.quick-links {

    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.15);
}

.notification-header {

    background: #002d73;
    color: white;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
}

.notification-header a {

    color: #ffc107;
    text-decoration: none;
    font-size: 18px;
}

.notification-content {

    width: 60%;
    font-size: 17px;
    font-weight: 600;
}

.notification-item {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.date-box {

    width: 80px;
    text-align: center;
    color: #002d73;
}

.date-box h3 {

    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.notification-content {

    width: 60%;
    font-size: 22px;
    font-weight: 600;
}

.pdf-btn {

    border: 2px solid #0d5db8;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #0d5db8;
    font-weight: 600;
}

.quick-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.quick-item {

    text-align: center;
    padding: 40px 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.quick-item:hover {

    background: #002d73;
    color: white;
}

.quick-item i {

    font-size: 42px;
    color: #0d5db8;
    margin-bottom: 15px;
}

.quick-item span {

    display: block;
    font-size: 18px;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content h2 {
        font-size: 55px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .school-title h1 {
        font-size: 24px;
    }

    .notification-item {

        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .notification-content {
        width: 100%;
    }

    .quick-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

    /* WELCOME SECTION */

.welcome-section {

    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.section-subtitle {

    color: #0d4d92;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-small-title {

    color: #6c757d;
    margin-top: 12px;
    font-size: 20px;
    letter-spacing: 1px;
}

.welcome-title {

    font-size: 42px;
    font-weight: 700;
    color: #062b5b;
    line-height: 65px;
    margin-bottom: 25px;
}

.welcome-text-content {

    color: #555;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 20px;
    text-align: justify;
}

.read-more-btn {

    display: inline-block;
    background: #062b5b;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

.read-more-btn:hover {

    background: #ffc107;
    color: black;
}

/* IMAGE SECTION */

.welcome-image-wrapper {

    position: relative;
    height: 550px;
}

.blue-shape {

    position: absolute;
    width: 180px;
    height: 70px;
    background: #0d4d92;
    border-radius: 18px;
    top: 140px;
    left: -20px;
    z-index: 1;
}

.main-welcome-img {

    width: 380px;
    height: 430px;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
    top: 40px;
    left: 80px;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
}

.side-welcome-img {

    width: 220px;
    height: 340px;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 3;
    border: 5px solid #ffc107;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .welcome-title {

        font-size: 36px;
        line-height: 48px;
    }

    .welcome-image-wrapper {

        height: auto;
        margin-top: 50px;
    }

    .main-welcome-img,
    .side-welcome-img,
    .blue-shape {

        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 20px;
    }

    .side-welcome-img {

        border-width: 4px;
    }

    .blue-shape {

        display: none;
    }
}
    /* MESSAGE DESK */

.message-desk-section {

    background: #f5f7fb;
}

.message-box {

    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */

.message-header {

    background: linear-gradient(to right,#012b66,#003b8f);
    color: white;
    padding: 28px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-small-title {

    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.message-header h2 {

    font-size: 44px;
    margin-top: 8px;
    font-weight: 700;
}

.message-right-title {

    color: #ffc107;
    font-weight: 700;
    font-size: 22px;
}

/* TABS */

.custom-tabs {

    border: none;
    background: #f3f3f3;
    padding: 18px 20px 0;
}

.custom-tabs .nav-link {

    border: none;
    background: white;
    color: #002d73;
    font-weight: 700;
    padding: 16px 30px;
    margin-right: 15px;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
}

.custom-tabs .nav-link.active {

    background: #002d73;
    color: white;
    border-bottom: 4px solid #ffc107;
}

/* CONTENT */

.message-content-area {

    padding: 35px;
}

.message-img {

    width: 100%;
    border-radius: 15px;
    height: 320px;
    object-fit: cover;
}

.message-content-area h3 {

    color: #002d73;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.message-content-area p {

    color: #555;
    font-size: 18px;
    line-height: 34px;
}

.message-btn {

    display: inline-block;
    margin-top: 10px;
    background: #002d73;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.message-btn:hover {

    background: #ffc107;
    color: black;
}

/* BIRTHDAY BOX */

.birthday-box {

    background: linear-gradient(to bottom,#012b66,#003b8f);
    border-radius: 25px;
    padding: 35px;
    color: white;
    height: 100%;
}

.birthday-header {

    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.birthday-header i {

    background: #ffc107;
    color: #002d73;
    width: 65px;
    height: 65px;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.birthday-header h3 {

    font-size: 34px;
    margin: 0;
    font-weight: 700;
}

.birthday-header span {

    font-size: 16px;
    opacity: 0.9;
}

/* BIRTHDAY CONTENT */

.birthday-avatar {

    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid #ffc107;
    object-fit: cover;
    margin-bottom: 25px;
}

.birthday-content h4 {

    font-size: 32px;
    font-weight: 700;
}

.birthday-content p {

    font-size: 20px;
}

.birthday-nav {

    margin-top: 35px;
}

.birthday-nav button {

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: white;
    margin: 0 5px;
    transition: 0.3s;
}

.birthday-nav button:hover {

    background: #ffc107;
    color: black;
}

/* RESPONSIVE */

@media(max-width:991px){

    .message-header {

        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .message-header h2 {

        font-size: 30px;
    }

    .message-right-title {

        font-size: 16px;
    }

    .message-content-area h3 {

        font-size: 24px;
        margin-top: 20px;
    }

    .birthday-box {

        margin-top: 30px;
    }
}

    /* MESSAGE DESK */

.message-desk-section {

    background: #f5f7fb;
}

.message-box {

    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */

.message-header {

    background: linear-gradient(to right,#012b66,#003b8f);
    color: white;
    padding: 28px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-small-title {

    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.message-header h2 {

    font-size: 22px;
    margin-top: 8px;
    font-weight: 700;
}

.message-right-title {

    color: #ffc107;
    font-weight: 700;
    font-size: 22px;
}

/* TABS */

.custom-tabs {

    border: none;
    background: #f3f3f3;
    padding: 18px 20px 0;
}

.custom-tabs .nav-link {

    border: none;
    background: white;
    color: #002d73;
    font-weight: 700;
    padding: 16px 30px;
    margin-right: 15px;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
}

.custom-tabs .nav-link.active {

    background: #002d73;
    color: white;
    border-bottom: 4px solid #ffc107;
}

/* CONTENT */

.message-content-area {

    padding: 35px;
}

.message-img {

    width: 100%;
    border-radius: 15px;
    height: 320px;
    object-fit: cover;
}

.message-content-area h3 {

    color: #002d73;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.message-content-area p {

    color: #555;
    font-size: 18px;
    line-height: 34px;
}

.message-btn {

    display: inline-block;
    margin-top: 10px;
    background: #002d73;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.message-btn:hover {

    background: #ffc107;
    color: black;
}

/* BIRTHDAY BOX */

.birthday-box {

    background: linear-gradient(to bottom,#012b66,#003b8f);
    border-radius: 25px;
    padding: 35px;
    color: white;
    height: 100%;
}

.birthday-header {

    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.birthday-header i {

    background: #ffc107;
    color: #002d73;
    width: 65px;
    height: 65px;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.birthday-header h3 {

    font-size: 34px;
    margin: 0;
    font-weight: 700;
}

.birthday-header span {

    font-size: 16px;
    opacity: 0.9;
}

/* BIRTHDAY CONTENT */

.birthday-avatar {

    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid #ffc107;
    object-fit: cover;
    margin-bottom: 25px;
}

.birthday-content h4 {

    font-size: 32px;
    font-weight: 700;
}

.birthday-content p {

    font-size: 20px;
}

.birthday-nav {

    margin-top: 35px;
}

.birthday-nav button {

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: white;
    margin: 0 5px;
    transition: 0.3s;
}

.birthday-nav button:hover {
    background: #ffc107;
    color: black;
}

/* RESPONSIVE */

@media(max-width:991px){

    .message-header {

        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .message-header h2 {

        font-size: 30px;
    }

    .message-right-title {

        font-size: 16px;
    }

    .message-content-area h3 {

        font-size: 24px;
        margin-top: 20px;
    }

    .birthday-box {

        margin-top: 30px;
    }
}

    /* VISION MISSION VALUES */

.vision-section {

    background: #f5f7fb;
    padding-top: 20px;
}

.vision-wrapper {

    background: white;
    border-radius: 22px;
    padding: 45px 30px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

.vision-item {

    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 15px;
}

.vision-icon {

    width: 95px;
    height: 95px;
    min-width: 95px;

    background: linear-gradient(to bottom,#012b66,#003b8f);

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 5px 15px rgba(0,0,0,0.12);
}

.vision-icon i {

    color: white;
    font-size: 42px;
}

.vision-content h3 {

    color: #062b5b;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vision-content p {

    color: #555;
    font-size: 17px;
    line-height: 30px;
    margin: 0;
}

.custom-border {

    border-color: #f0c040 !important;
}

/* HOVER EFFECT */

.vision-item {

    transition: 0.3s;
}

.vision-item:hover {

    transform: translateY(-5px);
}

.vision-item:hover .vision-icon {

    background: linear-gradient(to bottom,#f0b400,#ffc107);
}

.vision-item:hover .vision-icon i {

    color: #062b5b;
}

/* RESPONSIVE */

@media(max-width:991px){

    .vision-item {

        flex-direction: column;
        text-align: center;
        margin-bottom: 35px;
    }

    .custom-border {

        border: none !important;
    }

    .vision-content h3 {

        font-size: 28px;
    }
}

    /* FACILITIES SECTION */

.facilities-section {

   background: #f8f9fc;
    position: relative;
    padding: 70px 0 !important;
}

.section-title .small-heading {

    color: #002d73;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.section-title h2 {

    font-size: 34px;
    color: #062b5b;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 45px;
}

.section-title p {

    color: #666;
    font-size: 14px;
}

.section-title p a {

    color: #002d73;
    font-weight: 600;
    text-decoration: none;
}

/* SLIDER WRAPPER */

.facilities-slider-wrapper {

    position: relative;
    display: flex;
    align-items: center;
}

/* SLIDER */

.facilities-slider {

    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 10px;

    scrollbar-width: none;
}

.facilities-slider::-webkit-scrollbar {

    display: none;
}

/* CARD */

.facility-card {

    min-width: 240px;
    background: white;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;

    border: 1px solid #ececec;

    transition: 0.3s;
    flex-shrink: 0;
}

.facility-card:hover {

    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

/* ICON */

.facility-icon {

    width: 85px;
    height: 85px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 25px;
}

.facility-icon i {

    color: white;
    font-size: 26px;
}

/* COLORS */

.orange {

    background: #d86d05;
}

.cyan {

    background: #00a8c6;
}

.blue {

    background: #1b57c4;
}

/* TITLE */

.facility-card h4 {

    color: #062b5b;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
/* BUTTONS */
.scroll-btn {

    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;

    background: white;
    color: #062b5b;

    box-shadow: 0px 3px 8px rgba(0,0,0,0.08);

    position: absolute;
    z-index: 5;

    transition: 0.3s;
}

.scroll-btn:hover {

    background: #002d73;
    color: white;
}

.left-btn {

    left: -20px;
}

.right-btn {

    right: -20px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title h2 {

        font-size: 38px;
    }

    .facility-card {

        min-width: 220px;
        padding: 35px 20px;
    }

    .facility-card h4 {

        font-size: 22px;
    }

    .scroll-btn {

        display: none;
    }
}
    /* TOPPERS SECTION */

.toppers-section {

    background:
        linear-gradient(rgba(0,20,60,0.95),
        rgba(0,20,60,0.95)),
        url('../images/pattern.png');

    background-size: cover;
    padding: 90px 0;
}

/* TITLE */

.topper-title span {

    color: #ffc107;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.topper-title h2 {

    color: white;
    font-size: 52px;
    font-weight: 700;
    margin-top: 10px;
}

.topper-title p {

    color: #d7d7d7;
    font-size: 17px;
}

/* BOX */

.topper-box {

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 25px;
    padding: 25px;
    height: 100%;
}

.topper-box-header {

    border-bottom: 3px solid #ffc107;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.white-line {

    border-bottom: 3px solid #d8e7ff;
}

.topper-box-header h3 {

    color: white;
    font-size: 26px;
    font-weight: 700;
}

/* BUTTON */

.view-btn-area {

    padding-top: 70px;
}

.view-topper-btn {

    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.view-topper-btn:hover {

    background: #ffc107;
    color: black;
}

/* SLIDER */

.topper-slider-wrapper {

    position: relative;
}

.topper-slider {

    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;

    scrollbar-width: none;
}

.topper-slider::-webkit-scrollbar {

    display: none;
}

/* CARD */

.topper-card {

    min-width: 280px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;

    flex-shrink: 0;
}

.topper-img {

    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #0d47a1;
    object-fit: cover;
    margin-bottom: 20px;
}

/* TAGS */

.topper-tags {

    margin-bottom: 18px;
}

.yellow-tag,
.blue-tag {

    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.yellow-tag {

    background: #ffc107;
    color: black;
}

.blue-tag {

    background: #0d47a1;
    color: white;
}

/* TEXT */

.topper-card h4 {

    color: #062b5b;
    font-size: 24px;
    font-weight: 700;
}

.topper-card h2 {

    color: #0d47a1;
    font-size: 44px;
    font-weight: 800;
}

.topper-card p {

    color: #666;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* SCROLL BUTTON */

.topper-scroll-btn {

    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.05);
    color: white;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 5;
}

.topper-scroll-btn.left {

    left: -18px;
}

.topper-scroll-btn.right {

    right: -18px;
}

/* FEATURES */

.topper-features {

    background: white;
    border-radius: 20px;
    margin-top: 45px;
    padding: 35px 20px;
}

.feature-item {

    display: flex;
    gap: 18px;
    align-items: start;
    padding: 10px 15px;
}

.feature-icon-box {

    width: 72px;
    height: 72px;
    min-width: 72px;

    background: linear-gradient(to bottom,#012b66,#003b8f);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box i {

    color: #ffc107;
    font-size: 28px;
}

.feature-item h4 {

    color: #062b5b;
    font-size: 22px;
    font-weight: 700;
}

.feature-item p {

    color: #555;
    font-size: 15px;
    line-height: 28px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .topper-title h2 {

        font-size: 36px;
    }

    .topper-card {

        min-width: 240px;
    }

    .feature-item {

        margin-bottom: 25px;
    }

    .border-start {

        border: none !important;
    }
}
    /* MEDIA GALLERY SECTION */

.media-gallery-section {

    background: linear-gradient(to bottom,#f8f9fc,#eef3fb);
    padding: 90px 0;
}

/* TITLE */

.gallery-main-title .gallery-icon {

    width: 80px;
    height: 80px;

    background: #002d73;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: auto;
    margin-bottom: 20px;

    border: 3px solid #ffc107;
}

.gallery-main-title .gallery-icon i {

    color: white;
    font-size: 24px;
}

.gallery-main-title span {

    color: #002d73;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.gallery-main-title h2 {

    color: #062b5b;
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
}

.gallery-main-title p {

    color: #666;
    font-size: 18px;
    line-height: 32px;
}

/* BOX */

.gallery-box {

    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

/* HEADER */

.gallery-header {

    padding: 18px 25px;
    color: white;
    font-size: 30px;
    font-weight: 700;
}

.blue-header {

    background: linear-gradient(to right,#012b66,#0047b3);
}

.red-header {

    background: linear-gradient(to right,#9d0000,#d61d1d);
}

/* PHOTO SLIDER */

.photo-slider-wrapper {

    position: relative;
    padding: 20px;
}

.photo-slider {

    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;
}

.photo-slider::-webkit-scrollbar {

    display: none;
}

/* IMAGE */

.gallery-img {

    width: 220px;
    height: 260px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

/* BUTTONS */

.gallery-scroll-btn {

    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;

    background: white;
    color: #062b5b;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);

    z-index: 5;
}

.gallery-scroll-btn.left {

    left: -10px;
}

.gallery-scroll-btn.right {

    right: -10px;
}

/* BUTTON AREA */

.gallery-btn-area {

    padding: 25px;
}

/* BUTTONS */

.photo-btn,
.youtube-btn {

    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.photo-btn {

    border: 2px solid #0047b3;
    color: #0047b3;
}

.photo-btn:hover {

    background: #0047b3;
    color: white;
}

.youtube-btn {

    border: 2px solid #d61d1d;
    color: #d61d1d;
}

.youtube-btn:hover {

    background: #d61d1d;
    color: white;
}

/* VIDEO SECTION */

.video-gallery-area {

    display: flex;
    gap: 20px;
    padding: 25px;
}

.video-card {

    width: 50%;
}

.video-thumbnail {

    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-img {

    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* PLAY BUTTON */

.play-btn {

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 85px;
    height: 85px;

    border-radius: 50%;
    background: rgba(255,255,255,0.95);

    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {

    color: #002d73;
    font-size: 34px;
}

/* VIDEO TEXT */

.video-card h4 {

    margin-top: 15px;
    color: #062b5b;
    font-size: 22px;
    font-weight: 700;
}

.video-card p {

    color: #666;
    font-size: 15px;
}

/* FEATURES */

.gallery-features {

    background: white;
    border-radius: 20px;
    padding: 35px 20px;
    margin-top: 45px;

    box-shadow: 0px 8px 25px rgba(0,0,0,0.05);
}

.gallery-feature-item {

    display: flex;
    gap: 18px;
    align-items: start;
    padding: 10px 15px;
}

/* ICON */

.gallery-feature-icon {

    width: 72px;
    height: 72px;
    min-width: 72px;

    border-radius: 50%;

    background: linear-gradient(to bottom,#012b66,#003b8f);

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-feature-icon i {

    color: #ffc107;
    font-size: 28px;
}

/* TEXT */

.gallery-feature-item h4 {

    color: #062b5b;
    font-size: 22px;
    font-weight: 700;
}

.gallery-feature-item p {

    color: #555;
    font-size: 15px;
    line-height: 28px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gallery-main-title h2 {

        font-size: 36px;
    }

    .video-gallery-area {

        flex-direction: column;
    }

    .video-card {

        width: 100%;
    }

    .border-start {

        border: none !important;
    }

    .gallery-feature-item {

        margin-bottom: 25px;
    }
}

    /* FOOTER */

.main-footer {

    background: #2c3138;
    color: #d6d6d6;
    padding-top: 80px;
}

/* WIDGET */

.footer-widget h3 {

    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-line {

    width: 40px;
    height: 2px;
    background: #9aa4af;
    margin-bottom: 30px;
}

/* ABOUT TEXT */

.footer-widget p {

    font-size: 17px;
    line-height: 34px;
    color: #c9c9c9;
}

/* LINKS */

.footer-links {

    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links li a {

    color: #d4d4d4;
    text-decoration: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 0;
    font-size: 17px;

    transition: 0.3s;
}

.footer-links li a:hover {

    color: white;
    padding-left: 8px;
}

/* SUBSCRIBE */

.footer-subscribe {

    margin-top: 30px;
}

.footer-input {

    width: 100%;
    height: 52px;

    background: transparent;
    border: 1px solid #70767c;

    color: white;
    padding: 0 15px;
    margin-bottom: 15px;

    outline: none;
}

.footer-input::placeholder {

    color: #9ba1a8;
}

.footer-btn {

    width: 100%;
    height: 50px;

    background: transparent;
    border: 1px solid #70767c;

    color: white;
    font-weight: 600;

    transition: 0.3s;
}

.footer-btn:hover {

    background: #002d73;
    border-color: #002d73;
}

/* FACEBOOK */

.facebook-box {

    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

/* BOTTOM */

.footer-bottom {

    margin-top: 60px;
    background: #23272d;
    padding: 25px 0;
}

.footer-bottom p {

    margin: 0;
    font-size: 16px;
    color: #d0d0d0;
}

/* SOCIAL */

.footer-social a {

    width: 40px;
    height: 40px;

    border-radius: 50%;
    background: rgba(255,255,255,0.08);

    color: white;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 10px;

    transition: 0.3s;
}

.footer-social a:hover {

    background: #002d73;
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-widget {

        margin-bottom: 40px;
    }

    .footer-bottom {

        text-align: center;
    }

    .footer-social {

        margin-top: 20px;
        text-align: center;
    }

    .text-end {

        text-align: center !important;
    }
}
    .footer-bottom a {

    color: #d0d0d0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {

    color: white;
}
/* HERO SECTION */

.hero-section {

    position: relative;
    height: 75vh;
    overflow: hidden;
}

/* IMAGE */

.hero-image {

    height: 75vh;
    object-fit: cover;
}

/* DARK OVERLAY */

.hero-overlay {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);

    z-index: 5;
}

/* CONTENT */

.hero-content {

    color: white;
    max-width: 650px;
}

/* WELCOME */

.welcome-text {

    color: #ffc107;
    font-size: 34px;
    font-weight: 500;

    font-family: 'Comic Sans MS';
}

/* HEADING */

.hero-content h1 {

    font-size: 68px;
    font-weight: 800;
    margin-top: 10px;
    line-height: 78px;
}

.hero-content h2 {

    font-size: 78px;
    font-weight: 900;

    color: #ffc107;
    line-height: 85px;
}

/* LINE */

.hero-line {

    width: 120px;
    height: 4px;

    background: #ffc107;

    margin: 25px 0;
}

/* PARAGRAPH */

.hero-content p {

    font-size: 24px;
    line-height: 42px;

    margin-bottom: 35px;
}

/* BUTTON */

.explore-btn {

    padding: 16px 34px;
    border: 2px solid white;

    color: white;
    text-decoration: none;

    border-radius: 6px;

    font-size: 18px;
    font-weight: 600;

    transition: 0.3s;
}

.explore-btn:hover {

    background: #ffc107;
    border-color: #ffc107;

    color: #000;
}

/* ARROWS */

.carousel-control-prev,
.carousel-control-next {

    width: 6%;
    z-index: 10;
}

/* INDICATORS */

.carousel-indicators button {

    width: 12px !important;
    height: 12px !important;

    border-radius: 50%;
    margin: 0 6px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-section,
    .hero-image {

        height: 80vh;
    }

    .hero-content {

        text-align: center;
        margin: auto;
    }

    .hero-content h1 {

        font-size: 42px;
        line-height: 50px;
    }

    .hero-content h2 {

        font-size: 52px;
        line-height: 60px;
    }

    .welcome-text {

        font-size: 24px;
    }

    .hero-content p {

        font-size: 18px;
        line-height: 32px;
    }
}
    @media(max-width:991px){

    .hero-section,
    .hero-image {

        height: 55vh;
    }
}

    .blue-shape {

    position: absolute;

    width: 180px;
    height: 180px;

    background: #0b3d91;

    border-radius: 25px;

    top: 40px;
    left: -30px;

    z-index: 1;
}
    .main-welcome-img,
.side-welcome-img {

    position: relative;
    z-index: 2;
}

    /* SLIDER */

/* =========================
   TOPPERS SECTION
========================= */

.toppers-section {

    background: #08245c;

    padding: 90px 0;

    position: relative;

    overflow: hidden;
}

/* STRIPES */

.toppers-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image:
        repeating-linear-gradient(
            -15deg,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.03) 10px,
            transparent 10px,
            transparent 20px
        );

    z-index: 1;
}

/* CONTENT */

.toppers-section .container {

    position: relative;
    z-index: 5;
}

/* =========================
   TITLE
========================= */

.topper-title {

    text-align: center;

    margin-bottom: 70px;
}

.topper-title span {

    color: #ffc107;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}

.topper-title h2 {

    color: white;

    font-size: 52px;
    font-weight: 800;

    margin-top: 12px;
}

.topper-title p {

    color: rgba(255,255,255,0.8);

    font-size: 18px;

    margin-top: 12px;
}

/* =========================
   BOX
========================= */

.topper-box {

    background: rgba(255,255,255,0.05);

    border-radius: 25px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    height: 100%;
}

/* HEADER */

.topper-box-header {

    border-bottom: 3px solid #ffc107;

    padding-bottom: 15px;

    margin-bottom: 30px;
}

.topper-box-header h3 {

    color: white;

    font-size: 38px;
    font-weight: 700;
}

/* =========================
   SLIDER
========================= */

.topper-slider-wrapper {

    position: relative;
}

.topper-slider {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding: 10px 5px;

    scrollbar-width: none;
}

.topper-slider::-webkit-scrollbar {

    display: none;
}

/* =========================
   CARD
========================= */

.topper-card {

    min-width: 250px;

    background: white;

    border-radius: 20px;

    padding: 25px;

    text-align: center;

    flex-shrink: 0;
}

/* IMAGE */

.topper-img {

    width: 110px;
    height: 110px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #0b3d91;

    margin-bottom: 15px;
}

/* TAGS */

.topper-tags {

    margin-bottom: 15px;
}

.yellow-tag {

    background: #ffc107;

    color: black;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.blue-tag {

    background: #0b3d91;

    color: white;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

/* TEXT */

.topper-card h4 {

    color: #0b3d91;

    font-size: 28px;
    font-weight: 700;

    margin-top: 15px;
}

.topper-card h2 {

    color: #0b3d91;

    font-size: 54px;
    font-weight: 800;

    margin: 15px 0 5px;
}

.topper-card p {

    color: #666;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 2px;
}

/* =========================
   BUTTONS
========================= */

.topper-scroll-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #0b3d91;

    color: white;

    cursor: pointer;

    z-index: 10;
}

.topper-scroll-btn:hover {

    background: #ffc107;

    color: black;
}

.topper-scroll-btn.left {

    left: -20px;
}

.topper-scroll-btn.right {

    right: -20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .topper-title h2 {

        font-size: 38px;
    }

    .topper-box-header h3 {

        font-size: 28px;
    }

    .topper-card {

        min-width: 220px;
    }

    .topper-card h4 {

        font-size: 22px;
    }

    .topper-card h2 {

        font-size: 42px;
    }
}

    .toppers-section {

    background: #08245c !important;

    padding: 90px 0;

    position: relative;

    overflow: hidden;
}

    .toppers-section .row {

    position: relative;
    z-index: 5;
}
    
    .topper-box {

    background: rgba(255,255,255,0.06);

    border-radius: 25px;

    padding: 35px;

    border: 1px solid rgba(255,255,255,0.08);

    min-height: 520px;
}

    .topper-box-header {

    border-bottom: 3px solid #ffc107;

    padding-bottom: 15px;

    margin-bottom: 30px;
}

.topper-box-header h3 {

    color: white;

    font-size: 36px;
    font-weight: 700;
}

/* DROPDOWN HOVER */

.navbar .dropdown:hover .dropdown-menu {

    display: block;

    margin-top: 0;
}

/* DROPDOWN MENU */

.dropdown-menu {

    border: none;

    border-radius: 12px;

    padding: 10px 0;

    min-width: 240px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    animation: dropdownFade 0.3s ease;
}

/* DROPDOWN ITEMS */

.dropdown-item {

    padding: 12px 22px;

    font-size: 15px;

    font-weight: 500;

    color: #0b3d91;

    transition: 0.3s;
}

.dropdown-item:hover {

    background: #0b3d91;

    color: white;

    padding-left: 28px;
}

/* ANIMATION */

@keyframes dropdownFade {

    from {

        opacity: 0;
        transform: translateY(10px);
    }

    to {

        opacity: 1;
        transform: translateY(0);
    }
}

.top-link a{

    color: white;

    text-decoration: none !important;

    font-weight: 500;

    transition: 0.3s ease;
}

.top-link a:hover{

    color: #ffc107;

    text-decoration: none !important;
}