
body {
  font-family: Arial, sans-serif;
}

header {

  color: skyblue;
}

section {
  padding: 60px 0;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
}

footer {
    background-color: white;
    color: black;

}
.navbar {
    background-color: inherit;
    height: 5%;
    margin: 0 auto;
}

.navbar a {
        color: gold;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
    }

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;

}

.nav-item {
    position:inherit;
    
}

.mega-dropdown:hover .mega-menu {
    display: flex;
}

.mega-dropdown:hover .mega-menus {
    display: flex;
}
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #27a87b;
    color: white;
    padding: 20px;
    width: 800px;
    gap: 15px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;   
}

.mega-menus {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #27a87b;
    color: white;
    padding: 20px;
    width: 800px;
    gap: 50px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.mega-column {
    flex: 1;
    max-width:fit-content;
}

    .mega-column h4 {
        color: gold;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .mega-column p {
        font-size: 12px;
        color: white;
        line-height: 1.4;
    }

.features-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
}



.feature-card {
    flex: 0 0 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height:fit-content;
   
}

    .feature-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .feature-card .inner {
        font-size: 0.95rem;
        color: #5c4c4c;
        height: fit-content;
    }

.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgb(255 255 255);
    color: black;
    border: none;
    cursor: pointer;
    font-size: 10px;
    border-radius:10%;
    transition: background 0.1s;
}
    .scroll-btn:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .scroll-btn.left {
        left: -15px;
    }

    .scroll-btn.right {
        right: -15px;
    }

@media (max-width: 768px) {
    .feature-card {
        flex: 0 0 85%;
    }

    .scroll-btn {
        visibility:hidden;
    }
}


.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, font-size 0.5s ease;
    padding: 1rem;
    border-radius: 6px;
}

    /* Hover effect: lift and grow text */
    .hover-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

        .hover-card:hover p {
            font-size: 1.1em; /* Slightly larger than default */
            transition: font-size 0.3s ease;
        }
    .hover-card img {
        transition: transform 0.3s ease;
    }

    .hover-card:hover img {
        transform: scale(1.3);
    }
.hover-text {
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.hover-text:hover {
    transform: translateY(-4px);
    background-color: #f0f0f0; /* Light gray or change as you like */
}

/* Optional: link color effect */
.hover-text h1 a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.hover-text:hover h1 a {
    color: midnightblue;
}

.hover-logotext {
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}
    .hover-logotext:hover {
        transform: translateY(-4px);
        background-color: #05826d; /* Light gray or change as you like */
    }

.features-scroll-wrapper {
    display: flex;
    overflow-x:  auto;
    gap: 20px; /* spacing between cards */
    padding: 10px 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f9f9f9;
}

.contact-form {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.8s ease-in-out;
}

    .contact-form h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #333;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    margin-bottom: 15px;
}

.btn-primary {
    width: 100%;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 20px;
    }
}

/* Responsive Visibility */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only,
    .mega-menu {
        display: none !important;
    }
}



@media (max-width: 767px) {
    .mega-column {
        width: 100%;
        float: none;
        padding: 10px 0;
    }
}

