/* Website font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar section start ---------------------------------------------------------------------------------------------------------------*/
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center desktop */
    position: relative;
    padding: 15px 20px;
    gap: 5px;
    border-radius: 10px !important;
}

/* Brand */
.navbar-brand {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: black;
}

/* Navbar links */
.navbartext {
    font-family: "Montserrat", sans-serif;
    font-size: 13px !important;
    font-weight: 600;
    color: white;
}

.navbartext.mcs150 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.navbartext.mcs150 .mcs150-arrow svg {
    transition: transform 0.3s ease;
}

.navbartext.mcs150:hover {
    color: #ffcc00;
    /* text color change */
}

.navbartext.mcs150:hover .mcs150-arrow svg {
    transform: translateX(4px) rotate(90deg);
    /* arrow move + rotate */
}


/* Hamburger button */
.menu-toggle {
    background: none;
    border: none;
    color: black;
    font-size: 26px;
    cursor: pointer;
    display: none;
    /* hidden desktop */
}

/* Hamburger animation */
.hamburger {
    cursor: pointer;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    /* margin-top: 30px; */
    height: 2.1em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Navbar link with moving arrow */
.mcs150 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: black;
}

.mcs150-arrow {
    display: inline-block;
    animation: move-right 2s infinite;
}

.mcs150:hover .mcs150-arrow {
    animation: move-right 1.5s infinite;
}

@keyframes move-right {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.5;
    }
}

/* Menu styling */
.navbar-menu {
    /* margin-top: 55px !important; */
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

/* Dropdown */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.868);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 220px;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: aliceblue;
}

.dropdown-menu li a:hover {
    color: #ffcc00;
    border-radius: 5px;
}

/* Submenu (right side desktop) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
}

/* Desktop hover effect */
@media (min-width: 992px) {

    .navbar-menu>li:hover>.dropdown-menu,
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* Mobile styles */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
        z-index: 2000;
    }

    .navbar {
        justify-content: flex-start;
        /* brand left, hamburger right */
    }

    .navbar-menu {
        position: absolute;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        /* background: #fff; */
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 6px rgba(0, 0, 0, 0.395);
        z-index: 1000;
    }

    .navbar-menu.open {
        max-height: 2000px;
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        padding-left: 15px;
    }
}


/* Mobile styles */
@media (max-width: 991px) {
    .navbar-menu {
        position: absolute;
        top: 100px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 6px rgba(0, 0, 0, 0.395);
        z-index: 1000;
        /* animation */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.2s ease-in-out;
    }

    .navbar-menu.open {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        padding-left: 15px;
    }
}


@media (max-width: 991px) {

    /* Navbar links */
    .navbartext {
        font-family: "Montserrat", sans-serif;
        font-size: 13px !important;
        font-weight: 600;
        color: black;
    }

    .navbar-menu {
        background: #fff;
    }

    .dropdown-menu {
        background: #222;
        /* dropdown ka background dark */
    }

    .dropdown-menu li a {
        color: white;
        /* dropdown links white */
    }

    .dropdown-menu li a:hover {
        color: #ffcc00;
        /* hover par yellow */
    }
}


/* Desktop default: white */
.loginlogout {
    color: white !important;
}

/* Mobile/tablet */
@media (max-width: 991px) {
    a.loginlogout {
        color: black !important;
    }
    a.loginlogout img {
        filter: brightness(0) !important;
    }
}



/* Navbar section end -----------------------------------------------------------------------------------------------------------------*/

/* homepage section start -------------------------------------------------------------------------------------------------------------*/
/* WRAPPER */
.wrapper {
    color: #fff;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

/* GLOBAL FONT FAMILY */
h1,
h2,
h3,
p,
span,
a,
strong,
small {
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
}

/* LEFT SECTION */
.text-section {
    flex: 1 1 500px;
}

.text-section h1 {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.3;

}

.highlight-orange {
    color: #ff8c00;
}

.highlight-blue {
    color: #ff8c00;
}

.text-section p {
    margin: 20px 0;
    color: #d4d8f0;
    font-size: clamp(13px, 1.8vw, 16px);
    max-width: 520px;
}

.info-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 10px;
    font-size: clamp(12px, 1.6vw, 14px);
    margin: 20px 0;
}

.info-box span {
    color: #ff9800;
    font-weight: 600;
    font-size: clamp(13px, 1.8vw, 15px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    padding: 12px 22px;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: #ff8c00;
    color: #fff;
    border: none;
}

.primary-btn:hover {
    background: #e67a00;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.secondary-btn:hover {
    background: #fff;
    color: #1c2a68;
}

/* RIGHT SECTION */
.card-section {
    flex: 1 1 380px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card {
    border-radius: 10px;
    padding: 18px;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 400;
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.card small {
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

/* Card Colors */
.card-green {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.3), rgba(0, 200, 150, 0.15));
    border: 1px solid rgba(0, 200, 150, 0.4);
}

.card-blue {
    background: linear-gradient(135deg, rgba(45, 78, 164, 0.6), rgba(45, 78, 164, 0.3));
    border: 1px solid rgba(45, 78, 164, 0.5);
}

.card-orange {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.95), rgba(255, 140, 0, 0.8));
    border: 1px solid rgba(255, 140, 0, 1);
}





























.Reliabletext {
    font-family: Orbitron, sans-serif;
    font-size: 60px;
    padding-top: 15px;
    text-align: left;
    color: rgba(255, 255, 255, 0.962);
    letter-spacing: 4px;
}

.safetext {
    font-family: Orbitron, sans-serif;
    font-size: 60px;
    text-align: left;
    color: rgba(255, 255, 255, 0.962);
    letter-spacing: 10px;
}

.timing-wrapper {
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    margin: 0 auto;
}

/* Text styling */
.timingtext {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    text-align: center;
    color: rgb(255, 255, 255);
    letter-spacing: 5px;
    margin-top: 30px;
    display: block;
}

/* Red animated underline */
.timing-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.1px;
    width: 0;
    background: #C0C0C0;
    border-radius: 2px;
    animation: underlineAnim 3.2s ease-out forwards;
}


/* Keyframes */
@keyframes underlineAnim {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* 📱 Small Devices (Phones) */
@media (max-width: 576px) {
    .Reliabletext {
        font-size: 28px;
        letter-spacing: 2px;
        transition: 0.5s linear;
    }

    .safetext {
        font-size: 28px;
        letter-spacing: 4px;
        transition: 0.5s linear;
    }

    .timingtext {
        font-size: 9px;
        letter-spacing: 2px;
        transition: 0.5s linear;
    }
}

/* 📱 Tablets */
@media (min-width: 577px) and (max-width: 992px) {
    .Reliabletext {
        font-size: 40px;
        /* margin-top: 100px; */
        letter-spacing: 3px;
        transition: 0.5s linear;
    }

    .safetext {
        font-size: 40px;
        letter-spacing: 6px;
        transition: 0.5s linear;
    }

    .timingtext {
        font-size: 14px;
        letter-spacing: 3px;
        transition: 0.5s linear;
    }
}

.button {
    margin: 10px;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    /* background-color:rgba(255, 0, 0, 0.184); */
    border-radius: 30px;
    color: black;
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    padding-left: 8px;
    transition-duration: .5s;
    font-family: Orbitron, sans-serif;
}

.svgIcon {
    height: 20px;
    transition-duration: 1.5s;
}

.bell path {
    fill: rgb(19, 19, 19);
}

.button:hover {
    /* background-color: rgb(192, 255, 20); */
    background-color: #ffcc00;
    transition-duration: .5s;
}

.button:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.button:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

/* marquee section --------------------------------------------------------------------------------------------------------------------*/
.ticker {
    font-family: "Montserrat", sans-serif;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px;
    font-size: 13px;
    position: relative;
}

.ticker a {
    color: white;
    text-decoration: underline;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
    /* space between repeats */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* why-choose-us ----------------------------------------------------------------------------------------------------------------------*/
.feature.special {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature.special:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.12);
}

.section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* Left Side */
.features {
    flex: 1;
    min-width: 280px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
    word-wrap: break-word;
}

.feature-icon {
    background: #e9f2ff;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}

.feature p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
    font-family: Montserrat, sans-serif;
}

/* Dashboard Card (Right Side) */
.dashboard-card {
    flex: 1;
    /* min-width: 280px;
    max-width: 450px; */
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: "Segoe UI", sans-serif;
    text-align: left;
}

/* Header */
.card-header {
    background: #0d2a5c;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

/* Stats */
.card-stats {
    display: flex;
    gap: 12px;
    padding: 16px;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    border: 1px solid #e0e6f0;
    border-radius: 10px;
    padding: 14px;
    position: relative;
    min-width: 120px;
}

.stat h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.stat p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #555;
}

.stat .icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
}

.stat.green {
    background: #f3fbf6;
    color: #27ae60;
}

.stat.blue {
    background: #f5f9ff;
    color: #2980b9;
}

/* List */
.card-list {
    padding: 10px 16px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    word-break: break-word;
}

.list-item:last-child {
    border-bottom: none;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    flex-shrink: 0;
}

.tag.current {
    background: #e6f9f0;
    color: #27ae60;
}

.tag.complete {
    background: #eaf5ff;
    color: #2980b9;
}

.tag.due {
    background: #fff5e0;
    color: #e67e22;
}

/* Footer */
.card-footer {
    padding: 16px;
}

.download-btn {
    width: 100%;
    background: #f7931e;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.download-btn:hover {
    background: #e67e00;
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card-stats {
        flex-direction: column;
    }

    .dashboard-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .content-wrapper {
        padding: 20px 10px;
        gap: 15px;
    }

    .feature h4 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }

    .stat h3 {
        font-size: 16px;
    }

    .stat p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {

    .features,
    .dashboard-card,
    .feature,
    .stat {
        min-width: auto;
        width: 100%;
    }
}

/* subscription section ---------------------------------------------------------------------------------------------------------------*/
/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Title & Price */
.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #C0C0C0;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #C0C0C0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

/* List Styling */
.glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glass-card ul li {
    margin-bottom: 10px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
    .glass-card ul li {
        font-size: 12px;
    }
}

.tick {
    color: #00cc66;
    margin-right: 5px;
    font-weight: bold;
}

/* Note text */
.note {
    font-size: 12px;
    color: #ddd;
}

/* Subscribe Button */
.btn-subscribe {
    background: rgba(255, 204, 0, 0.2);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
}

.btn-subscribe:hover {
    background: #ffcc00;
    color: #333;
    transform: scale(1.05);
}

.btn-subscribe-silver {
    background: rgba(192, 192, 192, 0.2);
    /* light silver background */
    border: 1px solid #c0c0c0;
    /* silver border */
    color: #c0c0c0;
    /* text color silver */
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
}

.btn-subscribe-silver:hover {
    background: #c0c0c0;
    /* solid silver on hover */
    color: #333;
    /* dark text on hover */
    transform: scale(1.05);
}


.section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 20px auto;
    color: #fff;
}

/* Decorative glowing line under text */
.section-heading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

/* Golden gradient text */
.section-heading span {
    background: linear-gradient(90deg, #ffcc00, #ffe066);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 12px rgba(255, 204, 0, 0.3);
}


/* form section ----------------------------------------------------------------------------------------------------------------------*/
/* Centered flash message with animation - Responsive */
.flash {
    position: fixed;
    top: 2vh;
    /* Responsive top spacing */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 1rem 2rem;
    /* Responsive padding */
    border-radius: 0.8rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    max-width: 90vw;
    /* Ensures it doesn't overflow small screens */
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    animation: slideInOut 4s forwards;
}

/* Success and Danger Colors */
.flash.success {
    background-color: #28a745;
    color: white;
}

.flash.danger {
    background-color: #dc3545;
    color: white;
}

/* Animation: fade-in, stay, fade-out */
@keyframes slideInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -2vh);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    90% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -2vh);
    }
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .flash {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .flash {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}


.hero-heading {
    font-size: 40px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    transition: font-size 0.3s ease-in-out;
    /* Smooth transition */
}

.hero-heading .highlight {
    color: #e67e00;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 25px;
    }
}

.Frequently-Asked-Questions {
    font-size: clamp(20px, 2.5vw, 25px);
    font-family: Montserrat, sans-serif;
    color: white;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

.faqq {
    font-size: clamp(14px, 1.8vw, 15px);
    font-family: Montserrat, sans-serif;
    color: white;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 3px auto;
    font-family: 'Courier New', Courier, monospace;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f1c3f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    margin: 15px 0;
    /* font-size: 0.95rem; */
    color: #333;
    line-height: 1.6;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 15px;
}

/* Layout fix for form not moving */
#register-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#register-section .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#register-section .col-lg-6:last-child {
    position: sticky;
    top: 50px;
    align-self: flex-start;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    color: #e67e00;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #e67e00;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: #e67e00;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.message,
.signin {
    color: rgba(88, 87, 87, 0.82);
    font-size: 14px;
}

.signin {
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.signin a {
    color: #e67e00;
}

.signin a:hover {
    text-decoration: underline #e67e00;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.4);
    border-radius: 10px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.submit {
    border: none;
    outline: none;
    background-color: #e67e00;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease;
}

.submit:hover {
    background-color: #ff8c00;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


























/* Loader Style */
.loader {
    width: 50px;
    height: 50px;
    display: inline-block;
    border: 5px solid #ffcc00;
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: rot5 1s linear infinite;
}

@keyframes rot5 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
        border-top-color: #ffcc00;
        border-bottom-color: #ffcc00;
        border-right-color: transparent;
        border-left-color: transparent;
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Main content */
#content {
    display: none;
    opacity: 0;
    transition: opacity 2s ease;
}