/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('images/background1.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the background image */
    background-repeat: repeat; /* Repeat the background image */
    background-size: auto; /* Prevent the image from repeating */
    color: #fff; /* Default text color for body content */
	
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
	background-color: rgba(0, 0, 0, 0.8);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem; /* Adjust margin to bring the logo closer to the links */
}

.navbar .logo img {
    width: 40px;
    height: auto;
}

.navbar nav {
    display: flex; /* Ensure nav links are in a row */
}

.navbar nav a {
    color: #fff; /* Default text color */
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold; /* Bold font style */
    font-family: 'Donut', sans-serif; /* Replace with actual donut font if available */
    transition: color 0.3s, text-decoration 0.3s; /* Smooth transition for hover effects */
}

.navbar nav a:hover {
    color: #ff6600; /* Orange highlight on hover */
    text-decoration: underline; /* Underline on hover */
    font-weight: bold; /* Maintain bold font on hover */
}

.auth-buttons .signin {
    background: none;
    border: 2px solid #fff; /* Thicker border */
    color: #fff; /* Default text color */
    padding: 0.8rem 1.5rem; /* Adjust padding for a thicker button */
    cursor: pointer;
    transition: background 0.3s, color 0.3s; /* Smooth transition for hover effects */
    font-weight: bold; /* Bold font style */
    font-family: 'Donut', sans-serif; /* Replace with actual donut font if available */
    border-radius: 25px; /* Good border radius for a modern look */
}

.auth-buttons .signin:hover {
    background: #000; /* Orange background on hover */
    color:  #ff6600; /* Change text color to black on hover */
}

/* Hero Section Styles */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background: url('images/background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
	background-color: rgba(0, 0, 0, 0.8);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures text and button appear above the overlay */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #fdfcfb; /* Orange color for highlight */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.learn-more {
    background-color: #ff6600; /* Bright orange background */
    color: #000; /* Black text color for contrast */
    padding: 0.8rem 2rem; /* Padding for better size */
    border: none; /* Remove default border */
    border-radius: 25px; /* Add a rounded border for a softer appearance */
    cursor: pointer; /* Change cursor to pointer for interactivity */
    font-size: 1rem; /* Font size */
    font-weight: bold; /* Make text bold for emphasis */
    transition: background 0.3s, color 0.3s, transform 0.2s; /* Smooth transitions */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

/* Hover effect for the button */
.learn-more:hover {
    background-color: #fff; /* Change background to white on hover */
    color: #ff6600; /* Change text color to orange on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}



/* Problem Section Styles */
.problem {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 3rem 2rem;
    color: #fff;
    background-color: #000; /* Optional, add a background if needed */
	background-color: rgba(0, 0, 0, 0.8);
}

.problem-image {
    flex: 1;
    max-width: 35%;
    padding: 1rem;
}

.problem-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.problem-content {
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #ff6600;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff6600;
}

.problem-item p {
    font-size: 1rem;
    color: #fff;
}

/* Introduction Section Styles */
.introduction {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #000; /* Matches the site's dark theme */
    color: #fff;
	background-color: rgba(0, 0, 0, 0.8);
}

.introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #fff;
}

.introduction-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
}

.introduction-item {
    max-width: 40%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.introduction-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.introduction-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Vision Section Styles */
.vision {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    color: #fff;
    background-color: #000;
    gap: 2rem;
	background-color: rgba(0, 0, 0, 0.8);
}

.vision-image {
    flex: 1;
    max-width: 45%;
}

.vision-image img {
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.vision-content {
    flex: 1;
    max-width: 50%;
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.vision-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6600;
    margin-right: 1rem;
    padding: 0.2rem 0.8rem;
    border: 2px solid #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.vision-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Main styling for the section */
.how-it-works {
    background-color: #000; /* Black background with subtle pattern */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    background-image: url('path-to-your-star-background-image.png'); /* Optional: Add a starry background image */
    background-size: cover;
	background-color: rgba(0, 0, 0, 0.8);
}

/* Section title */
.how-it-works h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Flexbox layout for steps */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Individual step container */
.step {
    display: flex;
    align-items: center;
    max-width: 800px;
    text-align: left;
}

/* Number icon styling */
.step-icon {
    background-color: transparent;
    border: 2px solid #ff7f00;
    color: #ff7f00;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

/* Vertical line between steps */
.step:not(:last-child)::after {
    content: '';
    width: 2px;
    background-color: #ff7f00;
    height: 40px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Step content styling */
.step-content h3 {
    font-size: 1.25em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 1em;
    color: #ccc;
    margin: 0;
}


/* Main styling for the section */
.opportunity-section {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url('path-to-your-star-background-image.png'); /* Optional: starry background */
    background-size: cover;
	background-color: rgba(0, 0, 0, 0.8);
}

.opportunity-section h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Flexbox layout for the table and map */
.opportunity-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Styling for the table */
.opportunity-table {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent black */
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row:last-child {
    border-bottom: none;
}

.cell {
    font-size: 1em;
    line-height: 1.5;
}

.label {
    font-weight: bold;
    color: #ccc;
}

/* Styling for the map */
.opportunity-map img {
    max-width: 600px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}


/* Styling for About Us section */
.about-section {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
	background-color: rgba(0, 0, 0, 0.8);
}

.about-section h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.about-section p {
    font-size: 1.1em;
    color: #ccc;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Styling for Join Us section */
.join-us-section {
    background-image: url('images/join.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    text-align: left;
    position: relative;
    font-family: Arial, sans-serif;
    width: 100%;
    margin: 0;
}

.join-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.join-us-section h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.join-us-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.join-us-section li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.join-us-section li::before {
    content: "▶"; /* Triangle or any other icon */
    color: #fff;
    margin-right: 10px;
    font-size: 0.9em;
}


.closing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
	background-color: rgba(0, 0, 0, 0.8);
}

.closing-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.closing-image {
    width: 50%; /* Set image container to 50% width */
}

.closing-image img {
    width: 70%; /* Make the image take the full width of its container */
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.closing-text {
    margin-left: 1rem; /* Reduced margin to bring text closer to image */
    flex: 1;
}

.closing-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.closing-points {
    display: flex;
    flex-direction: column;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.number {
    width: 50px;
    height: 50px;
    border: 2px solid #ff6600;
    color: #ff6600;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 1rem;
}

.text h3 {
    font-size: 1.2rem;
    margin: 0;
}

.text p {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.2rem;
}

.spotlight-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
	background-color: rgba(0, 0, 0, 0.8);
}

.spotlight-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.spotlight-image {
    width: 50%; /* Set image container to 50% width */
}

.spotlight-image img {
    width: 70%; /* Make the image take the full width of its container */
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.spotlight-text {
    margin-right: 1rem; /* Adjust margin to bring text closer to the image if needed */
    flex: 1;
}

.spotlight-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.spotlight-points {
    display: flex;
    flex-direction: column;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon {
    font-size: 1.5rem;
    color: #ff6600;
    margin-right: 1rem;
}

.text h3 {
    font-size: 1.2rem;
    margin: 0;
}

.text p {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.2rem;
}


.contact-section {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    color: #fff;
	background-color: rgba(0, 0, 0, 0.8);
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

.icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: #ff6600;
}

/* Replace these classes with Font Awesome or custom icons as needed */
.email-icon:before { content: "✉️"; }
.twitter-icon:before { content: "✖️"; }
.instagram-icon:before { content: "📸"; }
.whatsapp-icon:before { content: "📲"; }
.linkedin-icon:before { content: "🔗"; }
.tiktok-icon:before { content: "🎶"; }
.youtube-icon:before { content: "📺"; }
.facebook-icon:before { content: "📘"; }


.contact-text strong {
    font-size: 1rem;
}

.contact-text a {
    color: #ff6600;
    text-decoration: none;
    font-size: 1rem;
}

.contact-text a:hover {
    text-decoration: underline;
}
