/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Section */
.header-section {
    position: relative;
    width: 100%;
    height: 500px;
    /* background: url('/images/solarvideo.mp4') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 20px;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.content h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #FF6600;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #e55d00;
}

/* Content Section */
.content-section {
    background-color: #f4f4f4;
    padding: 50px;
    text-align: center;
}

.text-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-top: 20px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 22px;
    font-weight: bold;
}

.text-content p {
    font-size: 16px;
    margin: 10px 0;
}

.text-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.text-content ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* 🌟 Main Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    background-color: #fff;
}

/* 🌞 Experience Section */
.experience-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

/* 📸 Left Image */
.experience-image {
    border: 5px solid #f57c00;
    padding: 10px;
    border-radius: 10px;
    max-width: 600px;
    height: auto;
}

/* 📊 Right Info Section */
.experience-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box img {
    width: 40px;
}

.info-box .info-text {
    font-size: 20px;
    font-weight: bold;
}



/* 🌟 Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .header-section {
        height: 350px;
    }
    .content h1 {
        font-size: 24px;
    }
    .content-section {
        padding: 30px;
    }
    .text-heading {
        font-size: 22px;
    }
    .text-content h2 {
        font-size: 20px;
    }
    .image-content img {
        max-width: 400px;
    }
    .experience-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .experience-info {
        grid-template-columns: 1fr;
    }
    .experience-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .header-section {
        height: 300px;
        padding: 10px;
    }
    .content h1 {
        font-size: 20px;
    }
    .content-section {
        padding: 20px;
    }
    .text-heading {
        font-size: 20px;
    }
    .image-content img {
        max-width: 380px;
    }
    .experience-container {
        padding: 15px;
    }
    .experience-image {
        max-width: 350px;
    }
}