* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
 
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
}

header {
  background: #fff;
  /*color: white;*/
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 2rem;
}

.logo{
    font-weight: bold;
    width: 150px;
    min-width: 100%;
}

.footer-image img {
  width: 150px;
  margin-bottom: 15px;
}


.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
    /*margin-left: 50px;*/
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links li a[href="#services"]{
     margin-right: 260px;
    margin-left: 50px;
}

.nav-links li a[href="#news"]{
  margin-left: 260px;
  margin-right: 50px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  transition: .3s;
}


.nav-links a:hover {
  color: #ffad00;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  background-image: url(https://carmenjonesconsulting.com/wp-content/uploads/2026/02/CJC_WHEELb-scaled.png);
  height: 500px;
  background-size: cover;
  /*background: linear-gradient(to right, #000, #444);*/
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section {
  padding: 60px 20px;
  /*max-width: 1000px;*/
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}


/* About Section Layout */

section#about {
    max-width: 1000px;
    padding: 80px;
}

/* Founder Section Layout */

section.section.founder {
    background-color: #ffad00;
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1220px;
    margin: 0 auto;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.founder-image img {
    max-width: 100%;
    width: 480px;
    border-radius: 3px;
    object-fit: cover;
}

.founder-text {
  flex: 1;
}

.founder-text p {
  font-size: .85rem;
}


section#services h2, section#news h2 {
    text-align: center;
    margin-bottom: 30px;
}

.card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}

/* Card Image */

.card-image img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 5px;
  transition: transform 0.4s ease;
}

/* Optional hover zoom effect */

.card-image {
    width: 150px;
    margin: 0 auto;
}


.card:hover .card-image img {
  transform: scale(1.05);
}


.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.contact {
  text-align: center;
}


/* Services Section */

#services .services-grid {
    max-width: 100%;
    width: 1220px;
    margin: 0 auto;
}

.services-grid .card {
    border: none;
    width: 245px;
    margin: 0 auto;
}

#services h3, #news h3{
    font-size: 1rem;
    line-height: 1.3rem;
}

/* Partners Section */

section.section.partners {
    background-color: #000;
}

.partners {
  text-align: center;
}

.partners h3 {
  margin-bottom: 60px;
  font-size: 24px;
  color: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 100%;
  width: 1220px;
  margin: 0 auto;
}

.partners-grid img {
  max-width: 100%;
  width: 130px;
  margin: auto;
  transition: 0.3s;
}

img[alt="DiscoverBoating logo"]{
      width: 290px;
}

img[alt="Aim_High_Foundation logo"]{
   width: 290px;
}

img[alt="mark-stephen logo"]{
   width: 230px;
}

img[alt="Urbanw logo"]{
   width: 60px;
}

img[alt="volkswagen logo"]{
   width: 60px;
}

/*.partners-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
*/

/* News Section */

#news .services-grid {
    max-width: 100%;
    width: 1220px;
    margin: 0 auto;
}

#news .card {
    border: 3px solid #ffad00;
    border-radius: 1px;
}

#news .card-image {
    width: 100%;
}

#news p{
      font-size: .85rem;
    line-height: 1.3rem;
    margin-bottom: 10px;
}

#news .services-grid .card{
   width: 100%;
}

h3.network-article{
  margin-top: 35px;
}

h3.bizbash-article {
    margin-top: 12px;
}

#news a {
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    transition: .3s;
}

#news a:hover {
  color:#ffad00;
}



footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
}

footer p {
    font-size: 0.7rem;
    padding-bottom: 0px;
}

section#contact {
    background-color: #000;
    padding-bottom: 20px;
}

section#contact a {
    color: #ffad00;
    text-decoration: none;
    font-size: 1rem;
}

/* Social Icons */

.social-links img {
    width: 32px;
}

.social-links {
  margin-top: 10px;
    display: flex;
    gap: 0px;
    justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* Scroll Animation */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: different animation direction */

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger effect for cards */

.services-grid .card {
  transition-delay: 0.1s;
}

.services-grid .card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .card:nth-child(6) { transition-delay: 0.6s; }
.services-grid .card:nth-child(7) { transition-delay: 0.7s; }

/* Mobile */

@media (max-width: 768px) {

  nav .logo{
    display: none;
  }

.founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    width: 100%;
    max-width: 300px;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    flex-direction: column;
    width: 100%;
   
    display: none;
  }

  .nav-links li {
    margin: 12px;
  }

    .nav-links li:nth-child(3)  {
  display: none;
  }

  .menu-toggle {
    display: block;
  }

    .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}