/* Nav */
/* Keep the full-width blue background and border */
.header-wrapper {
  width: 100vw;
  background-color: #0D47A1;
  filter: drop-shadow(0px 2px 5px rgb(73, 69, 69));
  box-sizing: border-box;
}

.container.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.custom-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  gap: 1rem;

}

.logo {
  height: 70%;
  object-fit: contain;
  margin-left: 0;
  flex-shrink: 0;
}

.contact-us-btn {
  color: white;
  background-color: #141C36;;
  border-radius: 5px;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: background-color 300ms ease, color 300ms ease;
}



.contact-us-btn:hover {
  background-color: white;
  color: #0D47A1;
}
/* This container holds nav + hamburger, and nav needs to be centered */
.nav-hamburger-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1320px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hamburger button positioning */
.hamburger {
  position: absolute;
  right: 0;
  top: 50%;               /* vertically center relative to nav-hamburger-wrapper */
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  height: 60px;           /* fixed height matching hamburger icon */
  z-index: 10;
  display: block;
}

.hamburger-icon {
  max-width: 60px;
  height: 60px;
}

/* Mobile nav dropdown */
.mobile-nav-wrapper {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  width: auto;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 500ms ease, opacity 500ms ease;
  background: #0D47A1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 9;
  padding: 0 1.5rem;

  /* Center nav vertically and horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mobile-nav-wrapper.show {
  opacity: 1;
  padding: 1rem 1.5rem;
  height: auto; /* let height expand to fit content */
  background: #0D47A1;
}

.nav.nav-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;

  /* center horizontally for all sizes */
  justify-content: center;
  width: 100%; /* fill parent width */
  max-width: 500px; /* optional, constrain nav width on mobile */
}

.nav-link {
  color: white;
  font-weight: 500;
  background-color: #0D47A1;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: background-color 300ms ease, color 300ms ease;
  text-decoration: none;
  text-align: center; /* keep text centered */
}

.nav-link.active {
  background-color: white !important;
  color: #0D47A1 !important;
  font-weight: 600;
}

.nav-link:not(.active):hover {
  background-color: white;
  color: #0D47A1;
  font-weight: 600;
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .mobile-nav-wrapper {
    position: static;
    height: auto !important;
    opacity: 1;
    overflow: visible;
    background: #0D47A1;
    box-shadow: none;
    padding: 0;
    width: auto;
    transition: none;
    display: block; /* override flex for desktop */
  }

  .nav.nav-pills {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: auto; /* reset width for desktop */
    max-width: none; /* reset max-width */
  }
}




  /* Nav End */



/* ALL PAGES */
section {
  padding: 4rem 0;
  border-bottom: 2px #C3D1E8 solid;
  margin: 0 auto;
  max-width: 1320px;
}

h2 {
  color: #0D47A1;
  font-weight: 700;
}

h4 {
  color: #0D47A1;
  font-weight: 600;
}

body {
  font-family: 'Poppins', sans-serif;
}

p {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.6;
}

#page-content {
  transition: transform 500ms ease;
  background-color: #F0F4FA;
}

#page-content.slide-down {
  transform: translateY(300px); /* Match the height of your mobile menu */
}



  /* Who We Are */
  #who-we-are h2 {
    text-align: center;
    margin-bottom: 2rem;
  }

  .who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 2rem; /* Space between columns */
    align-items: center;
  }

  .who-we-are-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

@media (max-width: 768px) {
  .who-we-are-content {
    grid-template-columns: 1fr; /* Stack items vertically */
  }

  .who-we-are-content p {
    order: 2; /* Text second */
  }

  .who-we-are-content img {
    order: 1; /* Image first */
  }
}

/* Who We are end */




  /* What We Do */
#what-we-do {
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 0;
}

.whatwedo-text {
  padding: 1rem 2rem;
}

.whatwedo-items-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 64px;
  align-items: flex-start;
  margin-top: 24px;
}

.whatwedo-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 10px;
  box-sizing: border-box;
  max-width: 400px;
  text-align: center;
}

.whatwedo-icon-wrapper {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px #C3D1E8;
  border: #C3D1E8 2px solid;
}

.whatwedo-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.whatwedo-icon-item h4 {
  margin-top: 14px;
  font-size: 1.5rem;
  color: #0D47A1;
}

.whatwedo-icon-item p {
  margin-top: 6px;
  line-height: 1.3;
  color: #0D47A1;
}

/* Responsive */
@media (max-width: 768px) {
  .whatwedo-items-row {
    gap: 32px 40px;
  }

  .whatwedo-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .whatwedo-icon-item {
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .whatwedo-items-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .whatwedo-icon-item {
    width: 100%;
    max-width: 240px;
  }

  .whatwedo-icon-wrapper {
    width: 80px;
    height: 80px;
  }
}



/* What we do end */




/* Our Clients */

#our-clients {
  text-align: center;
  padding: 2rem;
}


.rightsholder {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)); 
  justify-content: center; 
  gap: 2rem;
  margin: 1rem 0 4rem 0;
}

.rightsholder > :nth-child(5) {
  grid-column-start: 1; /* start of second row */
  grid-row-start: 2;
}
.rightsholder > :nth-child(6) {
  grid-column-start: 2;
  grid-row-start: 2;
}
.rightsholder > :nth-child(7) {
  grid-column-start: 3;
  grid-row-start: 2;
}

#our-clients .client {
  text-align: center;
}

.client  p {
  margin: 0;
  color: #010b1b;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
}

.rightsholder img {
  display: block;
  margin: 0 auto 1rem auto;
  width: auto;
  height: 70px;
  border-radius: 5px;
  object-fit: contain;
}

.agency img {
  max-width: 150px;
}





@media (max-width: 780px) {
  .rightsholder {
    grid-template-columns: repeat(auto-fit, minmax(150px, 6fr)); 
  }
}

@media (max-width: 480px) {
  .rightsholder {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 4rem 0;
  }
  
  .other-sports {
    margin: 4rem 0 0 0
}
}

/* Carousel */


.carousel-container {
  display: flex;
  flex-direction: column;
  width: 150px;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-wrap: wrap;
  font-size: clamp(12px, 1.5vw, 16px);
}

.carousel-container img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}


.carousel-track {
  display: inline-flex;
  align-items: baseline;
  gap: 2rem;
  animation: scroll 200s linear infinite;
  animation-play-state: running;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.icon-carousel {
  margin: 0 1rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0 1rem 10rem;
}

.extended-clients button {
  padding: 8px 16px;
  background-color: #0D47A1;
  color: white;
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
}

.extended-clients button:hover {
  background-color: #141C36;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Adjust depending on how many icons */
  }
}

@media (max-width: 780px) {
  .icon-carousel {
    width: 95%
  }
  .carousel-track {
    gap: 1.5rem;
  }
  .carousel-container {
    width: 100px;
  }
  .carousel-container img {
    width: 75px;
  }
  .carousel-container p {
    margin-top: 0;
  }
}




/* Our clients end */



/* contact us */

#contact-us {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  position: relative;
  max-width: 1320px;
  width: 100%;
}

.contact-wrapper img {
  width: 100%;
  height: 500px; /* Set fixed or max height */
  object-fit: cover; /* Crop to fill container */
  display: block;
  border-radius: 8px; /* Optional visual polish */
}

.contact-content {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 1rem;
  width: 80%;
}


.contact-content h2 {
  font-size: 1.75rem;
  color: #010b1b;
}




/* Contact End */






/* METHOD */
/* METHOD */
/* METHOD */


html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100vw;
  background-color:#F0F4FA;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* The Approach */

#the-approach {
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 0;
}

#the-approach > div > h2 {
  padding-bottom: 2rem;
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1320px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  width: 100%;
  height: 500px; /* Set fixed or max height */
  object-fit: cover; /* Crop to fill container */
  display: block;
  border-radius: 8px; /* Optional visual polish */
}

.image-wrapper h3 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  color: #F0F4FA;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
}

.the-approach {
  padding-top: 3rem;
  text-align: left;
  padding-right: 1rem;
  padding-left: 1rem;
}

/* End The Approach */





/* Competitive Edge */

#competitive-edge {
  text-align: left;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 0;
}

#competitive-edge > div > h2 {
  text-align: center;
  padding-bottom: 1rem;
}

.competitive-edge-list > ul {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.6;
}

.competitive-edge-list-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.competitive-edge-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 500px; 
  text-align: left !important;
}

/* Competitve edge end */


/* ABOUT US */
/* ABOUT US */
/* ABOUT US */


/* Main Players */


.main-players-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-players-title {
  text-align: center;
  padding-bottom: 0.5rem;
}

.michael-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.players-img {
  width: 250px;
  border: 4px solid #C3D1E8;
  border-radius: 10px;
  height: 250px;
}

.two-bio {
  display: flex;
  margin-top: 40px;
  justify-content: flex-start;
  align-items: flex-start;
}

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

.boyana-img {
  object-fit: cover;
  object-position: center top;
}

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

.nick-img {
  object-fit: cover;
  object-position: center top;
}

.main-players-name {
  padding: 1rem 0;
  text-align: center;
}

.main-players-intro {
  width: 100%;
  max-width: 600px;
  text-align: left;
  padding: 0 1rem 0 1rem;
}


/* FOOTER */
#footer {
  width: 100%;
  display: block;
  padding: 0;
  border: none;
}

.footer-background {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #0D47A1;
  padding: 40px 0 10px 0;
  box-sizing: border-box;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

.footer-logo {
  grid-column: span 2;
  display: flex;
  align-items: start;
  justify-content: center;
}

.footer-logo img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.footer-logo-mobile {
  display: none;
}

.section-titles-container {
  grid-column: span 7;
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 6rem;
}

.section-title {
  max-width: 150px;
}

.section-title h4 {
  margin-bottom: 1.5rem;
  color: white;
}

.section-title h4:hover {
  color: #141C36;
}

.section-title a {
  text-decoration: none;
}

.page-links a {
  display: block;
  margin: 12px 0;
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.page-links a:hover {
  color: #141C36;
}

/* Contact Us Section */
.contact-us {
  grid-column: span 2;
  color: white;
}

.contact-us h4 {
  color: white;
  margin-bottom: 24px;
}

.contact-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  max-width: 172.5px;
}

.contact-links a:hover {
  color: #141C36;
}

.phone {
  margin-bottom: 2px;
}

.email {
  margin-bottom: 2px;
}

.phone-no {
  margin-bottom: 12px;
}

/* Mobile Styles */
@media (max-width: 769px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-titles-container {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-logo {
    display: none;
  }

  .footer-logo-mobile {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-logo-mobile img {
    max-width: 200px;
  }

  .page-links {
    display: none;
  }

  .contact-us {
    order: 3;
    width: 100%;
    text-align: center;
  }

  .contact-links p,
  .contact-links a {
    text-align: center;
  }

  .footer-background {
    padding-bottom: 40px;
  }
}