/* Reset and Typography
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, h3, p {
    margin-bottom: 15px;
} */

/* Hero Section with Parallax Background */
.hero-section {
    background: url('heroimage.svg') no-repeat center center/cover;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
	color: #ffffff !important;
}


.hero-titleh3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
	color: #ffffff !important;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin: auto;
	color: #ffffff !important;
}

.download-btn {
    background: linear-gradient(90deg, #ff6600, #ff9900);
    padding: 15px 40px;
    font-size: 1.2em;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(90deg, #ff3300, #ff6600);
}

/* Features Section with Icons */
.features-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ff6600;
    text-transform: uppercase;
}

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

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

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5em;
    color: #ff6600;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.image-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Download Section with Gradient Background */
.download-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    text-align: center;
    color: white;
}

.footer-section {
    background: #333;
    padding: 30px;
    color: white;
    text-align: center;
}
