body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);

    color: #333;
    height: auto;
}

/* .background{
    background-image: url('img8.jpg');
    position:fixed;
    opacity: 0.2;
    width: 100%;
    height :100%;
    background-position: center;
    background-size: cover;
} */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header .logo {
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 2s ease-in;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.hero {
    background: url('img2.jpg') no-repeat center/cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 2px solid white;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s;
    backdrop-filter: blur(2px);
   
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 1s;
    backdrop-filter: blur(2px) ;
   
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 20px;
    text-align: center;
}

#services {
    color: #ffffff;
    font-size: 16px;
}

.service-list {
    display: flex;
    justify-content: space-around;
}


.service-item {
    background: #000000;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#gallery {
    color: #ffffff;
    font-size: 18px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 3px solid;
    border-color: #fff;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

#about { 
    color: #000000;
    border: 4px solid white;
    background-color: rgb(255, 230, 0);
    font-size: 16px ;
}

#contact{
    color: #fff;
    font-size: 20px;
}
.contactus img{
    width:8%;
    height:8%;
    padding: 7px;
    border: 2px solid white;
    border-radius: 8px;
    margin: 15px;
   }
   .contact-list {
       list-style: none;
       padding: 0;
   }

   .contact-list li {
       margin-bottom: 10px;
   }

   .contact-list a {
       color: #4CAF50;
       text-decoration: none;
   }

   .contact-list a:hover {
       text-decoration: underline;
   }

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 7px 0;
    position: static;
    bottom: 0;
    width: 100%;
    
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
