body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
}


/* ===== WhatsApp Icon ===== */
.whatsapp-icon {
position: fixed;
bottom: 20px;
right: 20px;
width: 55px;
height: 55px;
cursor: pointer;
z-index: 9999;
}

/* ===== Popup Box ===== */
.whatsapp-popup {
position: fixed;
bottom: 85px;
right: 20px;
width: 220px;
background: #fff;
padding: 15px;
border-radius: 12px;
box-shadow: 0 6px 25px rgba(0,0,0,0.15);
text-align: center;
display: none;   /* IMPORTANT */
z-index: 9998;
}

.whatsapp-popup p {
font-size: 15px;
margin-bottom: 12px;
}

.wa-btn {
background: #25D366;
color: #fff;
padding: 10px 18px;
border-radius: 8px;
text-decoration: none;
display: inline-block;
}

.about-detail-section {
  text-align: center;
  padding: 80px 20px;
}

.logo-container img {
  width: 20%;
  margin-bottom: 30px;
  
}

.company-info p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Stats --- */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  
}

.stat-box {
  background: #fdfafa;
  padding: 30px 50px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid transparent; /* Subtle top border for visual interest */
  margin-top: 100px;
}


.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  /* Color of the top border on hover, using your brand color */
  border-top-color: #aa3b04e5; 
}
.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 2rem;
  color: #aa3b04e5;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  color: #444;
}

/* --- CEO Profile Modern Layout --- */
.ceo-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 100px 10%;
  flex-wrap: wrap;
  border-top: 1px solid #aa3b04e5; /* thin elegant line like example */
  width: 70%;       /* reduce border length */
  margin: 0 auto;   /* center it horizontally */

}

.ceo-photo img {
  width: 500px;
  height: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* --- Text side --- */
.ceo-info {
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.ceo-info h3 {
  font-size: 2rem;
  color: #aa3b04e5; /* elegant warm tone */
  font-weight: 700;
  margin-bottom: 8px;
}

.ceo-info .title {
  color: #777;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 0.95rem;
}



/* --- Social icons --- */

.social-icons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.social-icons a {
  font-size: 1.7rem;
  color: #aa3b04e5;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #aa3b04e5;
  transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ceo-profile {
    flex-direction: column-reverse;
    text-align: center;
  }

  .ceo-info {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* --- FOOTER MAIN CONTAINER --- */
.dark-footer-section {
  padding: 60px 20px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-color: #aa3b04e5; /* Brand color */

    /* Subtle embossed texture */
    background-image: 
    linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* --- REVIEWS SECTION --- */

/* Grid Layout */

/* Review Card */

/* Client Photo */

/* Client Info */

/* Review Text */

/* Rating Stars */

/* Responsive Adjustments */




.footer-container {
  display: flex; /* Use Flexbox for column layout */
  flex-wrap: wrap; /* Allow columns to stack on smaller screens */
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-column {
  padding: 0 15px;
  margin-bottom: 30px;
  /* Base width for columns (30% for 3 columns) */
  flex: 1 1 30%; 
  min-width: 250px; /* Ensures minimum readable width before stacking */
}

/* --- HEADINGS AND TEXT --- */
.footer-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff; /* Highlight color for headings */
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
}

/* Underline effect for headings */
.footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #f1f1f1;
  margin-top: 8px;
}

/* --- CONTACT LIST STYLING --- */
.contact-list, .quick-links-list {
  list-style: none;
  padding: 0;
}

.contact-list li, .quick-links-list li {
  margin-bottom: 15px;
}

.contact-list a, .quick-links-list a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-list a:hover, .quick-links-list a:hover {
  color: #8e2f00; /* Hover effect using brand color */
}

.contact-list i {
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  width: 20px; /* Align text vertically */
}

/* --- SOCIAL ICON --- */
/* --- QUICK LINKS LIST (Vertical) --- */
.quick-links-list {
  display: flex;
  flex-direction: column; /* Stack vertically */
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 15px; /* Space between each link */
  padding: 0;
  border-bottom: none; /* Remove underline for vertical layout */
}

.quick-links-list li a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links-list li a:hover {
  color: #ad5604; /* Slight accent on hover */
}



/* --- COPYRIGHT BAR --- */
.copyright-bar {
  text-align: center;
  padding: 20px ;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #aa3b04e5; /* Slightly darker bottom bar */
}

.copyright-bar p {
  margin: 0;
  font-size: 0.85rem;
  color: #fff;
}
/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; /* Stack columns vertically on phones/tablets */
  }
  .footer-column {
      flex: 1 1 100%;
      min-width: unset;
      text-align: center;
  }
  .footer-heading {
      text-align: center;
  }
  /* Center the underline for stacked columns */
  .footer-heading::after {
      margin: 8px auto 0;
  }
}
/* Update your existing .quick-links-list styles */
.quick-links-list {
  display: flex;
  flex-wrap: wrap; 
  gap: 0; /* Remove gap */
}

/* Completely change the look of the list item */
.quick-links-list li {
  margin-right: 25px; /* Use margin for spacing instead of gap/padding */
  padding: 0; /* Remove padding */
  border: none; /* Remove border */
  background-color: transparent; /* Remove background */
  
  /* Add a subtle line under the text for definition */
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.quick-links-list li:hover {
  background-color: transparent;
  transform: none; /* Remove previous transform effect */
}

/* Update your existing .quick-links-list a styles */
.quick-links-list a {
  font-size: 1rem; 
  color: #ccc;
  text-decoration: none;
  padding-bottom: 5px; /* Space between text and underline */
}

.quick-links-list li:hover a {
  color: #f1f1f1; /* Keep text white on hover */
}

/* ------------------- MOBILE RESPONSIVE FIXES ------------------- */
@media (max-width: 768px) {

/* Prevent sideways scrolling */
body, html {
  overflow-x: hidden;
}

/* Add side padding so everything looks clean */
.about-detail-section {
  padding: 0 20px;
  text-align: center;
}

/* Center logo */
.logo-container img {
  height: 200px;
  width: 250px;
  margin: 0 auto;
  display: block;
}

/* Stats section */
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.stat-box {
  padding: 20px 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

/* CEO Section → Stack vertically on phone */
.ceo-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.ceo-info {
  order: 1;
  text-align: center;
}

/* CEO name */
.ceo-info h3 {
  font-size: 26px;
  margin-bottom: 5px;
}

/* CEO title */
.ceo-info .title {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Social icons center aligned */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.social-icons i {
  font-size: 22px;
  color: #b5632f;
}

/* CEO Image Styling */
.ceo-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 10px;
}

/* About text paragraph */
.company-info p {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 30px;
}
}
