/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* Header */
/* Remove underline for all nav links */
header a {
    text-decoration: none;
}


/* Header container */
.header-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 15px 20px;
    width: 100%;
   
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.logo-img {
    height: 40px; /* adjust size */
    width: auto;
    margin-right: 10px; /* space between logo and text */
}


/* Desktop Navigation */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: black;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: #007BFF;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* Make header container stack correctly on mobile */
    .header-container {
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    /* Mobile menu icon visible */
    .menu-icon {
        display: block;
    }

    /* NAV HIDDEN by default, positioned below header */
    nav {
        display: none;
        flex-direction: column;
        background: white;
        width: 100%;
        position: absolute;
        top: 60px; /* Just below the header */
        left: 0;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        z-index: 10;
    }

    nav a {
        padding: 12px 0;
        width: 100%;
        display: block;
        color: black;
    }

    /* When open, appear as dropdown */
    nav.open {
        display: flex;
    }
}



/* Hero */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1536 / 1024; /* perfect ratio for your image */
    
    background-image: url("/assets/bg-img.png");
    background-size: contain;     /* full image visible */
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    align-items: center;
    color: white;
}


.hero-container {
    width: 85%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%; /* ensures vertical alignment */
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;

    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;

    border-radius: 40px; /* pill shape */
    text-decoration: none;

    transition: all 0.3s ease;
    margin-top: 20px;
}

/* Hover effect like the image */
.btn:hover {
    background: #ffffff;      /* white background */
    color: #00a86b;           /* green text or choose your color */
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Sections */
.section {
    padding: 60px 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.container p {
    font-size: 19px;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    color: #003366;
}

.light-bg {
    background: #f3f7ff;
}

/* Lists */
.values-list {
    list-style: none;
    margin-top: 10px;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "•";
    color: #003366;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services */
.services-grid {
    gap: 25px;
}

.horizontal-list-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.horizontal-list-container {
    overflow-x: auto;        /* allow scrolling */
    overflow-y: hidden;
    flex: 1;
    white-space: nowrap;
    scrollbar-width: none;   /* hide scrollbar */
     position: relative;      /* IMPORTANT – anchors the buttons */
    padding-bottom: 80px;    /* space for the button */
}


.horizontal-list-container::-webkit-scrollbar {
    display: none;           /* hide scrollbar */
}

.horizontal-list {
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}


.icon-phone {
    color: white;
}



/* Mobile fixes */
@media (max-width: 600px) {

    .horizontal-list {
        gap: 1rem; /* reduce gap */
    }

    .custom-li {
        width: 140px;          /* fixed width for mobile */
        font-size: 0.75rem;    /* smaller text */
        text-align: center;    /* center align text */
        white-space: normal;   /* allow wrapping */
    }

    .li-img {
        width: 100%;        /* make image responsive */
        height: auto;
        border-radius: 10px;
    }
}


.custom-li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
}

.li-img {
    display: block;
    width: 280px;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

/* Wrapper for both buttons */
.scroll-btn-wrapper {
    position: absolute;
    bottom: -40px;                    /* adjust up/down */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.scroll-btn {
    width: 60px;                 /* buttons wider so blue fills left half */
    height: 45px;                /* center remains square */
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Left button (active blue) */
.scroll-btn.prev.active {
    background: #3da5ff;
    color: #fff;

    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;

    border-top-right-radius: 0;     /* square on center */
    border-bottom-right-radius: 0;  /* square on center */
}

.scroll-btn.scroll-btn.prev.active:hover {
    background-color: white;
    color: black;
}
.scroll-btn.scroll-btn.next:hover {
    background-color: rgb(227, 227, 227);

}

/* Right button (white) */
.scroll-btn.next {
    background: white;
    color: black;

    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;

    border-top-left-radius: 0;       /* square on center */
    border-bottom-left-radius: 0;    /* square on center */
}



.contact-info {
    text-align: right; /* Align everything to the right */
  }

  .contact-info li {
    list-style: none;
    margin-bottom: 5px;
   
  }

  .contact-info li i {
    margin-right: 8px; /* space between icon and number */
    color: #000; /* optional */
  }

  .contact-info .fa-phone {
    color: white;
  }

  .no-logo .fa-phone {
        color: #222;
    }

   @media (max-width: 480px) {
    .no-logo .fa-phone {
        color: #222;
    }

    .contact-info li {
         text-align: left;
    }
  }



@media (max-width: 768px) {
    .scroll-btn-wrapper {
        display: none;
    }

   
}



.service-card h3 {
    padding-top: 1%;
    margin-bottom: 15px;
    color: #003366;
}



/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-section p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-section.company-info {
    flex: 1;
}

.footer-section.company-info h3 {
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info .address,
.footer-info .contact {
    flex: 1;
    min-width: 200px;
}

.footer-info .contact {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}


.mail {
    color: white;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }
    .hero-content {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    nav a {
        margin-left: 15px;
        font-size: 14px;
    }
    .horizontal-list-wrapper {
        flex-wrap: wrap;
    }
    .custom-li {
        min-width: 200px;
    }
    .li-img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h2 {
        font-size: 26px;
    }
    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    .footer-info {
        flex-direction: column;
        text-align: left;
    }
    .footer-info .contact {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 22px;
    }
    .li-img {
        width: 160px;
    }
    .custom-li {
        min-width: 160px;
    }
    .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}
