



/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Marquee Header */
header {
    background: #aa4908;
    color: white;
    /* padding: 3px 0; */
    text-align: center;
}

marquee {
    font-size: 14px;
    font-weight: bold;
}

/* Hero Section */
.hero2 {
    position: relative;
    text-align: center;
}

/* Logo Positioning */
/* Logo Positioning & Styling */
.hero-logo1 {
    position: absolute;
    top: 0px;
    left: 205px;
    width: 140px; /* Adjust size as needed */
    height: 140px; /* Ensuring it stays circular */
    border-radius: 5%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures the image fills the circular shape properly */
    border: 2px solid white; /* Optional: Adds a white border around the logo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
    z-index: 10; /* Ensures it's above other elements */
}


.hero-logo2 {
    position: absolute;
    top: 0px;
    left: 25px;
    width: 140px; /* Adjust size as needed */
    height: 140px; /* Ensuring it stays circular */
    border-radius: 5%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures the image fills the circular shape properly */
    border: 2px solid white; /* Optional: Adds a white border around the logo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
    z-index: 10; /* Ensures it's above other elements */
}

/* Hero Image */
.hero2 img:last-child {
    width: 100%;
    object-fit: cover;
}



.hero-image-main {
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero2.fade-in img {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in Animation for Logo */
@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hero-logo {
        width: 100px; /* Reduce logo size on smaller screens */
        top: 10px;
        left: 10px;
    }
}

/* Hero Section */




/* Info Cards (Hover & Animation) */
.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale-up Effect */
.scale-up {
    transform: scale(0.9);
    transition: transform 0.5s ease-in-out;
}

.scale-up:hover {
    transform: scale(1);
}

/* Footer */
footer {
    background: #004a99;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* JavaScript for Scroll Animations */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    marquee {
        font-size: 16px;
    }
}
