/* Poori website par smooth scrolling enable karne ke liye */
html {
    scroll-behavior: smooth;
}

/* Contact Button Styling */
.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    /* Aapka purple color */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-contact:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

:root {
    --primary: #3d0075;
    --primary-light: #5e17a3;
    --primary-dark: #2a0052;
    --accent: #d4af37;
    --accent-light: #f1c40f;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #fcfaff;
    --shadow: 0 10px 30px rgba(61, 0, 117, 0.1);
    --border-radius: 20px;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */

#loader {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #ffffff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    transition: opacity 0.5s ease;

}



.loader-content {

    text-align: center;

}



.loader-icon {

    font-size: 4rem;

    color: var(--accent);

    margin-bottom: 20px;



}





.loader-bar {

    width: 200px;

    height: 3px;

    background: rgba(0, 0, 0, 0.845);

    margin: 0 auto;

    border-radius: 5px;

    position: relative;

    overflow: hidden;

}



.loader-bar::after {

    content: '';

    position: absolute;

    left: -100%;

    width: 100%;

    height: 100%;

    background: #ffffff;
    animation: loaderBar 1s infinite linear;

}



@keyframes loaderPulse {



    0%,

    100% {

        transform: scale(1);

        opacity: 0.8;

    }



    50% {

        transform: scale(1.2);

        opacity: 1;

    }

}



@keyframes loaderBar {

    0% {

        left: -100%;

    }



    100% {

        left: 100%;

    }

}



.container {

    width: 1100px;

    margin: 0 auto;

    background: white;

    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);

    min-height: 100vh;

    position: relative;

    overflow: hidden;

}



/* Header */
.top-header {
    background: white;
    text-align: center;
    padding: 10px 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.sparkle {
    color: var(--accent);
}

/* Hero Section */
.hero {
    display: flex;
    padding: 40px 60px;
    position: relative;
    z-index: 2;
    align-items: center;
    /* Image aur content ko vertically align karne ke liye */
}

.hero-left {
    flex: 1.2;
}

/* --- Naya Logo Styling (Added) --- */
.hero-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin-bottom: 25px;
    margin-left: -15px;

    /* --- Watermark Hide Karne ke liye --- */
    /* Ye bottom aur right se 15-15 pixels kaat dega aur corners ko 20px round rakhega */
    clip-path: inset(0 15px 15px 0 round 20px);

    /* border-radius ki ab zaroorat nahi kyunki clip-path khud round kar raha hai */
    /* border-radius: 20px; <- Isse hata sakte ho agar chaho */
}

/* --- Purani CSS (Rakhi hui hai) --- */
.name {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 900;
}

.subtitle {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent);
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 320px;
        margin: 0 auto 20px auto;
        /* Mobile par center ho jaye */
    }
}

.badges {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: white;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.divider {
    margin: 0 15px;
    opacity: 0.5;
}

.specialization h3 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.specialization p {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    max-width: 500px;
}

.mastery-box {
    margin-top: 30px;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.mastery-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--accent);
}

.mastery-text p {
    margin: 0;
}

.mastery-text strong {
    color: var(--accent);
}

/* Hero Right / Quote */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.quote-area {
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(61, 0, 117, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    position: absolute;
    top: 20px;
    left: 40px;
    opacity: 0.3;
}

.quote-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.promise {
    font-family: var(--font-script);
    font-size: 2.2rem;
    margin-top: 15px !important;
}

.promise span {
    color: var(--accent);
}

/* Illustration */
.illustration {
    position: relative;
    margin-top: -50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brain-img {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Font-size hata dein kyunki ab hum image use kar rahe hain */
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: float 3s ease-in-out infinite;
    /* Pulse ki jagah floating zyada suit karegi */
}



.books-stack {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.book {
    background: var(--primary);
    color: white;
    padding: 5px 25px;
    margin: 2px 0;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-left: 10px solid rgba(255, 255, 255, 0.2);
}

.book:nth-child(even) {
    background: var(--primary-light);
}

/* Icon Grid */
.feature-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 20px 40px;
    background: #f8f8f8;
    margin-top: 20px;
}

.icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.icon-item:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
}

.icon-item p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 40px;
}

.card {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.card-purple {
    background: var(--primary);
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
}

.header-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.card-header h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.card-content {
    padding: 30px;
}

.card-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.priority-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Approach List */
.section-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.section-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.section-divider span {
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.list-icon {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.list-text strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}

.list-text p {
    font-size: 0.85rem;
    color: #666;
}

/* Subjects Card */
.subjects-card {
    background: white;
    border: 2px solid #f0f0f0;
}

.card-title-bar {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-align: center;
    border-radius: 50px;
    margin: 20px;
}

.card-title-bar h2 {
    font-size: 1rem;
    letter-spacing: 1px;
}

.subjects-list {
    list-style: none;
    padding: 10px 30px 30px;
}

.subjects-list li {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

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

.sub-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.sub-text strong {
    color: var(--primary);
    font-size: 1rem;
}

.sub-text p {
    font-size: 0.85rem;
    color: #555;
}

/* Dual Columns */
.dual-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card-header-small {
    padding: 12px 20px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.purple-bg {
    background: var(--primary);
}

.check-list {
    list-style: none;
    padding: 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #444;
}

.check-list i {
    color: var(--primary);
    margin-right: 8px;
    margin-top: 3px;
}

/* Footer */
.footer {
    padding: 0 40px 40px;
}

.whatsapp-bar {
    background: linear-gradient(to right, #2c0055, #3d0075);
    color: white;
    border-radius: 50px 50px 0 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-left {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0);
}

.wa-left:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.wa-icon {
    font-size: 3.5rem;
    color: #25d366;
    margin-right: 20px;
}

.wa-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.wa-number {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    line-height: 1;
    font-weight: 900;
}

.wa-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

.wa-right {
    display: flex;
    gap: 30px;
}

.wa-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.item-text strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.item-text span {
    font-size: 0.65rem;
    opacity: 0.7;
}

.footer-tagline {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid #eee;
    border-top: none;
}

.heart {
    color: #e74c3c;
}

.footer-bottom {
    background: var(--bg-light);
    padding: 15px 40px;
    text-align: center;
    border: 1px solid #eee;
    border-top: none;
    font-weight: 600;
    color: var(--primary);
}

.footer-bottom p {
    margin: 2px 0;
}

.dev-credit {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px !important;
}

.dev-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--accent);
    transition: all 0.3s;
}

.dev-credit a:hover {
    color: var(--accent);
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Background Wave Decoration */
.bg-wave {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 700px;
    background: var(--primary);
    border-bottom-left-radius: 100%;
    z-index: 1;
    opacity: 0.05;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animations */
.hero-left,
.hero-right,
.card,
.icon-item {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }


}