/* === Global Styles === */
html, body {
    height: 100%;
    margin: 0;
}

/* Flexbox layout to push footer to bottom */
body {
    display: flex;
    flex-direction: column;
}

/* This makes content take all available space */
.content-wrapper {
    flex: 1;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px;
    font-weight: 600;
}

p {
    margin: 0 0 10px;
}

/* === Navbar === */
.navbar {
    background-color: #042336;
}

.navbar-brand {
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin-right: 15px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-brand img {
    height: 55px;
    width: 60px;
    border-radius: 5%;
}

/* === Contact Section === */
.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.image-column {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.image-column img {
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

.content-column {
    flex: 1;
    padding: 20px;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00796b;
    font-weight: bold;
}

.contact-info {
    float: left;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-item strong {
    color: #00796b;
    font-weight: 600;
}

.contact-item a {
    color: #f5c518;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #ffdb58;
}

/* === HR Director Badge === */
.hr-director {
    float: right;
    background-color: #00796b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
}


.footer {
    background-color: #042336;
    color: #ffffff;
    padding-bottom: 5px;
    padding-top: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer a {
    color: #f5c518;
    text-decoration: none;
}
.footer a:hover {
    color: #ffdb58;
}



/* === Responsive Styles === */
@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .content-column, .image-column {
        width: 100%;
        padding: 10px;
    }

    .hr-director {
        margin-top: 20px;
        align-self: center;
    }

    .contact-info {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }

    .contact-item div {
        text-align: left;
    }
}


/* index page css */

.hero-section {
            min-height: 100vh;
        }

        .carousel-item {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 1s ease-in-out;
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 800px;
            opacity: 0;
            transition: opacity 1s ease, transform 1s ease;
        }

        .carousel-item.active .carousel-caption {
            opacity: 1;
            transform: translate(-50%, -50%);
        }

        .hero-title {
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.25rem);
            line-height: 1.4;
            margin-bottom: 1.5rem;
        }

        .hero-list {
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .hero-list li {
            margin-bottom: 0.5rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .hero-buttons .btn {
            flex: 1;
            min-width: 150px;
            max-width: 200px;
        }
        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
            }

            .carousel-caption {
                width: 95%;
                padding: 1rem;
            }

            .hero-list {
                text-align: left;
            }
        }

        /*services page */

        .service-img{
        height: 60px;
    }    
    .services-title {
      text-align: center;
      font-family: monospace;
      font-size: 2.5rem;
      margin: 80px 0 30px;
    }

    .services-wrapper {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      padding: 0 20px 60px;
    }

    .services-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px 60px;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 15px;
      max-width: 280px;
    }

    .service-item span {
      font-size: 1rem;
      line-height: 1.3;
    }

    .pricing-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: end;
    }

    .pricing-button {
      margin-top: 15px;
      font-family: monospace;
      color: darkred;
      text-decoration: none;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .services-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }


/*contact.html */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-column {
    flex: 0 0 350px;
    text-align: center;
}

.logo-column img {
    height: 300px;
    max-width: 100%;
}

.content-contact {
    flex: 1;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 40px;
}

.content-contact h2 {
    color: #242424;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-contact p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.contact-item {
    float: left;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    word-break: break-word;
}

.contact-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.contact-item div {
    color: #333;
}

.contact-item strong {
    color: #00796b;
}

.contact-item a {
    color: #f5c518;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #ffdb58;
}

.hr-director {
    float: right;
    background-color: #00796b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-column img {
        height: 150px;
    }

    .content-column h2 {
        font-size: 2rem;
    }


    .hr-director {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-item img {
        width: 32px;
        height: 32px;
    }

    .contact-item {
        font-size: 0.95rem;
        justify-content: center;
    }

    .content-column h2 {
        font-size: 1.6rem;
    }

    .content-column p {
        font-size: 1rem;
    }
}