*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 700;
}

/* Base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.logo{
    /* width: 200px; */
    height: auto;
    user-select: none;
}

header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    position: relative;
}

.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li{
    padding: 0px 15px;
    list-style-type: none;
}

.navbar ul li a{
    text-decoration: none;
    color: black;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 16px;
}

.navbar ul li a:hover{
    background-color: rgb(219, 216, 216);
    color: blueviolet;
    transform: translateY(-2px);
}

.hand{
    display: none;
    flex-direction: column;
    row-gap: 4px;
    background: none;
    outline: none;
    border: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hand:hover {
    background-color: rgba(0,0,0,0.1);
}

.hand span{
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.hand.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hand.active span:nth-child(2) {
    opacity: 0;
}

.hand.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main */
.maincontainer1{
    display: block;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.main1-subconatiner1{
    /* margin-top: 20px; */
    margin: auto;
    width: 500px;
    height: 500px;
    position: relative;
}
.main1-subconatiner1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: none;
    display: none;
}

.main1-subconatiner1 img.active{
    display: block;
}



/* Dots container */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

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

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.welcome-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffd700;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-date {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5a6fd8;
}

/* Footer */
footer{
    background-color: grey;
    /* color: black; */
    padding: 20px 0;
    margin-top: 40px;
}

.foot-maincontainer{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    border-bottom: 2px solid white;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.foot-container1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}
.foot-container1 h3{
    user-select: none;
}

.foot-container2{
    border-left: 2px solid white;
    padding-left: 20px;
    min-width: 300px;
}

.foot-container2 table {
    width: 100%;
}

.foot-container2 h3{
    color: white;
    margin: 20px;
    font-size: 16px;
}

.foot-container1 h3{
    color: white;
    margin: 20px 0;
    font-size: 18px;
}

.foot-maincontainer1{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 2px solid white;
    padding: 20px;
}

.foot-container3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.foot-container3 h3{
    color: white;
    font-size: 18px;
}

.icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.icons1{
    color: white;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.icons1:hover {
    color: #333;
    background-color: white;
    transform: translateY(-3px);
}

.foot-maincontainer2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.foot-maincontainer2 h3{
    color: white;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

#list{
    margin: 10px 0;
    list-style: none;
}

#list li{
    list-style-type: none;
    padding: 8px 0;
}

#list li a{
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

#list li a:hover {
    color: rgb(202, 213, 219);
}


@media (max-width: 768px) {
    .menu-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .logo {
        /* width: 120px; */
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 16px;
    }
    
    .navbar {
        width: 100%;
    }
    
    .navbar ul {
        flex-direction: column;
        width: 100%;
        display: none;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0 0 10px 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar ul.active {
        display: flex;
        max-height: 500px;
    }
    
    .navbar ul li {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .navbar ul li a {
        width: 100%;
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .navbar ul li a:hover {
        background-color: #f5f5f5;
        color: blueviolet;
    }
    
    .hand {
        display: flex;
    }
    
    /* Mobile slider adjustments */
    .maincontainer1 {
        padding: 10px;
    }
    
    .main1-subconatiner1 {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    /* Mobile dots adjustments */
    .dots-container {
        bottom: 10px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .foot-maincontainer{
        flex-direction: column;
        align-items: center;
    }
    .foot-container2{
        border-left: none;
        border-top: 2px solid white;
    }
    
    /* Tablet responsive for new sections */
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .welcome-stats {
        gap: 30px;
    }
    
    .features-section,
    .cta-section,
    .news-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}
