.navbar {
    position: fixed;        /* Stays in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #FFF;
    border-bottom: 1px solid linear-gradient(to right, #e6bf85, #356794);
    display: flex;
    align-items: center;
    z-index: 1000;          /* Keeps it above all content */
}

/* Inner content */
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 60px;           /* Adjust size */
}

/* Navigation Links */
.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #ED9119;         /* Highlight on hover */
}

/* Add padding to page so content doesn't hide under navbar */

.bg-dark-orange {
        background-color: #f77f33; /* A representative dark orange color */
    }
    .btn-callback {
        background-color: white;
        color: #f77f33;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        transition: background-color 0.3s;
    }
    .btn-callback:hover {
        background-color: #eee;
    }
    .footer-link {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        padding: 5px 0;
    }
    .footer-link:hover {
        color: #ddd;
    }
    .social-icon {
        color: white;
        font-size: 20px;
        border: 1px solid white;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    /* Style for the floating WhatsApp button */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px; /* Positioned to the left based on the screenshot */
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .whatsapp-float a {
        color: inherit;
        text-decoration: none;
        padding: 10px;
    }
.image-container {
    width: 80%;      /* set the div width */
    height: 730px;     /* set the div height */
    overflow: hidden;  /* hide overflowing parts of the image */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* make image cover the div */
}

.autoShow {
    animation: autoShowAnimation both;
    animation-timeline: view(70% 1%);
}
@keyframes autoShowAnimation {
    from {
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.outlined {
  font-size: 40px;
  color: transparent; /* make inner part transparent */
  -webkit-text-stroke: 2px #FF8F00; /* stroke thickness and color */
  -webkit-text-fill-color: transparent; /* optional: ensures inner is transparent */
}

.vertical-line {
  border-left: 2px solid black; /* Adjust width, style, and color as needed */
  height: 100px; /* Set the desired height of the line */
}
 @keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-slide-in {
            animation: slideInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            opacity: 0; /* Start invisible */
        }