body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}




/* General Banner Styles */
.banner {
    position: relative;
    text-align: center;
    margin-top: 0px;
    /* Space below the navigation bar */
}

.banner img {
    /*Hide all images by default */
    width: 100%;
    /* Ensure the image spans the full width */
    height: 650px;
    /* Maintain aspect ratio */
    border-radius: 0px;
    /* Optional: Rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Add shadow */
}

.mobile-banner {
    display: none;
    /* Show mobile image */
}

/* Display Desktop Banner by Default */
.desktop-banner {
    display: block;
    /* Show desktop image on larger screens */
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
    .desktop-banner {
        display: none;
        /* Hide desktop image */
    }

    .mobile-banner {
        display: block;
        /* Show mobile image */
    }
}

.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.stats-description {
    flex: 1;
    margin-right: 20px;
}

.stats-description h2 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
}

.stats-description p {
    margin-top: 10px;
    font-size: 16px;
    color: gray;
}

.stats-description a {
    color: black;
    text-decoration: underline;
}

.stats-numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.number-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid lightgray;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}

.number-box span {
    font-size: 48px;
    font-weight: bold;
}

.number-box p {
    margin-top: 10px;
    font-size: 16px;
    color: gray;
}

/* General Section Styles */
.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
    font-family: Arial, sans-serif;
}

.stats-left {
    flex: 1.5;
}

.stats-left h2 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 15px;
}

.stats-left p {
    font-size: 16px;
    color: gray;
}

.stats-left a {
    color: black;
    text-decoration: underline;
}

.stats-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-box {
    border: 1px solid lightgray;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
}

.stat-box p {
    margin-top: 10px;
    font-size: 14px;
    color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .stats-right {
        flex-direction: column;
    }
}

/* Footer Top Section */
.footer {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-top {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid gray;
}

.footer-top h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

.footer-top h3 i {
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.footer-links a:hover {
    border-color: gray;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: gray;
}

.footer-column small {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: gray;
}

.footer-column p {
    margin-top: 10px;
    font-size: 14px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Building Icon */
.building {
    width: 50px;
    height: 100px;
    background-image: url('building-icon.png');
    /* Replace with actual building image */
    background-size: cover;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        /* text-align: center; */
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

/* Banner Image Subtle Animation */
.banner img {
    transition: transform 0.3s ease;
}

.banner:hover img {
    transform: scale(1.02);
}

/* Footer Links Hover Enhancement */
.footer-links a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: gray;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Stats Section Animation */
.stat-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ADANI-STYLE FOOTER ===== */
.adani-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #404040;
}

.footer-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #404040;
}

.footer-logo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #404040;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    background: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-column ul li a:hover {
    color: #0066cc;
    padding-left: 8px;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column ul li a:hover::before {
    width: 4px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #0066cc !important;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #888888;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal a:hover {
    color: #0066cc;
}

/* Responsive Footer Design */
@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }

    .footer-brand {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .footer-logo h2 {
        font-size: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}