*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body{
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
}

.heading{
    text-align: center;
    margin-top: 2rem;
    font-size: 2.1rem;
    color: rgb(64, 64, 212);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-top: 80px;
}

.navbar ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin-right: 2rem;
    position: relative;
}

.navbar ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar ul li a:hover {
    color: #ffeb3b;
    transform: scale(1.1);
}

.navbar ul li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffeb3b;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar ul li:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar ul li a.active {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}


.section1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    /* border: 2px solid white; */
    border-radius: 20px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1s ease; 
}


.text-container {
    width: 60%;
}

.heading2 {
    text-align: left;
    font-size: 2rem;
    color: rgb(64, 64, 212);
}

.para {
    font-size: 18px;
    color: #fff;
}


.img-container {
    width: 35%;
    text-align: center;
}

.img-container img {
    width: 100%;
    border-radius: 20px;
    opacity: 0; 
    transform: translateX(100%); 
    transition: opacity 1s ease, transform 1s ease; 
}


.img-container img.show {
    opacity: 1; 
    transform: translateX(0); 
}
.section2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    /* border: 2px solid white; */
    border-radius: 20px;
    margin-bottom: 20px;
}

.text-container {
    width: 60%;
    text-align: left;
}

.text-container h2 {
    font-size: 2rem;
    color: rgb(64, 64, 212);
}

.text-container p {
    font-size: 18px;
    color: #fff;
}

.science-img-container {
    width: 35%;
    text-align: center;
}

.science-img-container img {
    width: 100%;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease, transform 1s ease;
}

.science-img-container img.show {
    opacity: 1;
    transform: translateX(0);
}

.hemisphere-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.heading3{
    text-align: center;
    font-size: 2.1rem;
    color: rgb(64, 64, 212);
}

.para2{
    text-align: center;
}
.tab-button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 5px;
}

.tab-button.active {
    background-color: #007bff;
}

.hemisphere-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hemisphere-info {
    display: none;
    width: 45%;
    text-align: center;
}

.heading4{
    text-align: center;
    font-size: 2rem;
    color: rgb(64, 64, 212);
}

.hemisphere-info.active {
    display: block;
}

.hemisphere-info img {
    width: 80%;
    margin-top: 20px;
    border-radius: 20px;
}
.simple-slider {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: violet;
}

.slide p {
    font-size: 1.2rem;
    color: violet;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    color: black;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.heading5{
    text-align: center;
    font-size: 2rem;
    color: rgb(64, 64, 212);
    margin-top: 15px;
}

#traditions {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    background-color: #1c1b1b;
    border-radius: 15px;
    width: 95%;
    margin: 0 auto;
}

#traditions h2 {
    color: rgb(64, 64, 212); 
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.traditions-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.tradition-card {
    background: linear-gradient(145deg, #6a1b9a, #8e24aa); 
    color: white;
    padding: 25px;
    border-radius: 20px;
    width: 250px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tradition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/diagonal-stripes.png') repeat;
    opacity: 0.1;
}

.tradition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, #9c27b0, #d81b60); /* Hover gradient */
}

.tradition-card strong {
    color: #ffeb3b; /* Yellow color for the headings */
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.tradition-card p {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tradition-card {
        width: 100%;
        margin-bottom: 20px;
    }
}
#conclusion {
    padding: 30px 15px; 
    background: rgb(64, 64, 212); 
    color: white;
    border-radius: 15px; 
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

#conclusion h2 {
    font-size: 2.5rem; 
    color: #ffeb3b; 
    margin-bottom: 15px; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px; 
    animation: fadeIn 2s ease-out;
}

#conclusion p {
    font-size: 1.3rem; 
    line-height: 1.6; 
    max-width: 700px; 
    margin: 0 auto;
    animation: fadeIn 3s ease-out;
}

#conclusion::before {
    content: '🌌'; 
    font-size: 80px;
    color: #ffeb3b;
    position: absolute;
    top: 10px;
    right: 10px; 
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #conclusion h2 {
        font-size: 2rem; 
    }

    #conclusion p {
        font-size: 1.1rem; 
    }
}

#main-footer {
    background-color: #080808;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}

#main-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

#main-footer p {
    margin: 10px 0;
    font-size: 1.2rem;
}

#main-footer a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
}

#main-footer a:hover {
    text-decoration: underline;
}

#footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#footer-nav ul li {
    display: inline;
    margin: 0 15px;
}

#footer-nav ul li a {
    font-size: 1.1rem;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    color: #ffeb3b;
    font-size: 2rem;
    margin: 0 15px;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #main-footer {
        padding: 20px 0;
    }

    #main-footer p {
        font-size: 1rem;
    }

    #footer-nav ul li {
        display: block;
        margin: 10px 0;
    }

    .social-icon {
        font-size: 1.5rem;
        margin: 0 10px;
    }
}

#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: snow 10s linear infinite;
}

@keyframes snow {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(100vh);
    }
}
#main-header {
    position: relative;
    text-align: center;
    padding: 20px;
}

#santa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px; 
    animation: moveSanta 20s linear infinite; 
}

@keyframes moveSanta {
    0% {
        left: -150px; 
    }
    50% {
        left: 50%; 
        transform: translateX(-50%) translateY(-50%); 
    }
    100% {
        left: 100vw; 
    }
}











