/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
  padding-top: 100px; 
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =======================
   TOP CONTACT BAR
======================= */
.dev-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 6px 0;
  font-size: 14px;
  text-align: center;
  z-index: 10000; /* sabke upar */
}

.dev-contact-bar a {
  color: #00c3ff;
  font-weight: 600;
}

/* =======================
   DEV POPUP
======================= */
.dev-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.dev-popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  font-size: 22px;
}

.popup-btn {
  display: block;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  background: #007bff;
  color: #fff;
  font-weight: 600;
}

/* =======================
   NAVBAR
======================= */
.navbar {
  position: fixed;
  top: 28px; /* ye contact bar height ke equal ho */
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  z-index: 9999;
  transition: top 0.3s ease;
}

.logo img {
  height: 45px;
}

/* Nav links */
.nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
}


.nav-link {
  font-weight: 600;
  color: #333;
}

.nav-link:hover {
  color: #007bff;
}


.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.nav-buttons .btn-signin {
  background: #007bff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  list-style: none;
  display: none;
  border-radius: 8px;
  min-width: 160px;
  z-index: 9999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f1f1f1;
}
.dropdown.active .dropdown-menu {
  display: block;
}
/* =======================
   HERO SECTION
======================= */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* Background Video */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
}

/* =======================
   AD BAR (INSIDE HERO)
======================= */
/* =======================
   AD BAR (PERFECT SCROLL)
======================= */
.ad-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 0;
  z-index: 4;
  overflow: hidden;
}

/* Track */
.ad-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: adScroll 20s linear infinite;
}

/* Images */
.ad-track img {
  height: 100px;
  width: auto;
  object-fit: contain;
  white-space: nowrap;
  filter: grayscale(100%);
  transition: 0.3s;
}

.ad-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes adScroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-50%);
  }
}


/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .ad-track img {
    height: 70px;
  }
}
/* =======================
   LATEST NEWS - PREMIUM
======================= */
.latest-news-cards {
  padding: 60px 6%;
  background: #e8e5e5;
  font-family: 'Poppins', sans-serif;
}

.news-title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: -0.5px;
}

/* Cards Container */
.news-cards-container {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
}

.news-cards-container::-webkit-scrollbar {
  display: none;
}

/* Card */
.news-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #111;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Image Container */
.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.08);
}

/* Overlay gradient for premium look */
.news-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
  pointer-events: none;
}

/* Category Tag */
.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Trending Badge */
.trending-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Card Content */
.news-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

/* Title */
.news-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.news-card:hover .news-content h3 {
  color: #1d4ed8;
}

/* Description */
.news-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Read More */
.read-more {
  font-size: 14px;
  font-weight: 700;
  color: #1d4ed8;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.read-more:hover {
  transform: translateX(4px);
  color: #0f3bbd;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .news-card { flex: 0 0 280px; }
  .news-title { font-size: 28px; }
  .news-image img { height: 180px; }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .latest-news-cards { padding: 40px 4%; }
  .news-title { font-size: 24px; margin-bottom: 30px; }
  .news-cards-container { flex-direction: column; gap: 20px; overflow-x: hidden; }
  .news-card { width: 100%; flex: none; border-radius: 16px; }
  .news-image img { height: 180px; }
  .news-content h3 { font-size: 18px; }
  .news-content p { font-size: 14px; }
  .read-more { font-size: 13px; }
  .category-tag, .trending-badge { font-size: 10px; padding: 3px 8px; }
}


/* =======================
   FEATURED SECTION
======================= */
.featured-section {
  padding: 60px 6%;
  background: #f9fafb;
}

/* Title */
.featured-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  color: #111;
  letter-spacing: -0.4px;
}

/* Cards Container */
.featured-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.featured-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Hover */
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Image */
.featured-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Content */
.featured-content {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Tag */
.tag {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  color: #fff;
}

/* Tag Colors */
.tag.politics { background: #e63946; }
.tag.world    { background: #457b9d; }
.tag.science  { background: #2a9d8f; }

/* Title */
.featured-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: #111;
}

/* Description */
.featured-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Read More */
.read-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.read-more:hover {
  color: #0f172a;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .featured-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-title {
    font-size: 24px;
  }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .featured-section {
    padding: 40px 4%;
  }

  .featured-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .featured-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured-card img {
    height: 190px;
  }

  .featured-content h3 {
    font-size: 17px;
  }
}
/* =======================
   CATEGORY SECTION
======================= */
.category-section {
  padding: 60px 6%;
  background: #ffffff;
}

/* Section Title */
.category-section h2 {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: -0.4px;
}

/* Cards Container */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.category-card {
  display: block;
  background: #f9fafb;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition: all 0.35s ease;
}

/* Hover Effect */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Image */
.category-image {
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Content */
.category-content {
  padding: 20px 22px 24px;
}

/* Title */
.category-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* Description */
.category-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-section h2 {
    font-size: 24px;
  }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .category-section {
    padding: 40px 4%;
  }

  .category-section h2 {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .categories {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .category-image img {
    height: 180px;
  }

  .category-content h3 {
    font-size: 18px;
  }
}
/* =======================
   FEATURED SERVICES SECTION
======================= */
.featured-services {
  padding: 60px 6%;
  background: #f9fafb;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: -0.4px;
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Individual Service Card */
.service-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
  font-size: 40px;
  color: #1d4ed8;
  margin-bottom: 18px;
  display: inline-block;
}

/* Title */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* Description */
.service-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .service-card h3 {
    font-size: 19px;
  }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .featured-services {
    padding: 40px 4%;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    max-width: 100%;
    padding: 25px 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-icon {
    font-size: 36px;
    margin-bottom: 14px;
  }
}

/* =======================
   STATS COUNTER SECTION
======================= */
.stats-counter {
  padding: 60px 6%;
  background: #f4f6f8;
  text-align: center;
}

/* Section Title */
.stats-counter h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
  letter-spacing: -0.4px;
}

/* Counter Container */
.counter-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Individual Counter Box */
.counter-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 220px;
}

/* Hover effect */
.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Counter Number */
.counter {
  font-size: 36px;
  font-weight: 800;
  color: #1d4ed8;
  margin-bottom: 12px;
}

/* Counter Text */
.counter-box p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats-counter h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .counter {
    font-size: 32px;
  }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .stats-counter {
    padding: 40px 4%;
  }

  .counter-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-counter h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .counter {
    font-size: 28px;
  }

  .counter-box {
    max-width: 100%;
    padding: 25px 18px;
  }

  .counter-box p {
    font-size: 14px;
  }
}
/* =======================
   FOOTER
======================= */
footer {
  background: #111; /* dark background */
  color: #fff;
  padding: 60px 6% 30px;
  font-family: 'Arial', sans-serif;
}

/* Footer Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Left */
.footer-left h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Footer Center & Sitemap & Payment */
.footer-center h4,
.footer-payment h4,
.footer-right h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-center ul,
.footer-sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li,
.footer-sitemap ul li {
  margin-bottom: 10px;
}

.footer-center ul li a,
.footer-sitemap ul li a,
.footer-payment .payment-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-center ul li a:hover,
.footer-sitemap ul li a:hover,
.footer-payment .payment-link:hover {
  color: #1d4ed8; /* primary blue hover */
}

/* Payment Link */
.footer-payment .payment-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #1d4ed8;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.25s ease;
}

.footer-payment .payment-link:hover {
  background: #0f3bbd;
}

/* Footer Right / Contact */
.footer-right p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 8px;
}

/* Social Icons */
.socials {
  margin-top: 15px;
}

.socials a {
  color: #ccc;
  font-size: 16px;
  margin-right: 12px;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  color: #1d4ed8;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 15px;
  line-height: 1.5;
}
.footer-bottom span{
    color: #1d4ed8; ;
}
/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left;   /* 👈 center → left */
  }

  .footer-left,
  .footer-center,
  .footer-payment,
  .footer-right {
    text-align: left;   /* 👈 center → left */
  }

  .socials a {
    margin-right: 10px;
  }
}


/* =======================
   WHATSAPP FLOAT
======================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 999;
}

/* =======================
   MOBILE
======================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
     position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    display: none; /* hidden initially */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 9999;
  }
   /* Links style */
  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    
  }

  .nav-list li a:hover {
    background: #f3f4f6;
    color: #1d4ed8;
  }
/* ✨ Smooth open animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  .nav-list.active {
    display: flex;
  }
   .dropdown-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    position: static;
    border-radius: 0;
    padding-left: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}

@media (max-width: 768px) {

  .navbar {
    position: fixed;          /* ✅ FIXED again */
    top: 28px;                /* contact bar ke niche */
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 60px;
    padding: 0 6%;
    background: #fff;
    z-index: 9999;
  }

  /* Logo left */
  .logo img {
    height: 36px;
    display: block;
  }

  /* Sign In EXACT CENTER */
  .nav-buttons {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-buttons .btn-signin {
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 18px;
    line-height: 1;
    white-space: nowrap;
  }

  /* Toggle ALWAYS right */
  .menu-toggle {
    position: absolute;
    right: 6%;
    display: flex;
    align-items: center;
    font-size: 26px;
    height: 100%;
    cursor: pointer;
  }
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #222;
}

.contact-email .email-icon {
  font-size: 20px;
  color: #1d4ed8; /* blue icon */
}

.contact-email a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.contact-email a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.contact-email i {
  color: #1d4ed8;
  font-size: 18px;
}
/*about*/
/* About Hero Section */
.about-hero {
  background-image: url('../image/best.webp'); /* Background image */
  background-size: cover;      /* Image covers entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  padding: 80px 20px;         /* Top-bottom 80px, sides 20px */
  text-align: center;          /* Center content */
  color: #fff;                 /* Optional: text color for contrast */
}


.about-hero h1 {
  font-size: 3rem;             /* Big headline */
  font-weight: 700;
  color: #222;                 /* Dark text for contrast */
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.1rem;
  color: #555;                 /* Medium grey text */
  max-width: 700px;            /* Limit line length */
  margin: 0 auto;              /* Center paragraph */
  line-height: 1.6;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .about-hero {
    padding: 50px 15px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}
/* Section container */
.about-company {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Light grey background */
  text-align: center;
}

.about-company h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* About content grid */
.about-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Individual cards */
.about-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.about-card i {
  font-size: 2.5rem;
  color: #4f46e5; /* Purple accent */
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.about-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive: tablets */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    text-align: center;
    padding: 25px 15px;
  }

  .about-card i {
    margin-bottom: 15px;
  }
}
/* Section container */
.why-choose-section {
  padding: 80px 20px;
  background-color: #f5f5f5; /* Light grey background */
  text-align: center;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* Grid container */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Individual items */
.why-item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.why-item i {
  font-size: 2.5rem;
  color: #4f46e5; /* Accent color for icons */
  margin-bottom: 20px;
}

.why-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.why-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive: tablets */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-item {
    text-align: center;
    padding: 25px 15px;
  }

  .why-item i {
    margin-bottom: 15px;
  }
}
/* Testimonial Section */
/* Testimonial Section */
.testimonial-area {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonial-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* Slider */
.testimonial-slider {
  max-width: 900px;
  margin: auto;
  position: relative;
}

/* Slides */
.testimonial-slide {
  display: none;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  animation: fade 0.8s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide i {
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 20px;
}

.testimonial-slide p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.testimonial-slide h4 {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

/* Dots */
.dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
}

.dot.active {
  background: #4f46e5;
  transform: scale(1.2);
}

/* Animation */
@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-slide {
    padding: 30px 20px;
  }
}

/* ===================== CTA SECTIONS ===================== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5; /* Light grey background */
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.cta-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== GLOBAL IMPACT STATS ===== */
.global-impact .impact-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.global-impact .impact-stats div {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  min-width: 150px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.global-impact .impact-stats div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.global-impact .impact-stats h3 {
  font-size: 2rem;
  color: #4f46e5; /* Accent color */
  margin-bottom: 10px;
}

.global-impact .impact-stats p {
  font-size: 1rem;
  color: #333;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background-color: #4f46e5; /* Purple background */
  color: #fff;
  padding: 80px 20px;
}

.newsletter-section h2 {
  color: #fff;
}

.newsletter-section p {
  color: #f0f0f0;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 15px 20px;
  border-radius: 8px;
  border: none;
  width: 300px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 25px;
  border-radius: 8px;
  border: none;
  background-color: #ffcd38;
  color: #222;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #ffc107;
}

.newsletter-section small {
  display: block;
  margin-top: 20px;
  color: #e0e0e0;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .global-impact .impact-stats {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .global-impact .impact-stats {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    width: 90%;
  }

  .newsletter-form button {
    width: 90%;
  }
}
