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

:root {
  --primary-color: #3a86ff;
  --secondary-color: #8338ec;
  --text-color: #f8f9fa;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body,
html {
  height: 100%;
  width: 100%;
  font-weight: bold;
  color: white;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('media/teambg.jpg') no-repeat center center/cover;
  z-index: -1;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header Styles */
nav {
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 16vh;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  padding: 3rem 4rem;
  color: white;
}

nav h1 {
  font-size: 1.7rem;
  font-weight: 900;
}
nav h2 {
  font-size: 0.8rem;
  font-weight: 400;
}

.routes {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.routes a {
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  
  transition: all 0.3s ease-in-out;
}

.routes a:hover {
  color: gold;
  transform: scale(1.05);
}

/* Hero Section */
.about-section {
  padding: 10rem 0 4rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 2rem;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-section h1 {
  font-size: 4.6rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-quint) 0.2s forwards;
  padding-bottom: 0.2em;
  display: inline-block;
}


.learn-more {
  margin: 0;
  position: relative;
  bottom: -0.5rem; /* Adjust this value to align with the baseline of the heading */
}

.learn-more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease-out-quint);
  position: relative;
  display: inline-block;
  transform: translateY(0);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-quint) 0.4s forwards;
}

.learn-more a:hover {
  transform: translateY(-3px);
  color: var(--secondary-color);
}

.learn-more a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.learn-more a:hover::after {
  width: 100%;
}

.learn-more a:hover {
  color: var(--secondary-color);
}


.group-photo {
  width: 100vw;
  margin: 6rem 0 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out-quint) 0.8s forwards;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
  transition: transform 0.6s var(--ease-out-quint);
}

.group-photo:hover img {
  transform: scale(1.03);
}

.learn-more {
  margin: 2rem 0;
  text-align: right;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.learn-more a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: var(--transition);
  background: rgba(58, 134, 255, 0.1);
  backdrop-filter: blur(5px);
}

.learn-more a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.about-box {
  width: 100%;
  height: 500px;
  background: #aaa;
  position: relative;
  margin: 0 2rem;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out-quint) 0.6s forwards;
  transition: transform 0.4s var(--ease-out-quint);
}

.about-box:hover {
  transform: translateY(-5px) translateY(0) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.about-box button {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.footer {
  background: #020a13;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
  text-align: center;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}

.footerbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  font-family: "Poppins", sans-serif;
}

.footer-column {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  font-family: "Poppins", sans-serif;
}

.footer-column iframe.map {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

.footer-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 10px 0;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
  filter: brightness(1.2);
  background: white;
  border-radius: 50%;
  padding: 5px;
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: brightness(1);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.contact-section {
  border: 2px solid white;
  padding: 20px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.contact-form button {
  background: gold;
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  font-weight: bold;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #ccc;
  position: relative;
  z-index: 1;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-left { text-align: left; }
  .footer-right { text-align: right; }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    max-width: 100%;
  }

  .footer-left, .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
.about-header.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 400px;
}
.about-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: var(--secondary-color);
}
.about-image {
  flex: 1 1 300px;
  max-width: 500px;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

