/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

body {
    overflow-x: hidden;
    padding-top: 80px; /* Add padding to account for fixed header */
    background-color: #0f0f0f; /* Dark background */
    color: #e5e5e5; /* Light text */
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a1a1a; /* Dark navbar */
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.2); /* Yellow shadow */
    border-bottom: 2px solid #ffc107; /* Yellow border */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffc107; /* Yellow logo */
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #e5e5e5; /* Light text */
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #0f0f0f; /* Dark text on hover */
    background-color: #ffc107; /* Yellow background on hover */
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px); /* Subtract header height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
    overflow: hidden;
    background-image: url('../images/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* Reduce brightness for better text readability */
    z-index: -2;
}

.hero-title {
    font-size: 4vw;
    max-width: 1000px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff; /* Yellow title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e5e5e5; /* Light subtitle */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    color: #0f0f0f; /* Dark text */
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button::after {
    content: ">";
    margin-left: 10px;
    font-weight: bold;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .navbar {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 20px;
        margin-right: auto;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
        padding: 4px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Header Section */
.header {
    margin-bottom: 50px;
}

.header h1 {
    color: #ffc107; /* Yellow headers */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.header p {
    color: #b0b0b0; /* Light gray text */
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

.feature-icon {
    color: #ffc107; /* Yellow icons */
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    color: #ffc107; /* Yellow titles */
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description {
    color: #b0b0b0; /* Light gray text */
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a); /* Dark gradient */
    border: 1px solid #333; /* Dark border */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.benefit-icon {
    color: #ffc107; /* Yellow icons */
    font-size: 30px;
    margin-bottom: 15px;
}

.benefit-title {
    color: #ffc107; /* Yellow titles */
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-description {
    color: #b0b0b0; /* Light gray text */
    font-size: 14px;
}

/* Icons (using Unicode characters as placeholders) */
.icon-target::before {
    content: "◎";
    font-size: 48px;
}

.icon-star::before {
    content: "★";
    font-size: 48px;
}

.icon-lightning::before {
    content: "⚡";
    font-size: 48px;
}

.icon-globe::before {
    content: "🌐";
    font-size: 36px;
}

.icon-shield::before {
    content: "🛡️";
    font-size: 36px;
}

.icon-support::before {
    content: "🕒";
    font-size: 36px;
}

.icon-gift::before {
    content: "🎁";
    font-size: 36px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features, .benefits {
        flex-direction: column;
    }
    
    .feature-card, .benefit-card {
        margin-bottom: 20px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #ffc107; /* Yellow headers */
    font-size: 32px;
    margin-bottom: 15px;
}

.subtitle {
    color: #b0b0b0; /* Light gray text */
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
}

.program-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
    display: flex;
    flex-direction: column;
}

.program-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.icon.hello{
    margin-left: 100px;
    margin-bottom: 20px;
}
.icon svg {
    width: 30px;
    height: 30px;
    fill: #0f0f0f; /* Dark icons */
}

.program-title {
    color: #ffc107; /* Yellow titles */
    font-size: 22px;
    font-weight: 600;
}

.program-description {
    color: #b0b0b0; /* Light gray text */
    margin-bottom: 25px;
    line-height: 1.5;
    float: left;
}
p.program-description {
    text-align: left;
}
.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.checkmark svg {
    width: 12px;
    height: 12px;
    fill: #0f0f0f; /* Dark checkmarks */
}

.feature-text {
    color: #e5e5e5; /* Light text */
}
.mentor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f); /* Dark gradient */
    scroll-margin-top: 80px; /* Add space for fixed header */
}

.section-title {
    text-align: center;
    color: #ffc107; /* Yellow title */
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.mentors-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mentor-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.2);
}

.mentor-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mentor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-name {
    color: #ffc107; /* Yellow names */
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mentor-title {
    color: #b0b0b0; /* Light gray titles */
    font-size: 1rem;
}

.mentor-description {
    color: #e5e5e5; /* Light text */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mentor-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .mentors-container {
        flex-direction: column;
        align-items: center;
    }

    .mentor-card {
        width: 100%;
        max-width: 400px;
    }
}
.header {
    margin-bottom: 50px;
}

.header h1 {
    color: #ffc107; /* Yellow headers */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.header p {
    color: #b0b0b0; /* Light gray text */
    font-size: 18px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: stretch; /* Make all cards same height */
}

.pricing-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px; /* Set minimum height for all cards */
}

.pricing-card .features-list {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card .cta-button1 {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    color: #0f0f0f; /* Dark text */
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-end; /* Align button to bottom */
}

.pricing-card .cta-button1:hover {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.plan-icon {
    font-size: 48px;
    color: #ffc107; /* Yellow icons */
    margin-bottom: 20px;
}

.plan-title {
    font-size: 24px;
    color: #ffc107; /* Yellow titles */
    margin-bottom: 10px;
}

.plan-price {
    font-size: 32px;
    color: #ffc107; /* Yellow prices */
    margin-bottom: 25px;
    font-weight: bold;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #e5e5e5; /* Light text */
}

.check-icon {
    color: #ffc107; /* Yellow checkmarks */
    margin-right: 10px;
    font-size: 20px;
}
.header {
    margin-bottom: 50px;
}

.header h1 {
    color: #ffc107; /* Yellow headers */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.header p {
    color: #b0b0b0; /* Light gray text */
    font-size: 18px;
    line-height: 1.6;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 15px;
    overflow: hidden;
    width: 45%;
    min-width: 300px;
    max-width: 550px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-link:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #0f0f0f; /* Dark arrow */
    margin-left: 4px;
}

.video-link:hover .play-button {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.video-link:hover .play-button::after {
    border-color: transparent transparent transparent #0f0f0f; /* Keep dark arrow */
}

.testimonial-content {
    padding: 20px;
    text-align: left;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-info h3 {
    color: #ffc107; /* Yellow names */
    font-size: 18px;
    margin-bottom: 5px;
}

.profile-info p {
    color: #b0b0b0; /* Light gray text */
    font-size: 14px;
}

.testimonial-text {
    color: #e5e5e5; /* Light text */
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
    }
}
.header {
    margin-bottom: 50px;
}

.header h1 {
    color: #ffc107; /* Yellow headers */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.header p {
    color: #b0b0b0; /* Light gray text */
    font-size: 18px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 15px;
    padding: 40px 30px;
    width: 300px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
    text-align: center;
}

.icon.hello {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-title {
    font-size: 22px;
    color: #ffc107; /* Yellow titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-info {
    color: #e5e5e5; /* Light text */
    margin-bottom: 10px;
}

.contact-note {
    color: #b0b0b0; /* Light gray text */
    font-size: 14px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f); /* Dark gradient */
    color: white;
    padding: 50px 0 20px;
    border-top: 2px solid #ffc107; /* Yellow border */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    width: 22%;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Yellow section headers */
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffc107; /* Yellow on hover */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icon {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #ffc107; /* Yellow on hover */
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-section {
        width: 100%;
        text-align: center;
    }

    .cta-section p {
        margin: 0 auto 20px;
        max-width: 300px;
    }
}

.cta-section {
    width: 30%;
    min-width: 250px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    color: #0f0f0f; /* Dark text */
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.cta-button1 {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ffb300); /* Yellow gradient */
    color: #0f0f0f; /* Dark text */
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button1:hover {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    color: #d1d5db;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-section, .cta-section {
        width: 100%;
        text-align: center;
    }
}
section.transform {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f); /* Dark gradient */
}
section.pricing{
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a); /* Dark gradient */
}
section.mentor-section{
    padding: 50px 0px;
}
section.getintouch-footer {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f); /* Dark gradient */
}
/* Existing media queries enhancement */
@media (max-width: 768px) {
/* Existing navbar styles */
.navbar {
padding: 15px 20px;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.nav-links {
margin-top: 15px;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}

/* Existing hero styles */
.hero-title {
font-size: 28px; /* Slightly smaller for better fitting */
}

.hero-subtitle {
font-size: 16px;
padding: 0 10px; /* Add some padding for readability */
}

/* Existing feature/benefit adjustments */
.features, .benefits {
flex-direction: column;
}

.feature-card, .benefit-card {
margin-bottom: 20px;
min-width: auto; /* Allow it to be smaller on mobile */
}

/* Testimonial card adjustment */
.testimonial-card {
width: 100%;
}

/* Footer adjustments */
.footer-section, .cta-section {
width: 100%;
text-align: center;
}

/* Program grid fix */
.programs-grid {
grid-template-columns: 1fr; /* Single column on mobile */
}

/* Program card adjustments */
.program-card {
padding: 20px;
}

/* Icon adjustment */
.icon.hello {
margin-left: 0;
margin-bottom: 15px;
}

/* Mentor section adjustments */
.mentors-container {
flex-direction: column;
gap: 20px;
}

.mentor-card {
width: 100%;
}

.mentor-info {
flex-direction: column;
text-align: center;
}

.mentor-image {
margin-right: 0;
margin-bottom: 15px;
}

/* Contact card adjustments */
.contact-card {
width: 100%;
}

/* Header adjustments for various sections */
.header h1, .section-title {
font-size: 28px;
}

/* Button size adjustment */
.cta-button, .cta-button1 {
padding: 10px 20px;
font-size: 14px;
}
}

/* Add a smaller screen breakpoint for smartphones */
@media (max-width: 480px) {
/* Hero section */
.hero {
height: 70vh;
}

.hero-title {
font-size: 24px;
}

.hero-subtitle {
font-size: 14px;
margin-bottom: 30px;
}

/* Navigation */
.nav-links {
gap: 10px;
}

/* Feature cards */
.feature-card {
padding: 20px 15px;
}

/* Program cards */
.program-header {
flex-direction: column;
text-align: center;
}

.icon {
margin-right: 0;
margin-bottom: 15px;
}

/* Pricing cards */
.pricing-card {
padding: 30px 20px;
width: 100%;
}

/* Section spacing */
.container {
padding: 30px 15px;
}

/* Header text sizes */
.header h1, .section-title {
font-size: 24px;
}

.header p {
font-size: 16px;
}
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #ffc107; /* Yellow on hover */
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    margin-left: auto; /* Push to the right */
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background-color: #ffc107; /* Yellow hamburger menu */
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98)); /* Dark overlay */
    z-index: 1001;
    display: none;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-menu-content a {
    color: #e5e5e5; /* Light text */
    text-decoration: none;
    font-size: 24px;
    margin: 15px 0;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* Hide contact link in mobile menu */
.mobile-menu-content a[href="#contact"] {
    display: none;
}

.mobile-menu-content a:hover {
    color: #0f0f0f; /* Dark text on hover */
    background-color: #ffc107; /* Yellow background on hover */
    border-radius: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        padding: 4px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-overlay {
        display: block;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Section */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.icon.hello {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
        padding: 30px 20px;
    }

    .icon.hello {
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}