/* Navbar Container */
/* Navbar Logo */
.nav_logo {
    height: 80px;           /* Desktop size */
    width: 80px;            /* Keep it square for circular shape */
    display: block;
    margin: 0;              /* Remove extra spacing above/below */
    border-radius: 50%;     /* Makes the logo circular */
    object-fit: cover;      /* Ensures image covers container without distortion */
    overflow: hidden;       /* Hides overflow outside the circle */
}

/* Navbar adjustments */
.nav_bar_container {
    display: flex;
    align-items: center;    
    justify-content: space-between;
    padding: 0.5rem 1rem;   /* Adjust vertical spacing */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav_logo {
        height: 70px;
        width: 70px;        /* Keep square for circular shape */
    }
}


/* Default: hide hamburger on larger screens */
.nav_bar_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

/* Hamburger bars */
.nav_bar_toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav_bar_toggle {
        display: flex;
    }

    /* Hide nav links by default on mobile */
    .nav_links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #fff;
        padding: 1rem;
        position: absolute;
        top: 60px; /* Adjust depending on header height */
        right: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
    }

    /* Show when active */
    .nav_links.active {
        display: flex;
    }
}


/* Mobile Menu */
@media (max-width: 768px) {
    .nav_logo {
        height: 70px; /* Slightly smaller than desktop but still 2X original */
    }

    .navbar_menu {
        flex-direction: column;
        display: none; /* Hidden by default, toggle with JS */
        width: 100%;
        position: fixed; /* Slide-in menu */
        top: 0;
        right: -100%; /* Hidden offscreen */
        height: 100%;
        background-color: #fff;
        padding: 2rem 1rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar_menu.active {
        right: 0; /* Slide in fully */
    }

    .navbar_item {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav_bar_toggle {
        display: flex;
    }
}


/* Menu Links */
.navbar_menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar_link {
    text-decoration: none;
    color: #000000; /* Black text */
    font-weight: 500;
    transition: color 0.3s;
}

.navbar_link:hover,
.navbar_link:focus {
    color: #007BFF; /* Blue on hover */
}

/* Hamburger Menu */
.nav_bar_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;   /* Needed for z-index to work */
    z-index: 1001;        /* Ensure toggle is above menu */
}

.nav_bar_toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease; /* Smooth X animation */
}

/* Transform bars into X when active */
.nav_bar_toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav_bar_toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav_bar_toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav_bar_toggle {
        display: flex;
    }

    .navbar_menu {
        position: fixed; /* Fixed to viewport */
        top: 0;
        right: -100%; /* Completely hidden off-screen */
        height: 100%;
        width: 250px;
        background-color: #fff;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000; /* Lower than toggle */
        overflow-y: auto; /* Scroll if menu is long */
    }

    .navbar_menu.active {
        right: 0; /* Slide in fully on click */
    }

    .navbar_item {
        margin: 1rem 0;
    }
}


/* ===== HERO SECTION ===== */
.hero_section {
    height: 80vh; /* Almost full viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    background-color: #f5f9ff; /* Light subtle background */
}

.hero_content {
    max-width: 800px;
}

.hero_heading {
    font-size: 3rem;
    color: #6ec1e4; /* Light blue */
    margin-bottom: 1rem;
}

.hero_subtext {
    font-size: 1.2rem;
    color: #000000; /* Black text */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero_button {
    padding: 0.75rem 2rem;
    background-color: #007BFF; /* Blue button */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* Responsive Hero */
@media (max-width: 768px) {
    .hero_heading {
        font-size: 2.2rem;
    }
    .hero_subtext {
        font-size: 1rem;
    }
}
/* ===== SERVICES SECTION ===== */
.services_section {
    padding: 5rem 1rem;
    background-color: #ffffff;
    text-align: center;
}

.services_heading {
    font-size: 2.5rem;
    color: #007BFF; /* Blue heading */
    margin-bottom: 1rem;
}

.services_intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Grid */
.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Service Card */
.service_card {
    background-color: #f5f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service_card h3 {
    font-size: 1.2rem;
    color: #007BFF; /* Blue title */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center; /* Align icon and text vertically */
    justify-content: center;
}

/* Service card header icons */
.service_card h3 i {
    margin-right: 0.5rem; /* Space between icon and text */
    color: #007BFF;       /* Match your brand color */
    font-size: 1.3rem;    /* Slightly larger than text */
    vertical-align: middle;
}

.service_card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services_heading {
        font-size: 2rem;
    }
    .services_intro {
        font-size: 1rem;
    }

    .service_card h3 {
        font-size: 1.1rem;
    }

    .service_card h3 i {
        font-size: 1.2rem;
    }
}

/* ===== FLOATING ACTION BUTTON ===== */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #28a745; /* Green button */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Absolute center the icon or image inside FAB */
.fab i,
.fab img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px; /* Icon size */
    color: #fff;
    max-width: 60%;
    max-height: 60%;
}

/* Hover effect */
.fab:hover {
    background-color: #218838; /* Darker green on hover */
    transform: scale(1.1);
}

/* ===== MEMBERSHIPS SECTION ===== */
.membership_section {
    padding: 5rem 1rem;
    background-color: #ffffff;
    text-align: center;
}

.membership_heading {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.membership_intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Payment Options */
.membership_payment h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

.payment_options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment_card {
    background-color: #f5f9ff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.payment_card .amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745; /* green for amount */
}

/* How to Pay */
.how_to_pay {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.how_to_pay h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

.how_to_pay ol {
    padding-left: 1.5rem;
    line-height: 1.6;
}

/* Exclusive Benefits */
.exclusive_benefits {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.exclusive_benefits h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

.exclusive_benefits ul {
    list-style: disc inside;
    line-height: 1.6;
}

/* Registration Requirements */
.registration_requirements {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.registration_requirements h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

.registration_requirements ul {
    list-style: disc inside;
    line-height: 1.6;
}

/* Call to Action Button */
.membership_cta {
    margin-top: 2rem;
}

.membership_button {
    padding: 0.75rem 2rem;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.membership_button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .membership_heading {
        font-size: 2rem;
    }
    .membership_intro {
        font-size: 1rem;
    }
    .payment_options {
        flex-direction: column;
    }
}
/* ===== MEMBERSHIP SECTION ===== */
.membership_section {
    padding: 5rem 1rem;
    background-color: #f5f9ff;
    text-align: center;
}

.membership_heading {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.membership_intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Membership Payment Card */
.membership_payment_card {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center; /* Center all text inside */
}

.membership_payment_card h3,
.membership_payment_card h4 {
    color: #007BFF;
    margin-bottom: 1rem;
}

.membership_payment_card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Payment Options inside Card */
.payment_options {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center; /* Center sub-cards horizontally */
    flex-wrap: wrap;
}

.payment_card {
    background-color: #f5f9ff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 120px;
    text-align: center;
}

.payment_card .amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745; /* Green for amount */
}

/* How to Pay Card */
.how_to_pay_card {
    text-align: center; /* Center the instructions text */
    margin-top: 2rem;
}

.how_to_pay_card ol {
    display: inline-block; /* Keep list centered */
    text-align: left; /* Keep list items aligned left */
    padding-left: 1.5rem;
    line-height: 1.6;
}
/*Benefits section*/
/* Benefits Card Container */
.benefits_cards {
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Individual Card */
.benefit_card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* Small shadow effect */
    width: 100%; /* Full width of container */
    max-width: 400px; /* Optional max width */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 auto; /* Center cards horizontally */
}

.benefit_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Section Headings */
.exclusive_benefits_section h3,
.general_benefits_section h3,
.registration_requirements_section h3 {
    color: #007BFF;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit_card {
        max-width: 90%; /* Make cards fit smaller screens */
    }
}

/* ===== FOOTER ===== */
.site_footer {
    background-color: #007BFF; /* Blue background */
    color: #fff;
    padding: 3rem 1rem 1rem;
    font-family: Arial, sans-serif;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer_about, .footer_links, .footer_contact {
    flex: 1 1 250px;
}

.footer_about h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer_links h4,
.footer_contact h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links ul li {
    margin-bottom: 0.5rem;
}

.footer_links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer_links ul li a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.footer_contact p {
    margin: 0.25rem 0;
}

/* Social Media Icons */
.footer_social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer_social a {
    color: #fff; /* White icon color */
    font-size: 1.4rem; /* Icon size */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer_social a i {
    font-size: 1.4rem; /* Ensure proper size */
    line-height: 1;
}

.footer_social a:hover {
    color: #007BFF; /* Brand blue */
    background-color: #fff;
    transform: scale(1.1);
}

/* Footer bottom */
.footer_bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .site_footer {
        padding: 2rem 1rem 1rem;
    }

    .footer_about, .footer_links, .footer_contact {
        flex: 1 1 auto;
        margin-bottom: 0.5rem;
    }

    .footer_bottom {
        margin-top: 1rem;
        padding-top: 0.5rem;
    }

    .footer_social {
        justify-content: center;
        margin-top: 0.5rem;
    }
}
/* Membership Section */
.membership_plans {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9fafc;
}

.membership_heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #222;
}

.membership_intro {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  color: #555;
}

/* Grid Layout */
.plans_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Plan Cards */
.plan_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.plan_card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.plan_price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 1rem;
}

.plan_card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan_card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #444;
}

.plan_card ul li:last-child {
  border-bottom: none;
}

/* Different Styles per Plan */
.diamond {
  border-top: 5px solid #b9f2ff; /* diamond blue */
}

.gold {
  border-top: 5px solid #ffd700; /* gold yellow */
}

.silver {
  border-top: 5px solid #c0c0c0; /* silver gray */
}

/* Highlight Diamond Plan */
.diamond {
  background: #f0fbff;
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.15);
}

.diamond h3 {
  color: #0077cc;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .plan_card {
    padding: 1.5rem 1rem;
  }
}


/* ===== Registration Form Section ===== */
.registration_form_section {
    background-color: #f5f9ff;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.registration_form_container {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.registration_form_container h3 {
    text-align: center;
    color: #007BFF;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.registration_form_container form {
    display: flex;
    flex-direction: column;
}

.registration_form_container label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.registration_form_container input,
.registration_form_container textarea {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.registration_form_container input:focus,
.registration_form_container textarea:focus {
    border-color: #007BFF;
}

.registration_form_container button.membership_button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.registration_form_container button.membership_button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials_section {
    padding: 4rem 1rem;
    background-color: #f7f9fc;
    text-align: center;
}

.testimonials_heading {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.testimonials_intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.testimonials_cards {
    display: flex;
    flex-direction: column; /* vertical by default */
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial_card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial_text {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial_author {
    font-weight: bold;
    color: #007BFF;
    text-align: right;
}

/* Responsive */
@media (min-width: 768px) {
    .testimonials_cards {
        flex-direction: row; /* horizontal cards on wider screens */
        justify-content: center;
    }

    .testimonial_card {
        flex: 1 1 250px;
    }
}
/* ===== VIDEOS SECTION ===== */
.videos_section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

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

.videos_heading {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.videos_intro {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
}

.videos_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.video_card {
    flex: 1 1 350px; /* Minimum width of 350px, grows as needed */
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video_card iframe {
    width: 100%;
    height: 250px; /* You can increase this for larger videos */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video_title {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #007BFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video_card iframe {
        height: 200px;
    }
}
