/* ========== GLOBAL STYLES & VARIABLES ========== */
/* ========== GLOBAL STYLES & VARIABLES (Corrected Version) ========== */
:root {
  --gold: #ffd700;
  --dark-bg: #000000;
  --card-bg: #111111;
  --border-color: #222222;    /* <-- Isko theek kar diya gaya hai */
  --light-text: white;      /* <-- Ye sabse important fix hai */
  --heading-text: #f0f0f0;
  --white: #fff;
  --font-primary: 'Manrope', sans-serif;
  --transition: 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* Reusable Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; position: relative; }



/* ========== Call-to-Action Button (Corrected Text Color) ========== */

.cta-button {
  
  background-color: var(--gold);
  color: var(--black); /* <-- YE LINE TEXT KO SOLID BLACK KARTI HAI */
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-shadow: black; /* Ensures no shadow is making it look blurry */
}

.cta-button:hover {
  background-color: var(--black);
  color: var(--black); /* Hover par bhi text black rahega */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}




/* Header */
.header { position: fixed; top: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: all 0.4s ease; }
.header.scrolled { background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.header-container { width: 100%; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a { color: var(--heading-text); text-decoration: none; font-weight: 600; transition: color black; }
.main-nav a:not(.cta-button):hover { color: var(--gold); }
.hamburger-menu { display: none; }

/* ========== HERO SECTION (Particle Background Version) ========== */
.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative; /* Zaroori hai overlay aur particles ke liye */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000; /* Ek solid black background */
}

/* Ye #particles-js div ko poori screen par failayega */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; /* Ye text ke peeche rahega */
}

/* Ye div text ko saaf dikhane me help karega */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Halka kaala overlay */
    z-index: 2; /* Ye particles ke upar, par text ke neeche rahega */
}

.hero-content {
  position: relative; /* Isko baaki sabke upar laane ke liye */
  z-index: 3;
}




/* ========== Star Animation Preparation ========== */
.star-rating .star {
  font-size: 6rem;
  display: inline-block; /* Transforms apply karne ke liye zaroori */
  opacity: 0;           /* Animation se pehle chhipa hua */
  transform: scale(0.5) translateY(-50px); /* Thoda chota aur upar se shuru hoga */
}




.hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.subtext {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  color: var(--heading-text);
}

.highlight {
  color: var(--gold);
}

.hero-button {
  font-size: 1.1rem;
}





/* Teaser Section (Home Page) */
/* ========== HOME PAGE: TEASER SECTION (Fully Responsive) ========== */

.teaser-section {
  position: relative;
  padding: 8rem 0;
  
  /* Background Image Settings */
  background-image: url('https://images.unsplash.com/photo-1556740758-90de374c12ad?auto=format&fit=crop&w=1740&q=80');
  background-size: cover;
  background-position: center center;
  /* background-attachment: fixed; ko yahan se hata diya hai */
  z-index: 1;
}

/* Dark Overlay for Readability */
.teaser-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

/* Baaki ka teaser grid ka code same rahega */
/* ... (section-header, section-title, teaser-grid, etc. ka code same rahega) ... */

.teaser-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ... (baaki ka teaser card styling same rahega) ... */


/* ========================================================================= */
/* ========== THE IMPORTANT RESPONSIVE FIX (For Parallax Effect) ========== */
/* ========================================================================= */

/* Ye styles sirf tab apply honge jab screen 769px se BADI hogi (Tablet/Desktop) */
@media (min-width: 769px) {
  .teaser-section {
    background-attachment: fixed; /* Parallax effect sirf badi screens par aayega */
  }
}








/* ========== Section Header & Title (Final Visually Centered Version) ========== */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  /* We use clamp() for a flexible font size that fits on one line */
  font-size: clamp(3.5rem, 8vw, 6rem); /* <-- YE LINE MAIN FIX HAI */
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 1rem;
  line-height: 1.1;
  /* white-space: nowrap; ISKO HATA DIYA GAYA HAI */
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Responsive adjustments for extremely small screens, just in case */
@media (max-width: 768px) 
{
  .section-title {
    line-height: 1.2; /* Better line height for potential two-liners on mobile */
  }
}




.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.teaser-card { padding: 2rem; border: 1px solid var(--border-color); border-radius: 12px; }
.teaser-card h3 { font-size: 1.5rem; color: var(--heading-text); margin-bottom: 1rem; }
.cta-link { display: inline-block; color: var(--gold); text-decoration: none; font-weight: 700; margin-top: 1.5rem; }

/* Shared Styles for Other Pages */
.page-header { text-align: center; padding: 8rem 0 4rem 0; background-color: black; }
.page-header h1 { font-size: clamp(5.5rem, 6vw, 4.5rem); color: var(--white); }
.page-header p { font-size: 1.3rem; max-width: 700px; margin: 1rem auto 0 auto; }
.content-section, .contact-wrapper, .case-studies-page, .pricing-page { padding: 4rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.how-it-works .how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.how-step-card { background-color: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); }
.how-step-icon { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.case-studies-page .case-study-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.case-study-card { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 2.5rem; border-radius: 12px; }
.case-study-tag { display: inline-block; background-color: rgba(255, 215, 0, 0.1); color: var(--gold); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.5rem; }
.case-study-header h3 { font-size: 1.8rem; color: var(--heading-text); }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background-color: var(--border-color); border-radius: 8px; overflow: hidden; margin-top: 2rem; }
.result-item { background-color: var(--card-bg); padding: 1.5rem 1rem; text-align: center; }
.result-value { font-size: 2.2rem; font-weight: 800; color: var(--gold); }



/* ========== PRICING (3-Tier Grid) ========== */
.pricing-grid {
  display: grid; /* Using grid for perfect alignment */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive columns */
  gap: 2rem;
  align-items: center; /* Vertically align cards if they have different heights */
}

.pricing-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%; /* Make all cards the same height */
  display: flex; /* Use flexbox for internal alignment */
  flex-direction: column;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
  flex-grow: 1; /* This makes the list take up available space, pushing the button down */
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  position: absolute; /* This keeps it outside the card flow */
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 1.5rem 0;
}

/* Baaki ka pricing card ka CSS same rahega */




.pricing-card { background: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); text-align: center; width: 350px; }
.pricing-card.popular { border-color: var(--gold); transform: scale(1.05); }
.popular-badge { background: var(--gold); color: var(--black); font-weight: 700; font-size: 0.8rem; padding: 0.4rem 1rem; border-radius: 20px; position: relative; top: -3.5rem; margin-bottom: -2rem; }
.price { font-size: 3.5rem; font-weight: 800; color: var(--white); margin: 1.5rem 0; }
.pricing-card ul { list-style: none; text-align: left; margin: 2rem 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info ul { list-style: none; margin-top: 2rem; }
.contact-info li { margin-bottom: 1rem; }
.contact-form .form-group { position: relative; margin-bottom: 2.5rem; }
.form-row { display: flex; gap: 2rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem 0; background: transparent; border: none; border-bottom: 2px solid #333; color: var(--white); }
.contact-form label { position: absolute; left: 0; top: 1rem; pointer-events: none; transition: all var(--transition); }
.contact-form input:focus + label, .contact-form input:valid + label, .contact-form textarea:focus + label, .contact-form textarea:valid + label { top: -1rem; font-size: 0.8rem; color: var(--gold); }







/* ========== FOOTER (Corrected Spacing) ========== */
/* ========== FOOTER (Corrected with Less Side Margin) ========== */

.footer {
  background: var(--card-bg);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  /* THE FIX: We are reducing the side padding from 5rem to 1.5rem */
  padding: 0 0rem; 
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-about p {
  max-width: 350px;
}

.footer h4 {
  color: var(--heading-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  color: #666;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

/* Social Icons Styling */
.footer-social h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--light-text);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}






/* ========== FOOTER - SOCIAL ICONS STYLING ========== */

.footer-social h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem; /* Icons ke beech me space */
}

.social-icons a {
  display: flex; /* Icon ko center karne ke liye */
  align-items: center;
  justify-content: center;
  width: 40px;   /* Button ka size */
  height: 40px;  /* Button ka size */
  color: var(--light-text);
  border: 1px solid var(--border-color);
  border-radius: 50%; /* Gol shape ke liye */
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--black); /* Icon ka color hover par black ho jayega */
  transform: translateY(-3px);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor; /* Isse icon ka color 'color' property se control hoga */
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; /* ... */ }
    .hamburger-menu { display: flex; /* ... */ }
    .contact-wrapper, .footer-content, .form-row { grid-template-columns: 1fr; flex-direction: column; }
}









/* ========== Advanced Conversational Chat Widget (Final Version) ========== */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 1001; }

.chat-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  height: 55px; /* Height thodi kam kar di */
  padding: 0 25px; /* Side padding adjust kar di */
}

.chat-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.fab-text {
  color: var(--black); /* TEXT KA COLOR BLACK HO GAYA HAI */
  font-weight: 700;
  font-size: 1rem; /* Font size set kar diya hai */
}

/* Chat window and other styles remain the same */
.chat-window { position: absolute; bottom: 80px; right: 0; width: 370px; max-width: 90vw; height: 70vh; max-height: 600px; background-color: var(--dark-bg); border-radius: 15px; border: 1px solid var(--border-color); box-shadow: 0 10px 40px rgba(0,0,0,0.3); display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.chat-widget.open .chat-window { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background-color: var(--card-bg); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border-color); }
.chat-header .header-content { display: flex; align-items: center; gap: 1rem; }
.chat-logo { height: 40px; width: 40px; border-radius: 50%; border: 2px solid var(--gold); }
.chat-header h3 { color: var(--heading-text); font-size: 1rem; margin: 0; }
.chat-header span { font-size: 0.8rem; color: var(--light-text); }
.chat-body { padding: 1rem; flex-grow: 1; overflow-y: auto; }
.chat-message { display: flex; margin-bottom: 1rem; max-width: 85%; }
.chat-message p { padding: 0.8rem 1rem; border-radius: 18px; line-height: 1.5; }
.chat-message.bot { align-self: flex-start; }
.chat-message.bot p { background-color: #222; color: var(--heading-text); border-bottom-left-radius: 4px; }
.chat-message.user { align-self: flex-end; margin-left: auto; }
.chat-message.user p { background-color: var(--gold); color: var(--black); font-weight: 500; border-bottom-right-radius: 4px; }
.chat-footer { padding: 1rem; border-top: 1px solid var(--border-color); background-color: var(--card-bg); }
.chat-options { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-option { width: 100%; padding: 0.8rem; background-color: #333; border: 1px solid #444; color: var(--heading-text); border-radius: 8px; cursor: pointer; text-align: left; transition: var(--transition); }
.chat-option:hover { background-color: var(--gold); color: var(--black); border-color: var(--gold); }
.chat-input-form { display: flex; gap: 0.5rem; }
.chat-input { flex-grow: 1; background-color: #222; border: 1px solid #444; border-radius: 8px; color: var(--white); padding: 0.8rem; }
.chat-input:focus { outline: none; border-color: var(--gold); }
.send-btn { background-color: var(--gold); border: none; border-radius: 8px; padding: 0 1rem; cursor: pointer; }
.back-button { background: none; border: none; color: var(--light-text); cursor: pointer; padding: 0.5rem; }
.back-button:hover { color: var(--gold); }
.whatsapp-contact { text-align: center; padding: 1rem; background-color: #222; border-radius: 8px; margin-top: 1rem; }
.whatsapp-contact p { margin: 0; }
.whatsapp-contact a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ========== MOBILE FIX for Chat Widget ========== */
@media (max-width: 768px) {
    .chat-fab {
        height: 50px; /* Mobile par height choti */
        padding: 0 20px; /* Side padding kam */
    }
    .fab-text {
        font-size: 0.9rem; /* Mobile par font chota */
    }
}







/* ========== PLATFORMS PAGE (Fully Responsive Marquee) ========== */
/* =================================================================== */
/* =============       RESPONSIVE DESIGN STARTS HERE       ============= */
/* =================================================================== */
/* ========== PLATFORMS PAGE (Final Box Layout) ========== */
.platform-page {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.platform-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.platform-page .section-header {
    margin-bottom: 0rem;
}

.platform-page .section-subtitle {
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* --- THE GRID FOR LOGO BOXES --- */
.platform-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.platform-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.platform-card img {
    max-height: 45px;
    max-width: 140px;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.platform-card:hover img {
    filter: grayscale(0%) brightness(1);
}

.platform-card p {
    color: var(--heading-text);
    font-weight: 600;
    font-size: 1.1rem;
}





/* ========== GLOBAL STYLES & VARIABLES ========== */
:root {
  --gold: #ffd700;
  --dark-bg: #000000;
  --card-bg: #111111;
  --border-color: #222222;
  --light-text: #a0a0a0;
  --heading-text: #f0f0f0;
  --white: #fff;
  --font-primary: 'Manrope', sans-serif;
  --transition: 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--dark-bg); color: var(--light-text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
main { padding-top: 100px; } /* Fix for fixed header */

/* Reusable Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; position: relative; }
.cta-button { background-color: var(--gold); color: var(--black); padding: 0.9rem 2.2rem; border-radius: 8px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-block; border: none; cursor: pointer; }
.cta-button:hover { background-color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1); }

/* Header */
.header { position: fixed; top: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: all 0.4s ease; }
.header.scrolled { background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.header-container { width: 100%; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a { color: var(--heading-text); text-decoration: none; font-weight: 600; transition: color var(--transition); }
.main-nav a:not(.cta-button):hover { color: var(--gold); }
.hamburger-menu { display: none; }

/* Hero Section */
.hero-section { height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; text-align: center; background-color: #000; }
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }
.hero-overlay { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 2; }
.hero-content { position: relative; z-index: 3; }
.star-rating { font-size: 4rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 15px; }
.star-rating .star { display: inline-block; opacity: 0; transform: scale(0.5) translateY(-50px); }
.hero-content h1 { font-size: clamp(3.5rem, 7vw, 5.5rem); color: var(--white); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.subtext { font-size: clamp(1.1rem, 2.5vw, 1.3rem); max-width: 750px; margin: 0 auto 2.5rem auto; color: var(--heading-text); }
.highlight { color: var(--gold); }

/* Teaser Section (Home Page) */
.teaser-section { background-color: var(--card-bg); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800; color: var(--heading-text); margin-bottom: 1rem; line-height: 1.1; }
.section-subtitle { font-size: 1.2rem; max-width: 650px; margin: 0 auto; }
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.teaser-card { padding: 2rem; border: 1px solid var(--border-color); border-radius: 12px; }
.teaser-card h3 { font-size: 1.5rem; color: var(--heading-text); margin-bottom: 1rem; }
.cta-link { display: inline-block; color: var(--gold); text-decoration: none; font-weight: 700; margin-top: 1.5rem; }

/* Shared Styles for Other Pages */
.page-header { text-align: center; padding: 6rem 0 4rem 0; background-color: var(--card-bg); }
.page-header h1 { font-size: clamp(3rem, 6vw, 4.5rem); color: var(--white); line-height: 1.2; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 1rem auto 0 auto; }
.content-section, .contact-page, .case-studies-page, .pricing-page, .platform-page, .how-it-works { padding-top: 4rem; padding-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.how-step-card { background-color: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.platform-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 180px; }
.platform-card img { max-height: 45px; max-width: 140px; margin-bottom: 1.5rem; filter: grayscale(100%) brightness(0.7); transition: var(--transition); }
.platform-card:hover img { filter: grayscale(0%) brightness(1); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: center; }
.pricing-card { background: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); text-align: center; height: 100%; display: flex; flex-direction: column; }
.pricing-card.popular { border-color: var(--gold); transform: scale(1.05); }
.popular-badge { background: var(--gold); color: var(--black); font-weight: 700; font-size: 0.8rem; padding: 0.4rem 1rem; border-radius: 20px; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); }
.price { font-size: 3.5rem; font-weight: 800; color: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-form { background-color: var(--card-bg); padding: 3rem; border-radius: 12px; border: 1px solid var(--border-color); }

/* Footer */
.footer { background: var(--card-bg); padding: 5rem 0 2rem 0; border-top: 1px solid var(--border-color); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { height: 50px; }
.social-icons a { border: 1px solid var(--border-color); }

/* Chat Widget */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 1001; }
/* ... (baaki ka chat widget ka code yahan same rahega) ... */

/* =================================================================== */
/* =============       RESPONSIVE DESIGN STARTS HERE       ============= */
/* =================================================================== */
/* =================================================================== */
/* ===         JUSTREVIEWME - FINAL STYLESHEET (V1.0)              === */
/* =================================================================== */


/* ========== GLOBAL STYLES & VARIABLES ========== */
:root {
  --gold: #ffd700;
  --dark-bg: #000000;
  --card-bg: #111111;
  --border-color: #222222;
  --light-text: #a0a0a0;
  --heading-text: #f0f0f0;
  --white: #fff;
  --font-primary: 'Manrope', sans-serif;
  --transition: 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-primary); 
  background-color: var(--dark-bg); 
  color: var(--light-text); 
  line-height: 1.7; 
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Prevents all horizontal scroll */
}
main { 
  padding-top: 100px; /* Fix for fixed header on all pages */
}

/* Reusable Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; position: relative; }
.cta-button { background-color: var(--gold); color: var(--black); padding: 0.9rem 2.2rem; border-radius: 8px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-block; border: none; cursor: pointer; }
.cta-button:hover { background-color: var(--white); color: var(--black); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1); }


/* ========== HEADER ========== */
.header { position: fixed; top: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: all 0.4s ease; }
.header.scrolled { background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.header-container { width: 100%; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a { color: var(--heading-text); text-decoration: none; font-weight: 600; transition: color var(--transition); }
.main-nav a:not(.cta-button):hover { color: var(--gold); }
.hamburger-menu { display: none; }


/* ========== HERO SECTION ========== */
.hero-section { height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; text-align: center; background-color: #000; }
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }
.hero-overlay { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 2; }
.hero-content { position: relative; z-index: 3; }
.star-rating { font-size: 4rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 15px; }
.star-rating .star { display: inline-block; opacity: 0; transform: scale(0.5) translateY(-50px); }
.hero-content h1 { font-size: clamp(3rem, 7vw, 5.5rem); color: var(--white); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.subtext { font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 750px; margin: 0 auto 2.5rem auto; color: var(--heading-text); }
.highlight { color: var(--gold); }


/* ========== SHARED SECTION STYLES ========== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: var(--heading-text); margin-bottom: 1rem; line-height: 1.1; }
.section-subtitle { font-size: 1.2rem; max-width: 650px; margin: 0 auto; }
.page-header { text-align: center; padding: 6rem 0 4rem 0; background-color: var(--card-bg); }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); line-height: 1.2; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 1rem auto 0 auto; }
.content-section, .contact-page, .platform-page, .pricing-page, .how-it-works { padding-top: 4rem; padding-bottom: 4rem; }


/* ========== HOME PAGE: TEASER SECTION ========== */
.teaser-section { background-color: var(--card-bg); }
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.teaser-card { padding: 2rem; border: 1px solid var(--border-color); border-radius: 12px; }
.teaser-card h3 { font-size: 1.5rem; color: var(--heading-text); margin-bottom: 1rem; }
.cta-link { display: inline-block; color: var(--gold); text-decoration: none; font-weight: 700; margin-top: 1.5rem; }


/* ========== OTHER PAGES ========== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.how-step-card { background-color: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.platform-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 180px; }
.platform-card img { max-height: 45px; max-width: 140px; margin-bottom: 1.5rem; filter: grayscale(100%) brightness(0); transition: var(--transition); opacity: 1; }
.platform-card:hover img { filter: grayscale(0%) brightness(1); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: center; }
.pricing-card { background: var(--card-bg); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border-color); text-align: center; height: 100%; display: flex; flex-direction: column; }
.pricing-card.popular { border-color: var(--gold); transform: scale(1.05); }
.popular-badge { background: var(--gold); color: var(--black); font-weight: 700; font-size: 0.8rem; padding: 0.4rem 1rem; border-radius: 20px; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); }
.price { font-size: 3.5rem; font-weight: 800; color: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-form { background-color: var(--card-bg); padding: 3rem; border-radius: 12px; border: 1px solid var(--border-color); }


/* ========== FOOTER ========== */
.footer { background: var(--card-bg); padding: 5rem 0 2rem 0; border-top: 1px solid var(--border-color); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { height: 50px; }
.footer h4 { color: var(--heading-text); }
.footer-bottom { text-align: center; color: #666; padding-top: 3rem; margin-top: 3rem; border-top: 1px solid var(--border-color); }
.social-icons a { border: 1px solid var(--border-color); }


/* ========== CHAT WIDGET ========== */
/* ... (Yahan aapka poora chat widget ka CSS rahega, usme koi change nahi hai) ... */


/* =================================================================== */
/* =============       RESPONSIVE DESIGN STARTS HERE       ============= */
/* =================================================================== */
/* =================================================================== */
/* =============       RESPONSIVE DESIGN STARTS HERE       ============= */
/* =================================================================== */

@media (max-width: 992px) {
    /* Tablet and smaller devices */
    .reach-content-wrapper { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; } /* Stack pricing cards on tablet */
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
    /* Mobile devices */
    main { padding-top: 80px; }
    section { padding: 4rem 0; }
    
    /* Mobile Header & Navigation */
    .header-container { padding: 0 1.5rem; }
    .main-nav { display: flex; position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--dark-bg); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1000; }
    .main-nav.active { left: 0; }
    .hamburger-menu { display: flex; flex-direction: column; gap: 6px; z-index: 1001; cursor: pointer; }
    .hamburger-menu span { display: block; width: 25px; height: 2px; background-color: var(--white); transition: 0.4s ease; border-radius: 2px; }
    .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger-menu.active span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Font & Element Size Adjustments */
    .hero-content h1 { font-size: 2.5rem; }
    .subtext { font-size: 1rem; }
    .star-rating { font-size: 2.2rem; letter-spacing: 8px; }
    .section-title { font-size: 2.5rem; line-height: 1.2; white-space: normal; }
    .fullscreen-header h1, .page-header h1 { font-size: 2.2rem; }
    .fullscreen-header p, .page-header p { font-size: 1rem; }

    /* Stacking Grids */
    .teaser-grid, .how-steps, .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Corrected Platform Grid for Mobile */
    .platform-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    }
    .platform-card {
        min-height: 140px;
        padding: 1.5rem;
    }
    .platform-card img {
        max-height: 35px;
    }
    .platform-card p {
        font-size: 1rem;
    }
    
    .pricing-card.popular { transform: scale(1); }

    /* Form Adjustments */
    .form-row { flex-direction: column; gap: 0; }
    .contact-form { padding: 2rem; }

    /* Footer */
    .footer-about, .footer-links, .footer-legal, .footer-social { text-align: center; }
    .social-icons { justify-content: center; }

    /* Chat Widget */
    .chat-widget { bottom: 1rem; right: 1rem; }
    .chat-window { width: 90vw; height: 80vh; }
}













/* ========== Immediate Contact Section on Contact Page ========== */

.immediate-contact {
  margin-top: 2rem; /* Upar wali list se space */
  padding-top: 2rem; /* Border ke upar space */
  border-top: 1px solid var(--border-color); /* Ek saaf line separator */
}

.immediate-contact h4 {
  color: var(--heading-text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.immediate-contact p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem; /* Button thoda bada */
  background-color: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}















/* ========== Nationwide Reach Section (Final Version) ========== */

.india-reach-section {
  background-color: var(--dark-bg); /* Dark background */
}

.reach-content-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Map ko zyada jagah di */
  gap: 3rem;
  align-items: center;
}

.map-container {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

#india-map, .map-container img { /* Dono ko target karega */
  width: 100%;
  height: auto;
}
/* NAYI STYLING for the JPG image */
.map-container img {
  width: 100%;
  height: auto;
  display: block; /* Removes any extra space below the image */
  border-radius: 12px; /* <-- YE LINE CORNERS KO CURVE KAREGI */
}

#states path {
  fill: #333; /* Default state color */
  stroke: #111; /* State borders */
  stroke-width: 1px;
  transition: fill 0.3s ease;
}

#states path:hover {
  fill: var(--gold); /* Hover par gold color */
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .reach-content-wrapper {
    grid-template-columns: 1fr;
  }
}






/* ========== Fullscreen Header for Inner Pages ========== */

.fullscreen-header {
  height: 100vh; /* Poori screen ki height */
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden; /* Ensures nothing spills out */
}

.fullscreen-header .background-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fullscreen-header .background-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ko stretch hone se bachata hai */
  animation: ken-burns 20s infinite; /* Subtle zoom effect */
}

.fullscreen-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 2;
}

.fullscreen-header .header-content {
  position: relative;
  z-index: 3;
}

.fullscreen-header h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem); /* <-- YE LINE UPDATE HO GAYI HAI */
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);}

.fullscreen-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: 1rem auto 0 auto;
  color: var(--heading-text);
}

/* Section for the steps that come after the header */
.how-it-works-steps {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* This keyframe is for the zoom effect, it might already be in your CSS. If so, you don't need to add it again. */
@keyframes ken-burns {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
















