/* Global Styles */
:root {
    --primary-color: #000000; /* Black */
    --secondary-color: #ff0000; /* Red */
    --light-color: #f9f9f9;
    --dark-color: #2c3e50;
    --success-color: #ff4d4d; /* Lighter red for success */
}
@font-face {
    font-family: 'myfont'; /* Name your font */
    src: url('fonts/myfont.ttf') format('truetype');}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserra', sans-serif;
}

body {
    line-height: 1.6;
    color: #fff;
    background: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #cc0000; /* Darker red */
}

/* Header */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== Logo and Text Side by Side ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds space between logo and text */
}

.logo img {
    height: 50px; /* Adjust the height of your logo image */
}

.logo h1 {
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 1.8rem;
    color: #ff0000;
    margin: 0;
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Menu Toggle */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px; /* Position below the header */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        max-height: 500px; /* Adjust this value based on your menu height */
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Menu Toggle */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: black;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}
.hero h2 {
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    background: var(--light-color);
}

.services h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-color);
}

.pricing h2 {
    text-align: center;
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    text-align: center;
    background: var(--light-color);
}

.gallery h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-color);
}

.about h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
    color: #fff;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background: var(--light-color);
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.testimonial-card h4 {
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-color);
}

.contact h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #fff;
    color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.contact-info i {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid var(--secondary-color);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px 0;
        clip-path: circle (1px at 90% -10%);
        transition: all 0.5s ease-out;
    }

    nav.active {
        clip-path: circle(1000px at 90% -10%);
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
    }
}
h1 {
  text-align: center;
  margin: 35px 0 20px 0 !important;
}

/* ===== Service Card Headings ===== */
/* ===== Services Section ===== */
.services {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Neat bullet points for services */
.service-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.service-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #444;
    line-height: 1.5;
}

.service-card li::before {
    content: "•";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== Bundles Section ===== */
.bundles-section {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.bundles-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.bundles-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.bundle-card i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.bundle-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 15px;
}

/* Neat bullet points for bundles */
.bundle-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.bundle-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #444;
    line-height: 1.5;
}

.bundle-card li::before {
    content: "•";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .services h2,
    .bundles-section h2 {
        font-size: 2rem;
    }

    .service-card,
    .bundle-card {
        padding: 20px;
    }

    .service-card li,
    .bundle-card li {
        font-size: 0.95rem;
    }
}

/* ===== Book Now CTA Section ===== */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.cta h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta p {
    font-size: 1.2rem;
    color: #555;}

/* ===== Custom Quote Section ===== */
.custom-quote {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.custom-quote h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-quote p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.contact-card p {
    color: #555;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-quote h2 {
        font-size: 2rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== About Section ===== */
.about {
    padding: 80px 20px;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2, .about-text h3 {
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.about-text li::before {
    content: "•";
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Team Section ===== */
.team {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.team h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.why-choose-card i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: #555;
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
}

.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    color: #000;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        width: 100%;
    }
}
/* ===== Contact Section ===== */
.contact {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: Arial, sans-serif;
}

.contact-form-container textarea {
    height: 120px;
    resize: vertical;
}

.contact-info-container {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
}

.contact-info-container h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff0000;
    margin-right: 15px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    margin: 0;
}

.map-container {
    margin-top: 30px;
}

.map-container h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container iframe {
    border-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form-container,
    .contact-info-container {
        width: 100%;
    }
}
/* ===== Add-Ons Section ===== */
.addons {
    padding: 80px 20px;
    background: #fff;
}

.addons h2 {
    text-align: center;
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.addons p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Add-Ons Grid Layout */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Add-On Card Styling */
.addon-card {
    background: #f9f9f9;
    border-left: 4px solid #ff0000;
    padding: 25px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-card i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.addon-card h3 {
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.addon-card p {
    color: #555;
    margin-bottom: 15px;
}

.addon-card .price {
    font-weight: bold;
    color: #ff0000;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Before & After Section ===== */
.before-after {
    padding: 80px 20px;
    background: #fff;
}

.before-after h2 {
    text-align: center;
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-after p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Before & After Grid Layout */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Before & After Item Styling */
.before-after-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.before, .after {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.before:hover, .after:hover {
    transform: scale(1.03);
}

.before img, .after img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.before:hover img, .after:hover img {
    opacity: 0.8;
}

.before p, .after p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
}
