/* css/styles.css */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Avenir', 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #eff0f3;
}


  

/* ========== NAVBAR ========== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #eff0f3;
    z-index: 10;
    display: flex;
    align-items: center;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.01); */
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu ul {
    list-style: none;
    display: flex;
    background-color: rgb(30, 45, 59);
    /* the blackish nav bar */
    gap: 5rem;
    margin: 0;
    padding: 0 4rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 0.25rem 0;
    display: inline-block;
    position: relative;
    font-weight: 300;
    font-size: small;
}

.nav-menu li a.active {
    color: #d1c703;
}

/* .nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d1c703;
  } */



/* Video here */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ========== HERO SECTION ========== */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-text h1 {
    max-width: 670px;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 10rem auto auto 0;
}

.scroll-down {
    margin-top: 1rem;
    font-size: 1rem;
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(10px);
    }
}

/* ========== ABOUT SECTION ========== */

.about {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    padding: 5rem 0;
    min-height: auto;
    /* don’t force full height */
}

.about-box {
    background-color: #eff0f3;
    max-width: 700px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}


.about h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: rgb(30, 45, 59);
}

.underline {
    width: 90px;
    height: 10px;
    background-color: #002d6c;
    /* match your brand blue */
    margin-bottom: 2rem;
}

.about-text {
    width: 70%;               /* Align text starting from center */
    margin-left: auto;        /* Push it to the right half */
    text-align: left;
  }

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgb(108, 108, 108);
    font-weight: 300;
}


/* ========== MISSION & VISION ========== */

.mission-vision {
    padding: 6rem 4rem;
    background-color: #eff0f3;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgb(30, 45, 59);
    text-align: center;
  }
  
  .section-header .underline {
    width: 60px;
    height: 5px;
    background-color: #002d6c;
    margin: 0 auto 3rem;
  }
  
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .card {
    background-color: rgb(247, 247, 247);
    padding: 2rem;
    max-width: 250px;
    flex: 1 1 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-radius: 4px;
  }
  
  .card h3 {
    color: #002d6c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
  }


  /* ========== SERVICES ========== */
  
  .services {
    padding: 6rem;
    margin-top: 10rem;
    position: relative;
    background-color: #eff0f3;
  }
  
  .view-all {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
    background-color: #1d1f23;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
  }
  
  .carousel {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }
  
  .carousel-slide {
    display: flex;
    gap: 2rem;
    min-width: 100%;
    justify-content: center;
  }
  
  .service-card {
    background-color: #f6f6f6;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
  }

  
  .service-card img {
    width: 100%;
  }

  .service-card-content {
    padding: .5rem 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    color: #002d6c;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    font-weight: 300;
  }
  
  .carousel-btn {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1d1f23b3;
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .carousel-btn.left {
    left: -50px;
  }
  
  .carousel-btn.right {
    right: -50px;
  }

  
  .carousel-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    margin: 2rem 0;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #002d6c;
  }


  /* ========== STATS SECTION ========== */

.stats {
    background-color: #003087; /* deep blue */
    padding: 4rem 2rem;
    color: #eff0f3;
    margin: 4rem 0;
  }
  
  .stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    border-top: 4px solid #003087;
    border-bottom: 4px solid #003087;
  }
  
  .stat-box {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 0 1rem;
  }
  
  .stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .stat-box p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
  }
  
  
  /* ========== CONTACT SECTION ========== */

  .contact {
    padding: 6rem 2rem;
    background-color: #fff;
    margin-top: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
  }
  
  .underline {
    width: 60px;
    height: 5px;
    background-color: #002d6c;
    margin: 0.5rem auto 2rem;
  }
  
  .map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex: 1;
    min-width: 280px;
    font-size: 1rem;
    color: #333;
  }
  
  .contact-info h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #002d6c;
  }
  
  .contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact-form button {
    background-color: #1d1f23;
    color: white;
    padding: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #444;
  }
  
  .footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: .2rem;
    font-size: 0.9rem;
    color: #333;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .footer-content p{
    font-weight: 200;
  }
  
  .footer-socials {
    display: flex;
    gap: 1rem;
  }
  
  .footer-socials img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .footer-socials img:hover {
    opacity: 1;
  }





  /* ============================================= ALL SERVICES PAGE ===================================== */


  .page-header {
    text-align: center;
    max-width: 900px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
  }
  
  .page-header h1 {
    font-size: 3rem;
    padding: 5rem 0 0 0;
    color: rgb(30, 45, 59)
  }
  
  .page-header p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    /* gap: 6rem;
    padding: 0 2rem 6rem; */
  }
  
  .service-row {
    display: flex;
    width: 100%;
  }
  
  .service-row.reverse {
    flex-direction: row-reverse;
  }
  
  .service-img,
  .service-text {
    width: 50%;
  }
  
  .service-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .service-text { 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgb(30, 45, 59);
    padding: 0 7rem;
    
  }
  
  .service-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    padding: 0 7rem;
  }
