* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b2d45;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* LOGO */
.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.logo span {
  color: #ff6a00;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* Hover underline (pro touch) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.btn-nav {
  background: #ff6a00;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

.btn-nav::after {
  display: none;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    width: 100%;
    background: #0b2d45;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/* MISSION */
.mission {
  padding: 5rem 0;
  background: #f8f9fb;
}

.mission-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  background: #ff6a00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
}

/* DIAGONAL */
.diagonal {
  position: relative;
  margin-top: -60px;
}

.diagonal img {
  width: 100%;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

/* VALUES */
.values,
.benefits {
  padding: 5rem 0;
}

.section-tag {
  color: #ff6a00;
  font-weight: 600;
}

.section-intro {
  max-width: 600px;
  margin: 1rem 0 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card i {
  font-size: 2rem;
  color: #ff6a00;
  margin-bottom: 1rem;
}

.card.light {
  background: #f8f9fb;
}

/* CTA */
.cta {
  background: #0b2d45;
  color: #fff;
  padding: 4rem 0;
}

.cta-box {
  text-align: center;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 1rem;
}

.site-footer {
  background: #0e0e0e;
  color: #fff;
  padding: 3rem 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-brand .brand-text {
  margin: 1rem 0;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-column h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.footer-links li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-list a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.2s;
}

.contact-list a:hover,
.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1rem;
  transition: 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}

.site-footer .copyright {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}


  .nav-links {
    gap: 1rem;
  }

.diagonal {
  position: relative;
  max-height: 420px;       /* controls how tall it is */
  overflow: hidden;
}

.diagonal img {
  width: 100%;
  height: 420px;           /* same as container */
  object-fit: cover;      /* crops image nicely */
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

@media (max-width: 768px) {
  .diagonal img {
    height: 260px;
  }
}

/* FOOTER BASE */
.site-footer {
  background: #0d0d0d;
  color: #ffffff;
  padding: 3rem 0;
  font-family: inherit;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* BRAND COLUMN */
.footer-brand .logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-text {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.footer-brand .copyright {
  opacity: 0.7;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* FOOTER HEADINGS */
.footer-column h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* LINKS LIST */
.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* LINK STYLES */
.footer-links a,
.contact-list a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s ease;
}

.footer-links a:hover,
.contact-list a:hover {
  opacity: 1;
}

/* SOCIAL ICONS */
.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  color: #ffffff;
  font-size: 1rem;
  opacity: 0.9;
  transition: 0.2s ease;
}

.social-links a:hover {
  opacity: 0.6;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 0.65rem 1rem;
  background: #ffffff;
  color: #0d0d0d;
  border-radius: 6px;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.cta-button:hover {
  opacity: 0.85;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .cta-button {
    width: 100%;
    text-align: center;
  }
}


.team {
  padding: 4rem 0;
  background: #f8f8f8;
  color: #0d0d0d;
}

.team .section-tag {
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1.5rem;
  text-align: center;
}

.team .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card h4 {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 600px) {
  .team-card img {
    width: 100px;
    height: 100px;
  }
}

.portfolio-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #0d0d0d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}

.portfolio-btn:hover {
  background: #333;
}


.process-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.process-card {
  background: #fff; /* White card */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px; /* responsive width */
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #007BFF; /* or your brand color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 15px;
}

/* Section header */
.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header .section-tag {
  display: block;
  font-size: 14px;
  color: #FFA500; /* Regular orange color */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #333;
}

/* Process cards */
.process-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.process-card {
  background: #fff; /* White card */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px; /* responsive width */
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #FFA500; /* Same orange color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 15px;
}


/* Section Header */
.values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px; /* center and add spacing from cards */
}

.values-header .section-tag {
  display: block;
  font-size: 14px;
  color: #FFA500; /* your consistent orange color */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.values-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.values-header .section-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Individual Card */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card i {
  font-size: 36px;
  color: #FFA500; /* orange icon color */
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
