@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Lato:wght@400;700&display=swap');

/* --- Base Styles & Variables --- */
:root {
    --primary-color: #0a2540; /* Deep Navy */
    --secondary-color: #ffd700; /* Gold */
    --background-color: #f8f9fa; /* Light Gray */
    --text-color: #333;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease-in-out;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--secondary-color);
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    padding: 150px 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 25, 61, 0.6); /* Dark blue overlay */
    z-index: -1;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    color: var(--white-color);
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Blog Page Styles --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-card .card-content {
    padding: 25px;
}

.blog-post-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-post-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* --- Single Blog Post Styles --- */
.blog-post-content {
    padding: 80px 0;
}

.blog-post-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
}

.post-body h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body p, .post-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.post-body ul {
    list-style-position: inside;
    padding-left: 20px;
}

/* --- Blog Page Styles --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-card .card-content {
    padding: 25px;
}

.blog-post-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue-color);
    margin-bottom: 10px;
}

.blog-post-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* --- Single Blog Post Styles --- */
.blog-post-content {
    padding: 80px 0;
}

.blog-post-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h1 {
    font-size: 2.8rem;
    color: var(--dark-blue-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
}

.post-body h2 {
    font-size: 1.8rem;
    color: var(--dark-blue-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body p, .post-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.post-body ul {
    list-style-position: inside;
    padding-left: 20px;
}

/* --- Pricing Page Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch; /* Aligns cards to have same height */
}

.pricing-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--dark-blue-color);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue-color);
    margin-bottom: 5px;
}

.pricing-card .price del {
    font-size: 1.5rem;
    color: #999;
    margin-right: 10px;
}

.pricing-card .price-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    min-height: 2.7rem; /* Ensures alignment */
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes button to the bottom */
}

.pricing-card ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-card .btn {
    margin-top: auto; /* Aligns button to bottom */
}

/* Highlighted 'Popular' Card */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.offer-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.pricing-card.popular h3 {
    margin-top: 40px; /* Make space for banner */
}

/* --- New Team Page Styles --- */
.team-focused {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.team-member-detailed {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member-detailed h3 {
    font-size: 1.8rem;
    color: var(--dark-blue-color);
    margin-bottom: 10px;
}

.team-member-detailed p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.our-pedigree {
    background-color: var(--dark-blue-color);
    color: white;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.our-pedigree h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.our-pedigree p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-grey-color);
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* --- General Page & Section Styling --- */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 3rem;
}

.page-content {
    padding: 4rem 0;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- Plans Page --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.plan-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-card ul li {
    margin-bottom: 0.8rem;
}

/* --- Team Page --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member-card {
    background: var(--white-color);
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--secondary-color);
}

.team-member-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member-card p.role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* --- Features Section (Homepage) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-card {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-centered-layout {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.team-centered-layout .team-bio h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-centered-layout .team-bio p {
    line-height: 1.7;
    text-align: left;
}

/* New Integrated Contact Page Layout */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-details-group .contact-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.contact-details-group .contact-item:last-child {
    margin-bottom: 0;
}

.contact-details-group .contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    justify-self: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* --- Hero Buttons Container --- */
.hero-buttons {
    display: flex;
    gap: 15px; /* Adds space between the buttons */
    justify-content: center;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

/* --- Secondary CTA Button Style --- */
.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button.secondary:hover {
    background-color: #fff;
    color: #007bff;
}

/* --- Updated Submit Button Styles --- */
.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px; /* More rounded corners */
    cursor: pointer;
    font-size: 1.1rem; /* Slightly larger font */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    outline: none;
}

.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* Add spacing for Get Started buttons in service cards */
/* Position button at the bottom of the card */
/* Final Button Styling for Service Cards */
.service-card .btn-submit {
    margin-top: auto; /* This is the key to bottom-alignment in the new flex structure */
    align-self: center;
    width: fit-content;
}

/* =================================== */
/* ========== Responsive CSS ========== */
/* =================================== */

/* Mobile Nav Toggle Button (hidden by default) */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001; /* Ensures it's above other content */
}

/* Media query for tablet and mobile devices */
@media (max-width: 992px) {
    /* Show mobile toggle and hide desktop nav links */
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu > ul {
        display: none; /* Hide the nav links by default */
        position: absolute;
        top: 70px; /* Position below the header */
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    /* This class is toggled by JavaScript to show the menu */
    .nav-menu.nav-menu-mobile > ul {
        display: flex;
    }

    .nav-menu ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu ul li a {
        padding: 1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu ul li:last-child a {
        border-bottom: none;
    }

    /* General Layout Adjustments */
    .hero .container,
    .features .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image {
        max-width: 100%;
        margin: 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }

    .features-grid,
    .pricing-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        text-align: center;
    }
    
    /* Plans Page */
    .pricing-plan {
        margin-bottom: 2rem;
    }

    /* Team Page */
    .team-centered-layout .team-bio {
        padding: 1.5rem;
    }

    /* Contact Page */
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin-top: 2rem;
    }
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #333 !important;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container p {
    margin: 0;
}

footer a {
    color: #0a2540 !important;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer, footer a, footer a:hover {
    color: #333 !important;
}

/* Team Page - Pedigree Section */
.pedigree-section .pedigree-content p {
    color: #333 !important; /* Definitive fix for invisible text */
}

.pedigree-content p {
    color: #333; /* Ensure text is readable */
}

/* Team Page - Detailed Layout */
.team-member-detailed-layout {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-member-info p {
    line-height: 1.7;
}

/* About Page - Layout */
.about-layout {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
}

.about-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text-container {
    flex: 1.5;
}


/* Price Guarantee Section */
.price-guarantee {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.price-guarantee h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-guarantee p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}


/* Generic Page Header */
.page-header {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin: 0;
}

/* About Us Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Page */
/* Reworked Services Grid for Alignment */
.services-grid {
    display: flex; /* Use Flexbox for the container */
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 2rem;
    align-items: stretch; /* Make all items in a row the same height */
}

.services-grid > * {
    flex-basis: 300px; /* Base width for each card */
    flex-grow: 1; /* Allow cards to grow and fill space */
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0;
}

/* Testimonials Page */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: bold;
    font-style: normal;
    color: var(--secondary-color);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-top: 0;
}

.blog-card a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form label {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0E6EB;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    justify-self: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}
