/* FORSEU Clean Modern Theme - Dark Green + Yellow + White */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Remove all unwanted underlines */
a, h1, h2, h3, h4, h5, h6, p, span {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: #0f1f17;
  color: #fefefe;
  line-height: 1.6;
}

/* Header */
.header {
  background: #11241c;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 100px;
  animation: pulse 3s ease-in-out infinite;
}

.brand-text {
  color: #fff8d4;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 0 0 4px #ffeb99;
}

.nav a {
  margin-left: 1.5rem;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #ffd966;
  text-shadow: 0 0 4px #fff5cc;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(to right, #10271c, #08130e);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: #fff8d4;
  text-shadow: 0 0 8px #ffe066;
}

.hero-text p {
  font-size: 1.2rem;
  color: #cccccc;
  margin: 1rem 0 2rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  background: #ffd966;
  color: #1a1a1a;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
  transition: 0.3s;
}

.cta-button:hover {
  background: #fff0b3;
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  color: #fff7c2;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.orbit-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.orbit-box {
  background: #173326;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fffce9;
  min-width: 180px;
  font-weight: 600;
  transition: transform 0.3s;
}

.orbit-box:hover {
  transform: translateY(-10px);
  background: #1e3d2d;
}

/* Mission */
.mission {
  padding: 4rem 2rem;
  background: #0e2018;
  text-align: center;
}

.mission h2 {
  color: #ffeaaa;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-image {
  margin-top: 2rem;
  width: 200px;
  border-radius: 1px;
  box-shadow: 0 px 1px rgba(0,0,0,0.2);
}

/* Why Choose Us */
.choose-us {
  padding: 4rem 2rem;
  text-align: center;
}

.choose-box {
  background: #13291f;
  padding: 2rem;
  border-radius: 12px;
  color: #fff8e6;
  max-width: 260px;
  margin: 1rem;
  box-shadow: 0 4px 10px rgba(255, 235, 130, 0.1);
}

.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: #1d3229;
  padding: 3rem;
  text-align: center;
}

.cta-glow {
  font-size: 2rem;
  color: #fff6cd;
  text-shadow: 0 0 15px #ffd966;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #0a1410;
  padding: 3rem 2rem;
  text-align: center;
  color: #bbb;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #ffe799;
  margin-bottom: 0.5rem;
}

.footer-col a {
  display: block;
  color: #ccc;
  margin: 0.3rem 0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffe066;
  text-shadow: 0 0 3px #fffbd0;
}

.footer-copy {
  font-size: 0.9rem;
  color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  padding: 12px 14px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 0 15px #25d366aa;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .orbit-wrapper, .choose-grid, .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

/* Logo Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}






/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #101820, #1c1c1c);
  color: #ffffff;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 60px 0;
}

/* ===== Header ===== */
.header {
  background: #0d1b14;
  padding: 20px 0;
  border-bottom: 1px solid #1d3a27;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo h1 {
  color: #f4f4f4;
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #f0f0f0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f9d923;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(to right, #182d23, #0f1f14);
  text-align: center;
  padding: 100px 20px;
}

.hero-section h2 {
  font-size: 3rem;
  color: #f9d923;
  margin-bottom: 20px;
}

.hero-section p {
  color: #ccc;
  font-size: 1.2rem;
}

/* ===== About Section ===== */
.about-card {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 2.5rem;
  color: #f9d923;
  margin-bottom: 15px;
}

.about-content p {
  color: #dddddd;
  margin-bottom: 20px;
}

.mission-vision {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.mission, .vision {
  flex: 1;
  background: #162c1f;
  padding: 20px;
  border-left: 5px solid #f9d923;
  border-radius: 8px;
}

.mission h2, .vision h2 {
  color: #f9d923;
  margin-bottom: 10px;
}



/* ===== Core Concept Boxes ===== */
.about-core-boxes {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.core-box {
  background: #1a3024;
  padding: 25px;
  border-left: 4px solid #f9d923;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.core-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: #223e2f;
  box-shadow: 0 0 20px rgba(255, 223, 86, 0.3);
}




@keyframes floatBox {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.core-box h3 {
  color: #f9d923;
  margin-bottom: 10px;
}

.core-box p {
  color: #e0e0e0;
}

/* ===== FAQ Section ===== */
.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f9d923;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #24382b;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  color: #f1f1f1;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question:hover {
  background: #2f4b38;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #1c2f25;
  padding: 0 20px;
  border-left: 3px solid #f9d923;
  border-radius: 0 0 6px 6px;
  margin-top: 5px;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  background: #162a1f;
  padding: 80px 20px;
}

.cta-title {
  font-size: 2rem;
  color: #f9d923;
  margin-bottom: 20px;
}

.cta-button {
  background: #f9d923;
  color: #0d1b14;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffe450;
}

/* ===== Footer ===== */
.footer {
  background: #0c1a13;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  color: #f9d923;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-size: 0.9rem;
}

.arrow {
  margin-right: 10px;
  transition: transform 0.3s;
}

.faq-question.active .arrow {
  transform: rotate(90deg);
}

/* ===== ROOT THEME (matches Home / About) ===== */
:root{
  --dark-bg:#0e1a13;
  --card-bg:#16281e;
  --accent:#ffeb3b;
  --text-light:#e0e0e0;
  --text-dim:#b8b8b8;
}

/* ===== ROOT THEME (matches Home / About) ===== */
:root{
  --dark-bg:#0e1a13;
  --card-bg:#16281e;
  --accent:#ffeb3b;
  --text-light:#e0e0e0;
  --text-dim:#b8b8b8;
}




/* ===== GLOBAL RESET ===== */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;scroll-behavior:smooth}
body{background:var(--dark-bg);color:var(--text-light);line-height:1.7;overflow-x:hidden}
.container{width:90%;max-width:1200px;margin:auto;padding:3rem 0}
h1,h2,h3{color:var(--accent);font-weight:600}
p{color:var(--text-dim)}

/* ===== HERO ===== */
.contact-hero{background:url('13.jpg') center/cover no-repeat;height:420px;display:flex;align-items:center;justify-content:center;position:relative}
.contact-hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(2px);display:flex;align-items:center;justify-content:center}
.contact-hero-box{background:rgba(255,255,255,.05);padding:2rem 3rem;border-radius:1rem;text-align:center;animation:pop 0.9s ease-out}
@keyframes pop{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}

/* ===== CONTACT INFO ===== */
/* Contact Section Layout */
.contact-section {
  padding: 60px 10%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-title {
    font-size: 26px;
  margin-bottom: 40px;
  color: #ffeb3b;
  text-align: center;   /* 👈 Title center hoga */
  width: 100%;   
}

.info-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.info-box i {
  font-size: 22px;
  margin-right: 15px;
  color:#ffeb3b; /* icons same green theme */

}

.info-box h4 {
  margin: 0;
  font-size: 19px;
  color: #ffeb3b; /* heading thoda brighter green */
  align-items:center;
}

.info-box p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #fff;
  align-items: center;
}

/* Right side illustration */
.contact-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}
.contact-right img {
  width: 100%;
  max-width: 600px; /* jitna bada chahiye adjust kar lo */
  height: auto;
}

.contact-illustration img {
  max-width: 100%;
  height: auto;
}

/* swipe effect */
.contact-box::before{content:"";position:absolute;inset:0;transform:translateX(-100%);background:rgba(255,255,255,.04);pointer-events:none;transition:transform .55s cubic-bezier(.25,.8,.25,1)}
.contact-box:hover::before{transform:translateX(0)}

/* ===== IMPACT NUMBERS ===== */
.impact-section{background:#102219;text-align:center;padding:4rem 1rem}
.impact-wrapper{background:var(--card-bg);max-width:880px;margin:auto;padding:2.5rem 2rem;border-radius:16px;box-shadow:0 0 25px rgba(0,0,0,.35)}
.impact-numbers{display:flex;flex-wrap:wrap;justify-content:space-around;margin-top:2rem}
.impact-box{flex:1 1 170px;padding:1rem;transition:transform .4s ease;border-radius:10px;overflow:hidden;position:relative}
.impact-box:hover{transform:translateY(-6px)}
.impact-box span{display:block;font-size:2.4rem;color:var(--accent);font-weight:700;margin-bottom:.25rem;transition:.3s}
@keyframes slideLeft{from{opacity:0;transform:translateX(-60px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideRight{from{opacity:0;transform:translateX(60px)}to{opacity:1;transform:translateX(0)}}
.impact-box:nth-child(odd){animation:slideLeft .9s forwards}
.impact-box:nth-child(even){animation:slideRight .9s forwards}

/* ===== MEETING FORM ===== */
.meeting-section{text-align:center;padding:4rem 1rem}
.meeting-form{max-width:600px;margin:auto;background:var(--card-bg);padding:2.2rem;border-radius:14px;box-shadow:0 8px 20px rgba(0,0,0,.35)}
.meeting-form label{display:block;margin:.6rem 0;color:var(--accent);font-size:.9rem}
.meeting-form input,.meeting-form textarea{width:100%;padding:.75rem;border:none;border-radius:8px;background:#1f3528;color:#fff;margin-bottom:1.1rem;font-size:.95rem}
.meeting-form input[type="date"],.meeting-form input[type="time"]{color:#fff}
.cta-button{background:var(--accent);color:#000;padding:.85rem 2rem;border:none;border-radius:50px;font-weight:600;cursor:pointer;transition:transform .3s,box-shadow .3s}
.cta-button:hover{transform:translateY(-3px);box-shadow:0 6px 14px rgba(0,0,0,.4)}
.available-tag{margin-top:1rem;color:#7CFC00;font-style:italic}

/* ===== FOOTER ===== */
footer{background:#05120b;color:var(--text-dim);padding:3rem 0;font-size:.9rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between}
footer h3{color:var(--accent);margin-bottom:.8rem;font-size:1.1rem}
footer ul{list-style:none;padding:0}
footer li{margin:.3rem 0}
footer a{color:var(--text-dim);text-decoration:none}
footer a:hover{color:var(--accent)}



/* ===== MEDIA ===== */
@media(max-width:600px){.contact-box{width:46%}.impact-box{flex:1 1 100%;margin-top:1rem}}







/* ======== GENERAL STYLES ======== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #071a0f;
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

h1, h2, h3 {
  color: #d4ff3f;
  margin-bottom: 1rem;
}

p {
  color: #dfeede;
}

/* ======== HERO SECTION ======== */
.hero-section {
  background: linear-gradient(135deg, #092b18, #05180d);
  padding: 4rem 0;
  text-align: center;
}

.hero-heading {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #d4ff3f;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #b4cbb0;
}

/* ======== SERVICES SECTION ======== */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #103820;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 1s forwards;
}

.service-card:nth-child(even) {
  transform: translateX(50px);
  animation-delay: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(212, 255, 63, 0.25);
}

.service-card h3 {
  color: #f4ff5c;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ======== CTA SECTION ======== */
.cta-section {
  background: #0d2e1a;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-text {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-button {
  background: linear-gradient(135deg, #e9ff6f, #d4ff3f);
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ======== FOOTER ======== */
.footer {
  background: #02140a;
  padding: 1.5rem 0;
  text-align: center;
  color: #90a090;
  font-size: 0.9rem;
  border-top: 1px solid #1c3a26;
}
/* Animation visible state */
.service-card.visible {
  opacity: 1;
  transform: translateX(0);
}
.contact-section {
  background-color: #021a0e;
  padding: 4rem 1rem;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  color: #eaff87;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: #0f2e1a;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 0 10px rgba(212, 255, 63, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b5d4a3;
}

.contact-btn {
  background: linear-gradient(135deg, #d4ff3f, #eaff87);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.success-popup {
  display: none;
  color: #c6ff93;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1rem;
}
/* === About Section: Desktop Responsive Fix Only === */
@media (min-width: 1024px) {
  .about-section .about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .about-section .about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-section .about-content {
    width: 80%;
    max-width: 800px;
    margin-bottom: 3rem;
    text-align: center;
  }

  .about-section .mission-vision {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .about-section .mission,
  .about-section .vision {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
  }

  .about-section .about-core-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
  }

  .about-section .core-box {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
  }
}
.success-popup {
  margin-top: 15px;
  padding: 10px 15px;
  background: #16281e;
  color: #000000;
  border: 1px solid #0c3315;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
