/* === HEADER SECTION === */
.simple-header {
    background-color: #ffffff;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.simple-header .nav-link {
    color: #3b0066;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.simple-header .nav-link:hover {
    color: #0072bb;
}

.simple-header .mobile-toggle {
    background: none;
    border: none;
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu .mobile-link {
    color: #3b0066;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
}

.mobile-menu .mobile-link:hover {
    color: #0072bb;
}

/* === BRAND BUTTONS === */
.btn-brand {
    background-color: #3b0066;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s ease;
}

.btn-brand:hover {
    background-color: #29004d;
    color: #fff;
}

/* === OPTIONAL: Gradient Style === */
.btn-gradient {
    background: linear-gradient(to right, #3b0066, #0072bb);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === HERO SECTION (GRADIENT) === */
.hero-section {
    background: linear-gradient(135deg, #f8eeff 0%, #e7f6ff 100%);
    padding-top: 0px;
    padding-bottom: 40px;
    color: #ffffff;
}

.hero-section .hero-title {
    font-size: 2.7rem;
    font-weight: 700;
    /* line-height: 1.3; */
    color: #2f5da8;
    line-height: 1em;
}

.hero-section .hero-subtitle {
    font-size: 1em;
    /* font-weight: 400; */
    max-width: 520px;
    color: #0c377c;
}

.hero-section .r-part {
    padding-top: 100px;
}

.hero-section .hero-image {
    max-width: 100%;
    height: auto;
    animation: float 5s ease-in-out infinite;
}

/* Reuse float animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3b0066, #0072bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .hero-section .btn-gradient {
    background: #fff;
    color: #3b0066;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

.hero-section .btn-gradient:hover {
    color: #0072bb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
} */

/* === hero section form modal === */
/* MODERN MODAL STYLING */
.modern-modal {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: none;
}

.modal-left {
    background: linear-gradient(to bottom right, #3b0066, #0071c5);
    color: white;
    text-align: center;
}

.modal-right {
    background: #ffffff;
}

/* Title */
.modal-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3b0066;
}

/* Input Fields */
.modern-input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #f8f9fa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: #0071c5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 113, 197, 0.1);
}

/* Button */
.btn-gradient {
    background: linear-gradient(to right, #3b0066, #0071c5);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #0071c5, #3b0066);
}

/* Confetti */
#confettiCanvas {
    z-index: 1055;
    position: absolute;
}

/* Responsive */
@media (max-width: 767px) {
    .modal-left {
        display: none !important;
    }

    .modal-right {
        padding: 30px 20px;
    }
}

.is-invalid {
    border-color: red !important;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

/* already login  */
.already-login {
    font-size: 0.95rem;
    color: #555;
}

.already-login .login-link {
    color: #0071c5;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.already-login .login-link:hover {
    color: #3b0066;
}



/* === LOGIN MODAL STYLING === */
.login-modal {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.login-modal h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.text-brand {
    color: #3b0066;
}

.login-modal .form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.login-modal .form-control:focus {
    border-color: #0072bb;
    box-shadow: 0 0 0 2px rgba(0, 114, 187, 0.15);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff0f0;
}

/* === GOOGLE LOGIN BUTTON === */
.btn-google {
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f7f7f7;
}

.google-icon {
    height: 20px;
    margin-right: 10px;
}

/* === DISCLAIMER === */
.disclaimer-text {
    font-size: 0.85rem;
    color: #888;
}

.disclaimer-text a {
    color: #3b0066;
    text-decoration: underline;
    font-weight: 500;
}

/* === FEATURES SECTION STYLING === */
.otp-features-section {
    background: linear-gradient(to bottom, #eaf7ff, #ffffff);
}

.features-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #174ea6;
}

.features-subtext {
    font-size: 1rem;
    color: #6a6a6a;
}

/* Flex container */
.features-flex {
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Individual Feature */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    color: #0b63ce;
}

.feature-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0b63ce;
    margin-top: 8px;
}

/* Divider */
.divider {
    width: 16px;
    height: 2px;
    background-color: #c3d5e8;
}

@media (max-width: 767px) {
    .divider {
        display: none;
    }

    .feature-item {
        width: 45%;
        margin-bottom: 20px;
    }

    .features-flex {
        gap: 1.2rem;
    }
}

/* === HOW IT WORKS - OTPhi STYLE === */
.otp-how-works-img {
    background: linear-gradient(to bottom, #f6f9ff, #ffffff);
}

.how-title {
    font-size: 2rem;
    font-weight: 700;
    color: #320077;
}

.how-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.otp-how-works-img img {
    max-width: 60%;
}

.step-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    max-width: 500px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0072bb;
    position: relative;
}

.step-box.left {
    margin-right: auto;
}

.step-box.right {
    margin-left: auto;
}

.step-content {
    text-align: left;
}

.step-icon {
    font-size: 1.5rem;
    color: #0072bb;
    margin-bottom: 10px;
    display: inline-block;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2f78;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .how-step {
        flex-direction: column;
    }

    .step-box.left,
    .step-box.right {
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }
}

/* === INDUSTRY / USE CASE SECTION === */
/* SECTION TITLE */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a0068;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Toggle Button Styling */
.pill-btn {
    background: none;
    border: 2px solid #0a4dd5;
    color: #0a4dd5;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    margin: 0 8px;
    transition: 0.3s ease;
}

.pill-btn.active,
.pill-btn:hover {
    background: linear-gradient(90deg, #320077, #0062cc);
    color: white;
    border-color: transparent;
}

/* Card Styling */
.info-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: #0062cc;
    margin-bottom: 12px;
    display: block;
}

.info-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2a2a72;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Tabs */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block !important;
}

/* === TRUSTED BY BRANDS SECTION === */
.trusted-logos-section {
    background: linear-gradient(135deg, #eef3ff, #ffffff);
}

.trusted-title {
    font-size: 2rem;
    font-weight: 700;
    color: #320077;
}

.trusted-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.logo-strip {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.logo {
    flex: 0 0 auto;
    padding: 0 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Optional mobile optimization */
@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }

    .logo {
        padding: 0 15px;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #360066, #0071c5);
    color: #fff;
    border-radius: 1rem;
    margin: 3rem auto;
    max-width: 900px;
}

.cta-section h2 {
    font-size: 2rem;
    color: white;
}

/* === FOOTERT SECTION ===  */
.footer-creative {
    background: linear-gradient(135deg, #360066, #0071c5);
    color: #fff;
}

.footer-creative .footer-logo {
    max-width: 100px;
    filter: brightness(1.2);
    background: white;
    padding: 5px;
    border-radius: 6px;
}

.footer-creative h6 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links a {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons a {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding-top: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
/* heading  */
.contact-hero {
    background: linear-gradient(to right, #3b0066, #0071c5);
    color: #fff;
    text-align: center;
    padding: 130px 20px 70px;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* content  */
.contact-v2 {
    background: linear-gradient(to bottom right, #f7f9fc, #e9f0ff);
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-v2-wrapper {
    max-width: 1100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Left Info Side */
.contact-v2-info {
    flex: 1;
    min-width: 280px;
}

.contact-v2-info h2 {
    font-size: 2rem;
    color: #3b0066;
    margin-bottom: 10px;
}

.contact-v2-info .subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 24px;
}

.contact-v2-info ul {
    list-style: none;
    padding: 0;
}

.contact-v2-info li {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-v2-info li i {
    font-size: 1rem;
    color: #0071c5;
    margin-right: 10px;
}

/* Right Form Side */
.contact-v2-form {
    flex: 1;
    min-width: 300px;
}

.contact-v2-form h3 {
    font-size: 1.5rem;
    color: #3b0066;
    margin-bottom: 20px;
}

.contact-v2-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-v2-form input,
.contact-v2-form textarea {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fff;
    box-sizing: border-box;
}

.contact-v2-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-v2-form button {
    background: linear-gradient(to right, #3b0066, #0071c5);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-v2-form button:hover {
    background: linear-gradient(to right, #0071c5, #3b0066);
}

.form-success {
    margin-top: 10px;
    color: #0071c5;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-v2-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .contact-v2-info h2,
    .contact-v2-form h3 {
        text-align: center;
    }

    .contact-v2-info ul {
        text-align: center;
    }

    .contact-v2-info li {
        justify-content: center;
    }
}

/* === Privacy Plicy ===  */
/* Wrapper and Layout */
.policy-wrapper {
    max-width: 80%;
    margin: 100px auto 0;
    padding: 0 20px 50px;
    background-color: #fff;
}

/* Section Heading */
.policy-heading {
    text-align: center;
    margin-bottom: 20px;
}

.policy-heading h1 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #3b0066, #0071c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-heading p {
    font-size: 1rem;
    color: #666;
}

/* Individual Section Blocks */
.policy-section {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section h2 {
    font-size: 1.25rem;
    color: #3b0066;
}

.policy-section p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 0 16px;
    }

    .policy-heading h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }
}