/* ROOT VARIABLES (GLOBAL THEME) */

:root {
    --primary-gold: rgb(201, 150, 49);
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;

    --text-light: #ffffff;
    --text-muted: #bfbfbf;

    --border-light: rgba(201, 150, 49, 0.2);

    --transition-smooth: all 0.3s ease;

    --light-bg: #ffffff;
    --lux-dark: #121212;
    --lux-dark-2: #1a1a1a;

    --text-dark: #111111;
    --text-soft-dark: #555555;

    --gold-soft: rgba(201, 150, 49, 0.15);
}
a {
    color: #bfbfbf;
    text-decoration: none;
}
/* ALTERNATE THEAME START */

section:nth-of-type(even) {
    background: var(--light-bg) !important;
    color: var(--text-dark);
}

section:nth-of-type(odd) {
    background: var(--lux-dark);
    color: var(--text-light);
}

section:nth-of-type(even) h1,
section:nth-of-type(even) h2,
section:nth-of-type(even) h3,
section:nth-of-type(even) h4,
section:nth-of-type(even) h5,
section:nth-of-type(even) h6 {
    color: var(--text-dark);
}

section:nth-of-type(even) p,
section:nth-of-type(even) .section-text,
section:nth-of-type(even) .section-subtext {
    color: var(--text-soft-dark);
}

section:nth-of-type(odd) p,
section:nth-of-type(odd) .section-text,
section:nth-of-type(odd) .section-subtext {
    color: var(--text-muted);
}

section:nth-of-type(even) .vertical-card,
section:nth-of-type(even) .project-content,
section:nth-of-type(even) .why-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

section:nth-of-type(odd) .vertical-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
}

section:nth-of-type(even) .section-tag,
section:nth-of-type(even) .why-item h3,
section:nth-of-type(even) .project-meta {
    color: var(--primary-gold);
}

section:nth-of-type(even) .regal-btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

section:nth-of-type(even) .regal-btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

section:nth-of-type(odd) .regal-btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}


section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.03), transparent 50%);
    pointer-events: none;
}

section:nth-of-type(odd)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, var(--gold-soft), transparent 60%);
    pointer-events: none;
}

section {
    position: relative;
}

.regal-hero {
    background: #000 !important;
}

.custom-navbar {
    background: rgba(15, 15, 15, 0.95) !important;
}

.regal-cta {
    background: radial-gradient(circle at center,
            rgba(201, 150, 49, 0.08),
            transparent 60%),
        #000 !important;
}

.regal-footer {
    background: #050505 !important;
}

section {
    transition: background 0.5s ease, color 0.5s ease;
}

/* ALTERNATE THEAME END */

/* NAVBAR START */
.custom-navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.navbar-brand img {
    width: 180px;
    border-radius: 8px;
}

.brand-primary {
    color: var(--text-light);
}

.brand-accent {
    color: var(--primary-gold);
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 18px;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary-gold);
    left: 0;
    bottom: -6px;
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}


.nav-cta {
    background: var(--primary-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 18px;
}

.nav-cta:hover {
    background: var(--text-light);
    color: #000;
}

div#mainNavbar {
    justify-content: center;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--secondary-dark);
        padding: 20px;
        margin-top: 12px;
        border-radius: 12px;
    }

    .nav-link {
        margin: 10px 0;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* NAVBAR END */

/* HERO SECTION START */
.regal-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.regal-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.regal-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.regal-slide.active {
    opacity: 1;
}

.regal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: top;
}

.regal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            var(--primary-dark) 0%,
            rgba(15, 15, 15, 0.85) 20%,
            transparent 100%);
}

.regal-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.regal-title span {
    display: block;
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--text-light);
}

.regal-title span:last-child {
    color: var(--primary-gold);
}

.regal-subtitle {
    font-size: 30px;
    margin: 20px 0;
    font-weight: 300;
    color: var(--text-muted);
}

.regal-subtitle .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.regal-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 30px;
}

.regal-btn-primary {
    background: var(--primary-gold);
    color: #000;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.regal-btn-primary:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    color: #000;
}

.regal-btn-outline {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.regal-btn-outline:hover {
    background: var(--primary-gold);
    color: #000 !important;
    
}

.regal-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-gold);
}

.regal-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .regal-title span {
        font-size: 42px;
    }

    .regal-subtitle {
        font-size: 22px;
    }
}

/* HERO SECTION END */

/* ABOUT SECTION START */

.regal-about {
    background: var(--primary-dark);
    color: var(--text-light);
}

.regal-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.regal-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.regal-about-image:hover img {
    transform: scale(1.05);
}

.regal-about-content {
    max-width: 600px;
}

.section-tag {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-title span {
    color: var(--primary-gold);
}

.section-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-item {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-item span {
    color: var(--primary-gold);
    margin-right: 8px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* ABOUT SECTION END */

/* VERTICAL SECTION START  */

.regal-verticals {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.vertical-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
}

.section-subtext {
    max-width: 600px;
    margin: auto;
    color: var(--text-muted);
    font-size: 15px;
}

.vertical-card {
    height: 300px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.vertical-icon {
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255);
    margin-bottom: 20px;
}

.vertical-card h3 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.vertical-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.vertical-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.vertical-card::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 150, 49, 0.15), transparent 70%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.vertical-card:hover::after {
    opacity: 1;
}

.vertical-card:hover h3 {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .vertical-bg-text {
        font-size: 80px;
    }
}

/* VERTICAL SECTION END */

/* PROJECT SECTION START */
.regal-projects {
    background: var(--primary-dark);
    padding: 100px 0;
}

.project-image {
    overflow: hidden;
    border-radius: 20px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-image.large {
    height: 420px;
}

.project-image.small {
    height: 250px;
}

.project-image:hover img {
    transform: scale(1.08);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 30px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.project-meta {
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 1px;
}

.project-row {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .project-image.large {
        height: 250px;
    }

    .project-content h3 {
        font-size: 22px;
    }
}

/* PROJECT SECTION END */

/* WHY SECTION START */
.regal-why {
    background: #0a0a0a;
    padding: 120px 0;
    position: relative;
}

.why-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-title span {
    color: var(--primary-gold);
    font-style: italic;
}

.why-subtext {
    max-width: 700px;
    margin: auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin: 40px auto;
}

.why-item {
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.why-item h3 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-item h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }
}

/* WHY SECTION END */
/* contact form css start */
    .regal-cta {
    padding: 100px 0;
    background: #0f172a;
    color: #fff;
}

.regal-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.regal-cta-content {
    flex: 1;
    max-width: 650px;
}

.section-tag {
    color: #c9a14a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-title span {
    color: #c9a14a;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Form */
.regal-cta-form {
    width: 420px;
    flex-shrink: 0;
}

.regal-cta-form form {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.regal-cta-form input,
.regal-cta-form select,
.regal-cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.regal-cta-form input:focus,
.regal-cta-form select:focus,
.regal-cta-form textarea:focus {
    border-color: #c9a14a;
}

.regal-cta-form textarea {
  height: 150px !important;
    resize: vertical;
}

.regal-cta-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px;
}

/* Example button styling */
.regal-btn-primary {
    background: #c9a14a !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.regal-btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

/* Responsive */
@media (max-width: 991px) {

    .regal-cta-wrapper {
        flex-direction: column;
    }

    .regal-cta-content,
    .regal-cta-form {
        width: 100%;
        max-width: 100%;
    }

    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .regal-cta {
        padding: 70px 0;
    }

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

    .regal-cta-form form {
        padding: 25px;
    }
}
/* contact form end */
/* CTA SECTION START */
.regal-cta {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(circle at center,
            rgba(201, 150, 49, 0.08),
            transparent 60%),
        #000;
    overflow: hidden;
}

.cta-title {
    font-size: 46px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-title span {
    color: var(--primary-gold);
    font-style: italic;
}

.cta-text {
    max-width: 650px;
    margin: auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.regal-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.regal-btn-outline:hover {
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 14px;
    }
}

/* CTA SECTION END */

/* FOOTER START */
.regal-footer {
    background: #050505;
    padding: 100px 0 40px;
    color: var(--text-muted);
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.7;
}

.footer-title {

    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
    font-weight: 600;
}

.footer-contact {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

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

.footer-divider {
    height: 1px;
    background: var(--border-light);
    margin: 50px 0 30px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-social a {
    color: var(--text-muted);
    margin-left: 20px;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

/* FOOTER END */

.project-image {
    position: relative;
    display: inline-block;
    /* important */
}

.project-image img {
    width: 100%;
    display: block;
}

.project-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
}