/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "typeface";
  line-height: 1.6;
  color: #1f2a44;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Button Base Styles */
.btn {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 3px solid;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  background: none;
  min-width: auto;
}

.btn:disabled {
  cursor: not-allowed;
  background-color: #f3f4f6;
  color: #9ca3af;
  border-color: #d1d5db;
}

.btn:disabled:hover {
  transform: none;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

/* Button Variants */
.btn-primary {
  background-color: transparent;
  border-color: #7f1d1d;
  color: #7f1d1d;
}

.btn-primary:hover:not(:disabled) {
  background-color: #7f1d1d;
  color: white;
}

.btn-secondary {
  background-color: #7f1d1d;
  border-color: #7f1d1d;
  color: white;
}

.btn-tertiary {
  background-color: #d4af37;
  border-color: #d4af37;
  color: white;
}
.btn-tertiaryV2 {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #5c1f2e;
}
.btn-tertiaryV3 {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #1f2a44;
}
.btn-tertiary:hover:not(:disabled) {
  background-color: #b8941f;
  border-color: #b8941f;
}

.btn-quaternary {
  background-color: white;
  border-color: white;
  color: black;
}

.btn-quaternary:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #f9fafb;
}

.btn-quinary {
  background-color: transparent;
  border-color: white;
  color: white;
}
.btn-quinaryV2 {
  background-color: transparent;
  border-color: #d4af37;
  color: #d4af37;
}

.btn-quinary:hover:not(:disabled) {
  background-color: white;
  color: #1f2a44;
}
.btn-blue {
  background-color: #1f2a44;
  border-color: #1f2a44;
  color: white;
}
/* Button Size Variations */
.btn-lg {
  padding: 14px 24px;
  font-size: 18px;
}
.btn-xl {
  padding: 24px 48px;
  font-size: 18px;
}

/* Button Width Variations */
.btn-full-width {
  width: 100%;
}

.btn-mobile-full {
  padding: 16px 24px;
}

@media (max-width: 768px) {
  .btn-mobile-full {
    width: 100%;
  }
}

/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  text-decoration: none;
}
.navbar-brand {
  color: #7f1d1d;
  font-size: 24px;
  font-weight: 700;
  padding: 16px;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 20px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar-link:hover {
  color: #5c1f2e;
}

@media (min-width: 768px) {
  .navbar-brand {
    padding: 0;
  }

  .navbar-menu {
    display: flex;
  }
}
.menu-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #1f2a44;
  transition: all 0.3s ease;
}

.navbar-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1f2a44;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.nav-dot {
  display: none;
  margin-top: 4px;
}

.nav-dot-active {
  background: #f2c94c;
}

@media (min-width: 768px) {
  .navbar-link--active .nav-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f2c94c;
  }
  .navbar-link--active {
    color: #5c1f2e;
  }
}

/* Hide popup by default */
.mobile-popup-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: white;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1050;
  padding: 40px;
  text-align: center;
}

.mobile-popup-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-popup-menu a {
  font-size: 20px;
  text-decoration: none;
  color: #1f2a44;
  transition: color 0.2s ease-in-out;
}

.mobile-popup-menu a:hover {
  color: #5c1f2e;
}

/* When checkbox is checked, show menu */
.menu-toggle:checked ~ .mobile-popup-menu {
  right: 0;
}

/* Hide hamburger and popup menu on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .mobile-popup-menu {
    display: none;
  }
}
/* Main Content Styles */
.main-content {
  font-size: 24px;
  font-weight: 700;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  color: #1f2a44;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(to top, white, #fff7df);
}

.hero-title {
  padding-top: 240px;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  padding: 16px 0;
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-section {
    margin-bottom: 60px;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-buttons {
    grid-template-columns: 1fr 1fr;
    width: auto;
  }
}

/* Partners Section */
.partners-section {
  border-top: 1px solid #ffcf40;
  border-bottom: 1px solid #ffcf40;
  margin: 0 60px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.partners-title {
  padding: 32px 40px;
  font-size: 24px;
  text-align: center;
  color: #1f2a44;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 32px;
  justify-content: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.partner-item svg {
  color: #1f2a44;
}

.partner-item h3 {
  font-size: 18px;
  color: #1f2a44;
  font-weight: 400;
}

/* Services Section */
.services-section {
  padding: 60px 40px;
  background-color: white;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2a44;
  text-align: center;
}
.services-subtitle {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px 10px 30px;
  text-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: start;
  justify-content: start;
  border-radius: 50%;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2a44;
  text-align: start;

  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: start;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Generation Section */
.generation-section {
  padding: 60px 40px;
  color: #1f2a44;

  background: linear-gradient(to top, #fff7df, white);
}

.generation-content {
  max-width: 1200px;
  margin: 0 auto;
}

.generation-content h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.generation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.generation-item {
  display: flex;
  gap: 15px;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.generation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.generation-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 16px;
}
.generation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.generation-icon img {
  width: 64px;
  height: 64px;
}
.gradient-line {
  background: linear-gradient(to left, white, #5c1f2e);
  width: 64px;
  height: 4px;
  margin-top: 30px;
}
.generation-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2a44;
}

.generation-item p {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  max-width: 490px;
}

.generation-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0px;
  max-width: 1200px;
}

.image-content {
  background-color: #5c1f2e;
  border-radius: 16px;
  background-image: url("assets/images/excellence-small.svg");
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 24px 40px;
  gap: 64px;
}
.image-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.image-left h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: white;
}

.image-left p {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}
.image-right {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 16px;
}
.alighn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.image-right h1 {
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.image-right p {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}
@media (min-width: 768px) {
  .generation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-content {
    grid-template-columns: repeat(2, 1fr);
    background-image: url("assets/images/excellence.svg");
  }
  .image-left {
    align-items: flex-start;
    text-align: start;
  }
  .image-left h1 {
    font-size: 24px;
    font-weight: 400;
    color: white;
  }
}

@media (min-width: 1024px) {
  .generation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Team Section (Testimonials) */

.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 150px 10px;
  max-width: 900px;
  p {
    margin-bottom: 30px;
  }
}

.testimonial-section h2 {
  font-size: 36px;
  color: #1a2238;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  display: none;
}

.testimonial-card.active {
  display: block;
  max-width: 900px;
}

.testimonial-card img.icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}
.testimonial-wrapper img.colon-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 24px;
  left: 24px;
  z-index: 3;
  margin-right: 1rem;
}

.quote-text p {
  font-style: italic;
  position: relative;
  z-index: 100;
  font-size: 18px;
  color: #374151;
  line-height: 29px;
  text-align: left;
}
.author-info {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}
.info {
  display: flex;
  flex-direction: column;
}
.author {
  font-weight: bold;
  text-align: left;
}

.position {
  font-size: 0.9rem;
  color: #999;
  text-align: left;
}

.controls {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* Hide radio inputs */
input[type="radio"] {
  display: none;
}

.testimonial-wrapper {
  position: relative;
  min-height: 220px;
}

/* Base testimonial style */
.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  background: #f9f9f9;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  text-align: left;
}

.quote-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #374151;
  font-weight: 400;
}

.author {
  font-weight: bold;
  color: #222;
}

.position {
  font-size: 0.9rem;
  color: #888;
}

/* Display only the checked testimonial */
#t-1:checked ~ .testimonial-wrapper .t1,
#t-2:checked ~ .testimonial-wrapper .t2,
#t-3:checked ~ .testimonial-wrapper .t3 {
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 2;
}

/* Navigation Buttons */
.nav-button {
  position: absolute;
  transform: translateY(-50%);
  background: #f0e5c1;
  color: white;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
}

.nav-button:hover {
  background: #e8d8a6;
}

.prev {
  bottom: -45px;
  right: 85px;
}

.next {
  bottom: -45px;
  right: 30px;
}
.author-info {
  display: flex;
  gap: 10px;
}
.dots {
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: -25px;
  left: 310px;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-text {
    font-size: 1rem;
  }
  .nav-button {
    font-size: 1.2rem;
    padding: 0.3rem 0.7rem;
  }
  .dots {
    bottom: -25px;
    left: 3px;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888;
  cursor: pointer;
}

.dot-active {
  background: #f2c94c;
}

/* FAQ Section 1 - Accordion Style */

.faq-card {
  background-color: #f8f5f0;
  padding: 2.4rem 2.4rem 2.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.faq-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.faq-header h1 {
  text-align: center;
}
.faq-list {
  max-width: 768px;
}

.faq-card .faq-item {
  background-color: white;
  overflow: hidden;
  transition: max-height 350ms ease-in-out;
  margin-bottom: 16px;
  padding: 0px 24px;
  border-radius: 8px;
}

.faq-card .faq-item:last-child {
  border-bottom: none;
}

.faq-card .faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card .faq-item-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2a44;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-card .faq-item p {
  padding: 0 0 2.4rem 0;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

.faq-card .minus-icon,
.faq-card .plus-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-card .minus-icon {
  display: none;
}

.faq-card .plus-icon {
  display: block;
}

.faq-card .faq-item-header:hover .minus-icon,
.faq-card .faq-item-header:hover .plus-icon {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  p {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .faq-item-header {
    padding: 3rem 0;
    text-align: center;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  background-color: #5c1f2e;
  color: white;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: white;
}

.cta-content p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #d1d5db;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;

  margin-top: 24px;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

/* Footer Styles */
.footer {
  background-color: #1f2a44;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  color: white;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-brand h1 {
  font-size: 24px;
  font-weight: 400;
}

.footer-brand p {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 120px;
}

.footer-column {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.footer-column h2 {
  font-weight: 700;
  color: white;
  font-size: 16px;
}
.social-icons a {
  margin-right: 12px;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-column a:hover {
  color: white;
}

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

.footer-contact h2 {
  font-weight: 700;
  color: white;
  font-size: 16px;
  margin-bottom: 2px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-contact a:hover {
  color: white;
}

.copyright {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #374151;
  text-align: center;
  padding: 20px 20px 0;
  p {
    font-size: 16px;
    color: #4b5563;
  }
}
@media (max-width: 768px) {
  .partners-section {
    margin: 0 20px;
  }

  .services-title,
  .generation-content h2,
  .team-content h2,
  .faq-content h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .hero-title {
    font-size: 48px;
    padding-top: 160px;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 60px 16px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

  .footer-contact {
    align-items: flex-start;
  }
}
.contact-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  img {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1024px) {
  .footer-links {
    gap: 50px;
  }
}

@media (min-width: 1260px) {
  .footer-links {
    gap: 100px;
  }
}
