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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* Top Contact Bar */
.top-contact-bar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(180deg, #009569 0%, #00837d 100%);
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
  width: 100%;
  opacity: 100%;
}

.top-contact-bar a {

  width: auto;
  /* Set your desired width */
  height: 50px;
  /* Set your desired height */
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  opacity: 0;
  animation: fadeInButtons 1s ease forwards;
  min-height: 44px;
  /* Touch-friendly minimum size */
  touch-action: manipulation;
  /* Optimizes touch interactions */
}

.top-contact-bar a:nth-child(1) {
  animation-delay: 0.1s;
}

.top-contact-bar a:nth-child(2) {
  animation-delay: 0.3s;
}

.top-contact-bar a:nth-child(3) {
  animation-delay: 0.5s;
}

.top-contact-bar a:nth-child(4) {
  animation-delay: 0.7s;
}

.top-contact-bar a:nth-child(5) {
  animation-delay: 0.9s;
}

.top-contact-bar a:hover {
  color: #00837d;
  transform: scale(1.5);
}

.top-contact-bar i {
  margin-right: 0.5rem;
}

@keyframes fadeInButtons {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Popup and overlay for contact form */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 80%;
  max-height: 800px;
  background-color: #fff;
  z-index: 9999;
  display: none;
  overflow: auto;
  padding: 20px;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: slideInFromLeft 1.2s ease forwards;
}

.logo-icon {
  height: 70px;
}

.logo-text {
  height: 60px;
}

nav {
  opacity: 0;
  animation: slideInFromRight 1.2s ease forwards;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00837d;
}

.hamburger {
  display: none;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, hsl(177, 100%, 26%) 0%, #009569 100%);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
  min-height: 44px;
  /* Touch-friendly minimum size */
  touch-action: manipulation;
  /* Optimizes touch interactions */
}

.cta-button:hover {
  background: linear-gradient(135deg, #009569 0%, #00837d 100%);
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 0;
  background: url('../assets/CTO-HERO.jpg') no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 0;
}

.about>* {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 3rem 2rem 4rem 2rem;
  width: 100%;
  background: none;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  color: #fff;
}

.about h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00837d 0%, #009569 100%);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.about-text {
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.highlight {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border-top: 4px solid #009569;
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight i {
  font-size: 2.5rem;
  color: #009569;
  margin-bottom: 1rem;
}

.highlight h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.highlight p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services {
  padding: 4rem 1rem;
  background-color: #e1e0e0;
  /* Light grey for contrast */
}

.services h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.services h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00837d 0%, #009569 100%);
}

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

.service-card {
  text-align: center;
  padding: 2rem;
  background-color: white !important;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: #00837d;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.pricing h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #333;
}

.pricing h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00837d 0%, #009569 100%);
}

.pricing-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #00837d;
}

.pricing-card.featured {
  border-color: #00837d;
  box-shadow: 0 10px 30px rgba(0, 131, 125, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00837d 0%, #009569 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.revenue-range {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00837d;
  font-family: 'Montserrat', sans-serif;
}

.period {
  color: #666;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #666;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li i {
  color: #009569;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.roi-section {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.roi-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.roi-item {
  text-align: center;
}

.roi-item i {
  font-size: 2.5rem;
  color: #00837d;
  margin-bottom: 1rem;
}

.roi-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #009569;
  margin-bottom: 0.5rem;
}

.roi-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Partners Section with Gradient Background */
.partners {
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  background-color: #000;
  /* Dark background to make logos stand out */
  overflow: hidden;
  /* Ensures the background doesn't overflow */
  color: white;
  /* Light text for dark background */
}

/* Gradient background container */
.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/gradient-background-wave-minimalist-style_483537-4952 (1).png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  opacity: 0.8;
  /* Adjust opacity to ensure text readability */
  z-index: 0;
}

.partners h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white;
}

.partners p {
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.partner-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.partner {
  background-color: rgba(255, 255, 255, 0.1);
  /* Semi-transparent background */
  backdrop-filter: blur(5px);
  /* Creates a frosted glass effect */
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.partner:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
}

.partner img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Makes logos white */
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partner:hover img {
  filter: none;
  /* Shows original colors on hover */
  opacity: 1;
}

/* Who We Help Section */
.who-we-help {
  padding: 4rem 1rem;
  background-color: #fff;
}

.who-we-help h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.who-we-help h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00837d 0%, #009569 100%);
}

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

.audience-card {
  text-align: center;
  padding: 2.5rem;
  background-color: #e1e0e0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #00837d;
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-card i {
  font-size: 3.5rem;
  color: #00837d;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.audience-card:hover i {
  transform: scale(1.2);
}

.audience-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.audience-card p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #009569 0%, #00837d 100%);
  text-align: center;
  position: relative;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  color: #fff;
}

.contact h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fff;
}

.contact-subtitle {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.clickable-card * {
  text-decoration: none !important;
}

.contact-button-container {
  margin-top: 2rem;
}

.contact-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00837d 0%, #009569 100%);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: linear-gradient(135deg, #009569 0%, #00837d 100%);
  transform: scale(1.05);
}

/* Booking Section */
.booking-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.booking-widget {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.booking-widget:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  height: 800px;
  border: none;
  border-radius: 8px;
}

.booking-fallback {
  text-align: center;
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-top: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.booking-fallback p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Responsive adjustments for booking section */
@media (max-width: 767px) {
  .booking-section {
    padding: 1rem;
  }

  .booking-widget {
    padding: 0.5rem;
    border-radius: 12px;
  }

  .booking-widget iframe {
    min-height: 600px;
    height: 600px;
  }

  .booking-fallback {
    padding: 2rem 1rem;
  }

  .booking-fallback p {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-contact {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  background-color: rgba(0, 131, 125, 0.2);
}

.footer-contact-item:hover {
  background-color: rgba(0, 131, 125, 0.4);
  transform: translateY(-2px);
}

.footer-contact-item i {
  font-size: 1.5rem;
  color: #009569;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #00837d;
}

.social-links a i {
  margin-right: 0.5rem;
}

footer p {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-verse {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  margin-bottom: 1rem !important;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
.animate-fade {
  animation: fadeIn 2s ease-in;
}

.animate-slide {
  animation: slideIn 1.5s ease-in;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}



/* Responsive Design */
@media (min-width: 768px) {

  .service-grid,
  .audience-grid,
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .audience-grid,
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive design for partner grid */
@media (max-width: 767px) {
  .partner-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner {
    height: 80px;
  }

  .top-contact-bar {
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem 0;
    gap: 1rem;
  }

  .top-contact-bar a {
    margin: 0;
    font-size: 0.7rem;
    padding: 0.8rem 0.6rem;
    min-width: 60px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
  }

  .top-contact-bar a i {
    font-size: 1.1rem;
    margin-right: 0;
    margin-bottom: 0.2rem;
    display: block;
  }

  .popup {
    width: 95%;
    height: 90%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 4rem;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  nav ul li a {
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about {
    min-height: 70vh;
    background-position: center top;
  }

  .hero-content {
    padding: 2rem 1rem 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo img {
    height: 35px;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .about-text {
    margin-top: 3rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .highlight {
    padding: 1.5rem;
  }

  .highlight h4 {
    font-size: 1.2rem;
  }


  .about h2 {
    font-size: 1.8rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .highlight {
    padding: 1.5rem;
  }

  .highlight h4 {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .partner-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

}

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