* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #000;
  background-color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffe3cf;
  padding: 10px 40px;
  flex-wrap: wrap;
}
.navbar img {
  height: 50px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.navbar ul li a.active {
  border-bottom: 2px solid #000;
}
.contact-btn {
  background: #ffb996;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
  min-width: 250px;
}
.hero-content h1 {
  font-size: 2.5rem;
}
.hero-content h1 span {
  color: #ff7f2a;
}
.hero-content p {
  margin-top: 10px;
  font-size: 1.1rem;
}
.hero-image img {
  width: 100%;
  max-width: 2500px;
  border-radius: 20px;
}

/* Why Robotics */
.why-robotics {
  padding: 50px 20px;
  background: #fff;
}
.why-robotics h2 {
  color: #000;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.why-robotics .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  text-align: center;
}
.card img {
  width: 100%;
  border-radius: 10px;
}
.card p {
  margin-top: 10px;
  font-weight: 500;
}

/* Success Stories */
.success {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffe3cf;
}

.success h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.story {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.video-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
  max-height: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.story .text {
  flex: 1 1 400px;
}

.story .text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.story .text h4 {
  margin: 10px 0 5px;
  font-weight: 600;
}

.story .stars {
  color: #f5b301;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .story {
    flex-direction: column;
    text-align: center;
  }
  .story .text {
    text-align: center;
  }
}


/* Leaders */
.leaders {
  padding: 50px 20px;
  text-align: center;
}

.leaders h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* exactly 5 columns */
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.leaders-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Hover zoom effect */
.leaders-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .leaders-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .leaders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .leaders-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f5e2cc;
  padding: 40px 20px;
  text-align: center;
}
.footer h4, .footer h3 {
  margin-bottom: 10px;
}
.footer p{
  color: #e6590b;
  font-style: bold;
}
.footer-logo {
  height: 100px;
}
.footer-center span {
  color: #ff7f2a;
  font-style: bold;
}
.footer-right ul {
  list-style: none;
}
.footer-right ul li {
  margin: 10px 0;
}
.footer-right ul li a {
  text-decoration: none;
  color: #000;
}
.social-icons img {
  width: 25px;
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .navbar ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    flex-direction: column;
  }
  .story {
    flex-direction: column;
  }
}

/* Mission Page */
.mission-bg {
  background: url('mission Bg.png') center/cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mission-card h3 {
  color: #ff7f2a;
  margin-bottom: 15px;
  font-weight: 700;
}

.mission-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Partners Page */
.partners {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.partner img {
  width: 150px;
  max-width: 100%;
  transition: transform 0.3s ease;
  filter: grayscale(30%);
}

.partner img:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .partner img {
    width: 120px;
  }
}

/* About Page */
.about {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.about-img img {
  width: 80%;
  border-radius: 30px;
  margin-bottom: 30px;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.orange { color: #f47a1f; }
.founder, .developers {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  /*border-top: 2px solid #f8d1b3;*/

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.founder h3, .developers h3 {
  font-size: 2rem;
  color: #a35b2e;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* ✅ Card style for each person */
.founder-card, .developer-card {
  background: #fff6f0;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 700px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
}

.founder-card:hover, .developer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.founder-img{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f8d1b3;
}
.developer-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: contain; /* changed from cover to contain */
  background-color: #fff; /* optional - adds clean background */
  padding: 10px; /* optional - adds breathing space */
  margin-bottom: 15px;
  border: 2px solid #f8d1b3; /* optional - clean border effect */
}


.name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.designation {
  color: #555;
  font-style: italic;
  margin-bottom: 15px;
}

blockquote {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

.partnered {
  margin: 15px 0;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card, .developer-card {
    padding: 30px 20px;
    max-width: 90%;
  }

  .founder-img, .developer-img {
    width: 120px;
    height: 120px;
  }

  blockquote {
    font-size: 0.95rem;
  }
}


/* Offerings Page */
.offerings {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.offerings h2 {
  font-size: 2.2rem;
  color: #a35b2e;
  margin-bottom: 10px;
}

.offerings .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.offer-card {
  background: #fff6f0;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(244, 122, 31, 0.2);
}

.offer-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.offer-card h3 {
  font-size: 1.2rem;
  color: #f47a1f;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .offer-card img {
    width: 60px;
    height: 60px;
  }
  .offer-card {
    padding: 25px 15px;
  }
}

/* Services Page */
.services {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.services h2 {
  font-size: 2.2rem;
  color: #a35b2e;
  margin-bottom: 10px;
}

.services .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #fff6f0;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(244, 122, 31, 0.25);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #f47a1f;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-card img {
    width: 60px;
    height: 60px;
  }
  .service-card {
    padding: 25px 15px;
  }
}

/* Contact Page */
.contact {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  color: #a35b2e;
  margin-bottom: 10px;
}

.contact .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form form {
  background: #fff6f0;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(244, 122, 31, 0.15);
}

.contact-form label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
  color: #a35b2e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f47a1f;
}

.submit-btn {
  background: #f47a1f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #a35b2e;
}

.info-box {
  text-align: left;
  background: #fff6f0;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(244, 122, 31, 0.15);
}

.video-box iframe {
  border-radius: 15px;
  overflow: hidden;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 45px;
  height: 45px;
}

@media (max-width: 768px) {
  .contact-form, .contact-info {
    padding: 20px;
  }
}

/* ---------- Shared additions for Gallery / Events / Blogs / Privacy ---------- */

/* Page hero (reused) */
.page-hero {
  padding: 48px 20px;
  text-align: center;
}
.peach-hero {
  background: #ffe3cf;
}
.white-hero { background: #fff; }
.page-hero h1 { font-size: 2.2rem; margin: 0; color: #000; }

/* ---------- Gallery ---------- */
.gallery-grid-wrap {
  padding: 30px 20px 70px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item img:hover { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  z-index: 1200;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lightbox-controls {
  position: absolute;
  bottom: 24px;
  display:flex;
  gap: 10px;
}
.lightbox-controls button {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
}

/* ---------- Events ---------- */
.events-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}
.events-intro { text-align: left; margin-bottom: 28px; }
.events-intro h2 { font-size: 1.3rem; color: #222; margin-bottom: 12px; }
.events-actions { display:flex; gap:12px; margin-top:10px; flex-wrap:wrap; }
.btn { padding: 10px 22px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; font-weight:600; }
.btn.primary { background: #f7bFA0; color: #000; border-color: #f7bFA0; }
.btn.outline { background: transparent; color: #f47a1f; border-color: #f47a1f; }

/* Events grid (dynamic) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 28px;
  margin-top: 28px;
}
.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(0,0,0,0.08); }
.event-card img { width:100%; border-radius:8px; height:160px; object-fit:cover; display:block; margin-bottom:12px; }
.event-card h4 { margin: 8px 0; color: #222; }
.event-card p { color:#444; line-height:1.5; font-size:0.95rem; }

/* ---------- Blogs ---------- */
.blogs-list { max-width: 1100px; margin: 40px auto; padding: 20px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card a { color: inherit; display:block; text-decoration:none; }
.blog-card img { width:100%; height:170px; object-fit:cover; display:block; }
.blog-card h3 { padding: 12px 12px 0; font-size:1.05rem; color:#111; }
.blog-card .excerpt { padding: 8px 12px 16px; color:#666; font-size:0.95rem; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(0,0,0,0.06); }

/* ---------- Privacy ---------- */
.policy-content { max-width: 900px; margin: 30px auto 70px; padding: 20px; }
.policy-img img { width:100%; border-radius:8px; margin-bottom:20px; }
.policy-text h4 { color:#a35b2e; margin-top:18px; }
.policy-text ul { margin-left: 18px; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); }
  .events-intro h2 { font-size: 1.05rem; }
  .event-card img { height: 140px; }
  .blog-card img { height: 140px; }
  .policy-content { padding: 12px; }
}

