:root {
    --primary-color: #5c3b1a;
    /* Dark text */
    --accent-color: #b3853d;
    /* Gold/Brown text for highlighted part */
    --bg-color: #fcf8f3;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Adjust for sticky header */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden;
}

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

/* Header & Nav */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled,
.header.menu-open {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo img {
    height: 70px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(185, 135, 58, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(185, 135, 58, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* If the background image has a specific color, we blend it */
.hero {
    background-color: #f9f5ed;
    /* Match the edge of the image if contain leaves space */
}

.hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    /* Space for header */
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--accent-color);
}

.separator-line {
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ornament-separator {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 14px;
    gap: 15px;
}

.ornament-separator::before,
.ornament-separator::after {
    content: '';
    display: block;
    width: 150px;
    height: 1px;
    background-color: var(--accent-color);
    opacity: 0.5;
}

.ornament-short::before,
.ornament-short::after {
    width: 60px;
}

.diamond-icon {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    transform: rotate(45deg);
    display: inline-block;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-filled {
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(185, 135, 58, 0.3);
}

.btn-filled:hover {
    box-shadow: 0 6px 20px rgba(185, 135, 58, 0.5);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--accent-color);
    color: var(--white);
}

.mobile-only-btn {
    display: none;
}

/* About Section */
.about-section {
    position: relative;
    padding: 40px 0;
    min-height: auto;
    /* removed 100vh constraint */
    background-color: var(--white);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.about-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-content {
    max-width: 1000px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.mv-card .separator-line-small {
    margin: 0 auto 20px;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.line-vanish {
    background: linear-gradient(90deg, rgba(179, 133, 61, 0) 0%, rgba(179, 133, 61, 1) 50%, rgba(179, 133, 61, 0) 100%) !important;
    width: 30% !important;
    height: 2px !important;
}

.separator-line-small {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--accent-color);
}

.ornament-left {
    justify-content: flex-start;
}

.ornament-left::before {
    display: none;
}

.ornament-left::after {
    width: 250px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    max-width: 700px;
}

.approach-box {
    border: 1px solid rgba(179, 133, 61, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #fffdfa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    max-width: 700px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-circle.gold-bg {
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: var(--white);
}

.icon-circle.border-gold {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.approach-text {
    font-size: 14px;
    line-height: 1.5;
}

.approach-text strong {
    color: #000;
}

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

.gold-gradient-text {
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.features-grid {
    display: flex;
    gap: 20px;
}

.feature-item {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item:first-child {
    border-right: 1px solid rgba(179, 133, 61, 0.3);
    padding-right: 20px;
}

.feature-item:last-child {
    padding-left: 10px;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
}

.feature-line {
    margin-bottom: 10px;
    margin-top: 5px;
    margin-left: 0;
}

.about-content p.feature-desc {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.about-content p.feature-desc-small {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.about-stats-box {
    position: absolute;
    bottom: 20px;
    right: 35px;
    background-color: var(--white);
    border: 1px solid rgba(179, 133, 61, 0.3);
    border-radius: 12px;
    display: flex;
    padding: 20px 30px;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(179, 133, 61, 0.3);
    padding-right: 25px;
}

.stat-item i {
    font-size: 28px;
}

.stat-item span {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* Schemes Section */
.schemes-section {
    padding: 50px 0;
    background-color: #fdf8f5;
}

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

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 30px;
}

.ornament-center {
    justify-content: center;
}

.subtitle-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 15px;
}

.center-line {
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.scheme-card {
    background: var(--white);
    border: 1px solid rgba(179, 133, 61, 0.2);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.card-number {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: var(--white);
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 700;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: top;
}

.card-content {
    padding: 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-text {
    flex: 1;
}

.card-text p {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
}

.card-features-list {
    list-style: none;
    margin-top: 15px;
}

.card-features-list li {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.card-features-list li i {
    margin-top: 2px;
}

.card-footer {
    padding: 0 20px 20px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 12px;
}

/* Process Section */
.process-section {
    padding: 50px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 1px;
    border-top: 2px dashed var(--accent-color);
    z-index: 1;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-label {
    font-size: 8px;
    font-weight: 700;
    margin-bottom: 1px;
}

.step-num {
    font-size: 14px;
    font-weight: 700;
}

.step-arrow {
    position: absolute;
    top: 50px;
    right: 0;
    transform: translate(50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    z-index: 3;
}

.step-item:last-child .step-arrow {
    display: none;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-text {
    font-size: 11px;
    color: #555;
    text-align: center;
    line-height: 1.5;
}

.process-bottom-bar {
    position: relative;
    margin-top: 40px;
}

.bar-content {
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(179, 133, 61, 0.3);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
}

.bar-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bar-title .highlight {
    color: var(--accent-color);
}

.bar-btn {
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 8px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mv-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.mv-card {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid rgba(179, 133, 61, 0.4);
    border-radius: 12px;
    padding: 50px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mv-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    border-radius: 50%;
    z-index: 1;
}

.mv-icon i {
    position: relative;
    z-index: 2;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.mv-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.mv-text {
    flex: 1;
}

.mv-text p {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mv-footer-box {
    margin-top: 20px;
    border: 1px solid rgba(179, 133, 61, 0.4);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.5);
}

.mv-footer-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-footer-text {
    font-size: 12px;
    line-height: 1.4;
}

/* Why Choose Section */
.why-choose-section {
    padding: 50px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    border: 1px solid rgba(179, 133, 61, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-num {
    width: 54px;
    height: 54px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-color);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

/* Reels Section */
.reels-section {
    padding: 60px 0;
    background-color: #fcf7ed;
    /* Light beige matching the image */
}

.reels-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-item {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 326px;
    /* Match Instagram embed min-width */
}

/* Connect Section */
.connect-section {
    padding: 35px 0;
    background-color: #fff;
}

.connect-title {
    font-size: 2rem;
    color: #2c2543;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-btn {
    background-color: #0077b5;
}

.facebook-btn {
    background-color: #1877f2;
}

.youtube-btn {
    background-color: #ff0000;
}

/* Footer Section */
.footer-section {
    background-color: #161b22;
    color: #fff;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-box {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 60px;
}

.footer-logo {
    height: 115px;
    object-fit: contain;
}

.footer-contact-info,
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-address {
    margin-right: 90px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-item.align-top {
    align-items: flex-start;
}

.contact-item i {
    font-size: 18px;
}

.footer-separator {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #aaa;
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-call-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d39d48 0%, #a6762c 100%);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(211, 157, 72, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-call-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 157, 72, 0.6);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform-origin: top;
        transform: scaleY(0);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    .mobile-only-btn {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }

    .nav-right {
        display: none;
    }

    .hero-container {
        padding-top: 40px;
    }

    .hero-bg {
        position: static;
        height: 250px;
    }

    .hero-img {
        object-fit: cover;
        object-position: right;
    }

    .hero {
        flex-direction: column-reverse;
        padding-top: 80px;
        background-color: #fdf1e3;
    }

    .about-section {
        padding-top: 40px;
    }

    .about-bg {
        display: none;
    }

    .features-grid {
        flex-direction: column;
        gap: 30px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-right: none !important;
        padding-right: 0 !important;
    }

    .feature-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats-box {
        position: static;
        width: 100%;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        width: 40%;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-image img {
        height: 250px;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .mv-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reels-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-separator {
        width: 100%;
        height: 1px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-logo-box {
        margin-left: 0;
    }

    .footer-address {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .separator-line {
        margin: 0 auto 25px;
    }

    .ornament-separator {
        justify-content: center;
    }

    .ornament-separator::before,
    .ornament-separator::after {
        width: 60px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-subtitle,
    .separator-line-small {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .ornament-left {
        justify-content: center;
    }

    .ornament-left::before {
        display: block;
        width: 100px;
    }

    .ornament-left::after {
        width: 100px;
    }

    .about-content p {
        text-align: center;
    }

    .approach-box {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reels-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for cards */
.scheme-card, .feature-card, .mv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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