body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}
  .company-profile {
       padding: 50px 0;
       background-color: #f9f9f9;
   }
  .company-profile h2 {
       text-align: center;
       font-size: 28px;
       color: #333;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
       margin-bottom: 30px;
   }
  .profile-content {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
   }
  .profile-text h3 {
       font-size: 24px;
       color: #007bff;
       margin-top: 30px;
       margin-bottom: 20px;
   }
  .profile-text p {
       text-align: justify;
       font-size: 18px;
       line-height: 1.6;
       color: #666;
       margin-bottom: 20px;
   }
  .profile-text strong {
       font-weight: bold;
   }
 .company-profile {
       padding: 50px 0;
       background-color: #f9f9f9;
   }
 .company-profile h2 {
       text-align: center;
       font-size: 24px;
       margin-bottom: 30px;
   }
 .company-profile p {
       text-align: justify;
       font-size: 18px;
       margin-bottom: 20px;
       line-height: 1.6;
       color: #666;
   }
.hero {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.btn {
    background-color: white;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.btn:hover {
    background-color: #007bff;
    color: white;
}

#carouselExampleIndicators {
    margin: 20px 0;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.image-gallery img {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.1);
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    animation: fadeIn 1.2s ease;
}

.feature p {
    font-size: 16px;
    animation: fadeIn 1.4s ease;
}

.latest-news {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.latest-news h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.news-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    animation: fadeIn 1s ease;
}

.news-item p {
    font-size: 16px;
    animation: fadeIn 1.2s ease;
}
.contact-us {
    background: linear-gradient(to bottom right, #f2f2f2, #e6e6e6);
    padding: 50px 0;
    text-align: center;
}

.contact-us h2 {
    font-size: 32px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-us p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}