.logo{
    width: 200px;
}
body{
    background-image: url(https://cozbook.com/wp-content/uploads/2025/07/sample-site-bg.jpg);
}
 .hero {
      background: #777;
      color: white;
      display: flex;
      justify-content: start;
      align-items: center;
      text-align: left;
      height: 80vh;
      padding: 50px;
    }
    .hero h1 {
      font-size: 76px;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 20px;
      margin: 10px 0;
    }
    .hero .buttons button {
      margin: 10px 10px 0 0;
      padding: 10px 20px;
      background: none;
      border: 1px solid white;
      color: white;
      cursor: pointer;
    }
p{
  color: #A7782D;
  font-weight: 600;
}

    
    .carousel-container {
      overflow: hidden;
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-item-custom {
      flex: 0 0 33.3333%; /* 3 items per row */
      padding: 15px;
      box-sizing: border-box;
    }

    .carousel-item-custom img {
      width: 100%;
      border-radius: 8px;
      background: #f8f9fa;
      padding: 10px;
    }

    .carousel-buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .carousel-buttons button {
      background-color: rgba(0, 0, 0, 0.5);
      border: none;
      padding: 10px;
      color: white;
      cursor: pointer;
    }
#nav a{
  font-size: 18px;
  font-weight: 600;
}
#nav a:hover{
  color: #000a94;
}
    .carousel-dots {
      text-align: center;
      margin-top: 15px;
    }
.active{
  color: #000a94 !important;
}
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      background-color: #bbb;
      margin: 0 5px;
      cursor: pointer;
    }

    .carousel-dot.active {
      background-color: #333;
    }
      .footer {
      background-color: #a28e72; /* matched your footer background */
      color: white;
      padding: 40px 0 20px;
    }
button{
  border-radius: 20px !important;
}
    .footer a {
      color: white;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      background-color: white;
      color: #000;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 16px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 30px;
      padding-top: 15px;
      font-size: 14px;
    }

    .associate-logo {
      width: 24px;
      height: auto;
      margin-left: 6px;
    }