* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
}



body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/*h1{*/
/*    font-size: 12px;*/
/*}*/

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.2;
}

.nav-info {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.address-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.address-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    background-color: #0066cc;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
    font-weight: 500;
}

.phone-button:hover {
    background-color: #0052a3;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 2rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Home Section */
/*#home {*/
/*    background:*/
/*        !* Gradient only on left 45% *!*/
/*            linear-gradient(110deg, rgba(255,140,0,0.9) 0%, rgba(255,165,0,0.9) 45%, transparent 45%),*/

/*                !* Image on the whole bg but visible only on right *!*/
/*            url("./assets/home.jpg");*/

/*    background-size: cover;*/
/*    background-position: right center;*/
/*    background-repeat: no-repeat;*/

/*    min-height: 100vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    color: white;*/
/*}*/
/*@keyframes fadeInBg {*/
/*    from { opacity: 0; }*/
/*    to { opacity: 1; }*/
/*}*/

/*#home::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 60%;*/
/*    height: 100%;*/
/*    background: rgba(0, 51, 102, 0.1);*/
/*    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);*/
/*}*/

/*.home-content {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.home-content h1 {*/
/*    font-size: 3.5rem;*/
/*    margin-bottom: 1rem;*/
/*    animation: slideInLeft 1s ease;*/
/*}*/

/*.home-content p {*/
/*    font-size: 1.2rem;*/
/*    margin-bottom: 2rem;*/
/*    max-width: 600px;*/
/*    animation: slideInLeft 1s ease 0.2s both;*/
/*}*/

.cta-button {
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    animation: slideInLeft 1s ease 0.4s both;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #003366;
}

/* Services Section */
#services {
    background: #f9f9f9;
    padding-bottom: 48px; /* added spacing below services */
}

.section-title {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    background: #003366;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    width: 100%;
}

.learn-more-btn:hover {
    background: #004080;
}

/* Contact Section */
#contact {
    background: white;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

/* Tabs */
.tabs {
    display: flex;
    background: #e8e8e8;
    border-radius: 8px 8px 0 0;
    margin: -2rem -2rem 0 -2rem;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    background: #e8e8e8;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab:hover {
    background: #d8d8d8;
    color: #333;
}

.tab.active {
    background: #f9f9f9;
    color: #FF8C00;
    border-bottom: 3px solid #FF8C00;
}

/* Tab Content */
.tab-content {
    display: none;
    padding-top: 1.5rem;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Form Sections */
.form-intro {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff8f0;
    border-left: 4px solid #FF8C00;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.form-section {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-section h4 {
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    font-size: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #FF8C00;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkboxes and Radios */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: start;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-item input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.radio-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Multi-select Dropdown */
.multiselect {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.selectBox {
    position: relative;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    z-index: 1001;
}

.selectBox:hover {
    border-color: #FF8C00;
}

.selectBox .arrow {
    color: #666;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.selectBox.active .arrow {
    transform: rotate(180deg);
}

.checkboxes {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1002;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.checkboxes.show {
    display: block;
}

.checkboxes label {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.checkboxes label:hover {
    background: #f5f5f5;
}

.checkboxes input[type="checkbox"] {
    width: auto;
    margin-right: 0.7rem;
    cursor: pointer;
}

#selectedText {
    color: #666;
    font-size: 0.95rem;
}

#selectedText.has-selection {
    color: #333;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Profile Section */
#profile {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
}

#profile .section-title {
    color: white;
}

.profile-content {
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0;
}

.profile-text h3 {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.profile-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-card h4 {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .stat-card h4{
        font-size: 1.6rem;
    }
}

.stat-card p {
    font-size: 1rem;
}

/* Payment Section */
#payment {
    background: #f9f9f9;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.payment-card h3 {
    color: #003366;
    margin-bottom: 0.5rem;
}

/* Partners Section Styling */
#partners {
    padding: 48px 20px;
    background: #ffffff; /* subtle background to separate from services */
    margin-top: 64px; /* increased space between services and partners */
    min-height: 0; /* ensure this section does NOT inherit full-screen min-height */
}

#partners .section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#partners .section-title {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 3rem;
    text-align: center;
}

.partners-grid {
    display: flex;
    gap: 36px; /* space between logos */
    align-items: center;
    justify-content: center;
    margin-top: 32px; /* slightly larger top gap */
    flex-wrap: wrap;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(4,61,119,0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    text-decoration: none;
}

.partner-link:hover,
.partner-link:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(4,61,119,0.12);
    filter: saturate(1.05);
    outline: none;
}

.partner-logo {
    height: 72px;
    width: auto;
    display: block;
}

/* Add some separation from the previous section */
#partners { margin-top: 36px; }

@media (max-width: 768px) {
    .partners-grid { gap: 22px; }
    .partner-logo { height: 60px; }
}

@media (max-width: 480px) {
    #partners { padding: 28px 12px; }
    .partners-grid { gap: 16px; }
    .partner-logo { height: 48px; }
    .partner-link { padding: 8px 10px; }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
    }

    .home-content h1 {
        font-size: 2rem;
    }

    .contact-container,
    .profile-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: transform 0.2s;
    line-height: 1;
}

.close-btn:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    color: #FF8C00;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal-text {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    white-space: pre-line;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border-radius: 0 0 15px 15px;
}

.nav-btn {
    background: #003366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.nav-btn:hover:not(:disabled) {
    background: #004080;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.page-indicator {
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        max-height: 90vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.2rem;
    }

    .modal-text {
        font-size: 0.95rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .page-indicator {
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 0.5rem;
    }
}

@keyframes slightShake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

.announcement-banner {
    background: #003366;
    color: #ffffff;
    padding: 10px 18px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: start;
    border-radius: 8px;
    /* limit width and center the banner */
    max-width: 250px;
    /* align the banner to the left edge of the content instead of centering */
    /*margin: 0 0 25px 0;*/
    margin-left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    /* Fade in once + shake repeatedly */
    /*animation: fadeInDown 0.6s ease, slightShake 1.2s ease-in-out 1s infinite;*/
}

/* Highlight pill for the announcement */
.announcement-banner .highlight {
    display: inline-block;
    background: #FF8C00;
    color: #002244;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0 6px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255,140,0,0.15);
    transform-origin: center;
    animation: popIn 0.6s ease;
}

@keyframes popIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Ensure the banner remains nicely sized on smaller screens */
@media (max-width: 768px) {
    .announcement-banner {
        max-width: 90%;
        padding: 12px 14px;
        margin: 0 auto 18px;
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FF8C00;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: start;
    align-items: center;
}

.payment-item {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1;
    min-height: 70px;
    min-width: 80px;
}

.payment-icon-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.payment-icon {
    font-size: 1.3rem;
    line-height: 1;
}


.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* IMPORTANT: style the image */
.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Optional: make icons white on hover */
.social-link:hover img {
    filter: brightness(1) invert(1);
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #FF8C00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
#home {
    position: relative;

    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    margin: 0;
    padding: 0;
}

/* Image Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}


/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.4) 50%, rgba(255, 140, 0, 0.3) 100%);
    z-index: 1;
}

/* Content */
.home-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}



.home-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.home-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: slideInLeft 1s ease 0.2s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF8C00;
    width: 30px;
    border-radius: 6px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content p {
        font-size: 1rem;
    }

    .announcement-banner {
        max-width: 250px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Back button spacing only on small screens (mobile) */
@media (max-width: 480px) {
    .back-btn {
        margin-top: 4rem !important;
    }
}
