:root {
  --brand-blue: #00aeef;
  --text-dark: #1a1a1a;
  --text-gray: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #0b0f1a;
  background: #ffffff;
}



.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}




/* HERO */
.hero {
  height: 90vh;
  background: url("../images/about us 1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 850px;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.primary-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  cursor: pointer;
}
/* ✅ Use default text color, remove underline */
.primary-btn a {
  text-decoration: none;
  /* remove underline */
  color: inherit;
  /* 🔥 use default text color */
  font-weight: inherit;
  /* keep normal text weight */
}

.secondary-btn {
  background: #ffffff;
  color: #0d6efd;
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  cursor: pointer;

}

/* ✅ Use default text color, remove underline */
.secondary-btn a {
  text-decoration: none;
  /* remove underline */
  color: inherit;
  /* 🔥 use default text color */
  font-weight: inherit;
  /* keep normal text weight */
}





/* Optional: hover consistency */
.secondary-btn a:hover {
  color: #1677ff;
}









/* JOURNEY */
.journey {
  padding: 90px 80px;
}

.journey h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.journey-content p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4b4f5c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .header {
    padding: 16px 30px;
  }

  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .journey {
    padding: 70px 30px;
  }

  .journey-content {
    grid-template-columns: 1fr;
  }
}





/* core values ..................................*/





.value-card .icon svg path {
  fill: #1FE7F9FF;
}


.core-values {
  padding: 40px 40px;
  background: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}


/* .values-card svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.values-card:hover svg {
  animation: svgPulse 0.6s ease-in-out infinite;
} */








.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}




.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}


.value-card .icon svg {
  width: 42px;
  height: 42px;
  transition: transform 0.35s ease;
}


.value-card:hover .icon svg {
  transform: scale(1.3);
}




@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.value-card:hover .icon svg {
  animation: iconPulse 0.8s ease-in-out infinite;
}





.core-values h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.core-values .subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.center-card {
  transform: translateY(-20px);
}

/* .icon {
  font-size: 36px;
  color: #00aaff;
  margin-bottom: 20px;
} */

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    transform: none;
  }
}







/* 
leadership............................................................ */
/* 
.leadership {
  background: #ffffff;
  padding: 80px 0;
}

.leadership h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.leadership .subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* Backgrounds */
/* 
.beige { background: #f5e9d9; }
.gray { background: #e5e7eb; }
.mint { background: #d1fae5; }
.lavender { background: #ede9fe; }
.green { background: #dcfce7; }
.yellow { background: #fef3c7; }

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card .role {
  display: block;
  font-size: 14px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.team_toggle p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
} */
/* 
responce adding.... */
/* 
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
} */






/* awards and cirtificates .........................*/

/* 
.awards {
  background: #ffffff;
  padding: 80px 0;
}

.awards h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.award-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.award-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.award-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.award-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
} */


/* Third card horizontal layout */
/* 
.award-card.horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.award-card.horizontal img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
} */

/* responce add ...*/
/* 
@media (max-width: 992px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-card.horizontal {
    flex-direction: column;
    align-items: flex-start;
  }
} */

/* foter.... */












/* 4. Footer Section (dddd.JPG) */
footer {
    background: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h5 {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-col ul {
    list-style: none;
    padding: 0;

}








footer .addlogo img {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

footer .addlogo a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



.footer-links a {
    color: #6b7280;
    text-decoration: none;
}










/* .footer-col li { 
            margin-bottom: 10px;
         } */


.footer-col a {
    /* margin-bottom: 10px; */
    color: #6b6b6b;
    text-decoration: none;
    line-height: 2.2;
}

.footer-col a:hover {
    color: #1677ff;
}

/* Image 4 specific: Social icons are BLACK */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 18px;
    color: #333;
    /* As seen in image 4 left side */
}










.social-icons a {
    text-decoration: none;
    color: inherit;
}

.social-icons a:hover i {
    color: #1677ff;
}

/* Contact info links styling */
.contact-info a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1677ff;
}











/* Image 4 specific: Contact icons are BLUE */
.contact-info p i {
    color: var(--brand-blue);
    /* As seen in image 4 right side */
    width: 20px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 60px;
}

@media (max-width: 768px) {

    .office-grid,
    .support-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}