*{
    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;
}
.footer{
    background-color: gray;
    color: white;
    text-align: center;
    padding: 15px;
}
@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;
    }
    .footer{
        font-size: 15px;
    }
}