/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
}

.hero {
    background-image: url('vsgif_com__.1670176.gif');
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5722;
    transform: scale(1.1);
}

.about-us {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.stat {
    width: 300px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.stat p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stat span {
    font-weight: bold;
    color: #ff4500;
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.capabilities {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.capability {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.capability.center-capability {
    text-align: center;
}

.capability i {
    color: #ff4500;
    font-size: 24px;
    margin-right: 15px;
}

.capability h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.capability p {
    color: #666;
}

.custom-capability {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.custom-capability img {
    width: 100%;
    max-height: 300px;
    border-radius: 5px;
}

.sustainability-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.sustainability-item {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sustainability-item i {
    font-size: 40px;
    color: #ff4500;
    margin-bottom: 10px;
}

.sustainability-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.sustainability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.learn-more-btn {
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #ff5722;
}

/* Footer Section */
footer {
    background-color: #333;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

footer h5 {
    font-size: 18px;
    font-weight: 600;
}

footer p {
    font-size: 14px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

footer ul.list-inline li a {
    color: #a3a3a3;
    text-decoration: none;
}

footer ul.list-inline li a:hover {
    color: #fff;
}

/* Google Maps iframe */
.map-responsive iframe {
    width: 100%;
    height: 200px;
    border: 2px solid #fff;
    border-radius: 8px;
}

/* Styling for smaller devices */
@media (max-width: 768px) {
    footer .row {
        justify-content: center;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }

    footer .text-md-right {
        text-align: center !important;
    }

    footer ul.list-inline {
        justify-content: center;
    }
}
