/* ===== Global ===== */
:root {
  --black: #0a0a0a;
  --dark: #111;
  --gold: #d4af37;
  --gold-hover: #b8922b;
  --white: #ffffff;
  --gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "playfair Display", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  padding-top: var(--header-height, 80px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  padding: 0.5rem 0.5rem;
  z-index: 1000;
  height: 60px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem;
  font-size: large;
  width: 100%;
  flex-wrap: wrap;
}

.logo img {
  height: 55px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin: 0px;
  padding: 4px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
}
/* Responsive Navigation */
@media (max-width: 900px) {
  .hamburger {
    display: block; /* Show hamburger on small screens */
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    display: none; /* Hide by default */
  }

  .nav-links.active {
    display: flex; /* Show when toggled */
  }

  .nav-links a {
    margin: 0 15px;
  }

  .btn-small {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.nav-links a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #d4af37; /* gold underline */
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--white);
}

.btn-small {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  margin-left: 2rem;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 80vh;
  background: url("ChatGPT\ Image\ Sep\ 11\,\ 2025\,\ 11_57_13\ AM.png")
  no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
 
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--gold);
}

.hero h2 {
  font-size: 1.8rem;
  margin: 1rem 0;
}
.hero p {
  font-size: 30px;
}

.btn-gold {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

/* ===== Cards Alignment ===== */
.sections-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.card {
  background: var(--dark);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white);
  text-align: left;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.card h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

/* ===== Approach ===== */
.approach {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #0f0f0f;
}

.approach h2 {
  color: var(--gold);
  font-size: 2rem;
}

.approach h3 {
  margin: 1rem 0;
  color: var(--gray);
}

/* ===== Footer ===== */
.footer {
  background: #050505;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--gold);
}

/* ===== About Page Specific ===== */
.content-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-align: center;
}

.content-section h2 {
  font-size: 1.6rem;
  margin: 1rem 0;
  color: var(--white);
  font-weight: 500;
  text-align: center;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

/* Highlighted Boxes (Story, Mission, Approach) */
.Story,
.Mission,
.Approach {
  background: var(--dark);
  padding: 2rem;
  margin: 2.5rem 0;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Story:hover,
.Mission:hover,
.Approach:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.Story h1,
.Mission h1,
.Approach h1 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.Story p,
.Mission p,
.Approach p {
  color: var(--gray);
  font-size: 1rem;
}

/* Why Choose Us Section */
.content-section h1 + p,
.content-section h1 + ul {
  text-align: left;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

.content-section li {
  list-style: none;
}
.content-section ul li::before {
  content: "✔";
  color: var(--gold);
  margin-right: 0.5rem;
}

.content-section ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--gray);
}

/* Commitment Section */
.content-section > h1:last-of-type {
  margin-top: 3rem;
  font-size: 2rem;
  text-align: center;
  color: var(--gold);
}

.content-section > p:last-of-type {
  max-width: 1000px;
  margin: 1rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
}

/* Cards Grid Layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Unified Card Styling */
.Story,
.Mission,
.Approach,
.Why {
  background: var(--dark);
  padding: 2rem;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Story:hover,
.Mission:hover,
.Approach:hover,
.Why:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.Story h1,
.Mission h1,
.Approach h1,
.Why h1 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.Story p,
.Mission p,
.Approach p,
.Why p,
.Story ul,
.Mission ul,
.Approach ul,
.Why ul {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.Story ul li,
.Mission ul li,
.Approach ul li,
.Why ul li {
  margin-bottom: 0.8rem;
  list-style: none;
}

.Story ul li::before,
.Mission ul li::before,
.Approach ul li::before,
.Why ul li::before {
  content: "✔";
  color: var(--gold);
  margin-right: 0.5rem;
}
/* ====== Global Layout Helpers ====== */
.content-section {
  padding: 60px 20px;
}

.content-section.alt-bg {
  background-color: var(--dark-gray); /* from your theme */
  color: var(--white);
}

/* Section Heading Tag */
.tag {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: bold;
}

/* ====== Grid Layouts ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  background-color: #0f0f0f;
  color: #050505;
}

/* ====== Cards ====== */
.card {
  background: var(--black);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(105, 90, 3, 0.911);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.card ul {
  padding-left: 20px;
  margin: 10px 0 0 0;
}

/* ====== Highlight Box ====== */
.highlight-box {
  background: var(--black);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 3px 10px rgba(105, 90, 3, 0.911);
}

.highlight-box p {
  margin: 10px 0;
  text-align: center;
}

/* ====== Timeline Steps ====== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.timeline .step {
  background: var(--black);
  padding: 10px 12px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 3px 8px rgba(105, 90, 3, 0.911);
  text-align: center;
}

.timeline .step span {
  background: var(--gold);
  color: var(--black);
  font-weight: bold;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

/* ====== Info Boxes ====== */
.info-box {
  background: var(--white);
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ====== What We Don’t Do ====== */
.no-list {
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
}

.no-list p {
  margin: 8px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .header {
    height: 100px; /* taller on mobile */
  }
  body {
    padding-top: 100px;
  }
}

/* ===== Group Page Specific ===== */
.group-container {
  display: flex;
  gap: 3rem;
  padding: 4rem 2rem;
  margin: auto;
  flex-wrap: wrap;
}

.group-left {
  flex: 1;
  min-width: 320px;
}

.group-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--white);
  color: #d4af37;
}

.group-left p.tagline {
  font-size: 1.2rem;
  color: var(--gray);
  margin: 1rem 0 2rem;
}

.contact-card {
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  max-width: 400px;

  border-left: 5px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info p {
  margin: 0.8rem 0;
  font-size: 1rem;
  display: flex;
  align-items: left;
  gap: 10px;
  color: var(--gray);
}

.btn-gold {
  margin-top: 2rem;
}

.group-right {
  flex: 1;
  text-align: center;
}

.badge {
  margin-bottom: 2rem;
}

.badge img {
  width: 120px;
}

.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width:768px){
  .logos {
    flex-direction: column;
    align-items: center;
  }
}
.logos img {
width: 120px;
  height: auto;
  object-fit: contain;
  margin: 1rem auto;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  
}

.more {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
}

.logos img {
  width: 150px;
}

.group-left h1 {
  font-size: 2.5rem;
}

/* Page-wide card design */
.card-container {
  max-width: 1100px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}

.card {
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card h2,
.card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.card ul {
  margin-left: 1.5rem;
  list-style-type: disc;
  
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-row .btn-gold {
  flex: 1;
  text-align: center;
}

/* ===== Signup Page Styles ===== */


/* Header */
header img {
  height: 55px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin: 0px;
  padding: 4px;
}

/* Signup Section */
.signup {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.signup-card {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.5);
}

.signup-card h2 {
  margin-bottom: 0.5rem;
  color: #d4af37; /* Gold accent */
}

.signup-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #cccccc;
}

/* Form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background: #0f0f0f;
  color: #fff;
  font-size: 0.95rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
  border-color: #d4af37;
  box-shadow: 0px 0px 6px rgba(212, 175, 55, 0.6);
  outline: none;
}

/* Buttons */
.btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.btn-light {
  background: #d4af37;
  color: #000;
  border: none;
}
.btn-light:hover {
  background: #b8922b;
}

.btn-home {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  margin-top: 0.5rem;
}
.btn-home:hover {
  background: #d4af37;
  color: #000;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #0a0a0a;
  font-size: 0.85rem;
  color: #888;
}
