﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #00a9f4;
    --secondary-color: #029DE0;
    --accent-color: #f7b500;
    --text-color: #333;
    --light-bg: #FDF3E1;
    --container-padding: 20px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: var(--text-color);
    margin: 0;
    overflow-x: hidden;
    padding: 20px;
    line-height: 1.6;
}

/* Improved container with better responsive behavior */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    border: none;
    margin-top: 20px;
    position: relative;
    width: 100%;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-height: 50px;
}

/* Right section (nav + button in one line) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a {
        text-decoration: none;
        color: #555;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.4px;
        padding: 6px 10px;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* Join Button */
.btn-join {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 30px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    display: inline-block;
}

    .btn-join:hover {
        background: #008cd6;
        transform: translateY(-2px);
    }

/* Hamburger Menu (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    /* Animate hamburger to X when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

/* outer section: full width background, rounded top corners and vertical padding */
.content-section {
    width: 100%;
    background: linear-gradient(180deg, #FDF3E1 0%, #FFFFFF 100%);
    padding: 46px 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 60px;
    margin-top: 30px;
}

/* inner container: keeps the rounded corners, applies horizontal padding */
.content-inner {
    width: 100%;
    max-width: 1395px;
    padding: 0 74px;
    border-radius: 50px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* actual content wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.top-image {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 80px auto 0;
}

.content-image {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
}

    .btn-primary:hover {
        background: #008cd6;
    }

/* Secondary Button (outlined style) */
.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 16px 40px;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

    .btn-secondary:hover {
        background: var(--secondary-color);
        color: #fff;
    }

.features-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.features-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

    .features-header h2 span {
        color: #f9a825; /* orange highlight */
    }

.features-header p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding: 0 var(--container-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px; /* Increased from 1140px */
    margin: 0 auto;
    padding: 0 20px;
}

.feature-box {
    background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 100%); /* ✅ Gradient */
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    .feature-box img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-box h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #222;
    }

    .feature-box p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

/* Next section image */
.next-banner {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 40px auto;
    padding: 0 var(--container-padding);
}

    /* Optional full width if you want it like a banner */
    .next-banner.full-width {
        width: 100%;
        height: auto;
    }

.about-section {
    padding: 60px 0;
    background: #fff;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Reduced padding */
}

.about-text {
    flex: 1;
    text-align: left;
    padding-left: 0;
}

    .about-text img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 0 20px 0;
    }

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .about-image img {
        max-width: 100%;
        height: auto;
    }

/* Buttons */
.about-buttons {
    margin-top: 10px;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Right Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .about-image img {
        max-width: 100%;
        border-radius: 20px;
    }

.fullwidth-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .fullwidth-image-section img {
        width: 100%;
        height: auto;
        display: block;
    }

.radius-box {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 1px 35px;
    border-radius: 40px;
    background: linear-gradient(90deg, #eaf7ff 0%, #fff6db 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    min-height: 100px;
}

/* Left section */
.section-left {
    flex: 1;
    min-width: 280px;
    padding-right: 25px;
}

    .section-left h2 {
        font-size: 36px;
        font-weight: 600;
        color: #333;
        line-height: 1.3;
        margin-bottom: 12px;
    }

        .section-left h2 span {
            color: var(--accent-color);
            font-weight: 700;
            display: block;
            margin-top: 3px;
        }

.custom-button {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(2, 157, 224, 0.3);
    text-decoration: none; /* removes underline */
    display: inline-block;
}

    .custom-button:hover {
        background-color: #027bb0;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(2, 157, 224, 0.4);
    }

/* Phone section */
.phone-section {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.phone-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
    margin-top: 50px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Common icon style */
.icon {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    object-fit: cover;
}

/* Desktop icon positions */
.icon1 {
    top: 50%;
    left: -110px;
    transform: translateY(-50%);
}

.icon2 {
    top: -3%;
    left: 2%;
    transform: translateX(-50%);
}

.icon3 {
    top: 2%;
    right: 150px;
}

.icon4 {
    top: 50%;
    right: 90px;
}

/* Mobile responsiveness: tablet (<=768px) */
/* Mobile responsiveness: tablet (<=768px) */ @media (max-width: 768px) {
    .radius-box {
        flex-direction: column; /* stack text above phone */
        align-items: center;
        padding: 10px 5px; /* minimal padding for max space */
        position: relative;
    }

    .section-left {
        width: 100%;
        text-align: center;
        z-index: 3; /* keep above phone if needed */
        margin-bottom: 10px; /* spacing below text */
    }

        .section-left h2 {
            font-size: 26px;
            line-height: 1.1;
        }

            .section-left h2 span {
                display: block;
                margin-top: 5px;
            }

    .custom-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .phone-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .phone-image {
        width: 100vw; /* fill full viewport width */
        max-width: none; /* remove any limit */
        height: auto; /* maintain aspect ratio */
        max-height: none; /* remove height restriction */
        object-fit: contain;
        z-index: 2;
        position: relative;
    }

    .icons-wrapper, .icon {
        display: none; /* hide icons */
    }
}
/* Small mobile <=480px */

@media (max-width: 480px) {
    .radius-box {
        padding: 5px 0;
    }

    .section-left h2 {
        font-size: 22px;
    }

    .custom-button {
        font-size: 14px;
        padding: 10px 15px;
    }

    .phone-image {
        width: 100vw; /* full width of screen */
        height: auto;
        max-height: none; /* remove restriction */
    }
}


.help-box {
    width: 95%;
    max-width: 1200px; /* Increased from 1140px */
    margin: 40px auto;
    padding: 30px 40px;
    background: var(--primary-color); /* blue background */
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
}

.help-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-left p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.help-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .help-btn:hover {
        background: #f5f5f5;
    }

.help-right img {
    width: 80px;
    height: auto;
}

.site-footer {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(180deg, #FDF3E1 0%, #FFFFFF 100%);
    padding: 80px 40px 40px; /* pushed down a bit */
    box-sizing: border-box;
    margin-top: 50px;
}

/* Footer adjustments */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Section */
.footer-left {
    max-width: 300px;
    width: 100%;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 21px;
    color: #444;
    margin-bottom: 15px;
}

.footer-available {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .footer-apps img {
        width: 130px;
        height: auto;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .footer-apps img:hover {
            transform: scale(1.05);
        }

/* Middle Section (Quick Links + Others) */
.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 70px; /* move down slightly */
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 8px;
    }

        .footer-column ul li a {
            font-size: 14px;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-column ul li a:hover {
                color: #009fe3;
            }

/* Right Section (Newsletter) */
.footer-newsletter {
    max-width: 350px;
    width: 100%;
    margin-top: 70px; /* move down slightly */
}

    .footer-newsletter h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111;
    }

/* Input box */
.newsletter-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    overflow: hidden;
    width: 100%;
    margin-bottom: 12px; /* ✅ space below input */
}

.input-icon {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 12px;
}

    .input-icon img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .input-icon input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 14px;
        padding: 12px 0;
    }

/* Subscribe button */
.newsletter-button {
    text-align: left; /* keep aligned under input */
}

    .newsletter-button button {
        background: #009fe3;
        color: #fff;
        border: none;
        padding: 10px 26px; /* smaller padding */
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 50px;
        transition: background 0.3s ease;
        white-space: nowrap;
        width: auto; /* ✅ no full width */
        min-width: 120px; /* consistent size */
    }

        .newsletter-button button:hover {
            background: #007bbf;
        }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px; /* ⬅️ reduced from 35px */
    padding-bottom: 5px; /* ⬅️ adds slight lift */
    width: 100%;
}

    .footer-bottom p {
        font-size: 13px;
        font-weight: 600;
        margin: 0;
        color: #444;
    }

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a img {
        width: 28px;
        height: 28px;
        vertical-align: middle;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .footer-socials a img:hover {
            transform: scale(1.15);
        }

/* Section wrapper */
.new-image-section {
    padding: 40px 20px;
    text-align: center;
}

/* Main container */
.image-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 300px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to bottom, #fff5e9, #ffffff);
    overflow: hidden;
}

/* Heading style */
.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    z-index: 2;
    position: relative;
}

    .about-heading span {
        color: #f7a21b; /* brand highlight */
    }

/* Floating icons */
.icon {
    position: absolute;
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    z-index: 3;
}

/* Icon positions */
.icon5 {
    top: 70%;
    left: 15%;
}

.icon6 {
    top: 25%;
    left: 25%;
}

.icon7 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.icon8 {
    top: 20%;
    right: 20%;
}

.icon9 {
    top: 65%;
    right: 10%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-heading {
        font-size: 22px;
        line-height: 1.4;
        margin-top: 40px; /* small breathing space from icons */
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    /* Reposition icons to avoid overlapping title */
    .icon5 {
        top: 65%;
        left: 8%;
    }

    .icon6 {
        top: 20%;
        left: 12%;
    }

    .icon7 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .icon8 {
        top: 18%;
        right: 12%;
    }

    .icon9 {
        top: 60%;
        right: 8%;
    }
}




.unique-image-section {
    padding: 40px 10%;
    background: #fff;
    text-align: center;
}

.vision-mission-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vision-mission-card {
    background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .vision-mission-card:hover {
        transform: translateY(-5px);
    }

.vision-mission-icon {
    width: 70px;
    height: 70px;
    background: #ffcc66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

    .vision-mission-icon img {
        width: 32px;
        height: 32px;
    }

.vision-mission-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.vision-mission-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.core-values-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
}

.core-values-wrapper {
    display: inline-block;
    width: 100%;
}

.core-values-image {
    width: 90%;
    height: auto;
    max-width: 1200px;
}

.faq-image-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
}

.faq-image-container {
    display: inline-block;
    width: 100%;
}

.faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
}

.faq-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    background-image: url('/images/Rectangle2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.faq-container {
    border-radius: 12px;
    overflow: hidden;
    width: 90%;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Each FAQ block */
.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* Question part */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

/* Toggle icon */
.toggle-icon {
    font-size: 20px;
    color: #007bff;
    transition: transform 0.3s;
}

/* Answer part */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

    .faq-answer.show {
        max-height: 200px;
        padding: 15px 22px;
    }

/* Footer section */
.faq-footer {
    text-align: center;
    padding: 25px 20px;
    font-weight: 700;
}

    .faq-footer p span {
        font-weight: 400;
    }

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #00aaff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .contact-btn:hover {
        background-color: #0077cc;
    }

.support-text {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 0 var(--container-padding);
}

    .support-text h3 {
        font-size: 40px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

        .support-text h3 span {
            color: #f7b731;
        }

    .support-text p {
        font-size: 16px;
        color: #666;
        margin-top: 0;
    }

.contact-section {
    background: linear-gradient(to bottom, #fffdf8, #fdf7ef);
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 90%;
}

.contact-container h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

    .contact-container h2 span {
        color: #f7b731;
    }

.contact-form {
    max-width: 700px;
    margin: 0 auto 40px;
}

    .contact-form .row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

        .contact-form .row:first-child .form-group {
            flex: 1;
            min-width: 250px;
        }

    .contact-form .form-group {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

        .contact-form .form-group.full-width {
            flex: 1 1 100%;
        }

    .contact-form label {
        margin-bottom: 10px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 25px;
        font-size: 15px;
        outline: none;
        background-color: #fff;
        transition: 0.2s ease;
        width: 100%;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #f7b731;
        }

    .contact-form textarea {
        border-radius: 12px;
        resize: none;
    }

.btn-submit {
    display: block;
    margin: 0 auto;
    padding: 12px 40px;
    background-color: #1e90ff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn-submit:hover {
        background-color: #187bcd;
    }

.map-section {
    position: relative;
    margin-top: 40px;
}

    .map-section iframe {
        border-radius: 15px;
        width: 100%;
        height: 400px;
        border: 0;
    }

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -60px auto 0;
    width: 90%;
    max-width: 1000px;
    flex-wrap: wrap;
}

    .contact-info .info-box {
        background: #fff;
        padding: 20px 15px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        flex: 1;
        min-width: 220px;
    }

/* Flex container for icon + text */
.icon-text {
    display: flex;
    align-items: center; /* vertically center icon and text */
    gap: 12px; /* space between icon and text */
}

/* Icon styling */
.icons {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0; /* prevent icon from shrinking */
}

/* Text container */
.icon-text .text span {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.icon-text .text p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}



.register-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    background: linear-gradient(180deg, #FFF9F2 0%, #FFFFFF 100%);
    width: 100%;
    border-radius: 30px;
    margin: 20px auto;
}

.register-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* Form area */
.form-area {
    flex: 1;
    padding: 40px 35px;
    min-width: 300px;
}

    .form-area h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .form-area .highlight {
        color: #f7b731;
    }

/* Form styles */
.register-form {
    max-width: 450px;
    margin: auto;
    padding: 10px 0;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        color: #000;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #ddd;
        border-radius: 25px;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0099ff;
        }

    .form-group textarea {
        border-radius: 12px;
        resize: none;
        min-height: 150px;
    }

/* File upload */
.file-upload .upload-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.file-upload input[type="text"] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    background: #fff;
    cursor: default;
    min-width: 0; /* Changed from 200px to fix mobile issue */
    box-sizing: border-box;
}

.file-upload button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s;
    white-space: nowrap;
}

    .file-upload button:hover {
        background: #333;
    }

.file-upload small {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    display: block;
}

/* Error messages */
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Submit button */
.btn-register {
    width: 100%;
    background: #0099ff;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

    .btn-register:hover {
        background: #007acc;
    }

/* Image area */
.image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 0 30px 30px 0;
    min-width: 300px;
}

    .image-area .frame {
        position: relative;
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        margin: 0 auto;
    }

    .image-area img.bg-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    .image-area img.overlay-image {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: auto;
    }

/* Existing styles remain unchanged */

/* Tablet & mobile <=768px */
@media (max-width: 768px) {
    .image-area .frame {
        position: relative;
        left: -10px; /* move entire frame (bg + overlay) a bit left */
    }

    .image-area img.overlay-image {
        left: 42%; /* adjust overlay position inside */
        transform: translateX(-50%);
        width: 80%;
    }
}

/* Small mobile <=480px */
@media (max-width: 480px) {
    .image-area .frame {
        left: -15px; /* move bg + overlay a bit more left */
    }

    .image-area img.overlay-image {
        left: 49%; /* fine-tune overlay inside */
        width: 85%;
    }
}



/* reCAPTCHA responsive fix */
.g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 900px) {
    .register-container {
        flex-direction: column;
    }

    .image-area {
        margin-top: 30px;
        order: -1; /* Move image above form on mobile */
    }

    .form-area {
        padding: 20px;
    }

        .form-area h2 {
            font-size: 28px;
            text-align: center;
        }
}

@media (max-width: 480px) {
    .file-upload .upload-box {
        flex-direction: column;
        align-items: stretch;
    }

    .file-upload button {
        width: 100%;
        margin-top: 8px;
    }

    .form-area h2 {
        font-size: 24px;
    }

    .g-recaptcha {
        transform: scale(0.77);
        margin-left: -15px;
    }
}

.terms-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.terms-box {
    background: linear-gradient(to bottom, #fffdf8, #fdf7ef);
    border-radius: 50px;
    padding: 200px 20px 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 90%;
    max-width: 1200px;
}

.terms-title {
    font-size: 50px;
    font-weight: 700;
    margin-top: -100px;
    color: #222;
}

.highlight {
    color: #ffb347;
}

.date {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.terms-container {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px 30px;
    margin: 0 auto;
    border: 1px solid #E8E8E8;
    width: 90%;
    max-width: 1000px;
}

    .terms-container .content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .terms-container .content ol {
        padding-left: 20px;
    }

        .terms-container .content ol li {
            margin-bottom: 20px;
            font-size: 16px;
        }

            .terms-container .content ol li strong {
                display: block;
                margin-bottom: 5px;
                font-weight: 600;
            }

/* ==================== RESPONSIVE DESIGN ==================== */
/* For very large screens */
@media (min-width: 1600px) {
    .content-inner {
        max-width: 1500px;
    }

    .container {
        max-width: 1400px;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .content-inner {
        padding: 0 20px; /* Ensure consistent padding on mobile */
    }

    .radius-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .section-left {
        align-items: center;
        padding: 0 15px;
    }

    .section-image-secondary {
        margin-top: 30px;
    }

    .icon1, .icon2, .icon3, .icon4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 10px;
        display: inline-block;
    }

    .phone-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }

    .about-container {
        flex-direction: column;
        padding: 0 var(--container-padding);
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        justify-content: space-between;
        width: 100%;
    }

    .footer-newsletter {
        margin-top: 30px;
    }

    .nav-links {
        gap: 20px;
    }

        .nav-links a {
            font-size: 15px;
        }

    .btn-join {
        padding: 14px 25px;
        font-size: 18px;
    }

    .content-inner {
        padding: 0 30px;
    }

    .about-text {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 15px;
    }

    .hamburger {
        display: flex;
        order: 1; /* Position between logo and button */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            padding: 15px 10px;
            border-bottom: 1px solid #eee;
            width: 100%;
            text-align: left;
            font-size: 18px;
        }

    /* Adjust navbar for mobile */
    .nav-right {
        gap: 15px;
    }

    .btn-join {
        padding: 12px 20px;
        font-size: 16px;
        z-index: 1001;
        order: 2; /* Position after hamburger */
    }

    /* Reorder items for mobile */
    .container {
        justify-content: space-between;
        padding: 0 var(--container-padding);
    }

    .logo {
        order: 0;
    }

    .hamburger {
        order: 1;
    }

    .btn-join {
        order: 2;
    }

    .nav-links {
        order: 3;
    }

    .content-section {
        border-radius: 40px;
        margin-top: 20px;
        padding: 30px 0;
    }

    .content-inner {
        padding: 0 20px;
        border-radius: 40px;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .top-image {
        max-width: 70%;
        margin: 40px auto 0;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-buttons {
        justify-content: center;
    }

    .footer-newsletter h4 {
        margin-right: 0;
        margin-top: 0;
    }

    .support-text h3 {
        font-size: 32px;
        padding: 0 15px;
    }

    .contact-container h2 {
        font-size: 32px;
    }

    .contact-info {
        position: relative;
        margin: 30px auto;
    }

    .form-area h2 {
        font-size: 32px;
    }

        .form-area h2 span {
            font-size: 32px;
        }

    .terms-title {
        font-size: 32px;
    }

    .register-container {
        flex-direction: column;
    }

    .image-area {
        margin-right: 0;
        margin-top: 0;
    }

    /* Stack elements in single column */
    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .contact-form .row {
        flex-direction: column;
    }

    /* Adjust icon positions for mobile */
/*    .icon5, .icon6, .icon7, .icon8, .icon9 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 10px;
        display: inline-block;
    }*/

    .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .center-image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px 0;
        width: 60%;
    }

    /* Fix content touching edges */
    .features-header p,
    .support-text,
    .faq-container,
    .contact-form,
    .footer-container,
    .footer-newsletter,
    .footer-links,
    .footer-left {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .radius-box,
    .help-box {
        width: 95%;
        padding: 25px;
    }

    .section-left h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
    }

    .logo img {
        height: 40px;
    }

    .btn-join {
        padding: 10px 15px;
        font-size: 14px;
    }

    .nav-right {
        gap: 10px;
    }

    .content-section {
        border-radius: 30px;
        margin-top: 15px;
        padding: 20px 0;
    }

    .content-inner {
        padding: 0 15px;
        border-radius: 30px;
    }

    .content-wrapper {
        padding: 0 8px;
    }

    .top-image {
        max-width: 85%;
        margin: 30px auto 0;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-container {
        padding: 0 10px;
    }

    .about-buttons {
        justify-content: center;
    }

    .footer-newsletter h4 {
        margin-right: 0;
        margin-top: 0;
    }

    .support-text h3 {
        font-size: 28px;
        padding: 0 10px;
    }

    .contact-container h2 {
        font-size: 28px;
    }

    .contact-info {
        position: relative;
        margin: 20px auto;
        padding: 15px 10px;
    }

    .form-area h2 {
        font-size: 28px;
    }

        .form-area h2 span {
            font-size: 28px;
        }

    .terms-title {
        font-size: 28px;
    }

    .register-container {
        flex-direction: column;
    }

    .image-area {
        margin-right: 0;
        margin-top: 0;
    }

    .btn-join {
        width: 100%;
        text-align: center;
    }

    .content-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .top-image {
        max-width: 95%;
    }

    .content-image {
        max-width: 98%;
    }

    .next-image {
        max-width: 100%;
    }

    .phone-section {
        transform: scale(0.5);
    }

    .icon {
        transform: scale(0.6);
    }

    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .newsletter-input {
        width: 100%;
    }

    .container {
        padding: 0 8px;
    }

    .content-inner {
        padding: 0 8px;
    }

    .section-image-new {
        width: 100%;
    }

    .footer-logo {
        width: 150px;
    }

    /* Additional fixes for edge touching */
    .about-text,
    .section-left,
    .help-left,
    .footer-column,
    .footer-newsletter,
    .contact-form .form-group {
        padding-left: 5px;
        padding-right: 5px;
    }

    .btn-primary,
    .btn-secondary,
    .custom-button,
    .help-btn {
        padding-left: 20px;
        padding-right: 20px;
    }

    .features-grid {
        padding: 0 5px;
    }

    .feature-box {
        padding: 20px 15px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        padding: 0 15px;
    }

    .content-section {
        margin-left: 0;
    }

    .radius-box {
        margin: 30px auto;
        width: 95%;
        padding: 25px;
    }

    .section-image-secondary {
        margin: 30px auto;
    }

    .phone-section {
        margin: 20px auto;
    }

    .phone-image {
        margin-left: 0;
    }

    .section-image-new,
    .faq-section,
    .faq-container {
        margin: 30px auto;
        width: 95%;
    }

    .footer-container {
        gap: 40px;
        padding: 0 15px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .btn-join {
        padding: 12px 24px;
        font-size: 16px;
    }

    .content-section {
        border-radius: 30px;
    }

    .content-inner {
        padding: 0 15px;
    }

    .top-image {
        max-width: 80%;
    }

    .content-image {
        max-width: 85%;
    }

    .next-image {
        max-width: 95%;
    }

    .radius-box {
        border-radius: 30px;
        padding: 25px;
    }

    .section-image {
        width: 100%;
        margin-left: 0;
    }

    .custom-button {
        margin-left: 0;
    }

    .section-image-secondary {
        width: 100%;
        margin: 20px auto;
    }

    .phone-section {
        transform: scale(0.8);
    }

    .icon {
        transform: scale(0.8);
    }

    .section-image-new {
        width: 95%;
    }

    .overlay-button {
        left: 50%;
    }

        .overlay-button img {
            width: 140px;
            height: 42px;
        }

    .site-footer {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .support-text h3 {
        font-size: 28px;
    }

    .contact-section {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }

    .contact-form .row {
        flex-direction: column;
        gap: 0;
    }

        .contact-form .row:first-child .form-group {
            width: 100%;
        }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .register-section {
        border-radius: 30px;
    }

    .form-area, .image-area {
        padding: 20px;
    }

        .form-area h2 {
            text-align: center;
            margin-left: 0;
        }

    .register-form {
        margin-left: 0;
    }

    .image-area {
        margin: 0 auto;
    }

    .terms-box {
        border-radius: 30px;
        padding: 150px 20px 40px;
    }

    .terms-title {
        font-size: 28px;
        margin-top: -80px;
    }

    .terms-container {
        margin: 20px auto;
        width: 95%;
        padding: 30px 20px;
        border-radius: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .logo img {
        height: 40px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 4px 8px;
    }

    .btn-join {
        padding: 10px 20px;
        font-size: 14px;
    }

    .content-section {
        margin-top: 15px;
    }

    .top-image {
        max-width: 90%;
        margin: 30px auto 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .radius-box {
        border-radius: 20px;
        padding: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 248px;
        margin: 20px auto;
    }

    .phone-section {
        transform: scale(0.6);
    }

    .icon {
        transform: scale(0.7);
    }

    .footer-apps {
        flex-direction: column;
        align-items: center;
    }

        .footer-apps img {
            width: 180px;
        }

    .input-icon {
        padding: 10px 12px;
    }

    .newsletter-button button {
        padding: 12px 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .contact-container h2 {
        font-size: 28px;
    }

    .form-area h2 {
        font-size: 28px;
    }

        .form-area h2 span {
            font-size: 28px;
        }

    .terms-title {
        font-size: 24px;
    }

    .terms-container .content p,
    .terms-container .content ol li {
        font-size: 14px;
    }
}

/* Very small devices (less than 400px) */
@media (max-width: 399.98px) {
    :root {
        --container-padding: 10px;
    }

    .btn-join {
        width: 100%;
        text-align: center;
    }

    .content-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .top-image {
        max-width: 95%;
    }

    .content-image {
        max-width: 98%;
    }

    .next-image {
        max-width: 100%;
    }

    .phone-section {
        transform: scale(0.5);
    }

    .icon {
        transform: scale(0.6);
    }

    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .newsletter-input {
        width: 100%;
    }

    .container {
        padding: 0 8px;
    }

    .content-inner {
        padding: 0 8px;
    }

    .section-image-new {
        width: 100%;
    }

    .footer-logo {
        width: 150px;
    }

    /* Final adjustments for very small screens */
    body {
        padding: 15px 10px;
    }

    .content-section {
        border-radius: 25px;
    }

    .content-wrapper,
    .features-header p,
    .support-text,
    .footer-left,
    .footer-column,
    .footer-newsletter {
        padding-left: 5px;
        padding-right: 5px;
    }

    .btn-primary,
    .btn-secondary,
    .custom-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .back-to-top.active {
        display: flex;
    }

    .back-to-top:hover {
        background: #1d4ed8;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

/* WhatsApp Button */
.whatsapp-left-edge {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .whatsapp-left-edge:hover {
        background: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

/* WhatsApp Confirmation Message */
.whatsapp-confirmation {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 240px;
}

    .whatsapp-confirmation.show {
        opacity: 1;
        transform: translateY(0);
    }
