*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.translate-bar {
  position: fixed;
  top: 0;
  left:0;
  right: 0;
  max-width: 100vw;
  /* padding: 2px 1px; */
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
}
.header {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(76, 18, 137); 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.header-content {
    max-width: 1280px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    padding-top: 2rem; 
    flex-wrap: wrap;
}
.header.scrolled {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.logo-company {
  display: flex;
  align-items: center;
  color: #1a1919;
  text-decoration: none;
  gap: 0.625rem;
}
.company-icon {
  height: 1.9rem;
  width: 1.9rem;
  border: 2px solid rgb(6, 6, 6);
  border-radius: 5px;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  color: #FAFAFA;
}


.nav {
  display: flex;
  gap: 2rem; 
  padding-right:2rem;
  } 
.nav-link {
color: rgb(255, 255, 255);
font-size: 1rem;
font-weight: 500;
font-family: "Inter", sans-serif;
transition: color 0.3s ease;
}
  
  .nav-link:hover {
    color: orange;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  .close-btn {
    display: none; /* hidden by default */
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  @media (max-width: 835px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 45%;
      background-color: #030c5b;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 2rem 1.5rem;
      transition: right 0.3s ease-in-out;
      z-index: 999;
    }
  
    .nav.show {
      right: 0;
    }
  
    .menu-toggle {
      display: block;
    }

    .nav-link{
      padding: 0.5rem 0;
    }
    .close-btn {
      display: block;
      text-align: right;
      font-size: 2rem;
      border: none;
      cursor: pointer;
      margin-bottom: 1rem;
      background: none;
    }
    
.header.scrolled .menu-toggle {
  color: black;
}
.header.scrolled .nav-link {
  color: rgb(250, 247, 247) !important;
}
  }

.scrolled .nav-link {
  color: black !important;
}
.scrolled .contact-button {
  background-color: black;
  color: white;
}
.scrolled .logo-text {
  color: black;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 448px;
  background: url("/assets/aboutusherosectionimg.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center bottom;
  margin-top: 4.2rem;
} 

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.1) 75%, transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;

}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding: 0.6rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.hero-text p {
  font-size: 1.1rem;
  color: #ddd;
}

/* .section {
  padding: 0 2rem 2rem 2rem;
  margin: auto;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #054ef8;
} */

.about-section {
  display: flex;
  width: 100%;
  min-height: 520px;
  background: #ffffff;
}


.capexil-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  margin: 1rem 0 1.4rem;
  padding: 0.9rem 1rem;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}



.capexil-card img {
  height: 54px;   
  width: auto;
  object-fit: contain;
}



.capexil-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}


.about-text {
  flex: 1;
  padding: 4rem 3.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}


.about-image {
  flex: 1;
  height: auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.2rem;
}

.about-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== BOX (SPECIALIZATION) ===== */
.about-box {
  background: #f4f6f8;
  padding: 1.4rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.sub-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #111;
}

/* ===== LIST ===== */
.about-list {
  padding-left: 1rem;
}

.about-list li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* ===== HIGHLIGHT LINE ===== */
.highlight-line {
  font-weight: 600;
  color: #000;
  margin-top: 0.5rem;
}

/* ===== MOBILE (IMPORTANT) ===== */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-text {
    padding: 2rem 1.5rem;
  }

  .about-image {
    height: 260px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-intro {
    font-size: 0.95rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }
}

.why-section {
  background: #f8fafc;
  padding: 3rem 1.2rem;
}

.why-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #111827;
}

/* list instead of cards */
.why-list {
  max-width: 900px;
  margin: 0 auto;
}

/* each item */
.why-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.why-item:last-child {
  border-bottom: none;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.dual-cta {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.2rem 1.2rem;
  background: #f8fafc;
}

/* boxes */
.cta-box {
  padding: 1.6rem;
  border-radius: 12px;
  text-align: left; /* 🔥 FIXED (more professional) */
}

/* primary */
.cta-box.primary {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

/* secondary */
.cta-box.secondary {
  background: #ffffff; /* 🔥 less faded */
  border: 1px solid #e5e7eb; /* 🔥 remove dashed */
  opacity: 0.95; /* slight difference only */
}

/* heading */
.cta-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

/* intro */
.cta-intro {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

/* bullets */
.cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 1.3rem;
}

.cta-points li {
  font-size: 0.9rem; /* 🔥 slightly bigger */
  color: #1f2937;   /* 🔥 stronger contrast */
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* buttons */
.cta-box a {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* primary button */
.cta-box.primary a {
  background: #ff6600;
  color: #fff;
}

.cta-box.primary a:hover {
  background: #e65c00;
}

/* secondary button */
.cta-box.secondary a {
  border: 1px solid #374151;
  color: #374151;
}

.cta-box.secondary a:hover {
  background: #374151;
  color: #fff;
}

/* desktop */
@media (min-width: 768px) {
  .dual-cta {
    flex-direction: row;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .cta-box {
    flex: 1;
  }

  .cta-box h3 {
    font-size: 1.3rem;
  }

  .cta-points li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .story {
    flex-direction: column;
  }
}

@media (max-width: 462px) {
  .logo-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 370px) {
  .logo-text {
    display: none;
  }
  .company-icon{
  width: 2.1rem;
  height: 2.1rem;
  }
}
.footer {
  background: #f9fafb;
  color: #1f2937;
  padding: 3rem 1.2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  gap: 2rem;
}


.footer-col h3,
.footer-col h4 {
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-text {
  color: #4b5563;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: #374151;
}

.footer-col a:hover {
  color: #ff6600;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer-trust img {
  height: 50px;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-trust img{
    height: 60px;
  }
} 
