/* about.css - Full styles for About Us page (built on provided navbar snippet) */

/* ---------- VARIABLES & RESET ---------- */
/* style.css - Navbar styles (Teal theme) */
:root{
  --teal: #0d9488;     /* main teal */
  --teal-dark: #0b776e;
  --muted: #6b7280;
  --bg: #ffffff;
  --max-width: 1200px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html,body { height:100%; }
body {
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#0f172a;
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
 
  
}

/* Utility container */
/*.container {
  width: calc(100% - 2 * var(--container-padding));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--container-padding);
}

/* ---------- NAVBAR ---------- */
.site-header {
  width:100%;
  background: #fff;
  border-bottom: 1px solid #eef2f4;
  position: fixed;
  top:0;
  z-index:100;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: 14px 20px;
  position:relative;
}

/* Logo (text inside logo) */
/* Logo (image) */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;   /* adjust as per your logo */
  width: auto;
  display: block;
}


.logo:focus { outline: 3px solid rgba(13,148,136,0.18); }

/* Nav menu wrapper */
.nav-menu {
  display:flex;
  align-items:center;
  gap:1.25rem;
}

/* Nav links */
.nav-links {
  display:flex;
  gap: 10px;
  margin:0;
  padding:0;
  list-style:none;
  align-items:center;
}

.nav-links li a {
  display:inline-block;
  color: #0f172a;
  text-decoration:none;
  padding: 8px 10px;
  border-radius:8px;
  font-weight:500;
  position:relative;
  transition: transform .15s ease, color .18s ease;
}

/* animated underline on hover/focus */
.nav-links li a::after {
  content: "";
  position:absolute;
  left:0;
  bottom:-6px;
  height:3px;
  width:0;
  background: var(--teal);
  border-radius:2px;
  transition: width .22s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}

/* Nav actions (buttons) */
.nav-actions {
  display:flex;
  align-items:center;
  gap:10px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 9px;
  font-weight:600;
  text-decoration:none;
  font-size:0.95rem;
  transition: transform .15s ease, box-shadow .15s ease;
}

/* Primary CTA */
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 30px rgba(13,148,136,0.12);
}
.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  filter: brightness(.98);
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1px solid var(--teal);
}
.btn-outline:hover,
.btn-outline:focus {
  background: rgba(13,148,136,0.06);
  transform: translateY(-2px);
}

/* Hamburger (mobile) */
.nav-toggle {
  display:none;
}
.nav-toggle-label {
  display:none;
  width:42px;
  height:42px;
  border-radius:9px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle-label .hamburger {
  display:block;
  width:20px;
  height:2px;
  background: #111827;
  position:relative;
  transition: all .18s ease;
}
.nav-toggle-label .hamburger::before,
.nav-toggle-label .hamburger::after {
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background: #111827;
  transition: all .18s ease;
}
.nav-toggle-label .hamburger::before { top:-6px; }
.nav-toggle-label .hamburger::after { top:6px; }

/* focus accessibility */
.nav-links li a:focus { outline: 3px solid rgba(13,148,136,0.12); border-radius:6px; }

/* ========= MOBILE RESPONSIVE ========= */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 16px;
    gap: 0.5rem;
  }

  .nav-links {
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Show hamburger menu */
  .nav-toggle {
    display: block;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-bottom: 1px solid #eef2f4;
    z-index: 99;
  }

  /* Expand menu when checkbox is checked */
  .nav-toggle:checked ~ .nav-menu {
    max-height: 500px; /* adjust if menu is longer */
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
  }

  .nav-links li a {
    padding: 12px 0;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    padding: 12px 0;
  }

  .btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 35px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .nav-links li a {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}




/* Ensure all sections align with navbar width */
section {
  width: 100%;
  display: flex;
  justify-content: center;
}

section > .container,
.hero,
.story .story-content,
.mission-vision .container,
.how-we-work .container,
.team .container,
.why-choose .container,
.testimonials .container,
.cta .cta-content,
.footer-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 75vh; /* full screen */
  background: url("/images/Designer (9).png") no-repeat center center;
  background-size: contain;   /* full image without crop */
  background-position: right center; /* image ko right me align karo */
  background-color: #fff;     /* blank area left side ka white rahe */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text left side me rahe */
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* halka overlay readability ke liye */
}

.overlay {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 600px;
  text-align: left;  /* left align text */
}

.hero-content h1 {
  color: red;
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-text-stroke: 1px black; /* Black outline */
}

.hero-content h1 span {
  font-size: 2.3rem;
  color: #00bfa6;            /* Teal highlight */
  -webkit-text-stroke: 1px black; /* Black outline */
  -webkit-text-fill-color: #00bfa6; /* Fill color */
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 240px;
  line-height: 1.6;
  color: black;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  background: #00bfa6;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.btn:hover {
  background: #009f8a;
  box-shadow: 0 6px 18px rgba(0, 191, 166, 0.5);
}




/* ---------- STORY ---------- */
/* ---------- STORY ---------- */
.story {
  padding: 20px 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.story .story-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story .story-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.story .image-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.story img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story img:hover {
  transform: scale(1.05);
}

.story .text h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  position: relative;
}

.story .text h2 span {
  color: #00bfa6; /* teal accent */
}

.story .text p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .story .story-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .story .text h2 {
    font-size: 1.6rem;
  }
}


/* ---------- MISSION & VISION ---------- */
/* ---------- MISSION & VISION ---------- */
.mission-vision {
  padding: 20px 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.mv-box {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  /* Top + bottom shadow */
  box-shadow: 
    0 -4px 8px rgba(0, 0, 0, 0.2),  /* top shadow */
    0  4px 12px rgba(0, 0, 0, 0.5); /* bottom shadow */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15); /* deeper hover shadow */
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #00bfa6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.4); /* glow effect */
}

.mv-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* makes icons white */
}

.mv-box h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #222;
}

.mv-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}


/* ---------- HOW WE WORK (STEPS) ---------- */
/* ---------- HOW WE WORK ---------- */
.how-we-work {
  padding: 20px 0;
  background: #f9fafb;
  text-align: center;
}

.how-we-work h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.how-we-work .subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.step {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mobile-frame {
  width: 200px;      /* increased width */
  height: 380px;     /* increased height */
  margin: 0 auto 24px;
  background: #000;
  border-radius: 32px;
  padding: 12px;
  box-shadow: inset 0 0 6px rgba(255,255,255,0.25),
              0 6px 18px rgba(0,0,0,0.15); /* extra depth */
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-frame img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #00bfa6; /* teal highlight */
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* 5. Our Team */
.team {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2.2rem;
  color: #00bfa6;
  margin-bottom: 10px;
}

.team p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
   box-shadow: 
    0 -4px 8px rgba(0, 0, 0, 0.2),  /* top shadow */
    0  4px 12px rgba(0, 0, 0, 0.5); /* bottom shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit:contain;
  margin: 0 auto 15px; /* Centers the image */
  border: 4px solid #00bfa6;
  display: block; /* Important for margin auto to work */
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.3rem;
  color: #333;
}

.team-member p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}


/* Why Choose Us */
.why-choose {
  background: linear-gradient(135deg, #f9f9f9, #eefdfb);
  padding: 10px 10px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #00bfa6;
}

.why-choose .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.reason-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 
    0 -4px 8px rgba(0, 0, 0, 0.2),  /* top shadow */
    0  4px 12px rgba(0, 0, 0, 0.3); /* bottom shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.reason-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00bfa6;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.reason-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}




/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0fdfa, #e6fffa);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #00bfa6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.30);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,1);
}

.testimonial-card .quote {
  font-size: 50px;
  color: #00bfa6;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.15;
  font-family: serif;
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
}


/* ---------- CTA ---------- */
.cta {
  margin: 40px 0;
  padding: 36px 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(13,148,136,0.12), rgba(13,148,136,0.06));
  text-align: center;
  box-shadow: var(--card-shadow);
}
.cta h2 { margin: 0 0 8px 0; font-size: 1.3rem; }
.cta p { margin: 0 0 14px 0; color: var(--muted-2); }

/* ---------- FOOTER ---------- */
/* Footer (teal box + bottom note) */
.site-footer {
  padding: 30px 16px 10px;            /* outer spacing */
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;               /* page background behind footer */
}

/* teal container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #0d9488;               /* teal */
  color: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(13,148,136,0.12);
}

/* each column */
.footer-col {
  flex: 1 1 250px;                   /* grow/shrink, min width */
  min-width: 220px;
}

/* Left column list should stay left-aligned */
.footer-col:first-child {
  text-align: left;
}

/* Middle column center aligned (contact) */
.footer-col:nth-child(2) {
  text-align: center;
}

/* Developer column right (center content inside) */
.footer-col.developer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Headings */
.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Quick links list */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color .18s ease, transform .18s ease;
}

.footer-col ul li a:hover {
  color: #fff3b0; /* subtle warm hover */
  transform: translateX(4px);
}

/* Contact text */
.footer-col:nth-child(2) p {
  margin: 8px 0;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

/* Developer portrait */
.developer-pic {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  margin-bottom: 12px;
}

/* Developer name line */
.footer-col.developer p {
  margin: 6px 0 12px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* Social buttons (circular colored backgrounds) */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* Anchor as circle */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* specific platform colors (first = facebook, second = instagram) */
.social-links a:first-child { background: #1877f2; } /* facebook blue */
.social-links a:last-child  { 
  background: radial-gradient(circle at 30% 30%, #fccc63 0%, #f56040 45%, #d6249f 100%); /* instagram-ish */
}

/* social image/icon inside button */
.social-links a img {
  width: 18px;
  height: 18px;
  display: block;
  filter: none; /* if your icons are colored PNGs; if white icons, try filter: invert(1) */
}

/* hover */
.social-links a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Footer bottom note below teal box */
.footer-bottom {
  max-width: 1200px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: #6b6b6b;
}

/* Responsive: stack columns on small screens */
@media (max-width: 880px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
    align-items: stretch;
  }
  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col.developer {
    text-align: center;   /* center for stacked layout */
  }
  .footer-col ul li a { display: inline-block; } /* keep spacing */
}




/* ---------- SMALL HELPERS ---------- */
img { display:block; max-width:100%; }
ul { margin:0; padding:0; list-style:none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 40px; gap: 18px; }
  .hero-img { order: -1; } /* put image above on narrower screens */
  .story .story-content { grid-template-columns: 1fr; }
  .mission-vision .container { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(1, 1fr); }
  .team-grid { grid-template-columns: repeat(1, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(1, 1fr); }
  .reasons { grid-template-columns: repeat(1, 1fr); }
  .footer-container { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 16px; }
  /* show hamburger */
  .nav-toggle { display: block; }
  .nav-toggle-label { display: inline-flex; }
  /* hide normal nav by default on mobile */
  .nav-menu {
    position: fixed;
    right: 16px;
    top: 70px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(2,6,23,0.12);
    padding: 14px;
    display: none;
    width: calc(100% - 32px);
    max-width: 360px;
    flex-direction: column;
    gap: 12px;
  }
  /* make nav-links vertical */
  .nav-links { flex-direction: column; gap: 6px; }
  .nav-links li a { padding: 10px 12px; }
  .nav-actions { justify-content: center; }

  /* when checkbox is checked show menu */
  .nav-toggle:checked ~ .nav-menu,
  .nav-toggle:checked + .nav-toggle-label + .nav-menu {
    display: flex;
  }

  /* compact hero spacing */
  .hero { padding-top: 100px; padding-left: 16px; padding-right: 16px; }
  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .hero-img {
    object-fit: contain;
    height: auto;
  }

  .hero-content {
    padding: 18px 14px;
    
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-content .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
  .team-member img { height: 160px; }
  .nav-menu { top: 64px; max-width: 95%; right: 8px; left: 8px; }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .nav-menu, .nav-toggle-label { display:none !important; }
  .container { padding: 0; max-width: 100%; }
  .site-footer { color: #000; background: #fff; }
}
