/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; /* Ensures it stays on top of other elements */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    padding-left: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
}

@media (max-width: 768px) {
    .logo img {
        width: 140px;
        height: auto;
    }
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.nav-items a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-items a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 100vh; /* Full viewport height */
    color: #f0f0f0;
    background-image: url('./img/banner.jpg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay to improve text readability */
}

.hero-content {
    position: relative;
    text-align: left;
    padding: 30px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
}

.hero .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #2C5364; /* Button background color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #0F2027; /* Button hover effect */
}

/* Content */
.content {
    background: linear-gradient(135deg, #0F2027, #2C5364);
    color: #f0f0f0;
}

/* Sections */
section {
    padding: 60px 50px;
}

/* Grid layout for feature boxes */
.why-us {
    text-align: center;
    padding: 60px 50px;
}

.why-us h2{
    font-size: 32px;
}

.why-us p{
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
    color: #aaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px;
}

.feature-box {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}

.feature-box img {
    max-width: 100%;
    height: auto;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.feature-box-text {
    padding-top: 0px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
}

.feature-box h3 {
    font-size: 24px;
}

.feature-box p {
    font-size: 16px;
    color: #aaa;
}


/* Pricing Section */
#pricing {
    text-align: center;
    padding: 60px 50px;
}

#pricing h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

#pricing p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Toggle between Monthly and Yearly */
.pricing-toggle {
    display: inline-block;
    margin-bottom: 30px;
}

.toggle-btn {
    background-color: transparent;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
}

.toggle-btn.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
}

/* Pricing Plans Grid */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pricing-plan {
    display: inline-block;
    background-color: rgba(48, 48, 48, 0.596); /* Button color matching the gradient */
    color: white;
    padding: 18 px;
    border-radius: 24px;
    width: 360px;
    margin-bottom: 12px;
}

.pricing-plan h3 {
    font-size: 24px;
}

.pricing-plan{
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-plan span {
    font-size: 16px;
}

.pricing-plan ul {
    list-style-type: none;
    padding-left: 0;
}

.pricing-plan li {
    margin-bottom: 10px;
    font-size: 16px;
}

.price {
    width: 80%;
    background-color: #2b7a9b; 
    color: white;
    border: none;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Keyframes for growing shadow */
@keyframes growShadow {
    0% {
        box-shadow: 0 0px 10px rgba(217, 217, 198, 0.5);
    }
    50% {
        box-shadow: 0 0px 20px rgba(217, 217, 198, 0.5);
    }
    100% {
        box-shadow: 0 0px 10px rgba(217, 217, 198, 0.5);
    }
}

/* Apply animation to Standard Plan */
.pricing-plan:nth-child(2) {
    animation: growShadow 2s infinite; /* Change duration as needed */
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-info {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin: 20px 0;
    }
}

/* Responsive Code */
@media (max-width: 768px) {
    .hero {
        padding: 24px;
        text-align: center;
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-us {
        padding: 18px 18px;
    }
}

/* ==================================== */
/* About Us page */
/* ==================================== */
.background {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

/* Responsive Code */
@media (max-width: 768px) {
    .background {
        padding-top: 66px;
        padding-bottom: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }
}


.background h2{
    font-size: 32px;
}

.background p{
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission {
    text-align: center;
    padding: 60px 50px;
}

/* Responsive Code */
@media (max-width: 768px) {
    .mission {
        padding: 18px 18px;
    }
}


.mission h2{
    font-size: 30px;
}

.mission p{
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile {
    text-align: center;
    padding: 60px 50px;
}

/* Responsive Code */
@media (max-width: 768px) {
    .profile {
        padding: 18px 18px;
    }
}


.profile h2{
    font-size: 32px;
}

.profile p{
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Cards (About Us page) */
.profile-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
}

.profile-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .profile-card {
        padding: 1rem;
    }
}


.profile-image {
    flex: 0 0 250px;
    text-align: center;
    padding: 2rem;
}

.profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.profile-image h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #aaa;
}

.profile-card-text {
    flex: 1;
}

.profile-card-text p {
    margin: 0;
    line-height: 1.6;
    color: #aaa;
    text-align: left;
}

@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        flex: 0 0 auto;
    }

    .profile-card-text {
        text-align: left;
    }
}

/* Join Now Box */
.join-now-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(4px);
}

/* Register Button */
.register-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #2C5364; /* Button background color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.register-btn:hover {
    background-color: #0F2027; /* Button hover effect */
}

/* Float-in Animation */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-in {
  opacity: 1;
  animation: floatIn 1.0s ease-in-out forwards;
}

/* Hide before animation */
.float-in-init {
  opacity: 0;
  transform: translateY(60px);
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 3px 0;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 18px;
    }
    .nav-items {
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: rgba(255,255,255,0.97);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 0;
        display: none;
    }
    .nav-items.open {
        display: flex;
    }
    .nav-items li {
        width: 100%;
        padding: 10px 24px;
    }
    .nav-items a {
        width: 100%;
        color: #333;
        font-size: 18px;
    }
}


