/* BODY */
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e4efe9);
}

/* ========== Start of HEADER ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 30px;
    transition: all 0.3s ease;
}

/* DARK HEADER */
.dark-header {
    background: #000;
}

/* LIGHT HEADER (default) */
.light-header {
    background: #fff;
}

/* LIGHT HEADER (on scroll) */
.light-header-scroll {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

/* LOGO */
.logo-section {
    height: 80px;
}

.logo-section img {
    height: 80px;
}

/* DESKTOP HIDE MENU TOGGLE */
.menu-toggle {
    display: none;
}

/* RIGHT SIDE (nav + button) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LINKS - DARK */
.dark-header .nav-link {
    color: #fff;
}

/* LINKS - LIGHT */
.light-header .nav-link, .light-header-scroll .nav-link {
    color: #333;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #4CAF50;
}

/* BUTTON */
.btn-primary {
    background: #4CAF50;
    color: #fff;
    padding: 10px 18px 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #3e8e41;
}
/* ========== End of HEADER ========== */

/* ========== Start of FOOTER ========== */
.footer {
    background: #0b1b34;
    color: #fff;
    padding: 50px 20px 20px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LOGO */
.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    color: #bfc9d9;
    font-size: 14px;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: #bfc9d9;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #4CAF50;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #bfc9d9;
}
/* ========== End of FOOTER ========== */

/* ========== Start of COMING SOON section ========== */
.coming-soon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
    padding: 40px;
    background: #fff;
}

.coming-soon-section .container {
    max-width: 500px;
    padding: 20px;
}

.coming-soon-section .logo {
    width: 220px;
    margin-bottom: 20px;
}

.coming-soon-section h1 {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.coming-soon-section p {
    color: #666;
    margin-bottom: 30px;
}

.coming-soon-section .countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.coming-soon-section .box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coming-soon-section .box span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
}

.coming-soon-section .box small {
    font-size: 12px;
    color: #888;
}
/* ========== End of COMING SOON section ========== */

/* ========== Start of SLIDER section ========== */
.hero-slider {
    width: 100%;
    height: 695px; /* FIXED HEIGHT */
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    position: relative;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 120%;
    object-fit: cover; /* CROPS IMAGE */
}
/* ========== End of SLIDER section ========== */

/* ========== Start of PARTNERS section ========== */
.partners-section {
    padding: 40px 100px 60px;
    background: #f8f9fb;
    text-align: center;
}

/* HEADER */
.partners-header span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #9ba2ae;
    font-weight: 600;
}

/* SLIDER */
.partners-slider {
    overflow: hidden;
    margin-top: 25px;
    position: relative;
}

/* TRACK */
.partners-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollPartners 6s linear infinite;
}

/* EACH LOGO */
.partner {
    flex: 0 0 auto;
    padding: 15px 25px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #eee;
}

/* IMAGE STYLE */
.partner img {
    height: 35px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

/* HOVER EFFECT */
.partner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* PAUSE ON HOVER */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* FADE ON EDGES */
.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb, transparent);
}

/* ANIMATION */
@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.5%);
    }
}
/* ========== End of PARTNERS section ========== */

/* ========== Start of FAQ section ========== */
.faq {
    padding: 80px 20px;
    background: #fff;
}

/* FAQ HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-line {
    width: 50px;
    height: 4px;
    background: #4CAF50;
    margin: 0 auto 15px;
    border-radius: 2px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1b34;
    margin-bottom: 10px;
}

.faq-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* MAIN CONTAINER */
.faq-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* SIDEBAR */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-tab {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #f8f9fb;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    transition: 0.3s;
}

.faq-tab.active {
    background: #0b1b34;
    color: #fff;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

/* CONTENT */
.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

/* ITEM */
.faq-item {
    background: #f8f9fb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ANSWER */
.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: height 0.35s ease, padding 0.25s ease;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #d1d5db;
}

.faq-item.active .faq-answer {
    padding: 0 18px 18px;
}

.faq-item.active .faq-answer .h-line {
    height: 1px;
    background-color: #eee5e7;
    margin-bottom: 16px;
}

.faq-item.active .faq-answer p {
    margin: 0;
}

/* ICON */
.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
/* ========== End of FAQ section ========== */

/* ========== Start of ABOUT section ========== */
.about-section {
    padding: 160px 20px 80px;
    /*background: #f9fafb;*/
}

.about-section .about-container {
    max-width: 800px;
    margin: auto;
}

/* HEADER */
.about-section .section-header {
    margin-bottom: 50px;
}

.about-section .accent-line {
    width: 45px;
    height: 4px;
    background: #4CAF50;
    margin: 0 auto 10px;
    border-radius: 2px;
}

.about-section .section-header h2 {
    font-size: 42px;
    color: #222;
    text-align: center;
    margin-top: 15px;
}

/* CONTENT */
.about-section .about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}
/* ========== End of ABOUT section ========== */

/* ========== Start of CONTACT section ========== */
/* CONTACT HERO */
.contact-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0b1b34, #1e3a5f);
    color: #fff;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-hero h1 span {
    color: #4CAF50;
}

.contact-hero p {
    margin-top: 10px;
    color: #cbd5e1;
}

/* CONTACT CARDS */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #d1d5db;
}

.contact-card .icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-link:hover {
    color: #15803d;
}

.contact-card a {
    margin-bottom: 10px;
}

.contact-card span {
    font-size: 13px;
    color: #888;
}

.contact-card a,
.contact-card span {
    display: block;
}

/* CONTACT CARD ICONS */
.contact-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon svg {
    width: 30px;
    height: 30px;
    color: #0b1b34;
}

/* WHATSAPP BUTTON */
.contact-cta {
    margin: 40px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 16px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    /*transform: translateY(-2px);*/
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* OTHER ENQUIRIES */
.contact-other {
    margin: 70px 0 20px;
}

.contact-other h3 {
    margin-bottom: 20px;
    color: #0b1b34;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: auto;
}

.other-item {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.other-item a {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.other-item a:hover {
    color: #16a34a;
}

.other-item p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}
/* ========== End of CONTACT section ========== */