/* === MINDIVE COLORS === */
:root {
    --primary-blue: #1E3A8A;
    --energy-orange: #F97316;
    --white: #FFFFFF;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --shadow: 0 10px 30px rgba(30,58,138,0.15);
    --shadow-hover: 0 20px 50px rgba(30,58,138,0.25);
}

/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', -apple-system, sans-serif; 
    line-height: 1.7; 
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container { width: 100%; margin: 0 auto; padding: 0 20px; }

/* === NAVBAR === */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    height: 100%; /* Agar container ki fixed height hai toh ye zaruri hai */
    margin: 0;
    padding: 0;
    line-height: 0; /* Inline spacing hatane ke liye */
}

.logo img {
    height: 42px;
    width: auto;
    display: block; /* Gap hatane ke liye */
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover { color: var(--energy-orange); }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--energy-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.blog-content a {
    color: var(--energy-orange);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-content a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* === HERO === */
.contact-main {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center (optional) */
}
.contact-main .container {
    max-width: 900px;
    margin: 0 auto;
}
.blog-footer-cta {
    background: #F97316;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.blog-footer-cta .cta-button {
    background: #fff !Important;
    color: #F97316 !Important;
    margin-top: 20px;
}
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3B82F6 50%, var(--energy-orange) 100%);
    color: var(--white);
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero .container {
   max-width: 100%;
}

.hero p {
    font-size: 1.3rem;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: var(--energy-orange);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249,115,22,0.5);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* === SERVICES === */
.services-section {
    padding: 10px 0;

}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue); 
    padding: 10px 0;
}
.section-subtitle {
    margin-top: 0;
    line-height: 1.4; 
    margin-bottom: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

/* ===============================
   SERVICES – PROFESSIONAL REFINEMENT
================================ */
.service-card {
   background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 24px; /* Zyada curved corners professional lagte hain */
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    justify-content: space-between;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #ff6b00;
}

/* Platform-specific icon colors */
.service-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto; /* 0 auto se horizontal centering hoti hai */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Professional look ke liye halki shadow */
    padding: 12px;
}

/* Brand colors */
.service-card:nth-child(1) .service-icon {
    color: #4285F4;
}

.service-card:nth-child(2) .service-icon {
    color: #1877F2;
}

.service-card:nth-child(3) .service-icon {
    color: #FF0000;
}
.service-icon i {
    font-size: 24px;
    color: #ff6b00; /* Aapka brand orange color */
}
/* Heading */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
 
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Image ko bina stretch kiye fit karega */
}
/* Description */
.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Points */
.service-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-points li {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-points li::before {
    content: "✔";
    color: #ff6b00;
    font-weight: bold;
}

/* CTA stronger */
.service-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* === TRUST STATS === */
.trust-section {
    padding: 40px 0;
    background: #f8fafc;
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #F97316;
    background: linear-gradient(135deg, var(--primary-blue), var(--energy-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* === CTA SECTION === */
 .cta-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #F97316, #FB923C);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-subtext {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-trust {
  margin-top: 35px;
  font-size: 14px;
  opacity: 0.9;
}
.cta-button.secondary {
 background: #1E3A8A;}
.cta-button.primary:hover {
  background: #172f6b; /* darker blue */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Tablets & small laptops */
@media (max-width: 992px) {
  .founder-section {
    flex-direction: column;
    text-align: center;
  }

  .founder-section img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
    .founder-section {
    flex-direction: column;
    text-align: center;
  }

  .founder-section img {
    width: 100%;
    height: auto;
  }
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
}

/* ADD THESE NEW STYLES TO EXISTING CSS */

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* === PROFESSIONAL FOOTER === */
.footer {
    background: linear-gradient(180deg, var(--primary-blue) 0%, #1e1b4b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.footer-brand {
    position: relative;
}

.footer-logo { 
    height: 50px; 
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-brand p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--energy-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249,115,22,0.4);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--energy-orange);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--energy-orange);
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-contact p:hover {
    color: var(--energy-orange);
    transform: translateX(5px);
}

.footer-newsletter {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-btn {
    width: 100%;
    background: var(--energy-orange);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Services Detail */
.service-detail-section { padding: 120px 0; }
.service-detail-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center;
}
.alternate-bg { background: var(--light-gray); }
.service-detail-grid.reverse { grid-template-columns: 1fr 1fr; }
.service-detail-grid.reverse .service-detail-text { order: 2; }

.feature-list { 
    list-style: none; 
    padding: 0; 
    margin: 2rem 0;
}
.feature-list li { 
    padding: 0.8rem 0; 
    font-size: 1.1rem; 
    display: flex; 
    align-items: center; 
    gap: 0.8rem;
}

.pricing-card { 
    background: var(--white); 
    padding: 2rem; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    margin-top: 2rem;
    text-align: center;
}
.pricing-header h3 { 
    font-size: 2.5rem; 
    color: var(--primary-blue); 
    margin-bottom: 0.5rem;
}

/* About Page */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.timeline { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    margin-top: 2rem;
}
.timeline-year { 
    background: var(--energy-orange); 
    color: var(--white); 
    padding: 0.3rem 0.8rem; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    font-weight: 600;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; }
.contact-form-card { background: var(--white); padding: 3rem; border-radius: 24px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-row input, select, textarea { 
    padding: 1.2rem; 
    border: 2px solid #e5e7eb; 
    border-radius: 12px; 
    font-size: 1rem; 
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}
.form-row input:focus, textarea:focus { outline: none; border-color: var(--energy-orange); }

.whatsapp-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.8rem; 
    background: #25D366; 
    color: white; 
    padding: 1rem 2rem; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600;
    margin-top: 1rem;
}


/* CONTACT PAGE - COMPLETE DESIGN */
.contact-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.quick-contact {
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.form-container {
    max-width: 900px;
    margin: 25px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    overflow: hidden;
}

.form-header {
    padding: 1rem 2rem 1rem;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.step-badge {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

form {
    padding: 3rem 3rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.input-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 2;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 1.3rem 1.3rem 1.3rem 3.5rem !important;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s;
    box-sizing: border-box;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-color: #F97316;
    background: white;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.input-field.full textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.contact-trust {
    padding: 35px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-footer {
    padding: 80px 0 60px;
    background: #1f2937;
    color: white;
}

.whatsapp-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
}

.map-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.map-card i {
    font-size: 2.5rem;
    color: #F97316;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

/* CASE STUDIES PAGE */
.case-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #F97316, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.cases-section {
    padding: 10px 0;
}

.cases-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F97316;
    color: white;
    border-color: #F97316;
    transform: translateY(-2px);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 columns */
    gap: 2rem;
}

.case-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s;
    opacity: 1;
}

.case-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.case-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #F97316;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-image {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.realestate-hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.immigration-hero { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.coaching-hero { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.restaurant-hero { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.case-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #F97316;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.tag {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.cases-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #F97316, #FB923C);
    text-align: center;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.cta-button {
    padding: 0.3rem 1rem;
}

/* ABOUT PAGE - PROFESSIONAL DESIGN */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #F97316, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.founder-section {
    padding: 30px 0;
    background: #f8fafc;
}

.story-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-photo {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: contrast(105%) brightness(102%);
}

.section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
    gap: 0.5rem !Important;
}

.section-badge {
    background: #F97316;
    color: white;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-container {
    margin-top: 1.5rem;
}

.timeline-item {
    position: relative; 
    padding-left: 2rem;
    display: flex;
    gap: 1rem;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.timeline-marker {
    width: 80px;
    background: #F97316;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.values-section {
    padding: 30px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #F97316;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3.5rem;
}

.process-section {
  padding: 35px 0;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  
}
.process-card {
  background: #ffffff;
  padding: 10px 10px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s ease;
  min-height: 260px;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #F97316;
  color: white;
  font-weight: 700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.team-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

/* SERVICES PAGE PROFESSIONAL */
.services-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    text-align: center;
    color: white;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.services-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F97316, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.service-section {
    padding: 10px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}

.service-grid.reverse {
    grid-template-columns: 500px 1fr;
}

.service-badge {
    background: #F97316;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    display: flex;
    gap: 1.2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #F97316;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 0.4em;
    font-weight: 400;
}

.service-mockup {
    position: relative;
    height: 500px;
}

.google-mockup { background: linear-gradient(135deg, #4285f4, #34a853); }
.meta-mockup { background: linear-gradient(135deg, #f03a47, #ee7596); }
.youtube-mockup { background: linear-gradient(135deg, #ff0000, #cc0000); }

.comparison-section {
    padding: 120px 0;
    background: #f8fafc;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.table-header {
    background: #F97316;
    color: white;
    padding: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.table-row {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.table-row.highlight {
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    font-weight: 600;
}

.services-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #F97316, #FB923C);
    text-align: center;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-grid, .service-grid.reverse { grid-template-columns: 1fr; }
    .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }     
    .comparison-table { font-size: 0.9rem; }
    .blog-page-header h1 { font-size: 2.2rem; }
    .blog-grid { gap: 25px; }
    .hero { padding: 80px 0 60px; min-height: auto; display: flex; text-align: center;}
    .hero h1 { font-size: 28px; line-height: 1.25; padding: 0 10px; }
    .hero-subtitle { font-size: 15px; line-height: 1.6; padding: 0 15px; }
    .hero .trust-grid {margin-top: 35px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero .container { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 1.5rem; }
    .trust-grid { display: flex !important; flex-direction: column !important; align-items: center; margin-top: 30px; }
    .stat-card { width: 100%; max-width: 320px; padding: 22px 20px; border-radius: 20px;}
    .stat-number { font-size: 26px; }
    .stat-label { font-size: 14px;}
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        backdrop-filter: blur(20px);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .contact-main .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .nav-menu.active { left: 0; }
    .hamburger-line.active:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger-line.active:nth-child(2) { opacity: 0; }
    .hamburger-line.active:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
    .process-card{padding: 20px 20px; min-height: 240px;}
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .social-links { justify-content: center; }
    .service-detail-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section-header{flex-direction: column;text-align: center;display: flex;align-items: center;}
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .input-group { grid-template-columns: 1fr; }
    .whatsapp-section { grid-template-columns: 1fr; gap: 2rem; }
    .container { padding-left: 20px;padding-right: 20px;}
    .stats-row { flex-direction: column;  gap: 2rem; align-items: center; }
    .cases-grid {  grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-grid, .story-grid {  grid-template-columns: 1fr; }
    .process-grid {grid-template-columns: 1fr !important; gap: 20px; text-align: center;margin-top: 20px;}
    .timeline-item { flex-direction: column; text-align: center; display: flex; align-items: center; }
    .process-step:not(:last-child)::after { display: none; }
    .industries-grid {grid-template-columns: repeat(2, 1fr) !important;gap: 12px !important;padding: 10px 0 !important;}
    .founder-photo {height: 420px;border-radius: 20px;}
    .faq-section {padding: 35px 0;}
    .faq-question {font-size: 15px;padding: 18px 22px;}
    .faq-answer {padding: 0 22px;}
    .faq-item.active .faq-answer {padding: 0 22px 18px;}

    .founder-photo img {
        object-fit: cover;
        object-position: center 50%; /* face visible */
    }

    .industry-card {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }


    .industry-icon {
        width: 50px !important;  
        height: 50px !important;
        margin-bottom: 12px !important;
    }

    .industry-icon i {
        font-size: 20px !important; /* Icon ka andar ka size */
    }

    /* 4. Text ka size adjust karein */
    .industry-card h4 {
        font-size: 0.95rem !important;
        line-height: 1.2;
    }
    
    .blog-hero, {
        padding: 120px 20px 60px;
    }

    .blog-grid, .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .blog-info h3 {
        font-size: 1.2rem;
    }
}
/* ==============================
   FAQ SECTION
============================== */

.faq-section {
  padding: 35px 0;
  background: #f9fafb;
}

.faq-wrapper {
  max-width: 850px;
  margin: 35px auto 0;
}

/* ==============================
   FAQ ITEM
============================== */

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* ==============================
   QUESTION BUTTON
============================== */

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
}

.faq-question:focus {
  outline: none;
}

/* ==============================
   ICON
============================== */

.faq-icon {
  font-size: 20px;
  color: #F97316;
  transition: transform 0.3s ease;
}

/* ==============================
   ANSWER
============================== */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ==============================
   ACTIVE STATE
============================== */

.faq-item.active .faq-answer {
  max-height: 500px; /* enough height for expansion */
  padding: 0 28px 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==============================
   RESPONSIVE
============================== */


/* BLOG LISTING STYLES */
.blog-listing-section {
    padding: 140px 0 100px;
    background-color: #f8fafc;
}

.blog-page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-page-header h1 {
    font-size: 3rem;
    margin: 15px 0;
    color: #1e293b;
}

.text-orange { color: #f97316; }

.blog-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card, .tools-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #f97316;
}

.blog-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-info h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.3s;
}

.blog-card:hover h3 { color: #f97316; }

.blog-info p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    margin-top: auto;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.read-more-btn i { transition: transform 0.3s; }

.blog-card:hover .read-more-btn i {
    transform: translateX(5px);
}

/* Placeholder Helpers */
.placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.bg-finance { background: #f0fdf4; }
.color-finance { color: #16a34a !important; }
.bg-meta { background: #f5f3ff; }
.color-meta { color: #7c3aed !important; }
.bg-ops { background: #eff6ff; }
.color-ops { color: #1e293b !important; }

/* =========================
   MODERN SaaS UPGRADE LAYER
========================= */

body {
    background: #f1f5f9;
}

/* Soft Section Divider */
section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: radial-gradient(circle at center, rgba(0,0,0,0.04), transparent 70%);
    z-index: -1;
}

.service-card {
    border: none;
    background: white;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.features-grid .feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.features-grid .feature-card:hover {
    border-color: #F97316;
    transform: translateY(-6px);
}

.pricing-card.primary {
    border: 2px solid #F97316;
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(249,115,22,0.25);
}

.pricing-card.primary::before {
    content: "🔥 Recommended";
    position: absolute;
    top: -14px;
    right: 20px;
    background: #F97316;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.table-row {
    background: white;
    margin: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.table-row:hover {
    transform: translateY(-4px);
}

.service-mockup::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(249,115,22,0.3);
    filter: blur(120px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ===== COMPACT INDUSTRIES GRID ===== */

.industries-section {
    padding: 10px 0;
}

/* Container adjustment */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns layout */
    gap: 15px;
    padding: 20px 0;
}

/* Professional Card Look */
.industry-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hover State: Card upar uthega aur color change hoga */
.industry-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #ff6b00; /* Aapke logo ka orange color */
}

/* Icon Professional Styling */
.industry-icon {
    width: 70px;
    height: 70px;
    background: #fff5ee; /* Light orange tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 28px;
    color: #ff6b00; /* Brand Orange */
}

.industry-card:hover .industry-icon {
    background: #ff6b00;
}

.industry-card:hover .industry-icon i {
    color: #ffffff;
}

/* Typography */
.industry-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    transition: color 0.3s ease;
}
/* Mobile Responsiveness (Important!) */
@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); } /* Tablets par 3 */
     .process-grid {
    grid-template-columns: repeat(2, 1fr);}
}
/* ===== DROPDOWN ===== */

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 230px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--energy-orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    
}

.stat-card {
    background: white;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 1rem;
}

.stat-card p {
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* BLOG HERO */
.blog-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* BLOG CARD */
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.08);
}

.blog-info {
    padding: 2rem;
}

.blog-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.read-more-btn {
    font-weight: 600;
    color: #F97316;
    text-decoration: none;
}
.custom-content {
    padding: 90px 0;
    background: #ffffff;
}

.custom-content .container {
    max-width: 1100px;
    margin: 0 auto;
}

.custom-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
}

.custom-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0f172a;
}

.custom-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 18px;
}

.custom-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.custom-content li {
    margin-bottom: 8px;
}

.blog-container { padding: 120px 0 80px; max-width: 800px; margin: 0 auto; line-height: 1.8; }
    .blog-header h1 { font-size: 2.8rem; color: #1e293b; margin-bottom: 1.5rem; line-height: 1.2; }
    .blog-meta { color: #64748b; margin-bottom: 2rem; font-size: 0.9rem; }
    .blog-content h2 { font-size: 2rem; margin-top: 2.5rem; color: #0f172a; }
    .blog-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #334155; }
    .finance-card { background: #f0fdf4; border-left: 5px solid #16a34a; padding: 25px; margin: 2rem 0; border-radius: 0 15px 15px 0; }
    
    .tool-box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tool-inputs, .tool-output {
    flex: 1;
}

.generate-btn {
    margin-top: 15px;
    padding: 12px;
    background: #75E115;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#outputBox {
    background: #111;
    color: #fff;
    padding: 15px;
    min-height: 150px;
    margin-top: 10px;
}


    
    