*{
    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);
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: #667eea;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #5a6fd8;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer{
    background-color: grey;
    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;
    }
    .foot-maincontainer{
        flex-direction: column;
        align-items: center;
    }
    .foot-container2{
        border-left: none;
        border-top: 2px solid white;
    }
    
    /* Mobile responsive for contact page */
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
}