/* =======================
   Global Styles
======================= */
body.main {
  position: relative;
  min-height: 100vh;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #000;
}

/* =======================
   About Us Section
======================= */
.about-title {
  font-weight: 900;
  font-size: 4rem;
  line-height: 0.9;
}

.about-black {
  color: #000;
}

.about-orange {
  color: #FF6B35;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  /* font-weight: 600; */
}

/* =======================
   Why Us Section
======================= */
.why-heading {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.black-text {
  color: #000;
}

.orange-text {
  color: #FF6B35;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}


.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.checkbox-icon {
  width: 22px;   /* adjust size to match your design */
  height: auto;
  margin-right: 12px;
}

.why-list i {
  color: #FF6B35;
  margin-right: 10px;
}

.checkbox-icon {
  width: 40px;   /* adjust size to match your design */
  height: auto;
  margin-right: 12px;
}

.why-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* =======================
   Vision & Mission
======================= */
.vision-block {
  background-color: #f8f9fa;
}

.mission-block {
  background-color: #FF6B35;
  color: #fff;
}

.section-title {
  font-weight: 900;
  font-size: 2.5rem;
}

.vision-title,
.mission-title {
  font-size: 1.5rem;
  font-weight: 900;
}

.vision-text,
.mission-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =======================
   Values Section
======================= */
.section-heading {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.number-circle {
  width: 50px;
  height: 50px;
  border: 6px solid #000;   /* orange outline */
  border-radius: 50%;
  color: #000;              /* number color */
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;      /* white background */
  flex-shrink: 0;              /* prevent shrinking */
  transition: all 0.3s ease;
}

.value-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Optional hover effect */
.value-item:hover .number-circle {
  background-color: #f58220;
  color: #fff;
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .values-container {
    align-items: flex-start; /* make whole list left aligned */
  }

  .value-item {
    justify-content: flex-start; /* push numbers + text to left */
  }

  .number-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 10px; /* ensure spacing from text */
  }

  .value-text {
    font-size: 1.2rem;
  }
}


/* =======================
   Experience Section
======================= */
.experience-image-container {
    background: #f58220;
  text-align: center;
}

.experience-image {
  max-width: 100%;
  height: auto;
}

.experience-content {
  padding: 3rem;
}

.experience-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #FF6B35;
  font-weight: 700;
}

/* =======================
   Credentials Section
======================= */
.credentials-section {
  padding: 5rem 0;
  background: #fff;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.credential-card {
  background: #f58220;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.credential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-logo img {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
  max-width: 150px;
  margin-top: 1rem;
}
.our{
    color: #f58220;
}
/* =======================
   Responsive Styles
======================= */
@media (max-width: 992px) {
  .about-title {
    font-size: 3rem;
    text-align: center;
  }

  .about-content {
    text-align: center;
    margin-top: 1rem;
  }

  .why-heading {
    text-align: center;
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .experience-content {
    padding: 2rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .values-container {
    align-items: center;
  }

  .value-text {
    font-size: 1.1rem;
  }

  .experience-content {
    padding: 1.5rem;
  }

  .credential-card {
    padding: 1.5rem;
  }
}


/* ===========================
   WHY US SECTION
   =========================== */
.why-us {
    background-color: var(--white);
    padding: 80px 0;
}

.whyus-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.whyus-heading .black-text {
    color: var(--primary-black);
}

.whyus-heading .orange-text {
    color: #f58220 !important;
    color: var(--primary-orange);
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-color);
}

.why-list i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.whyus-image {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
    .whyus-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .why-list {
        text-align: left;
    }

    .whyus-image {
        margin-top: 2rem;
        max-width: 100%;
    }
}
/* whats app float */
.whatsapp-float {   
    position: fixed;   
    bottom: 20px;   
    left: 20px;   
    background-color: #25D366;   
    color: white;   
    border-radius: 50%;   
    padding: 15px 18px;   
    font-size: 28px;   
    z-index: 1000;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);   
    transition: background-color 0.3s ease;   
    text-decoration: none;   
    display: flex;   
    align-items: center;   
    justify-content: center; 
}  

.whatsapp-float:hover {   
    background-color: #1ebe57; 
}

/* ===========================
   NAVBAR STYLES
   =========================== */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(206, 205, 205, 0.5) !important; /* default transparent */
    
}

/* Solid background after scroll */
.navbar.scrolled {
    background-color: rgba(206, 205, 205, 1) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Nav Links */
.navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #f58220 !important;
}

.navbar .nav-link.active {
    font-weight: 800 !important;
    color: #000 !important;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none; 
}

.social-icon:hover {
    background-color: #f58220;
    border-color: #f58220;
    color: #fff !important;
}

/* Quote Button */
.get-quote-btn {
    border-radius: 0px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .navbar .nav-link {
        text-align: center;
        padding: 0.7rem;
    }

    .social-icon {
        margin: 0 5px;
    }

    .get-quote-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}
