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

a {
    color: #ddd;
}
/* Remove list bullets */

ul {
    list-style-type: none;
    padding-left: 0; /* Optional: Removes any default padding */
}

/* Body and Background */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #e0e0e0;
    margin: 0;
}

/* Header (Top Bar) */
header {
    background-color: #0d1a2b; /* Deep blue */
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 200px;

    margin-right: 10px;
}

header .brandname {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

header nav ul {
    display: flex;
    list-style: none;
    column-gap: 20px;
    row-gap: 5px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-image: url('mesh-sunset.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    color: #ffffff;
}

.hero p {
    font-size: 18px;
    color: #ffffff;
}

/* Two Columns Section */
.content {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
}

.content .column {
    flex: 1;
    margin-right: 20px;
}

.content .column:last-child {
    margin-right: 0;
}

.content h2 {
    font-size: 24px;
    color: #00aaff; /* Light blue */
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #0d1a2b;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

footer nav ul {
    display: flex;
    row-gap: 5px;
    justify-content: center;
    list-style: none;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
}

footer .social-media a:hover {
    color: #00aaff;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    header .logo img {
        margin-right: 0
    }

    header, footer {
        flex-direction: column;
        text-align: center;
    }

    header nav ul,
    footer nav ul {
        font-size: 20px;
        flex-wrap: wrap;
        margin-top: 10px;
        justify-content:center;
    }

    .content {
        flex-direction: column;
        padding: 20px;
    }

    .content .column {
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer .social-media {
        margin-top: 20px;
    }
}
/* Contact Section */
.contact-info {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px 20px;
    text-align: center;
}

.contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h1 {
    font-family: Arial, serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Contact Info Details */
.contact-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-item {
    flex: 1;
    margin: 0 20px;
    text-align: left;
}

.contact-item h2 {
    font-family: Arial, serif;
    font-size: 24px;
    color: #00aaff; /* Light blue */
    margin-bottom: 10px;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00aaff;
}

/* Contact Form */
.contact-form {
    background-color: #0d1a2b;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 {
    font-family: Arial, serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form label {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #00aaff;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
}

.contact-form button {
    background-color: #00aaff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0088cc;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}
/* About Section */
.about-section {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px 20px;
    text-align: center;
    flex-grow: 1;
}
.about-section-home {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0px 0px;
    text-align: center;
    flex-grow: 1;
}


.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    color: #e0e0e0;
}

/* Mission and Vision Section */
.mission-vision .container {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
}

.mission-vision .column {
    flex: 1;
    margin-right: 20px;
}

.mission-vision .column:last-child {
    margin-right: 0;
}

.mission-vision h2 {
    font-size: 24px;
    color: #00aaff; /* Light blue */
    margin-bottom: 10px;
}

.mission-vision p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Key Features Section */
.features {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px 20px;
    text-align: center;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    width: 45%;
    background-color: #333333;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

.feature-item strong {
    color: #00aaff; /* Light blue */
    font-size: 18px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 16px;
}
/* Videos Section */
.videos {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px 20px;
    text-align: center;
}

.videos .container {
    max-width: 1200px;
    margin: 0 auto;
}

.videos h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.videos p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Video Container */
.video-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.video {
    margin-bottom: 20px;
}

iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
}

/* Flasher */

.flasher {
    margin-left: 20px;  /* Adjust this value as needed */
    margin-right: 20px;  /* Adjust this value as needed */
}
.flasher-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-left: 0px;
}

.flasher h1 {
    font-size: 36px;
    color: #ffffff;
}

.flasher p {
    font-size: 18px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .flasher {
        margin: 0
    }
}

.device-text {
    font-size: 16px; /* Default font size */
    padding: 20px 50px 10px 50px; /* top right bottom left */
}


.buy-now-btn {
    display: inline-block;
    background-color: #00aaff; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding around the text */
    text-align: center; /* Centers the text */
    text-decoration: none; /* Removes underline from link */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Text size */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.buy-now-btn:hover {
    background-color: #0088cc; /* Darker shade on hover */
}

/* Map */
section.map {
    display: flex;
    flex-grow: 1;
}
section.map iframe {
    flex-grow: 1;
    border-radius: 0;
}