:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #13131a;
    --bg-tertiary: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #1b52bf, #6266f0, #6678a1);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background-color: #0a0a0b; */
    color: #fff;
    overflow-x: hidden;
}

/* Navbar Styles */
.custom-navbar {
    background: #1b52bf !important;
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.custom-navbar.scrolled {
    background: #1b52bf !important;
    box-shadow: 0 3px 20px rgba(99, 102, 241, 0.3);
}

/* Brand */
.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover {
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Toggler */
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:hover {
    transform: rotate(90deg);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Links */
.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin: 0 0.4rem;
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #2855c9, #fbfbfb);
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: #a5b4fc !important;
    background: rgba(99, 102, 241, 0.1);
}

/* Theme Button */
.theme-toggle {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        text-align: center;
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    }

    .nav-link {
        display: block;
        padding: 0.8rem !important;
        margin: 0.2rem 0;
    }

    .theme-toggle {
        margin-top: 0.8rem;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #eaf4ff 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: gradientShift 10s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1b52bf, #6266f0, #6678a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn-primary {
    background: #1b52bf;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(99, 102, 241);
    color: #2f57cc;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
    /* margin-bottom: 1rem; */
}

.btn-outline-light:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease;
}

.floating-card {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.floating-card i {
    font-size: 2rem;
    background: #1b52bf;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 36%;
    right: 11%;
    animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 40%;
    left: 5%;
    animation: float 8s ease-in-out infinite 2s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation: float 6.5s ease-in-out infinite 1.5s;
}

.card-5 {
    top: 50%;
    left: 40%;
    animation: float 7.5s ease-in-out infinite 0.5s;
}

.card-6 {
    top: 26%;
    left: 34%;
    animation: float 7.5s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    padding: 1rem 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: linear-gradient(135deg, #1b52bf, #6266f0, #6678a1);
}

.section-subtitle {
    color: #000000;
    font-size: 1.1rem;
}

.feature-card {
    background: var(--bg-primary);
    color: #6266ee;
    border: 2px solid rgba(99, 102, 241);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #1b52bf;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.feature-card p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    background: #1b52bf;
    border-radius: 24px;
    padding: 4rem 3rem;
    /* box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3); */
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-card .btn-light {
    background: white;
    color: #1b52bf;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #000000;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1b52bf;
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #6266f0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #000000;
    margin-bottom: 0.8rem;
}

.footer-divider {
    border-color: var(--border-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 103px;
    right: 23px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Modal */
.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

[data-theme="light"] .btn-close {
    filter: invert(0);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.3rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-primary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

.App-logo {
    height: 40vmin;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .App-logo {
        animation: App-logo-spin infinite 20s linear;
    }
}

.App-header {
    background-color: #0f0f10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.App-link {
    color: #61dafb;
}

@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

  /* Floating Chat Button */
  #chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1b52bf;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

#chatbot-toggle:hover {
    transform: scale(1.1);
}

/* Chatbot Box */
#ai-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    height: 397px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

/* Header */
#chatbot-header {
    background: #1b52bf;
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close Button */
#chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

/* Floating Button */
#chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1b52bf;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    z-index: 999;
}

#chatbot-toggle:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

  /* Chatbot Container */
  #ai-chatbot {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 330px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
    z-index: 1000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#chatbot-header {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#chatbot-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chatbot-body {
    height: 300px;
    overflow-y: auto;
    padding: 12px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

.chat-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    background: #e0e7ff;
    align-self: flex-start;
    color: #1e1b4b;
}

.chat-message.user {
    background: #4f46e5;
    color: white;
    align-self: flex-end;
}

#chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
    background: white;
}

#chatbot-input input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

#chatbot-input button {
    background: #1b52bf;
    color: white;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.3s;
}

#chatbot-input button:hover {
    background: #1b52bf;
}


/* --- Inspirational Quotes Section --- */
.inspire-section {
    background: #1b52bf;
    position: relative;
    min-height: 190px;
    overflow: hidden;
}

.enquiry-form{
    background: #1b52bf;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.25) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite alternate;
}

.floating-shapes::after {
    width: 250px;
    height: 250px;
    right: 10%;
    bottom: 10%;
    animation-delay: 2s;
}

@keyframes float {
    from {
        transform: translateY(0);
        opacity: 0.8;
    }

    to {
        transform: translateY(-30px);
        opacity: 1;
    }
}

/* Typing animation base */
.animate-typing {
    font-size: 1.25rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    margin: 0 auto;
    display: inline-block;
    animation: typing 4s steps(40, end) 1s forwards, blink 0.65s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Typing animation */
.animate-typing {
    font-size: 1.25rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    margin: 0 auto;
    animation: typing 4s steps(40, end) 1s forwards, blink 0.65s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 42%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .animate-typing {
        font-size: 1rem;
        display: inline-block;
        width: 100%;
        animation: typing-mobile 5s steps(60, end) 1s forwards, blink 0.65s step-end infinite;
    }

    @keyframes typing-mobile {
        from {
            width: 0;
        }

        to {
            width: 90%;
        }
    }
}

@media (max-width: 480px) {
    .animate-typing {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

