
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/drone/DJI_20250114070931_0007_V.JPG');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: left;
    height: 90vh;
    position: relative;
}

.hero-content {
    max-width: 600px;
    
}

.hero-image
{
    margin-right: 20px;
}

.hero-image img
{
    width: 500px;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.6); 
}
.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.primary-button,
.secondary-button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.primary-button {
    background-color: #8B0000;
    color: #fff;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: #a00000;
}

.secondary-button {
    background-color: #fff;
    color: #8B0000;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #f3f3f3;
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #8B0000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.feature {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

/* Applications Section */
.applications-section {
    background-color: #f1f1f1;
    padding: 60px 20px;
}

.applications-section p 
{
    width: 100%;
    text-align: center;
}

.applications-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #8B0000;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.application {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.application img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.application h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Testimonials Section */
.success-stories {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.success-stories h2 {
    margin-bottom: 40px;
    color: #8B0000;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.story {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.story img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.story h3 {
    margin-bottom: 10px;
    color: #333;
}

/* meet the experts */
/* Team Section */
.team-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #8B0000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member img {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #333;
}


/* blog section */
.blog-post
{
    margin-top: 10px;
}
.blog-post a
{
    text-decoration: none;
    color: #8B0000;
}

.blog-post img 
{
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-post a:hover
{
    color: #a00000;
    transition: color 0.3s ease;
    text-decoration: underline;
}
.blog-section
{
    width: 80%;
    height: fit-content;
    margin: 0 auto;
}

/* CTA SECTION */
.cta-section
{
    width: 80%;
    height: fit-content;
    margin: 50px auto;
    text-align: center;
    padding-bottom: 10px;
}

.cta-content p
{
    font-size: 1.2rem;
    margin-bottom: 5px;

}

.getStarted-button
{
    width: fit-content;
    height: fit-content;
    background-color: #8B0000;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
