/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;padding: 0;
    
}

a {
    text-decoration: none;
    color: #0d6efd;
}
.social-icons a img {
    transition: transform 0.3s ease;
  }
  .social-icons a:hover img {
    transform: scale(1.1);
  }
  

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background-color: #283618;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.navbar-nav .nav-link,.dropdown-item {
    color: #0b0000;
    font-size: 1rem;
    font-weight: bolder;

}

.navbar-nav .nav-link:hover ,.dropdown-item:hover {
    color: #440ae3;
    text-decoration: none;

}
.navbar-brand img{
    width: 80px;
 

}

/* Hero Section */
header {
    background-color: #1b5e20;
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeIn 1s ease-out;
}

header p {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Service Section */
.service-section {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 0;
    animation: fadeIn 1s ease-out;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1b5e20;
    margin-bottom: 30px;
}

.service-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.icon-box {
    background-color: #f8f9fa;
    padding: 20px;
    gap:30px !important;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.container{
    justify-content: space-between;
    height: fit-content;
    gap:30px;
}
.icon-box:hover {
    transform: translateY(-10px);
    background-color: #d1e7dd;
}

.icon-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.icon-box h5 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.icon-box p {
    font-size: 1rem;
    color: #666;
}

.service-section .row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-section .col-md-4 {
    max-width: 300px;

    
}

/* Footer */
/*footer {
    background-color: #283618;
    color: white;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
    margin: 0;
}*/
footer {
    background-color: #212529!important;
    color: white;
    padding: 40px 0;
  }

  .footer-link a {
    color: #8000bb;
    text-decoration: none;
   
  }

  .footer-link a:hover {
    color: white;
  }
/* Button Styles */
.btn-success {
    background-color: #1b5e20;
    border: none;
    padding: 10px 30px;
    font-size: 1.125rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #145214;
}

.btn-lg {
    font-size: 1.25rem;
}

/* Call to Action Section */
.bg-light {
    background-color: #f8f9fa;
}

.bg-light .container h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 20px;
}
section{
    min-height: 100vh;
}
/* Responsiveness */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 1rem;
    }

    header h1 {
        font-size: 2.5rem;
    }

    .service-section h2 {
        font-size: 2rem;
    }

    .icon-box {
        padding: 15px;
    }

    .icon-box h5 {
        font-size: 1.25rem;
    }

    .icon-box p {
        font-size: 0.875rem;
    }


    /* Prevent horizontal overflow */
* {
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Optional: Add some padding and full-width safety for sections */
  section, header, footer {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
 img{
    width:100%;

 }  
 .social-icons img{
    width: 40px;
 }
 .navbar-brand img{
    width:50px;
 }
 .hero-section{
    background-image: url('photos/contact.jpg');
    background-position: center;
    background-size:cover ;
    background-repeat: no-repeat;
 } 
 #bannersmall{font-size: 3rem;}
}
