@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    padding-top: 95px; /* Offset for fixed navbar, adjusted for new navbar height */
}

/* Hero Section */
.hero-section {
    padding: 10rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1558126319-c6ca8f4df345?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
}

.hero-section h1 {
    font-size: 3.5rem;
}

/* Features Section */
.feature-icon {
    font-size: 3rem;
    color: var(--bs-primary);
}

/* General Styling */
:root {
    --bs-primary: #ff7a00;
    --bs-primary-rgb: 255, 122, 0;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #e66e00;
    --bs-btn-hover-border-color: #e66e00;
}

/* Pricing Section */
#pricing .card {
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

#pricing hr {
    margin: 1.5rem 0;
}

#pricing .card-title {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: .1rem;
    font-weight: bold;
}

#pricing .card-price {
    font-size: 3rem;
    margin: 0;
}

#pricing .card-price .period {
    font-size: 0.8rem;
}

#pricing ul li {
    margin-bottom: 1rem;
}

#pricing .fa-ul {
    list-style: none;
    padding-left: 0;
}

#pricing .fa-li {
    position: static;
    margin-right: 0.5rem;
}

#pricing .popular-plan {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2), 0 0.5rem 1rem 0 rgba(var(--bs-primary-rgb), 0.1);
}

/* Responsive Styles for Mobile */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem; /* Reduce font size for hero title on mobile */
    }

    /* Target the column containing the card to ensure consistent spacing */
    #pricing .col-lg-3 {
        margin-bottom: 1.5rem;
    }

    #pricing .popular-plan {
        transform: none; /* Disable scaling on mobile to prevent overflow */
    }
}

/* Custom Navbar height adjustment for landing page */
/* Custom Navbar height adjustment */
.navbar {
    height: 95px; /* Explicit height to reduce by 20% */
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center; /* Vertically center content */
}
.btn-custom-blue {
    background-color: #007bff;
    color: white;
}