/* ========================================
   CSS Variables & Design Tokens
======================================== */
:root {
    /* Colors */
    --primary: hsl(30, 50%, 55%);
    --primary-light: hsl(35, 45%, 70%);
    --primary-dark: hsl(25, 55%, 45%);
    --primary-foreground: hsl(40, 33%, 98%);

    --background: hsl(40, 33%, 98%);
    --foreground: hsl(25, 30%, 15%);

    --card: hsl(40, 25%, 97%);
    --card-foreground: hsl(25, 30%, 15%);

    --muted: hsl(35, 15%, 90%);
    --muted-foreground: hsl(25, 15%, 45%);

    --border: hsl(35, 25%, 85%);

    --gold: hsl(30, 50%, 55%);
    --gold-light: hsl(35, 45%, 70%);
    --gold-dark: hsl(25, 55%, 40%);
    --warm-cream: hsl(40, 33%, 98%);
    --warm-brown: hsl(25, 30%, 15%);
    --warm-gray: hsl(30, 10%, 55%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(30, 50%, 30%, 0.1);
    --shadow-medium: 0 8px 30px -6px hsla(30, 50%, 30%, 0.15);
    --shadow-glow: 0 0 40px hsla(30, 50%, 55%, 0.2);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(35, 45%, 70%), hsl(30, 50%, 55%), hsl(25, 55%, 45%));
    --gradient-hero: linear-gradient(180deg, hsl(40, 33%, 98%) 0%, hsl(35, 25%, 94%) 100%);
    --gradient-section: linear-gradient(180deg, hsl(35, 20%, 92%) 0%, hsl(40, 33%, 98%) 100%);

    /* Spacing */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ========================================
   Reset & Base Styles
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Utility Classes
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--foreground);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

/* ========================================
   Navbar
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: hsla(40, 33%, 98%, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    padding: 1rem;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--foreground);
}

.mobile-cta {
    width: 100%;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-text {
        font-size: 1rem;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 50px;

    background-image: url("images/hero-banner7.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(214, 162, 90, 0.9);
    color: #141212;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: rgba(14, 13, 12, 0.9);
    text-align: center;
    margin-top: -30px;
}

.hero-description {
    font-size: 1.25rem;
    color: #070b0c;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    margin-top: 320px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    color: #ffffff;
}

.hero-features {
    padding: 4rem 0;

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f140e;
}

.feature-card p {
    font-size: 0.875rem;
    color: #6f6a63;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Our Projects Section
======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding-bottom: 1.5rem;

    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


/* .project-card img {
    width: 100%;
    object-fit: cover;
} */

.project-card h3 {
    margin: 1rem 0 0.25rem;
}

.project-card p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.floor-plan {
    display: none;
    margin-top: 1rem;
}

.floor-plan img {
    width: 100%;
    border-radius: 0.5rem;
}

.image-flip {
    width: 100%;
    perspective: 1000px;
    overflow: hidden;
    border-radius: 12px;
}

.image-flip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    backface-visibility: hidden;
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--gradient-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.value-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card,
.vision-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.mission-card {
    background: linear-gradient(135deg, var(--card), hsl(35, 30%, 95%));
}

.vision-card {
    background: linear-gradient(135deg, hsl(30, 20%, 96%), var(--card));
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.mission-card p,
.vision-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Services Section
======================================== */
.services {
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s inherit;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.expertise-section {
    text-align: center;
    padding: 3rem;
    background-color: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.expertise-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.expertise-tag {
    padding: 0.5rem 1.25rem;
    background-color: var(--muted);
    color: var(--foreground);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: var(--gradient-section);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-info>p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-form-wrapper {
    /* background-color: var(--card); */
    padding: 0;
    /* border-radius: var(--radius-xl); */
    /* border: 1px solid var(--border); */
    /* box-shadow: var(--shadow-medium); */
}

/* .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(30, 50%, 55%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
} */

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Contact Section – Mobile Fix
================================ */
/* Make map responsive */
.contact-form-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}

/* ===============================
   Tablet & Mobile
================================ */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }
}

/* ===============================
   Mobile Optimisation
================================ */
@media (max-width: 768px) {

    .contact section,
    .contact {
        padding: 60px 0;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-details {
        margin-top: 1.5rem;
    }

    .contact-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .contact-icon {
        font-size: 20px;
        min-width: 32px;
    }

    .contact-form-wrapper iframe {
        height: 300px;
        /* 👈 important for mobile */
    }
}

/* ===============================
   Small Phones
================================ */
@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper iframe {
        height: 260px;
    }
}


/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-brand p {
    color: hsla(40, 33%, 98%, 0.7);
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: hsla(40, 33%, 98%, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: hsla(40, 33%, 98%, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid hsla(40, 33%, 98%, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.5);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1f2933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c9a14a;
    /* Gold hover (luxury feel) */
    transform: translateY(-3px);
}

/* Optional brand colors on hover */
.footer-social a:hover .fa-facebook-f {
    color: #1877f2;
}

.footer-social a:hover .fa-instagram {
    color: #e4405f;
}

.footer-social a:hover .fa-youtube {
    color: #ff0000;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Toast Notification
======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--foreground);
    color: var(--background);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.3s ease;
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background-color: hsl(142, 76%, 36%);
}

.toast.error {
    background-color: hsl(0, 84%, 60%);
}

/* ===============================
   WhatsApp FIX – MOBILE VISIBLE
================================ */

.whatsapp {
    position: fixed !important;
    right: 16px !important;
    bottom: 90px !important;
    z-index: 2147483647 !important;
    /* 🔥 above everything */
    display: block !important;
    visibility: visible !important;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
}

/* Small devices */
@media (max-width: 480px) {
    .whatsapp {
        right: 14px !important;
        bottom: 100px !important;
    }

    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }
}



/* ===============================
   Privacy / Policy Page Styling
================================ */

/* Center title */
.policy-content .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Headings */
.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Paragraphs */
.policy-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Lists */
.policy-list {
    margin-top: 1rem;
    margin-left: 1.2rem;
}

.policy-list li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Last updated */
.policy-updated {
    margin-top: 2rem;
    text-align: right;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Mobile */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
}

/* ===============================
   Responsive YouTube Video
================================ */

.video-section {
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    /* optional, remove if you want full container */
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    /* modern & clean */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.video-heading h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3a2a1a;
    /* adjust to match your theme */
}

.video-heading p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .video-heading h2 {
        font-size: 24px;
    }

    .video-heading p {
        font-size: 14px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-wrapper {
        border-radius: 12px;
    }
}

/* Normalize buttons & links */
.project-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    font-size: 15px;
    border-radius: 999px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}