/* ==================================================
   ASKPANDIT.AI
   STYLE.CSS V4
   PART 1 - GLOBAL + HEADER
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==================================================
   VARIABLES
================================================== */

:root{

    --primary:#6D28D9;
    --secondary:#EC4899;
    --accent:#F97316;

    --navy:#0F172A;
    --navy-light:#1E293B;

    --bg:#F8FAFC;
    --card:#FFFFFF;

    --text:#0F172A;
    --muted:#64748B;

    --border:#E5E7EB;

    --success:#22C55E;

    --radius:24px;

    --shadow-sm:
    0 4px 12px rgba(15,23,42,.05);

    --shadow-md:
    0 12px 30px rgba(15,23,42,.08);

    --shadow-lg:
    0 25px 60px rgba(15,23,42,.10);

}

/* ==================================================
   RESET
================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    color:var(--text);

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ==================================================
   CONTAINER
================================================== */

.container{

    max-width:1280px;

    margin:auto;

}

/* ==================================================
   GLOBAL SECTIONS
================================================== */

.section-space{

    padding:30px 0;

}

.section-heading{

    font-size:36px;

    font-weight:700;

    margin-bottom:24px;

}

.section-subheading{

    color:var(--muted);

    max-width:650px;

    margin:auto;

}

/* ==================================================
   HEADER
================================================== */

.site-header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);

}

.navbar{

    padding:14px 0;

}

/* Logo */

.logo{

    height:54px;

}

/* Navigation */

.navbar-nav{

    align-items:center;

}

.nav-link{

    color:var(--text) !important;

    font-weight:500;

    margin:0 10px;

    transition:.3s;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-ai{

    color:var(--primary) !important;

    font-weight:700;

}

/* Header Actions */

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

/* Contact */

.btn-contact{

    color:var(--text);

    font-weight:600;

    transition:.3s;

}

.btn-contact:hover{

    color:var(--primary);

}

/* CTA */

.btn-start{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    color:white;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #6D28D9,
        #EC4899,
        #F97316
    );

    transition:.3s;

}

.btn-start:hover{

    transform:translateY(-2px);

    color:white;

    box-shadow:
    0 15px 30px rgba(109,40,217,.20);

}

/* ==========================================================
   DAILY VEDIC BRIEFING - ASKPANDIT.AI
   Premium Dashboard UI
========================================================== */

.vedic-dashboard{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #ececec;
    margin:60px 0;
}

/*=========================
HEADER
=========================*/

.dashboard-header{
    background:linear-gradient(135deg,#A56A00,#D89F1D,#F3D27A);
    color:#fff;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.dashboard-badge{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.dashboard-header h2{
    margin:15px 0 10px;
    color:#fff;
    font-size:38px;
    font-weight:700;
}

.dashboard-header p{
    margin:0;
    font-size:17px;
    color:rgba(255,255,255,.92);
}

.dashboard-date{
    background:#fff;
    color:#8B5E00;
    padding:18px 26px;
    border-radius:16px;
    min-width:180px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.dashboard-date div{
    font-size:20px;
    font-weight:700;
}

.dashboard-date span{
    display:block;
    margin-top:8px;
    color:#666;
    font-size:14px;
}

/*=========================
GRID
=========================*/

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    padding:35px;
}

/*=========================
CARD
=========================*/

.dashboard-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    transition:.35s;
    border:1px solid #ececec;
    position:relative;
}

.dashboard-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.dashboard-card h3{
    margin-bottom:15px;
    color:#222;
    font-size:22px;
    font-weight:700;
}

.dashboard-card p{
    margin:0;
    color:#555;
    line-height:1.9;
}

.dashboard-card ul{
    margin:0;
    padding-left:22px;
}

.dashboard-card li{
    margin-bottom:12px;
    line-height:1.8;
    color:#444;
}

.dashboard-card li::marker{
    color:#C58A1D;
}

/*=========================
CARD COLORS
=========================*/

.rating-card{
    background:#FFFBEF;
    border-left:6px solid #D4A017;
}

.energy-card{
    background:#F4F9FF;
    border-left:6px solid #4A90E2;
}

.activity-card{
    background:#F3FFF7;
    border-left:6px solid #2ECC71;
}

.avoid-card{
    background:#FFF8F2;
    border-left:6px solid #F39C12;
}

.practice-card{
    background:#FBF6FF;
    border-left:6px solid #8E44AD;
}

.bestfor-card{
    background:#F8FFF7;
    border-left:6px solid #27AE60;
}

/*=========================
RATING
=========================*/

.rating-number{
    font-size:56px;
    font-weight:700;
    color:#C58A1D;
    margin:15px 0;
}

.rating-number small{
    font-size:22px;
    color:#777;
}

.rating-status{
    display:inline-block;
    background:#D4A017;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
}

/*=========================
PANDIT ADVICE
=========================*/

.pandit-message{
    margin:0 35px 35px;
    background:linear-gradient(135deg,#FFF7E6,#FFFDF8);
    border-left:6px solid #C58A1D;
    border-radius:18px;
    padding:30px;
    display:flex;
    gap:20px;
}

.pandit-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#D4A017;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    flex-shrink:0;
}

.pandit-label{
    display:block;
    color:#C58A1D;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.pandit-content blockquote{
    margin:0;
    font-size:18px;
    line-height:1.9;
    color:#444;
    font-style:italic;
}

/*=========================
ASK AI
=========================*/

.ask-pandit-banner{
    margin:0 35px 35px;
    background:linear-gradient(135deg,#5E35B1,#7E57C2);
    border-radius:18px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.ask-pandit-banner h3{
    color:#fff;
    margin-bottom:12px;
}

.ask-pandit-banner p{
    color:rgba(255,255,255,.92);
    margin:0;
    line-height:1.8;
}

.ask-ai-btn{
    display:inline-block;
    background:#fff;
    color:#5E35B1;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.ask-ai-btn:hover{
    background:#F7F7F7;
    transform:translateY(-3px);
    color:#5E35B1;
}

/*=========================
FOOTER
=========================*/

.dashboard-footer{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#FAFAFA;
    border-top:1px solid #eee;
}

.footer-item{
    text-align:center;
    padding:18px;
    font-size:15px;
    color:#666;
    border-right:1px solid #eee;
}

.footer-item:last-child{
    border-right:none;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.dashboard-header{
    flex-direction:column;
    text-align:center;
}

.dashboard-grid{
    grid-template-columns:1fr;
}

.ask-pandit-banner{
    flex-direction:column;
    text-align:center;
}

.dashboard-footer{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.dashboard-header{
    padding:28px;
}

.dashboard-header h2{
    font-size:30px;
}

.dashboard-grid{
    padding:20px;
}

.dashboard-card{
    padding:22px;
}

.pandit-message{
    margin:20px;
    flex-direction:column;
    text-align:center;
}

.ask-pandit-banner{
    margin:20px;
}

.dashboard-footer{
    grid-template-columns:1fr;
}

.footer-item{
    border-right:none;
    border-bottom:1px solid #eee;
}

.footer-item:last-child{
    border-bottom:none;
}

}

/* Mobile Toggle */

.navbar-toggler{

    border:none;

    box-shadow:none !important;

    font-size:24px;

}

/* ==================================================
   UTILITIES
================================================== */

.text-gradient{

    background:linear-gradient(
        90deg,
        #6D28D9,
        #EC4899,
        #F97316
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.rounded-xl{

    border-radius:24px;

}

.shadow-soft{

    box-shadow:var(--shadow-md);

}

/* ==================================================
   TABLET
================================================== */

@media(max-width:991px){

    .header-actions{

        margin-top:20px;

        flex-direction:column;

        align-items:flex-start;

    }

    .nav-link{

        margin:8px 0;

    }

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .logo{

        height:44px;

    }

    .section-space{

        padding:30px 0;

    }

    .section-heading{

        font-size:28px;

    }

}



/* ==================================================
   STYLE.CSS V4
   PART 2
   HERO + SEARCH + ORB + POPULAR QUESTIONS
================================================== */

/* ==================================================
   HERO SECTION
================================================== */

.hero-ai{
    padding:40px 0 60px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:#F3E8FF;
    color:#6D28D9;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:45px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:20px;
    color:#0F172A;
}

.gradient-text{
    background:linear-gradient(
        90deg,
        #6D28D9,
        #EC4899,
        #F97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    font-size:18px;
    line-height:1.8;
    color:#64748B;
    max-width:580px;
    margin-bottom:30px;
}

.hero-image img{

    filter:drop-shadow(
        0 0 40px rgba(124,58,237,.25)
    );

}

/* ==================================================
   AI SEARCH
================================================== */

.ai-search{

    background:#FFFFFF;

    border:2px solid rgba(109,40,217,.15);

    border-radius:26px;

    padding:10px;

    box-shadow:
    0 0 0 10px rgba(109,40,217,.05),
    0 30px 80px rgba(109,40,217,.12);

    transition:.35s;

}

.ai-search:hover{

    box-shadow:
    0 0 0 10px rgba(109,40,217,.06),
    0 30px 70px rgba(109,40,217,.10);

}

.ai-search .d-flex{

    gap:10px;

}

.ai-search input{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    padding:20px 16px;

    font-size:17px;

    color:#0F172A;

}

.ai-search input::placeholder{

    color:#94A3B8;

}

.ai-search-actions{

    display:flex;

    align-items:center;

    gap:10px;

}

/* Voice Button */

.voice-btn{

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:#F8FAFC;

    cursor:pointer;

    font-size:20px;

    transition:.3s;

}

.voice-btn:hover{

    background:#EEF2FF;

    transform:translateY(-2px);

}

/* Submit Button */

.ai-search-btn{

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:white;

    font-size:18px;

    background:linear-gradient(
        135deg,
        #EC4899,
        #F97316
    );

    transition:.3s;

}

.ai-search-btn:hover{

    transform:translateY(-2px);

}

/* ==================================================
   POPULAR QUESTIONS
================================================== */

.popular-label{

    margin-top:28px;

    margin-bottom:12px;

    font-weight:700;

    color:#0F172A;

}

.question-pill{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:14px 16px;

    font-size:14px;

    font-weight:500;

    cursor:pointer;

    transition:.3s;

}

.question-pill:hover{

    border-color:#6D28D9;

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(109,40,217,.10);

}

/* ==================================================
   AI ORB IMAGE
================================================== */

.hero-orb-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-orb{

    width:100%;

    max-width:620px;

    height:auto;

    display:block;

    animation:orbFloat 6s ease-in-out infinite;

}

.glance-wrapper{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:28px;

    padding:30px;

    box-shadow:0 8px 24px rgba(15,23,42,.04);

}

@keyframes orbFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ==================================================
   DESKTOP REFINEMENT
================================================== */

@media(min-width:1200px){

    .hero-ai{

        min-height:620px;

        display:flex;

        align-items:center;

    }

}

/* ==================================================
   TABLET
================================================== */

@media(max-width:991px){

    .hero-title{

        font-size:50px;

    }

    .hero-subtitle{

        font-size:17px;

    }

    .hero-orb{

        max-width:380px;

        margin-top:40px;

    }

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .hero-ai{

        padding:25px 0 40px;

    }

    .hero-title{

        font-size:38px;

        line-height:1.15;

    }

    .hero-subtitle{

        font-size:16px;

        line-height:1.7;

    }

    .hero-orb{

        max-width:300px;

        margin-top:30px;

        margin-bottom:20px;

    }

    .question-pill{

        font-size:13px;

    }

    .voice-btn,
    .ai-search-btn{

        width:48px;

        height:48px;

    }

}


/* ==================================================
   STYLE.CSS V4
   PART 3
   CARDS + GLANCE + INSIGHTS + TRUST
================================================== */

/* ==================================================
   DASHBOARD CARDS
================================================== */

.dashboard-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:30px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

/* Card Layout */

.card-top{

    display:flex;

    align-items:flex-start;

    gap:16px;

}

.card-content{

    flex:1;

}

.card-content h4{

    margin-bottom:8px;

    font-size:20px;

    font-weight:700;

}

.card-content p{

    color:#64748B;

    font-size:14px;

    margin-bottom:0;

}

/* Icon */

.card-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:#F8FAFC;

}

/* Arrow */

.card-arrow{

    margin-top:20px;

    margin-left:auto;

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F3E8FF;

    color:#6D28D9;

    font-weight:700;

}

.card-marriage .card-icon{

    background:#F3E8FF;
    color:#7C3AED;

}

.card-vehicle .card-icon{

    background:#FFF7ED;
    color:#F97316;

}

.card-panchangam .card-icon{

    background:#ECFDF5;
    color:#22C55E;

}

.card-horoscope .card-icon{

    background:#FFFBEB;
    color:#F59E0B;

}

.card-marriage .card-arrow{
    background:#F3E8FF;
    color:#7C3AED;
}

.card-vehicle .card-arrow{
    background:#FFF7ED;
    color:#F97316;
}

.card-panchangam .card-arrow{
    background:#ECFDF5;
    color:#22C55E;
}

.card-horoscope .card-arrow{
    background:#FFFBEB;
    color:#F59E0B;
}

.dashboard-card:hover{

    transform:translateY(-6px);

    border-color:#6D28D9;

    box-shadow:
    0 25px 60px rgba(109,40,217,.12);

}

.zodiac-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:24px;
}

.zodiac-card{

    background:#F5F3FF;
	border:2px solid #7C3AED;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    transition:.3s;

    display:block;

	cursor:pointer;

	min-height:170px;

    height:100%;

}

.zodiac-card:hover{

    transform:translateY(-8px) scale(1.02);

    border-color:#7C3AED;

    box-shadow:0 20px 40px rgba(124,58,237,.12);

}

.zodiac-icon{

    width:72px;

    height:72px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#F5F3FF;

    color:#7C3AED;

    font-size:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s ease;

}

.zodiac-card h5{
    font-size:20px;
    font-weight:700;
    margin:14px 0 8px;
}

.zodiac-card:hover .zodiac-icon{

    background:#7C3AED;

    color:#fff;

}

.zodiac-date{

    display:block;

    margin-top:8px;

    font-size:13px;

    color:#64748B;

}

.active-zodiac{

    border:2px solid #7C3AED;

    background:#F8F5FF;

    box-shadow:0 10px 30px rgba(124,58,237,.18);

}

.active-zodiac h5{
    color:#111827;
}

.active-zodiac .zodiac-date{

    color:#E9D5FF;

}

.active-zodiac .zodiac-icon{

    background:#fff;

    color:#7C3AED;

}

.dashboard-card::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #6D28D9,
        #EC4899,
        #F97316
    );

    opacity:0;

    transition:.3s;

}

.dashboard-card:hover::before{

    opacity:1;

}

.dashboard-card h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:12px;

}

.dashboard-card p{

    color:#64748B;

    margin-bottom:0;

}

/* ==================================================
   CARD ICON
================================================== */

.card-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:#F8FAFC;

    margin-bottom:16px;

}

/* ==================================================
   TODAY AT A GLANCE
================================================== */

.glance-card{

    background:white;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:20px;

    transition:.3s;

    height:100%;

}

.glance-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.glance-top{

    display:flex;

    align-items:flex-start;

    gap:14px;

}

.glance-icon{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}



.glance-content{

    flex:1;

}

.glance-label{

    color:#64748B;

    font-size:14px;

    font-weight:600;

}

.glance-value{

    font-size:16px;

    font-weight:700;

    color:#0F172A;

    margin-top:4px;

}

.glance-extra{

    color:#64748B;

    font-size:13px;

    margin-top:3px;

}

.purple{
    background:#F3E8FF;
    color:#7C3AED;
}

.green{
    background:#ECFDF5;
    color:#10B981;
}

.red{
    background:#FEF2F2;
    color:#EF4444;
}

.orange{
    background:#FFF7ED;
    color:#F97316;
}

/* ==================================================
   AI INSIGHTS SECTION
================================================== */

.insights-section{

    background:linear-gradient(
        135deg,
        #08112E,
        #1B1F5A
    );

    border-radius:28px;

    padding:24px;

    min-height:auto;

}

.insights-section::before{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(109,40,217,.35),
        transparent
    );

    top:-100px;

    right:-100px;

}

.insights-section h3{

    color:white;

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

/* ==================================================
   INSIGHT CARD
================================================== */

.insight-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    padding:18px;

    text-align:center;

    min-height:130px;

}

.question-item:hover,
.festival-item:hover{

    transform:translateY(-2px);

    border-color:#C4B5FD;

}

.ai-questions-card,
.muhurtham-card,
.festival-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:32px 24px;

    height:100%;

    box-shadow:
        0 8px 25px rgba(15,23,42,.04);

}

.ai-questions-card .card-header-row h5{
    color:#7C3AED;
}

.muhurtham-card .card-header-row h5{
    color:#FF7A00;
}

.festival-card .card-header-row h5{
    color:#0D1B2A;
}

.ai-questions-card .question-item:first-child{
    border-left:4px solid #7C3AED;
}

.muhurtham-card .festival-item:first-child{
    border-left:4px solid #FF7A00;
}

.festival-card .festival-item:first-child{
    border-left:4px solid #7C3AED;
}

.card-header-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.card-header-row h5{

    color:#0F172A;

    font-weight:700;

    font-size:20px;

}

.card-header-row a{

    white-space:nowrap;

    color:#6D28D9;

    text-decoration:none;

    font-weight:600;

}

.question-item,
.festival-item{

    background:#F8FAFC;

    border:1px solid #EEF2F7;

    border-radius:16px;

    padding:16px 18px;

    margin-bottom:12px;

    transition:all .25s ease;

}

.question-item:hover,
.festival-item:hover{


	transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(124,58,237,.08);

    border-color:#C4B5FD;

}

.ask-anything-link{

    display:inline-block;

    margin-top:10px;

    font-weight:600;

    color:#7C3AED;

}

.insight-card:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-4px);

}

/* ==================================================
   TRUST SECTION
================================================== */

.trust-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:30px;

	font-size:16px;

    text-align:center;

    font-weight:600;

    transition:.3s;

}

.trust-card:hover{

    border-color:#6D28D9;

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(109,40,217,.08);

}

/* ==================================================
   SECTION SPACING
================================================== */

.section-space{

    padding:15px 0;

}

/* ==================================================
   TABLET
================================================== */

@media(max-width:991px){

    .dashboard-card{

        padding:24px;

    }

    .insights-section{

        padding:35px;

    }

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .section-space{

        padding:30px 0;

    }

    .dashboard-card{

        padding:20px;

    }

    .dashboard-card h4{

        font-size:18px;

    }

    .card-icon{

        width:56px;

        height:56px;

        font-size:24px;

    }

    .glance-card{

        padding:16px;

    }

    .insights-section{

        padding:28px;

        border-radius:24px;

    }

    .insights-section h3{

        font-size:24px;

    }

    .insight-card{

        padding:18px;

    }

    .trust-card{

        padding:18px;

    }

}


/* ==================================================
   STYLE.CSS V4
   PART 4
   FOOTER + RESPONSIVE + FINAL POLISH
================================================== */

/* ==================================================
   FOOTER
================================================== */

.site-footer{

    background:#071024;

    color:#CBD5E1;

    padding:100px 0 50px;

    margin-top:80px;

}

.footer-title{

    color:white;

    font-size:18px;

    font-weight:700;

    margin-bottom:25px;

}

.footer-description{

    color:white;

    font-size:20px;

    font-weight:700;

    margin-bottom:16px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}

.footer-divider{

    border-color:rgba(255,255,255,.10);

    margin:50px 0 30px;

}

.footer-badge{

    display:inline-block;

    background:rgba(255,255,255,.08);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

}

.footer-mini-badge{

    display:inline-block;

    background:rgba(255,255,255,.08);

    padding:8px 12px;

    border-radius:999px;

    margin-left:10px;

    font-size:12px;

}

.copyright{

    margin-bottom:0;

}

/* ==================================================
   LINK HOVER
================================================== */

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}

/* ==================================================
   CARD GRID IMPROVEMENTS
================================================== */

.row.g-4 > div{

    display:flex;

}

.row.g-4 > div > .dashboard-card{

    width:100%;

}

/* ==================================================
   BUTTON IMPROVEMENTS
================================================== */

.btn-start{

    box-shadow:
    0 15px 35px rgba(109,40,217,.20);

}

.btn-start:hover{

    transform:translateY(-3px);

}

/* ==================================================
   HERO VISUAL POLISH
================================================== */

.hero-title{

    max-width:700px;

}

.hero-subtitle{

    max-width:560px;

}

.hero-orb{

    filter:
    drop-shadow(
        0 30px 60px rgba(109,40,217,.18)
    );

}

/* ==================================================
   SCROLLBAR
================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F8FAFC;

}

::-webkit-scrollbar-thumb{

    background:#D1D5DB;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9CA3AF;

}

/* ==================================================
   TABLET
================================================== */

@media(max-width:991px){

    .footer-mini-badge{

        margin-top:10px;

        margin-left:0;

        margin-right:10px;

    }

    .site-footer{

        text-align:center;

    }

}

/* ==================================================
   MOBILE MENU
================================================== */

@media(max-width:768px){

    .navbar-collapse{

        background:white;

        padding:20px;

        border-radius:20px;

        margin-top:12px;

        box-shadow:
        0 20px 50px rgba(15,23,42,.08);

    }

    .header-actions{

        width:100%;

    }

    .btn-contact,
    .btn-start{

        width:100%;

        text-align:center;

    }

}

/* ==================================================
   MOBILE HERO
================================================== */

@media(max-width:768px){

    .hero-title{

        font-size:32px;

        line-height:1.15;

    }

    .hero-subtitle{

        font-size:16px;

    }

    .hero-orb{

        max-width:240px;

    }

}

/* ==================================================
   MOBILE CARDS
================================================== */

@media(max-width:768px){

    .dashboard-card{

        margin-bottom:12px;

    }

    .question-pill{

        text-align:center;

    }

}

/* ==================================================
   FINAL UTILITIES
================================================== */

.text-center-mobile{

    text-align:left;

}

@media(max-width:768px){

    .text-center-mobile{

        text-align:center;

    }

}

/* =====================================
   IMPORTANT TIMINGS SECTION
===================================== */

.timings-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.timing-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:16px;

    height:140px;

    width:100%;

    transition:all .3s ease;

}

.timing-card:hover{

    transform:translateY(-4px);

    border-color:#C4B5FD;

    box-shadow:0 12px 24px rgba(124,58,237,.10);

}

.timing-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

/* Icon Colors */

.sunrise{
    background:#FFF7ED;
}

.sunset{
    background:#FEF2F2;
}

.rahu{
    background:#FEE2E2;
}

.warning{
    background:#FFF7ED;
}

.gulika{
    background:#F3F4F6;
}

.dur{
    background:#FEE2E2;
}

/* Content */

.timing-content{

    flex:1;

}

.timing-label{

    font-size:14px;

    font-weight:600;

    color:#64748B;

    margin-bottom:6px;

}

.timing-value{

    font-size:18px;

    font-weight:700;

    color:#0F172A;

    line-height:1.4;

}

.timing-note{

    font-size:13px;

    color:#64748B;

    margin-top:4px;

}

.timing-note.danger{

    color:#DC2626;

    font-weight:600;

}

.blue{
    background:#DBEAFE;
    color:#2563EB;
}

/* Desktop */

@media(min-width:992px){

    .timings-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

/* Tablet */

@media(max-width:991px){

    .timings-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media(max-width:768px){

    .timings-grid{

        grid-template-columns:1fr;

    }

    .timing-card{

        height:auto;

        min-height:110px;

        padding:18px;

    }

    .timing-icon{

        width:50px;

        height:50px;

        min-width:50px;

        font-size:20px;

    }

    .timing-value{

        font-size:16px;

    }

}


/* =========================================
PANCHANGAM V3
========================================= */

.panchangam-hero{

    padding:45px 0 30px;

}

.panchangam-title{

    font-size:56px;

    font-weight:800;

    margin:10px 0;

}

.panchangam-subtitle{

    max-width:750px;

    margin:auto;

    color:#64748B;

    font-size:18px;

}

.ai-search-box{

    margin-top:30px;

}

.search-wrapper{

    display:flex;

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.search-wrapper input{

    flex:1;

    border:none;

    padding:18px 20px;

    outline:none;

}

.search-wrapper button{

    border:none;

    background:#6D28D9;

    color:white;

    padding:0 24px;

    font-weight:600;

}

.hero-mini-stats{

    margin-top:10px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.ask-ai-card,
.guidance-card,
.authority-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:35px;

}

.guidance-badge{

    display:inline-block;

    padding:8px 14px;

    background:#F3E8FF;

    color:#6D28D9;

    border-radius:999px;

    font-size:13px;

    margin-bottom:15px;

}

.good-card,
.avoid-card{

    border-radius:20px;

    padding:24px;

}

.good-card{

    background:#ECFDF5;

}

.avoid-card{

    background:#FEF2F2;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:20px;

    margin-bottom:15px;

}

.faq-item summary{

    cursor:pointer;

    font-weight:600;

}

.trust-box{

    background:#F8FAFC;

    border-radius:20px;

    padding:25px;

    text-align:center;

}

.related-card{

    display:block;

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:25px 15px;

    text-align:center;

    transition:.3s;

    color:#0F172A;

}

.related-card:hover{

    transform:translateY(-5px);

    border-color:#6D28D9;

}

@media(max-width:768px){

    .panchangam-title{

        font-size:38px;

    }

    .search-wrapper{

        flex-direction:column;

    }

    .search-wrapper button{

        height:55px;

    }

}

/* =========================================
MUHURTHAM PAGE
========================================= */

.muhurtham-highlight{

    background:linear-gradient(
        135deg,
        #FFF7ED,
        #FFFFFF
    );

    border:1px solid #FED7AA;

    border-radius:24px;

    padding:30px;

}

.muhurtham-highlight h3{

    margin-bottom:15px;

}

.related-card p{

    color:#64748B;

    margin-top:8px;

}

.guidance-card ul{

    padding-left:20px;

}

.guidance-card li{

    margin-bottom:10px;

}

.upcoming-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.muhurtham-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:22px;
    padding:28px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.muhurtham-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,23,42,.10);
}

.rating-tag{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.rating-tag.excellent{
    background:#DCFCE7;
    color:#15803D;
}

.rating-tag.good{
    background:#DBEAFE;
    color:#1D4ED8;
}

.rating-tag.average{
    background:#FEF3C7;
    color:#B45309;
}

.date-circle{
    width:78px;
    height:78px;
    margin:auto;
    border-radius:50%;
    background:#F8FAFC;
    border:2px solid #E5E7EB;
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-bottom:20px;
}

.date-circle .day{
    font-size:28px;
    font-weight:700;
    color:#7C3AED;
    line-height:1;
}

.date-circle .month{
    font-size:12px;
    text-transform:uppercase;
    color:#64748B;
    letter-spacing:1px;
}

.event-date{
    color:#64748B;
    font-size:14px;
    margin:12px 0;
}

.muhurtham-info{
    background:#F8FAFC;
    border-radius:14px;
    padding:15px;
    margin:18px 0;
    text-align:left;
}

.muhurtham-info div{
    margin:8px 0;
    color:#334155;
}

.view-btn{
    display:inline-block;
    width:100%;
    padding:12px;
    background:#7C3AED;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.view-btn:hover{
    background:#6D28D9;
    color:#fff;
}

.today-guidance{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
}

.overall-rating{
    text-align:center;
    margin-bottom:35px;
}

.rating-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#FEF3C7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:18px;
}

.rating-pill{
    display:inline-block;
    padding:8px 20px;
    background:#DCFCE7;
    color:#15803D;
    border-radius:30px;
    font-weight:600;
    margin:15px 0;
}

.guidance-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.guide-card{
    border-radius:18px;
    padding:25px;
}

.guide-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:15px;
    background:#fff;
}

.guide-card h4{
    margin-bottom:15px;
    font-size:22px;
    font-weight:700;
}

.guide-card ul{
    margin:0;
    padding-left:18px;
}

.guide-card li{
    margin-bottom:10px;
}

.positive{
    background:#F0FDF4;
}

.warning{
    background:#FEF3C7;
}

.info{
    background:#EFF6FF;
}

.purple{
    background:#F3E8FF;
}

.time-pill{
    display:inline-block;
    background:#4F46E5;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin:10px 0 15px;
}

.nakshatra-name{
    display:inline-block;
    background:#7C3AED;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin:10px 0 15px;
}

.guidance-note{
    margin-top:30px;
    padding:15px 20px;
    background:#F8FAFC;
    border-left:4px solid #7C3AED;
    border-radius:10px;
    color:#475569;
    font-size:14px;
}

@media(max-width:768px){

.guidance-grid{
    grid-template-columns:1fr;
}

.today-guidance{
    padding:25px;
}

.guide-card{
    padding:20px;
}

}

.overall-rating h3{
    margin:15px 0;
}

.overall-rating p{
    max-width:650px;
    margin:15px auto 0;
    line-height:1.7;
}

/* =========================================
HOROSCOPE PAGE
========================================= */

.score-rating{

    font-size:24px;

    font-weight:700;

    margin-top:10px;

    color:#F59E0B;

}

.related-card{

    min-height:180px;

}

.related-card h5{

    margin-top:15px;

}

.good-card h3,
.avoid-card h3{

    margin-bottom:15px;

}

.good-card p,
.avoid-card p{

    margin-bottom:0;

}

@media(max-width:768px){

    .score-rating{

        font-size:20px;

    }

}

/* =========================================
FESTIVALS PAGE
========================================= */

.festival-highlight{

    background:linear-gradient(
        135deg,
        #FFF7ED,
        #FFFFFF
    );

    border:1px solid #FED7AA;

    border-radius:24px;

    padding:35px;

}

.festival-calendar-card{

    height:100%;

}

.festival-calendar-card ul{

    padding-left:18px;

    margin-bottom:0;

}

.festival-calendar-card li{

    margin-bottom:10px;

}

.related-card p{

    color:#64748B;

    margin-top:8px;

}

.guidance-card h2{

    margin-bottom:15px;

}

.guidance-card p{

    margin-bottom:0;

}

@media(max-width:768px){

    .festival-highlight{

        padding:25px;

    }

}

/* =========================================
ASK AI PAGE
========================================= */

.ask-ai-main-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

}

.ai-avatar{

    width:90px;

    height:90px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    background:linear-gradient(
        135deg,
        #EDE9FE,
        #FDF2F8
    );

}

.large-search{

    margin-top:25px;

}

.large-search input{

    height:68px;

    font-size:16px;

}

.ai-mini-features{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:20px;

    flex-wrap:wrap;

}

.question-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:22px;

    padding:25px;

    text-align:center;

    transition:.3s;

    height:100%;

}

.question-card:hover{

    transform:translateY(-5px);

    border-color:#7C3AED;

}

.question-icon{

    font-size:32px;

    margin-bottom:15px;

}

@media(max-width:768px){

    .ask-ai-main-card{

        padding:30px 20px;

    }

    .ai-avatar{

        width:70px;

        height:70px;

        font-size:34px;

    }

}

/* ==========================================
AI ANSWER CARD
========================================== */

.ai-answer-card{

background:#fff;

border-radius:22px;

padding:35px;

margin-top:35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

border:1px solid #eee;

}

.answer-header{

display:flex;

align-items:center;

gap:18px;

margin-bottom:25px;

}

.answer-icon{

width:58px;

height:58px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

border-radius:50%;

background:linear-gradient(135deg,#F4C542,#D89A00);

color:#fff;

}

.answer-header h2{

margin:0;

font-size:28px;

font-weight:700;

}

.answer-header small{

color:#777;

}

.question-box{

background:#FFF9E8;

border-left:5px solid #D89A00;

padding:18px 22px;

border-radius:14px;

margin-bottom:25px;

}

.question-box p{

margin:8px 0 0;

font-size:18px;

font-weight:600;

}

.answer-box{

font-size:17px;

line-height:2;

color:#444;

margin-bottom:30px;

}

.suggestions h4{

margin-bottom:18px;

}

.suggestion-chips{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.suggestion-chip{

border:none;

background:#F5F5F5;

padding:12px 18px;

border-radius:40px;

cursor:pointer;

transition:.3s;

font-weight:600;

}

.suggestion-chip:hover{

background:#7C3AED;

color:#fff;

transform:translateY(-2px);

}

.loading-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

margin-top:30px;

}

.spinner{

width:60px;

height:60px;

margin:auto auto 25px;

border:5px solid #eee;

border-top:5px solid #7C3AED;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}


/* ===================================================
   PREMIUM AI CONSULTATION CARD
=================================================== */

.consultation-top{
    margin:25px 0;
}

.recommendation-card{
    background:linear-gradient(135deg,#FFF8E1,#FFF3CD);
    border-left:6px solid #F4B400;
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.recommendation-badge{
    display:inline-block;
    background:#F4B400;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:15px;
    font-weight:700;
    margin-bottom:12px;
}

.recommendation-card p{
    margin:0;
    color:#555;
    font-size:16px;
}

.panchang-card{
    margin-top:25px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.panchang-card h3{
    margin-bottom:25px;
    font-size:22px;
    font-weight:700;
}

.panchang-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.panchang-item{
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:18px;
    text-align:center;
    transition:.3s;
}

.panchang-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.panchang-item span{
    display:block;
    color:#777;
    font-size:14px;
    margin-bottom:8px;
}

.panchang-item strong{
    display:block;
    color:#111827;
    font-size:18px;
    font-weight:700;
}

.guidance-card{
    margin-top:25px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.guidance-card h3{
    margin-bottom:20px;
}

.guidance-card .answer-box{
    font-size:17px;
    line-height:1.9;
    color:#444;
}

.advice-card{
    margin-top:25px;
    background:linear-gradient(135deg,#ECFDF5,#D1FAE5);
    border-left:6px solid #10B981;
    border-radius:18px;
    padding:25px;
}

.advice-card h3{
    margin-bottom:12px;
}

.advice-card p{
    margin:0;
    color:#444;
    line-height:1.8;
}

.suggestions{
    margin-top:30px;
}

@media(max-width:991px){

.panchang-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.panchang-grid{
    grid-template-columns:1fr;
}

.recommendation-card,
.panchang-card,
.guidance-card,
.advice-card{
    padding:20px;
}

}


/*====================================
AI Consultation Layout
====================================*/

.answer-section{

margin:25px 0;

}

.section-title{

font-size:18px;

font-weight:700;

margin-bottom:15px;

color:#7C3AED;

}

.tip-box{

margin-top:30px;

background:#FFF8E6;

padding:24px;

border-radius:18px;

border-left:5px solid #E0A800;

}

.tip-title{

font-size:18px;

font-weight:700;

margin-bottom:10px;

color:#B7791F;

}

.advice-box{

margin-top:20px;

background:#F4FFF5;

padding:24px;

border-radius:18px;

border-left:5px solid #28A745;

}


.recommendation-card.green{
    background:#ECFDF5;
    border-left:6px solid #16A34A;
}

.recommendation-card.yellow{
    background:#FEF9C3;
    border-left:6px solid #EAB308;
}

.recommendation-card.red{
    background:#FEF2F2;
    border-left:6px solid #DC2626;
}