body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 70px; /* This matches navbar height */
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #1b5e20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;
  box-sizing: border-box;   /* 🔴 VERY IMPORTANT */

  z-index: 1000;
}


/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


.nav-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;   /* 🔴 force show */
}



.nav-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-left {
  display: flex;
  align-items: center;
  text-decoration: none;   /* no underline */
}

.nav-left:hover {
  opacity: 0.9;
}

.nav-left .nav-title {
  color: white;
}


/* RIGHT SIDE MENU */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;   /* 🔴 text cut కాకుండా */
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}


.nav-right a:hover {
  text-decoration: underline;
}


/* SECTION */
.section {
    /* Navbar height is 70px, so we add a margin for scrolling */
    scroll-margin-top: 70px; 
    padding: 80px 20px; /* Reduced top padding to balance */
}
/* HOME BANNER */
.home-banner {
  height: 80vh;
  background: url("images/banner.jpg") center/cover no-repeat;
}
.home-banner {
    /* Change 90vh to 100vh or calc to fill the screen perfectly */
    height: calc(100vh - 70px); 
    width: 100%;
    margin-top: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}
/* HAMBURGER ICON */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* DEFAULT MENU */
.nav-right {
  display: flex;
  gap: 16px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-right {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #1b5e20;
    width: 100%;
    flex-direction: column;
    display: none;              /* 🔴 hidden by default */
    padding: 10px 0;
  }

  .nav-right a {
    padding: 12px;
    text-align: center;
  }

  .nav-right.show {
    display: flex;              /* 🔴 show when active */
  }
}
/* ACTIVE NAV LINK */
.nav-right a.active {
  border-bottom: 2px solid #a5d6a7;
  color: #a5d6a7;
}
#contact {
  min-height: 60vh;
}
/* GALLERY */
.gallery-section {
  background: #f4f7f5;
}

.gallery-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-buttons button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-buttons button:hover {
  background: #1b5e20;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}











/* Focus Section Styling */
/* Focus Section Styling - Updated for 4 cards per row */
.focus-container {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the cards in the last row */
  gap: 20px;
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet view: 2 cards per row */
@media (max-width: 1024px) {
    .focus-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view: 1 card per row */
@media (max-width: 600px) {
    .focus-container {
        grid-template-columns: 1fr;
    }
}

.focus-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  border-bottom: 4px solid #27ae60;
  
  /* Logic for 4 cards per row: (100% / 4) minus gap */
  flex: 0 1 calc(25% - 20px); 
  min-width: 250px; /* Prevents cards from getting too thin */
  box-sizing: border-box;
}

.focus-box:hover {
    transform: translateY(-10px);
    background-color: #f9f9f9;
}

.focus-box h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.focus-box p {
    color: #555;
    font-size: 0.9rem;
}

#initiatives {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

@media (max-width: 1024px) {
  .focus-box {
    flex: 0 1 calc(50% - 20px);
  }
}

/* Mobile view: 1 card per row */
@media (max-width: 600px) {
  .focus-box {
    flex: 0 1 100%;
  }
}

/* --- HOME BANNER STYLING --- */

.home-banner {
    /* Height of the banner */
    height: 90vh; 
    
    /* Background Image with Dark Overlay (Linear Gradient) */
    /* Replace 'images/ngo-building.jpg' with your actual photo path */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/ngo-building.jpg");
    background-size: cover;
    background-position: center;
    /* Optional: Makes image stay fixed while scrolling (parallax effect) */
    background-attachment: fixed; 

    /* Centering text vertically and horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 0; /* Removes default section margin for full top fit */
}

/* Container for the text */
.home-content {
    max-width: 800px;
}

/* Heading Style */
/* --- Balanced Home Heading --- */
/* --- Home Heading with extra gap --- */
.home-content h1 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 35px; /* Increased gap between heading and para */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* For Tablets */
@media (max-width: 1024px) {
    .home-content h1 {
        font-size: 2.8rem;
    }
}

/* For Mobile Phones */
@media (max-width: 600px) {
    .home-content h1 {
        font-size: 2.2rem;
    }
}

/* Paragraph/Summary Style */
./* --- Modern Font Style for Paragraph --- */
.home-content p {
    font-family: 'Poppins', sans-serif; /* Using the new modern font */
    font-size: 1.2rem;
    font-weight: 300; /* Light weight for an elegant look */
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px auto;
    letter-spacing: 0.8px; /* Slight spacing for premium feel */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Soft shadow for readability */
}

/* Optional: Slightly bolder for the button text */
/* --- Professional Button Style --- */
/* --- Darker & More Professional Button --- */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    /* Using a much darker forest green for better contrast */
    background-color: #0e3311; 
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    /* Adjusted shadow to match the dark theme */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    cursor: pointer;
    border: 2px solid #0e3311; /* Border same as background initially */
}

/* Button Hover Effect */
.btn-primary:hover {
    /* Slightly lighter on hover to show interaction */
    background-color: #1b5e20; 
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff; /* White border for high visibility on hover */
}

/* Active State */
.btn-primary:active {
    transform: translateY(-1px);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2.2rem;
    }
    .home-content p {
        font-size: 1rem;
    }
    .home-banner {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* --- About Us Styles --- */
#about {
    background-color: #fcfcfc;
    padding: 100px 5%;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1.2;
    text-align: left;
}

.about-text h2 {
    color: #1b5e20;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Stats Grid on the Right */
.about-stats-grid {
    flex: 0.8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-left: 5px solid #27ae60;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #1b5e20;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-text {
        text-align: center;
    }
}

/* --- About Pillars Styling --- */
.about-pillars {
    padding-top: 60px;
    text-align: center;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #1b5e20;
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pillar-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    color: #1b5e20;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-card p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pillar-card {
        text-align: center;
    }
}

/* --- Improved Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images don't stretch */
    transition: transform 0.5s ease;
    cursor: pointer;
}

/* Hover Effect: Zoom-in */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Active Category Button */
.gallery-buttons button {
    background: #f1f1f1;
    color: #333;
    padding: 10px 20px;
    border: 2px solid #27ae60;
    font-weight: 600;
    transition: 0.3s;
}

.gallery-buttons button:hover, 
.gallery-buttons button.active {
    background: #1b5e20;
    color: white;
}

/* Gallery Overlay (The "Next Page" effect) */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    display: none; /* Hidden by default */
    overflow-y: auto;
    padding: 40px 5%;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.back-btn {
    padding: 10px 20px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.gallery-header h2 {
    color: #1b5e20;
    font-size: 1.8rem;
}

/* Make Initiatives cards look clickable */
.focus-box {
    cursor: pointer;
}

.focus-box small {
    display: block;
    margin-top: 10px;
    color: #27ae60;
    font-weight: bold;
}

/* Card Interactivity */
.focus-box {
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.focus-box:hover {
    background-color: #f0fdf4;
    transform: translateY(-5px);
    border-color: #1b5e20;
}

/* Full Screen Gallery Overlay */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2500;
    display: none; /* Initially hidden */
    overflow-y: auto;
    padding: 30px 5%;
}

.overlay-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 30px;
}

.back-btn {
    background-color: #1b5e20;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#dynamicTitle {
    color: #1b5e20;
    font-size: 1.8rem;
    margin: 0;
}

/* Grid for Gallery Images */
.gallery-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid-view img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Styling the "View in Gallery" link inside cards */
.view-link {
    display: inline-block;
    margin-top: 15px;
    color: #27ae60; /* Theme Green */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

/* When the whole card is hovered, the link gets darker */
.focus-box:hover .view-link {
    color: #0e3311; /* Dark Forest Green */
    text-decoration: underline;
}

/* Small adjustments to focus-box to align the link at the bottom */
.focus-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures the link stays at the bottom */
    cursor: pointer;
    padding: 30px;
}

/* --- Donation Section Styles --- */
/* --- Compact Donation Section --- */
.donation-section {
    background-color: #f0fdf4;
    text-align: center;
    padding: 60px 5%; /* Reduced top/bottom padding */
}

.donation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Reduced gap between cards */
    max-width: 1000px; /* Limits container width to fit better */
    margin: 0 auto;
}

.donation-card {
    background: #ffffff;
    padding: 25px; /* Reduced from 40px */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px; /* Smaller minimum width */
    max-width: 360px; /* Reduced from 450px to fit better */
    transition: 0.3s ease;
    border-top: 4px solid #1b5e20;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 32px; /* Smaller icon */
    margin-bottom: 10px;
}

.donation-card h3 {
    color: #1b5e20;
    margin-bottom: 15px;
    font-size: 1.3rem; /* Balanced font size */
}

.bank-details {
    text-align: left;
    background: #f8f9fa;
    padding: 15px; /* More compact padding */
    border-radius: 8px;
    font-size: 0.95rem; /* Slightly smaller text */
}

.bank-details p {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* QR Code adjustments */
.qr-placeholder img {
    width: 150px; /* Reduced QR size from 200px */
    height: 150px;
    margin: 15px 0;
    border: 3px solid #eee;
    border-radius: 8px;
}

.upi-id {
    font-size: 1rem;
    font-weight: 600;
}

/* --- Contact Us Styles --- */
.contact-section {
    background-color: #ffffff;
    padding: 60px 10%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    color: #1b5e20;
    margin-bottom: 15px;
}

.contact-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.official-list {
    list-style: none;
    padding: 0;
}

.official-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
    font-weight: 400; /* 400 means normal weight */
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    margin-bottom: 20px;
    color: #333;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

#contactForm button {
    width: 100%;
    border: none;
}

/* Language Switcher Button Styling */
.lang-container {
    position: fixed;
    top: 85px; /* Adjust based on your navbar height */
    right: 20px;
    z-index: 1500;
}

#lang-btn {
    background-color: #1b5e20; /* NGO Green */
    color: white;
    border: 2px solid #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

#lang-btn:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.email-link {
    color: #1b5e20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    word-wrap: break-word; /* మొబైల్‌లో ఈమెయిల్ కట్ అవ్వకుండా ఉంటుంది */
}

.email-link:hover {
    text-decoration: underline;
    color: #27ae60;
}

/* --- Footer Styles --- */
.main-footer {
    background-color: #1b5e20; /* NGO Green */
    color: white;
    padding: 60px 10% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box h3, .footer-box h4 {
    margin-bottom: 20px;
    color: #a5d6a7;
}

.footer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #a5d6a7;
}

/* ==========================================
   RESPONSIVE (MOBILE VIEW FIXES)
   ========================================== */
/* ఇది వరకు ఉన్న @media కోడ్ తీసేసి ఇది పెట్టండి */
@media (max-width: 768px) {
    /* Navbar ముడుచుకునేలా చేయడం */
    .nav-right {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: #1b5e20;
        padding: 20px;
        transition: 0.5s;
        text-align: center;
    }
    .nav-right.show {
        left: 0;
    }
    .hamburger {
        display: block;
    }

    /* --- మొబైల్ సైజులు తగ్గించడం (New Fixes) --- */

    /* 1. సెక్షన్ల మధ్య ఖాళీ తగ్గించడం */
    .section {
        padding: 40px 5%; /* పైన/కింద 80px నుండి 40px కి తగ్గించాం */
    }

    /* 2. ప్రధాన హెడ్డింగ్ (H1) సైజు తగ్గించడం */
    .home-content h1 {
        font-size: 1.8rem; /* 3rem నుండి 1.8rem కి తగ్గించాం */
    }
    .home-banner {
        padding: 0 5%; /* పక్కల ఖాళీ తగ్గించాం */
    }

    /* 3. సబ్ హెడ్డింగ్స్ (H2) సైజు తగ్గించడం */
    .section-title {
        font-size: 1.5rem; /* 2rem నుండి 1.5rem కి తగ్గించాం */
        margin-bottom: 25px;
    }

    /* 4. కార్డుల లోపల ఖాళీ (Padding) తగ్గించడం */
    .pillar-card, .focus-box, .donation-card, .stat-card, .contact-form-container {
        padding: 15px; /* 25px నుండి 15px కి తగ్గించాం, కాంపాక్ట్‌గా ఉంటుంది */
    }

    /* 5. About Section ను నిలువుగా మార్చడం */
    .about-container {
        flex-direction: column;
        gap: 25px;
    }

    /* 6. సాధారణ టెక్స్ట్ సైజు కొద్దిగా తగ్గించడం */
    p, .official-list li, .email-link {
        font-size: 0.95rem;
    }
    
    /* 7. Lang Button మరియు Navbar సర్దుబాటు */
    .lang-container {
        top: 15px; /* మొబైల్‌లో బటన్ పైకి వెళ్లేలా */
        right: 60px; /* హ్యాంబర్గర్ పక్కన వచ్చేలా */
    }
    #lang-btn {
        padding: 4px 10px; /* బటన్ సైజు చిన్నదిగా */
        font-size: 0.8rem;
    }
    .navbar {
        padding-right: 15px; /* నావిగేషన్ బార్ పక్కన ఖాళీ సర్దుబాటు */
    }
}





/* మీ పాత కోడ్ పైన ఇవి యాడ్ చేయండి */
* { box-sizing: border-box; }
body { overflow-x: hidden; }


/* మొబైల్ లో నావ్‌బార్ పేరు ఒకే లైన్ లో రావడానికి */
@media (max-width: 480px) {
    .nav-title {
        font-size: 13px !important;    /* సైజు తగ్గించాం */
        white-space: nowrap !important; /* 🔴 కచ్చితంగా ఒకే లైన్ లో ఉంచుతుంది */
        letter-spacing: -0.2px !important; /* అక్షరాల మధ్య గ్యాప్ తగ్గించాం */
    }

    .nav-logo {
        height: 28px !important;      /* లోగో సైజు కొంచెం తగ్గించాం */
        width: 28px !important;
    }

    .nav-left {
        gap: 5px !important;          /* లోగోకి పేరుకి మధ్య గ్యాప్ తగ్గించాం */
    }

    .navbar {
        padding: 0 10px !important;    /* నావ్‌బార్ పక్కన ఖాళీ తగ్గించాం */
    }
}

/* మొబైల్ ఫోన్ల కోసం ఫైనల్ సెట్టింగ్స్ */
@media (max-width: 480px) {
    /* 1. హోమ్ పేజీ మెయిన్ హెడ్డింగ్ */
    .home-content h1 {
        font-size: 7.5vw !important;    /* స్క్రీన్ వెడల్పును బట్టి పెద్దగా కనిపిస్తుంది */
        white-space: nowrap !important; /* కచ్చితంగా ఒకే లైన్ లో ఉంటుంది */
        margin-bottom: 30px !important; /* 🔴 హెడ్డింగ్ కి పారా కి మధ్య గ్యాప్ */
        letter-spacing: -0.5px !important;
        display: block;
    }

    /* 2. హోమ్ పేజీ పారాగ్రాఫ్ */
    .home-content p {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-top: 0 !important;
    }

    /* 3. కంటైనర్ ఖాళీ తగ్గించడం (హెడ్డింగ్ పట్టడం కోసం) */
    .home-content {
        padding: 0 5px !important; /* పక్కల ఖాళీ తగ్గించాం */
        width: 100% !important;
    }
}