body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
}

/* Header Section */
.header {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

.header h1 {
    font-size: 3.5rem;
    margin: 0 0 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 15px;
    gap: 30px;
    border-bottom: 2px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar a {
    text-decoration: none;
    font-weight: 600;
    color: #4a00e0;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    background-color: #f0f0f0;
    color: #8e2de2;
    transform: scale(1.1);
}

/* Main Container */
.container {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Section (Tab) Content */
.tab-content {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Card Grid */
.card-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: cardPopUp 0.6s ease-out forwards;
    opacity: 0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0 0 10px;
    color: #4a00e0;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff;
    padding: 60px 20px;
    margin-top: 50px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1 1 200px;
    text-align: left;
}

.footer-heading {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #fff;
    /* White on hover for contrast */
    text-decoration: none;
}

.quick-links ul {
    list-style: none;
    /* Removes bullet points */
    padding: 0;
    margin: 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
    /* Hover effect for icons */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
opacity: 0;
    }

    to {
opacity: 1;
    }
}

@keyframes cardPopUp {
    from {
transform: translateY(20px);
opacity: 0;
    }

    to {
transform: translateY(0);
opacity: 1;
    }
}

/* Staggered animation effect for cards */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

/* You can continue this for more cards */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
padding: 15px;
    }

    .card-grid {
grid-template-columns: 1fr;
    }

    .navbar {
padding: 0px;
gap: 0px;
    }

    * Header Section */ .header {

padding: 0px 0px;
    }

    .header h1 {
font-size: 2.7rem;
margin: 0 0 5px;
letter-spacing: 2px;
    }

    .header p {
font-size: 1.2rem;
opacity: 0.9;
letter-spacing: 1px;
    }

    .hide-india {
display: none;
    }

    .navbar a:hover,
    .navbar a.active {

transform: scale(1);
    }




    .footer {

padding: 5px 5px;
margin-top: 25px;
    }

    .footer-content {
margin: 0 auto;
gap: 10px;
    }

    .footer-section {
flex: 2 1 150px;
padding-left: 10px;
    }

    .footer-heading {
font-size: 1rem;
margin-bottom: 10px;
padding-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
    }

    .footer-section a:hover {
color: #fff;
text-decoration: none;
    }

    .quick-links ul {
list-style: none;
padding: 0;
margin: 0;
    }

    .social-icons a {
display: inline-block;
margin-right: 15px;
align-items: center;

    }

    .social-icons img {
width: 10px;
height: 10px;
transition: transform 0.3s ease;
padding: 5px;



    }

    .social-icons img:hover {
transform: scale(1.1);
    }

    .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
margin-top: 30px;
padding-top: 10px;
    }

    .copyright {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.7);
margin-top: 5px;
    }
}