:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================= HERO ================= */

.hero-section {
    padding: 90px 20px;
    text-align: center;
    background-color: #ffffff;
    background-image: radial-gradient(#e4e7ec 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-navy);
}

.highlight-box {
    color: var(--accent-orange);
}

.tag {
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1 {
    color: var(--primary-navy);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.description {
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
}
/* Load animation */
.hero-section .container {
    animation: fadeUp 0.9s ease forwards;
}

/* Scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= COMMON ================= */

.section-padding {
    padding: 100px 0;
}

.bg-light-blue {
    background: var(--secondary);
}

.section-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ================= LIST ================= */

.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.custom-list li {
    color: var(--primary-navy);
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.custom-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-size: 24px;
    margin-right: 10px;
}

/* ================= BUTTONS ================= */

.btn-orange {
    background: var(--accent-orange);
    color: white;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 700;
}

.btn-orange:hover {
    background: #d95316;
    color: white;
}

.btn-navy {
    background: var(--primary-navy);
    color: white;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 700;
}

.btn-navy:hover {
    background: #123a66;
    color: white;
}

/* ================= SERVICE CARDS ================= */

.service-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(110, 110, 110, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    background: #ffffff;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: #0f335e6f;
}

.service-card h3 {
    color: var(--primary-navy);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.icon-container i {
    height: 60px;
    width: 60px;
    background: var(--secondary);
    color: var(--primary-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-container i {
    background: var(--primary-navy);
    color: white;
}

.btn-service {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid rgba(64, 64, 64, 0.2);
    background: white;
    color: var(--primary-navy);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service:hover {
    background: var(--primary-navy);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= EVENT SECTION ================= */

.event-section {
    padding: 128px 40px;
    background-color: var(--primary-navy);
}

.left-section h2 {
    color: white;
    font-weight: 800;
    line-height: 1.1;
    font-size: 50px;
}

.btn-event-orange {
    background: #ff6b1a;
    color: white;
    padding: 16px 36px;
    border-radius: 32px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-event-orange:hover {
    transform: translateY(-5px);
    color: white;
}

.btn-event-outline {
    color: white;
    padding: 16px 36px;
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-event-outline:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    color: white;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.event-card {
    padding: 20px 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(110, 110, 110, 0.5);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.13);
}

.event-card:hover {
    border: 1px solid var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.event-list h4 {
    color: white;
    margin-bottom: 6px;
}

.event-list span,
.event-date i {
    color: var(--accent-orange);
}

.event-list p {
    color: var(--muted-foreground);
    margin: 0;
}

/* ================= ABOUT ================= */

.about-section {
    padding: 122px 80px;
    background: #f8f9fb;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 620px;
    border-radius: 20px;
    object-fit: cover;
}

.floating-status-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-navy);
    border-radius: 20px;
    width: 244px;
    padding: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.floating-status-card h3 {
    color: white;
    font-weight: 800;
}

.about-Info-Grid {
    row-gap: 32px;
    margin-bottom: 50px;
}

.about-info-item span {
    color: var(--muted-foreground);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.about-info-item h4 {
    font-size: 25px;
    font-weight: 700;
    color: #08264a;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #08264a;
    text-decoration: none;
    transition: 0.3s;
}

.about-link:hover {
    gap: 16px;
    color: var(--accent-orange);
}

/* ================= CONTACT ================= */

.contact-section {
    background: var(--secondary);
    padding: 100px 0;
}

.contact-header {
    margin-bottom: 70px;
}

.contact-card {
    background: white;
    border-radius: 18px;
    padding: 68px 58px 48px;
    box-shadow: 0 18px 45px rgba(8, 38, 74, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 55px;
}

.contact-icon {
    min-width: 54px;
    height: 54px;
    background: #edf7ff;
    color: #08264a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-info span {
    display: block;
    color: #7b93ad;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-info h4 {
    color: #08264a;
    font-size: 18px;
    font-weight: 700;
}

.contact-divider {
    height: 1px;
    background: #d9e4ef;
    margin: 10px 0 30px;
}

.message-btn {
    width: 100%;
    background: #062b57;
    color: white;
    padding: 18px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.message-btn:hover {
    background: #0b3a72;
    color: white;
}

.response-time {
    text-align: center;
    color: #7b93ad;
    font-size: 14px;
    margin-top: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .section-padding,
    .event-section,
    .about-section,
    .contact-section {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    h1,
    .left-section h2 {
        font-size: 40px;
    }

    .section-img {
        height: 360px;
        margin-top: 20px;
    }

    .event-section,
    .about-section {
        text-align: center;
    }

    .event-btn {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .image-wrapper img {
        height: 420px;
    }

    .floating-status-card {
        right: 20px;
        bottom: 20px;
    }

    .about-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 70px 15px;
    }

    .hero-title {
        font-size: 38px;
    }

    h1,
    .left-section h2 {
        font-size: 34px;
    }

    .description {
        font-size: 16px;
    }

    .section-padding,
    .event-section,
    .about-section,
    .contact-section {
        padding: 65px 15px;
    }

    .section-img {
        height: 280px;
    }

    .custom-list li {
        font-size: 15px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .btn-event-orange,
    .btn-event-outline {
        width: 100%;
        text-align: center;
    }

    .image-wrapper img {
        height: 320px;
    }

    .floating-status-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .contact-card {
        padding: 40px 24px;
    }

    .contact-item {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 32px;
    }

    h1,
    .left-section h2 {
        font-size: 28px;
    }

    .hero-section,
    .section-padding,
    .event-section,
    .about-section,
    .contact-section {
        padding: 55px 12px;
    }

    .section-img {
        height: 230px;
    }

    .hero-section .btn,
    .btn-service,
    .btn-event-orange,
    .btn-event-outline,
    .message-btn {
        width: 100%;
    }

    .event-card {
        padding: 22px 18px;
    }

    .image-wrapper img {
        height: 260px;
    }

    .contact-card {
        padding: 32px 18px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-info h4 {
        font-size: 16px;
        word-break: break-word;
    }
    .about-info-item h4{
        font-size: 20px;
    }
    .about-info-item span{
        font-size: 10px;
    }
    .about-link{
        font-size: 15px;
    }
}