/* ------------------------------
   GLOBAL STYLES
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --secondary: #121212;
  --text: #f5f5f5;
  --gray: #999;
  --gold: #d4af37;
  --accent: #2b8cff;
  --max-width: 1200px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 0;
}

/* ------------------------------
   NAVBAR (Desktop + Mobile Balanced)
--------------------------------*/
.navbar {
  background: var(--secondary);
  padding: 16px 0; /* balanced height for desktop */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1f1f1f;
}

.logo img {
  height: 85px; /* perfect desktop size for Brotherhood logo */
  object-fit: contain;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  transition: 0.3s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold);
}

/* --- JOIN NOW BUTTON --- */
.navbar .btn.gold {
  background-color: var(--gold);
  color: #000;
  padding: 14px 30px;
  border-radius: 24px;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .btn.gold:hover {
  background-color: #e0b000;
  transform: scale(1.05);
}

/* ------------------------------
   RESPONSIVE (Tablets + Phones)
--------------------------------*/
@media (max-width: 992px) {
  .logo img {
    height: 75px; /* medium screens (tablet) */
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 0; /* slightly smaller but still comfy */
     position: relative;  /* turns off sticky on mobile */
  }

  .logo img {
    height: 65px; /* ~25% smaller than desktop for phones */
  }

  .nav-flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .navbar .btn.gold {
    padding: 12px 26px;
    font-size: 1rem;
    margin-top: 10px;
    align-self: center; /* centers button under links */
  }
}

/* ------------------------------
   HERO SECTION – FIXED SPLIT LAYOUT
--------------------------------*/
.hero {
  background: var(--secondary);
  padding: 100px 8%;
  display: flex;
  justify-content: center;
}

.hero-container {
  display: flex;
  align-items: center;           /* vertically centers text & image */
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  gap: 60px;
}

.hero-text {
  flex: 0 0 52%;                 /* fix width for text column */
  color: var(--text);
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.25;
  margin-bottom: 25px;
}

.hero-text p {
  color: var(--gray);
  font-size: 1.45rem;      /* same as About section */
  line-height: 1.8;        /* matches flow and readability */
  margin-bottom: 40px;     /* more space before button */
  max-width: 90%;
}

.hero-text .btn.gold {
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: 40px;
  background-color: var(--gold);
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-text .btn.gold:hover {
  background-color: #e1b94d;
  transform: translateY(-3px);
}

.hero-img {
  flex: 0 0 45%;                 /* fix width for image column */
  display: flex;
  justify-content: flex-end;     /* image aligns to right */
}

.hero-img img {
  width: 100%;
  max-width: 560px;              /* image size you liked */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hero-text, .hero-img {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

.hero-text p {
    font-size: 1.15rem;  /* mobile-friendly scaling */
    line-height: 1.7;
    max-width: 100%;
  }

  .hero-img img {
    max-width: 400px;
  }
}

/* ------------------------------
   ABOUT SECTION – FIXED ALIGNMENT
--------------------------------*/
.about {
  background: #f8f8f8;
  padding: 110px 10%;
  color: #222;
}

.about-container {
  display: flex;
  align-items: center;           /* Center image vertically with text */
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 70px;
}

.about-img {
  flex: 0 0 48%;                 /* was 45%, slightly larger for balance */
  display: flex;
  justify-content: center;       /* centers image horizontally */
  align-items: center;           /* centers vertically */
}

.about-img img {
  width: 100%;
  max-width: 600px;              /* increased size */
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1;                     /* text fills remaining space */
  font-size: 1.45rem;
  line-height: 1.8;
  color: #222;
}

.about-text h2 {
  font-size: 3rem;
  color: #1a4d8f;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.about-text p {
  margin-bottom: 25px;
  color: #222;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-img {
    flex: 1 1 100%;
  }

  .about-img img {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-text {
    font-size: 1.15rem;
    line-height: 1.75;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}

/* ------------------------------
   CONFIDENCE SECTION (Hero-style layout)
--------------------------------*/
.confidence {
  background: #0a0a0a; /* same dark tone as hero */
  padding: 100px 10%;
  color: #ddd;
}

.confidence-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
}

.confidence-text {
  flex: 1;
}

.confidence-text h2 {
  color: var(--gold);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.confidence-text p {
  color: #cfcfcf;
  font-size: 1.45rem;       /* same as hero + about text */
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 90%;
}

.confidence-text a.btn.gold {
  background-color: var(--gold);
  color: #000;
  padding: 14px 36px;
  font-weight: 600;
  border-radius: 40px;
  display: inline-block;
  transition: all 0.3s ease;
}

.confidence-text a.btn.gold:hover {
  background-color: #e0b000;
  transform: scale(1.05);
}

.confidence-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confidence-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
@media (max-width: 900px) {
  .confidence-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .confidence-text h2 {
    font-size: 2rem;
  }

  .confidence-text p {
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .confidence-img img {
    max-width: 380px;
  }
}

/* ------------------------------
   JOURNEY SECTION (Light Theme + Responsive)
--------------------------------*/
.journey {
  background: #f8f8f8;           /* Light elegant background */
  color: #222;                   /* Dark readable text */
  padding: 110px 10%;
}

.journey-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
}

.journey-img {
  flex: 0 0 48%;                 /* Slightly less than half for balance */
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
}

.journey-text {
  flex: 1;
  font-size: 1.45rem;            /* Comfortable desktop reading size */
  line-height: 1.8;
  color: #222;
}

.journey-text h2 {
  font-size: 2.8rem;
  color: #1a4d8f;                /* Consistent deep blue title */
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.journey-text p {
  margin-bottom: 25px;
}

.journey-text .btn.gold {
  background-color: var(--gold);
  color: #000;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.journey-text .btn.gold:hover {
  background-color: #e0b000;
  transform: scale(1.05);
}

/* ------------------------------
   TABLETS  (below 900 px)
--------------------------------*/
@media (max-width: 900px) {
  .journey {
    padding: 80px 8%;
  }

  .journey-flex {
    flex-direction: column;      /* Stack image above text */
    text-align: center;
    gap: 50px;
  }

  .journey-img {
    flex: 1 1 100%;
  }

  .journey-img img {
    max-width: 420px;
    margin: 0 auto;
  }

  .journey-text {
    font-size: 1.25rem;
    line-height: 1.75;
  }

  .journey-text h2 {
    font-size: 2.3rem;
  }

  .journey-text .btn.gold {
    padding: 13px 32px;
    font-size: 1rem;
  }
}

/* ------------------------------
   SMARTPHONES  (below 600 px)
--------------------------------*/
@media (max-width: 768px) {
  .journey {
    padding: 60px 6%;
  }

  .journey-text {
    font-size: 1.05rem;          /* Slightly smaller for phones */
    line-height: 1.65;
  }

  .journey-text h2 {
    font-size: 1.9rem;
  }

  .journey-img img {
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .journey-text .btn.gold {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
}

/* ------------------------------
   VIDEO SECTION
--------------------------------*/
.videos {
  background: #111;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.video-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 8px;
}

/* ------------------------------
   TESTIMONIALS
--------------------------------*/
.testimonials {
  background: var(--bg);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 30px;
  font-style: italic;
}

.testimonial-card span {
  display: block;
  margin-top: 15px;
  color: var(--gold);
}
/* ------------------------------
   TESTIMONIALS 2 (Programs Conversion)
--------------------------------*/
.testimonial2 {
  background: #f8f8f8; /* Light theme background */
  text-align: center;
  color: #222;
  padding: 100px 10%;
}

.testimonial2 .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a4d8f; /* Blue heading */
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.testimonial2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial2-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 25px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial2-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.testimonial2-card h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonial2-card .quote {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.65;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial2-card span {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ------------------------------
   RESPONSIVE (TABLET + MOBILE)
--------------------------------*/
@media (max-width: 900px) {
  .testimonial2 {
    padding: 80px 8%;
  }

  .testimonial2 .section-title {
    font-size: 2.2rem;
  }

  .testimonial2-card {
    padding: 35px 20px;
  }
}

@media (max-width: 768px) {
  .testimonial2 {
    padding: 60px 6%;
  }

  .testimonial2 .section-title {
    font-size: 1.9rem;
  }

  .testimonial2-card {
    padding: 30px 18px;
  }

  .testimonial2-card img {
    width: 100px;
    height: 100px;
  }

  .testimonial2-card .quote {
    font-size: 1rem;
  }
}

/* ------------------------------
   FAQ SECTION (Dark Theme - Gold Heading)
--------------------------------*/
.faq {
  background: #0a0a0a;
  padding: 100px 10%;
  color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq .section-title {
  text-align: center;
  color: var(--gold); /* changed from blue to gold */
  font-size: 2.8rem;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #f1f1f1;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 10px 0 5px;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.75;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   RESPONSIVE DESIGN
--------------------------------*/
@media (max-width: 768px) {
  .faq {
    padding: 80px 8%;
  }

  .faq .section-title {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.25rem;
  }

  .faq-answer {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 60px 6%;
  }

  .faq .section-title {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 1.15rem;
  }

  .faq-answer {
    font-size: 1rem;
    line-height: 1.6;
  }
}
/* ------------------------------
   FOOTER (Final Version — White Links)
--------------------------------*/
footer {
  background: #080808;
  color: var(--gray);
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #222;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* --- LOGO --- */
.footer-logo img {
  width: 340px; /* same as header logo */
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

/* --- LINKS --- */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1000px;
  margin: 5px auto 10px;
}

.footer-links a {
  color: #ffffff; /* white links */
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold); /* gold hover for contrast */
}

/* --- SOCIAL ICONS (Fixed Alignment) --- */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px; /* ✅ increased space slightly for perfect symmetry */
  margin: 15px 0 5px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;   /* ✅ uniform width box for each icon */
  height: 42px;  /* ensures consistent click area */
}

.footer-social a img {
  width: 32px;
  height: 32px;
  min-width: 32px; /* ✅ prevents Telegram from shrinking */
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-social a img:hover {
  filter: invert(69%) sepia(90%) saturate(466%) hue-rotate(17deg) brightness(98%) contrast(92%);
  transform: scale(1.15);
}
/* --- COPYRIGHT --- */
.footer-copy {
  color: #ccc;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

/* ------------------------------
   RESPONSIVE FOOTER
--------------------------------*/
@media (max-width: 768px) {
  .footer-logo img {
    width: 280px;
  }

  .footer-links {
    gap: 22px;
  }

  .footer-links a {
    font-size: 1rem;
  }


  .footer-social {
    gap: 35px; /* reduce slightly for tablet */
  }


  .footer-social a img {
    width: 28px;
  }
}

@media (max-width: 600px) {
  .footer-logo img {
    width: 240px;
  }

  .footer-links {
    gap: 16px;
    line-height: 1.6;
  }

  .footer-links a {
    display: inline-block;
    font-size: 0.95rem;
  }

  .footer-social {
    gap: 28px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
  }
  .footer-social a img {
    width: 26px;
  }

  .footer-copy {
    font-size: 0.9rem;
    font-weight: 500;
     width: 26px;
    min-width: 26px;
  }
}


/* ------------------------------
   RESPONSIVE DESIGN
--------------------------------*/
@media (max-width: 768px) {
  .hero-flex,
  .about-flex,
  .journey-flex,
  .confidence-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 26px;
  }
}























