body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
background-color: #333;
color: white;
position: sticky;
top: 0;
z-index: 1000;

}

.logo img {
width: 100px;
border-radius: 20px;
}

.nav-links {
display: flex;
gap: 20px;
align-items: center;

}

.nav-links li {
position: relative;

}

.nav-links a {
color: white;
padding: 10px;
font-size: 18px;
transition: color 0.3s ease;


}

.nav-links a:hover {
color: #ff8c00;

}

/* Dropdown */
.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #444;
border-radius: 5px;
z-index: 1000;
}


.dropdown:hover .dropdown-menu {
display: block;
}

.dropdown-menu li {
padding: 10px 20px;
}

.dropdown-menu a {
color: white;
}

.dropdown-menu a:hover {
background-color: #555;
}
.hero {
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    height: 400px;
    color: rgb(0, 0, 0);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-top: 0;
}

/* Content layout */
.services-section {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.service-detail {
    margin-bottom: 50px;
}

.service-detail h3 {
    text-align: left;
    font-size: 28px;
    color: #333;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.service-detail p {
    text-align: justify;
    font-size: 18px;
    margin: 15px 0;
}

.service-detail ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.service-detail ul li {
    padding-left: 1.5em;
    text-align: justify;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.service-detail ul li::before {
    content: '•';
    color: #444;
    position: absolute;
    left: 0;
    top: 0;
}
/* Fade In Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-delay {
    animation: fadeIn 1s ease-in-out 0.5s forwards ; /* Delay for the paragraph */
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}
    /* Page Opening Animation */
@keyframes pageFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

@keyframes scaleIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* Apply animations to specific sections */
body {
animation: pageFadeIn 1s ease-in-out forwards; /* Fades in the whole page */
}


.hero-content {
animation: scaleIn 1.5s ease-out 0.3s forwards; /* Scale up hero content */
}
/* Delay the animation of sections */
.section, footer {
animation-delay: 0.8s;
}

/* Fade in for hero elements */
.hero h1 {
opacity: 0;
animation: fadeIn 1s ease-in-out 0.3s forwards;
}

.hero p {
opacity: 0;
animation: fadeIn 1s ease-in-out 0.6s forwards;
}

.btn-main {
opacity: 0;
animation: fadeIn 1s ease-in-out 0.9s forwards;
}

/* Icons Section Animation */
.icons i {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1s ease-in-out 1s forwards;
}

/* Footer Animation */
footer {
opacity: 0;
animation: fadeIn 1s ease-in-out 1.2s forwards;
}


.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 125px;
        right: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .burger {
        display: flex;
    }
}