*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
 font-family: Sen, sans-serif;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  padding: 1rem 2rem;
  z-index: 1000;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo img {
  height: 40px;
}

.nav {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  padding: 1rem 2rem;
}

.nav.active {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #C70039;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

/* Animate to "X" */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop styles */
@media (min-width: 768px) {
  .nav {
    display: flex !important;
    position: static;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    width: auto;
  }
  .nav-links {
    flex-direction: row;
    gap: 2rem;
  }
  .hamburger {
    display: none;
  }
}



.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btn {
  background-color: #C70039;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  transition:  0.3s;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #000;
}

/* Responsive Typography */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.5rem;
  }
}


.partners-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo img {
  max-width: 100px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}


.card-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.card-btn {
  text-decoration: none;
  background-color: #C70039;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  transition:  0.3s ease;
}

.card-btn:hover {
    background-color: #ffffff;
  color: #000;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive for larger screens */
@media (min-width: 768px) {
  .card-section {
    grid-template-columns: repeat(3, 1fr);
  }
}


.two-column {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.column {
  flex: 1;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.content-column h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-column p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.btn {
  display: inline-block;
  background-color: #C70039;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition:  0.3s ease;
}

.btn:hover {
   background-color: #ffffff;
  color: #000;
}

/* Responsive layout */
@media (min-width: 768px) {
  .two-column {
    flex-direction: row;
    align-items: center;
  }
}



.testimonials {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f1f4f8;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #C70039;
}

.testimonial-card p {
  font-size: 1rem;
  color: #555;
}

/* Responsive layout */
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}




/* Footer Styles */
.footer {
  background-color: #340202;
  color: #fff;
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer p, 
.footer a {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}