/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Raleway:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center;
    padding: 10px 20px;
    background-color: #1a1a1a;
}

header .logo {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Space between logo and navigation */
}

header .logo img {
    width: 30px; /* Adjust width as needed */
    height: 30px; /* Adjust height to maintain aspect ratio */
    object-fit: contain;
    margin-right: 10px; /* Space between image and text */
}

header .logo span {
    font-family: 'Raleway', sans-serif;
    font-size: 24px; /* Adjust font size as needed */
    font-weight: 700;
    color: #e74c3c;
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

nav ul li a:hover {
    color: #e74c3c;
}

.header-buttons {
    display: flex;
    margin-left: auto;
}

.header-btn {
    text-decoration: none;
    padding: 10px 20px;
    margin-left: 20px;
    background-color: #e74c3c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-btn:hover {
    background-color: #c0392b;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #f0f0f0;
}

.hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    animation: fadeIn 3s ease;
}

.btn {
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: fadeIn 4s ease;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-5px);

.box {
        background-color: #f4f4f4;
        padding: 20px;
        margin: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 30%;
    }
    
    .box h3 {
        font-size: 35px;
        color: #6b45e6;
    }
    
    .box p {
        font-size: 18px;
    }
    
}

.features {
    padding: 50px;
    background-color: #111;
    text-align: center;
}

.features h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #e74c3c;
}

.feature-card {
    border: 2px solid black;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 300px; /* Adjust as needed */
    height: auto; /* Allow height to adjust based on content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2d2d2d; /* Dark background to contrast with text */
    color: white; /* White text for readability */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.feature-card h3 {
    font-size: 24px; /* Smaller font size for titles */
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px; /* Smaller font size for descriptions */
    line-height: 1.5;
    margin: 0;
}

.about {
    padding: 50px;
    background-color: #1d1d1d;
    text-align: center;
}

.about h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #e74c3c;
}

.about .content {
    max-width: 600px;
    margin: 0 auto;
}

.about .image img {
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Initial subtle shadow */
}

.about .image img:hover {
    transform: scale(1.05); /* Pop-out effect */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
}


.join {
    padding: 50px;
    background-color: #ca4132;
    color: #fff;
    text-align: center;
}

.join h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-image {
    margin-top: 20px;
}

footer {
    padding: 20px;
    background-color: #111;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Animation for Hero Section */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, .hero p {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards; 
    opacity: 1; 
}

.hero p:nth-of-type(1) {
    animation-delay: 0.5s;
}

.hero p:nth-of-type(2) {
    animation-delay: 1s;
}
  
/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #181825; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e64545; 
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e64545; 
  transition: all 0.3s ease 0s;

}
body {
    overflow-x: hidden;
}
.hero-logo {
    max-width: 400px; /* Adjust as needed */
    margin-bottom: 30px; /* Space between logo and text */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
    animation: logoAppear 1s ease-out;
    border-radius: 65px; /* This adds curved corners */
}

.hero-logo:hover {
    transform: scale(1.1); /* Makes the logo 10% larger on hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-logo {
    max-width: 300px; 
    margin-bottom: 30px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
    animation: logoAppear 1s ease-out;
}
body, .container, footer {
    margin-bottom: 0;
    padding-bottom: 0;
}
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}
