:root {
    --primary-dark: #132d49;
    --primary-accent: #4aa2ef;
    --secondary-accent: #f0ce46;
    --success: #198754;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.my-bg-primary-dark {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

.my-bg-primary {
    background-color: var(--primary-accent);
    color: #ffffff;
}

.my-bg-secondary {
    background-color: var(--secondary-accent);
    color: #000000;
}

.my-bg-success {
    background-color: var(--success);
    color: #ffffff;
}

.custom-button {
    background-color: var(--primary-dark) !important;
    color: #ffffff !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #284d74 !important;
    color: #1d1919;
}

.custom-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(19, 45, 73, 0.5);
}

.custom-header {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

a {
    text-decoration: none !important;
    transition: color 0.3s ease;
    color: var(--primary-dark);
}

li {
    list-style: none !important;
}

p {
    line-height: 1.6 !important;;
    font-size: medium;
    font-weight: 300;
}



/*=================Nav Bar=================*/

.custom-nav {
    background-color: var(--primary-dark) !important;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    border: none !important;
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="%23ffffff" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E') !important;
}
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 250;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #f0ce46;
}
.navbar-nav .nav-link.active {
    color: #f0ce46 !important;
    font-weight: 500;
} 

.dropdown-item {
  padding: 7px 15px !important;
  color: #132d49 !important;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease
}

.dropdown-item:hover {
    background-color: var(--secondary-accent) !important;
    color: #100202 !important;
}


/*=================Hero Section=================*/

.hero-section {
    position: relative;
    background: url('img/banner/hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 45, 73, 0.4);
}

.hero-content { 
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}


/*=================Sponsor Section=================*/
 .sponsor-section {
      background: #fff;
      padding: 40px 0;
      overflow: hidden;
      position: relative;
    }

    .sponsor-section h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 24px;
      color: #132d49;
    }

    .sponsor-track {
      display: flex;
      width: max-content;
      animation: scroll linear infinite;
    }

    .sponsor-track img {
      height: 60px;
      margin: 0 30px;
      filter: grayscale(100%);
      transition: filter 0.3s;
      object-fit: contain;
    }

    .sponsor-track img:hover {
      filter: grayscale(0%);
      cursor: pointer;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .sponsor-track img {
        height: 50px;
        margin: 0 20px;
      }
    }
    @media (max-width: 480px) {
      .sponsor-track img {
        height: 40px;
        margin: 0 15px;
      }
    }



    /*=================Service Box=================*/
    .service-box{
    z-index: 4;
    background-color: #f8f9fa;
    overflow: hidden;
   
    }

    .service-box:hover {
        background-color: #265b93;
        color: #fff;
        border-radius: 0.25rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: all .2s ease-in-out;
    }

    .service-box:hover h3 {
        color: #fff;
    }

    .service-box:hover img {
        filter: grayscale(50%);
        transition: transform 0.3s ease;
    }

        .service-box a {
        color: #000;
        font-weight: 500;
        text-decoration: none;
    }

    .service-box:hover a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }


/*======Testimonials=======*/
  .testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border: #000 1px solid;
  border-radius: 10px;
  color: #170404;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}



/*=======Pattern Background=======*/
.pattern-box {
  background-color: #265b93;
  color: #ffffff;
}

/*========Page Headers=========*/
.page-header {
    background: url('img/lawhammer.jpg') no-repeat center center/cover;
    width: 100%;
    height: 300px;
    position: relative;

}
