* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==== Top Bar ==== */
/* .top-bar {
            background-color: #001f4d;
            color: white;
            padding: 6px 0;
            font-size: 14px;
        }

        .top-bar .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        } */
/* ==== Top Bar ==== */
.top-bar {
    background-color: #001f4d;
    color: white;
    padding: 6px 0;
    font-size: 14px;
    overflow: hidden;
}

.top-bar .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.top-bar .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: leftRightBounce 20s ease-in-out infinite;
}

.top-bar .marquee-content:hover {
    animation-play-state: paused;
}

@keyframes leftRightBounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(calc(100vw - 100%));
    }

    100% {
        transform: translateX(0);
    }
}

/* ==== Header ==== */
.header {
    background: #002d72;
    padding: 10px 0;
    color: white;
    position: relative;
    z-index: 1000;
    height: 80px;
}

.header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

/* ==== Nav ==== */
nav {
    display: flex;
}

nav ul {
    display: flex;
    /* gap: 20px; */
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    padding: 8px 10px;
    display: block;
    position: relative;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #00aaff;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #00aaff;
}

nav ul li a:hover::after {
    width: 100%;
}

/* ==== Dropdown ==== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    color: black;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: #002d72;
    transition: background-color 0.3s;
}

.dropdown-menu li:hover {
    background-color: #004080;
}

.dropdown-menu li:hover a {
    color: white;
}

/* Desktop show on hover */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Mobile show on click */
.dropdown.active .dropdown-menu {
    display: flex;
}

/* ==== Hamburger ==== */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 75%;
        background-color: #002f9e;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #004080;
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-menu li a {
        color: white;
        width: 100%;
    }

    .dropdown-menu li:hover {
        background-color: #003366;
    }
}

#whatsappicon,
#whatsapp {
    color: rgb(77, 232, 77);
}

.content {
    margin-top: 100px;
    margin-left: 60px;
    text-align: left;
    font-size: 1rem;
    padding: 0 20px;
    animation: fadeIn 1s ease;
}

.content h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #2b3076, #002d72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.content h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #2b3076, #00c6ff);
    margin-top: 10px;
    border-radius: 2px;
    transform-origin: left;
    animation: underlineSlide 3s ease-in-out infinite;
}

@keyframes underlineSlide {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    51% {
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}


.content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.content p {
    color: #555;
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.179);
}

.contact-form h2 {
    margin-bottom: 10px;
    font-size: 2em;
    color: #002d72;
}

.contact-form h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #656ff2, #00c6ff);
    margin-top: 10px;
    border-radius: 2px;
    /* transform-origin: left; */
    /* animation: underlineSlide 2s ease-in-out infinite; */
}

.contact-form p {
    margin-bottom: 25px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(175, 160, 160, 0.229);
    resize: vertical;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.send-button {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.send-button:hover {
    background: linear-gradient(to right, #764ba2, #667eea);
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2em;
    color: white;
    background: linear-gradient(to right, #667eea, #764ba2);
    padding: 15px;
    border-radius: 10px;
}

.info-card h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.info-card p {
    margin: 5px 0 0;
    color: #666;
}

.download-pdf {
    margin-top: 0px;
}

.download-pdf a {
    display: inline-block;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.download-pdf a:hover {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-form {
        max-width: 100%;
        width: 100%;
    }

    .contact-info {
        width: 100%;
        margin-top: 20px;
    }

    .info-card {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content h2,
    .content p {
        margin: 10px;
        font-size: 1rem;
    }
}

/* 🔗 Footer */
/* .footer {
    background-color: #001f4d;
    color: white;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer h4,
.footer h3 {
    margin-bottom: 15px;
}

.footer p,
.footer a {
    color: #ddd;
    font-size: 14px;
}

.footer i {
    font-size: 20px;
    margin: 8px;
}

.footer a:hover {
    color: #00aaff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: #aaa;
} */

/* Footer Styles */
.site-footer {
    /* background-color: #1a203c; Dark blue from image */
    /* background-color: #0d0d57; */
    /* background-image: url(./bg_images/footer1.png); */
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    z-index: 5;
    /* Ensure footer is below the grow-business section */
    margin-top: 50px;
    /* Adjust this to pull the footer up behind the grow-business section */
    /*padding-top: 150px;  Add padding to the top of the footer to account for the overlapping section */
    height: auto;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: orange;
}

.footer-column address,
.footer-column p {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    color: orange;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

footer {
    background: #1a237e;
    /* background-color: #0d0d57; */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.equipment-section h2 {
    text-align: center;
    color: #002d72;
    margin-top: 20px;

    font-size: 2.5rem;
}

.equipment-section p {
    text-align: center;
    color: black;
    font-size: 1.2rem;
    margin-bottom: 40px;
}