* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
   align-items: center;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9),
    rgba(15, 52, 96, 0.9),
    rgba(3, 7, 18, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 60px;
  border-bottom: 1px solid #0b1738;
  height: 85px;
  position: relative;
  z-index: 2000;
}

.logo img {
  height: 115px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 18px;
}

.nav-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===========================
   MOBILE NAVIGATION
=========================== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 95px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    display: none;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3000;
  }

  .nav-links.open {
    display: flex;
  }
}
/* ===========================
   GLOBAL (PAGE-ONLY)
=========================== */

body {
  background: #020617;
  color: #e8e8e8;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===========================
   OUR SERVICES SECTION
=========================== */
.our-services {
  text-align: center;
  padding: 100px 20px;
  background: #050d26;
  border-top: 1px solid #0b1738;
}

.our-services h2 {
  color: #f5c518;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.our-services p {
  color: #c8c8c8;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ===========================
   SERVICE BOXES
=========================== */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  background: #08122e;
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  border-color: #f5c518;
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.25);
}

.service-box h3 {
  color: #f5c518;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-box p {
  color: #d8d8d8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button inside box */
.service-box .btn {
  font-size: 0.95rem;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  color: #f5c518;
  border: 1px solid #f5c518;
  transition: 0.3s ease;
}

.service-box .btn:hover {
  background: #f5c518;
  color: #020617;
}

/* ===========================
   SERVICES PAGE WARNING BOX
=========================== */
.services-warning {
  margin-top: 25px;
  grid-column: 1 / -1;
  background: rgba(255, 85, 85, 0.12);
  border: 1px solid rgba(255, 85, 85, 0.4);
  color: #ff6b6b;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  backdrop-filter: blur(6px);
}


/* =======================================
   SERVICES / IMPACT STYLE – BIRLAS PARVAI
======================================= */

.impact-section {
  background: 020617;
  padding: 90px 20px;
  text-align: center;
}

.impact-container {
  max-width: 1200px;
  margin: auto;
}

.impact-title {
  font-size: 2.4rem;
  color: #facc15; /* GOLD */
  margin-bottom: 12px;
}

.impact-subtitle {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 55px;
}

/* GRID */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.impact-card {
  background: 020617;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 18px;
  padding: 42px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow on hover */
.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(250, 204, 21, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(250, 204, 21, 0.25);
}

/* ICON */
.impact-icon {
  font-size: 2.7rem;
  color: #facc15;
  margin-bottom: 20px;
}

/* NUMBER */
.impact-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

/* LABEL */
.impact-card p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .our-services {
    padding: 70px 20px;
  }

  .our-services h2 {
    font-size: 2rem;
  }

  .service-box {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .bp-footer-container {
    flex-direction: column;
    text-align: left;
  }
}

/* =======================
         FOOTER
=========================== */

.bp-footer {
  background: #020B25; /* Same as your website's dark theme */
  padding: 60px 20px;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.bp-footer-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #60a5fa; /* Soft Blue Accent */
  font-weight: 600;
}

.bp-footer-section ul {
  list-style: none;
  padding: 0;
}

.bp-footer-section ul li {
  margin-bottom: 12px;
}

.bp-footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 16px;
  transition: 0.2s;
}

.bp-footer-section ul li a i {
  margin-right: 10px;
  color: #60a5fa; /* Matching blue accent */
}

.bp-footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.bp-footer-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}
/* SlideSHow */
/* =======================================
   TESTIMONIALS – 2 PER SLIDE
======================================= */

.testimonial-section {
  padding: 100px 20px;
  background: #020617;
  border-top: 1px solid #0b1738;
  text-align: center;
}
.testimonial-content {
  padding: 28px 26px 32px;
  text-align: left;
}

.testimonial-content h3 {
  color: #f5c518;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.read-more {
  color: #f5c518;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.read-more:hover {
  text-decoration: underline;
}


.testimonial-content h3 span {
  font-size: 0.95rem;
  color: #cfcfcf;
  font-weight: 400;
}

.testimonial-content p {
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 18px;
}


.testimonial-section .section-title {
  color: #f5c518;
  font-size: 2rem;
  margin-bottom: 50px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background: #030a1a;
  border-radius: 22px;
  border: 1px solid rgba(245,197,24,0.25);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}
.testimonial-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.testimonial-card {
  min-height: 520px;
}


.testimonial-card h3 {
  color: #f5c518;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial-card h3 span {
  font-size: 0.9rem;
  color: #cfcfcf;
  font-weight: 400;
}

.testimonial-card p {
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.7;
}

/* Buttons */
.testimonial-btn {
  background: rgba(0,0,0,0.6);
  color: #f5c518;
  border: 1px solid #f5c518;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-btn:hover {
  background: #f5c518;
  color: #020617;
}

.testimonial-btn.left {
  margin-right: 15px;
}

.testimonial-btn.right {
  margin-left: 15px;
}

/* =======================================
   MOBILE – 1 CARD PER SLIDE
======================================= */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-btn {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-image {
    height: 220px;
  }
}





/* =======================================
   SERVICES / IMPACT STYLE – BIRLAS PARVAI
======================================= */

.impact-section {
  background: #020617;
  padding: 90px 20px;
  text-align: center;
}

.impact-container {
  max-width: 1200px;
  margin: auto;
}

.impact-title {
  font-size: 2.4rem;
  color: #facc15;
  margin-bottom: 12px;
}

.impact-subtitle {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 55px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-card {
  background: #020617;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 18px;
  padding: 42px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(250, 204, 21, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(250, 204, 21, 0.25);
}



/* Footer Fix */


.bp-footer-section ul {
  list-style: none; /* Removes default bullets */
  padding: 0;       /* Removes default indentation */
  margin: 0;
}

.bp-footer-section li {
  margin-bottom: 12px; /* Adds vertical spacing between items */
}

.bp-footer-section a {
  display: flex;
  align-items: center;    /* Vertically aligns icon and text */
  text-decoration: none;
  color: inherit;         /* Adjust as needed for your theme */
}

.bp-footer-section i {
  width: 24px;            /* Gives icons a fixed container width */
  text-align: center;     /* Centers narrower icons (like LinkedIn) */
  margin-right: 10px;     /* Creates uniform spacing after the icon */
  font-size: 1.2rem;      /* Adjust icon size */
}

