        :root {
            --accent: #FF7878;
            --bg: #ffffff;
            --text: #FF7878;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: "Roboto", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Strict Line Rule */
        hr {
            border: none;
            height: 1px;
            background-color: var(--accent);
            width: 100%;
            margin: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Typography Classes */
        .heading-font {
            font-family: "Imperial Script", cursive;
            font-style: italic;
        }

        .roboto-font {
            font-family: "Roboto", sans-serif;
        }

        /* Header */
        header {
            padding: 30px 0;
            background: var(--bg);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.5rem;
            text-decoration: none;
            color: var(--text);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0;
            text-align: center;
            position: relative;
            min-height: 120vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            /* Animated gradient background fallback */
            animation: bgZoom 20s infinite alternate;
        }

        @keyframes bgZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .hero-title-container {
            position: relative;
            display: inline-block;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 40px;
        }

        .small-img-box {
            width: 150px;
            height:150px;
            border: 1px solid var(--accent);
            padding: 5px;
            background: black;
            overflow: hidden;
            top:90%;
            bottom:-80%
        }

        .small-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
        }

        .hero-top-right {
            position: absolute;
            top: -120px;
            right: -80px;
        }

        .hero-desc-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Large Cards Section */
        .card-section {
            padding: 80px 0;
        }

        .big-card {
            margin: 100px 0;
            padding: 60px;
            border: 1px solid rgba(255,120,120,0.2);
            text-align: center;
        }

        .img-container {
            margin: 40px auto;
            width: 100%;
            max-width: 900px;
            overflow: hidden;
            border: 1px solid var(--accent);
            padding: 20px;
        }

        .img-container img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s, transform 0.8s;
        }

        .big-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .card-text {
            max-width: 700px;
            margin: 40px auto 0;
            font-weight: 300;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .card-btn {
            margin-top: 30px;
            background: transparent;
            border: 1px solid var(--accent);
            color: rgb(0, 0, 0);
            padding: 15px 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .card-btn:hover {
            background: var(--accent);
            color: black;
        }

        /* Services & Generic Sections */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            font-size: 4rem;
            margin-bottom: 60px;
            text-align: center;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2px;
            background-color: #FF7878;
            border: 1px solid var(--accent);
        }

        .service-item {
            background-color: white;
            padding: 60px 30px;
            text-align: center;
        }

        /* Footer */
        footer {
            padding: 100px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-col h4, .footer-col h5 {
            margin-bottom: 30px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgb(247, 17, 17);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            background: transparent;
            border: 1px solid var(--accent);
            padding: 12px;
            color: rgb(250, 11, 11);
            outline: none;
        }

        .subscribe-btn {
            background: transparent;
            border: 1px solid var(--accent);
            color: rgb(234, 9, 9);
            padding: 12px;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: bold;
        }

        /* Page Management */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Modal / Quick View */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .modal-content {
            border: 1px solid var(--accent);
            background: black;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Utility */
        .text-center { text-align: center; }
        .mb-40 { margin-bottom: 40px; }
        .triple-feature-section {
    margin: 6rem 4rem;
    display: flex;
    align-items: stretch; /* IMPORTANT for full height divider */
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.feature-card img {
    width: 70%;
    max-width: 260px;
    margin: 0 auto 2rem auto;
    display: block;
    border-radius: 8px;
}

.feature-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    letter-spacing: 1px;
}

/* FULL SOLID HR LINE */
.vertical-divider {
    width: 1px;              /* thickness */
    background-color: #FF7878;  /* change to #000 or #d4af37 if needed */
    margin: 0 2rem;
}

/* MOBILE */
@media (max-width: 900px) {
    .triple-feature-section {
        flex-direction: column;
    }

    .vertical-divider {
        width: 100%;
        height: 2px;
        margin: 2rem 0;
    }
}

/* SHARED OVERLAY */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* MODAL BOX */
.modal-box {
    background: #fff;
    max-width: 650px;
    width: 90%;
    padding: 40px;
    border-radius: 14px;
    position: relative;
    animation: modalFade 0.3s ease;
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.unsubscribe-form input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ccc;
}

.unsubscribe-form button {
    padding: 12px 25px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-btn {
    padding: 14px 30px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 900px) {
    .big-card > div {
        grid-template-columns: 1fr !important;
    }
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* Hide toggle button on desktop */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav.active {
        display: block;
    }
}
/* Align navbar items */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;   /* Adjust logo size here */
    width: 220px;
    display: block;
}

/* Mobile logo resize */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}