/*
Theme Name: Swasthikk Homes Theme
Theme URI: http://swastikkhomes.com/
Author: Antigravity
Author URI: https://google.com/
Description: A premium, hillside-themed custom WordPress theme for Swasthikk Homes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swastikkhomes
*/

/* --- Design Tokens --- */
:root {
    --paper: #ffffff;
    --ink: #102638;
    --stone: #5b6472;
    --line: #e2e5ea;
    --clay: #d94a24;
    --clay-deep: #b23a1a;
    --wash: #f7f8fa;
    --night: #0a1420;

    --primary-color: var(--ink);
    --primary-light: #16283e;
    --primary-dark: var(--night);
    
    --accent-color: var(--clay);
    --accent-hover: var(--clay-deep);
    --accent-light: #f2ebd9;
    
    --bg-cream: var(--paper);
    --bg-sage: #EBECE6;
    --bg-dark-accent: var(--night);
    
    --text-dark: var(--ink);
    --text-muted: var(--stone);
    --text-light: #FFFFFF;
    
    --font-heading: 'Fraunces', serif;
    --font-meta: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    --border-radius-sm: 2px;
    --border-radius-md: 4px;
    --border-radius-lg: 24px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

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

.section.dark h2, 
.section.dark h3, 
.section.dark h4 {
    color: var(--accent-color);
}

.section.sage {
    background-color: var(--bg-sage);
}

.projects-section {
    background-color: var(--wash) !important;
    background: var(--wash) !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 36px;
}

@media (max-width: 820px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-item-card {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--line);
    background-color: var(--paper);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(16, 38, 56, 0.08);
}

.project-thumb-box {
    height: 210px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #16283e 0%, #0c1b2e 60%, #0a1420 100%);
}

.project-thumb-box svg {
    width: 100%;
    height: 100%;
    display: block;
}

.project-info {
    padding: 18px 20px;
    background-color: var(--paper);
    text-align: left;
}

.project-cat {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clay-deep);
    font-weight: 600;
}

.project-title {
    font-size: 17px;
    margin-top: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ink);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1.25rem auto 0 auto;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.section.dark .section-header p {
    color: #a0b0a8;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .section {
        padding: 5rem 0;
    }
}

/* --- Navigation & Header --- */
/* --- Navigation & Header --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(16, 38, 56, 0.05);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img, .logo a img, .custom-logo {
    height: 48px;
    width: auto;
    display: block;
}

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

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--ink); /* Deep Navy text links */
    font-weight: 600;
    font-size: 14px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--clay); /* Terracotta Orange hover state */
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--clay);
    transition: width 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--clay) !important;
    color: #FFFFFF !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    box-shadow: none !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--clay-deep) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.nav-cta-outline {
    border: 1px solid var(--ink) !important;
    background-color: transparent !important;
    color: var(--ink) !important;
    padding: 10px 20px !important;
    border-radius: 2px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    transition: all 0.2s ease !important;
}

.nav-cta-outline::after {
    display: none !important;
}

.nav-cta-outline:hover {
    background-color: var(--ink) !important;
    color: #FFFFFF !important;
    border-color: var(--ink) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    
    .main-navigation a {
        font-size: 1.2rem;
    }
}

/* --- Hero Section (Styles migrated to new section) --- */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-meta);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #D84315;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #E64A19;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(216, 67, 21, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* --- Why Choose Us (Icon Cards) --- */
.benefits-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 4rem auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(18, 53, 36, 0.05);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(18, 53, 36, 0.05);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--accent-hover);
    line-height: 1;
    margin-top: 0.15rem;
}

.benefit-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Us --- */
.about-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 12px solid rgba(197, 168, 128, 0.2);
    border-radius: var(--border-radius-md);
    pointer-events: none;
}

.about-badge {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-sm);
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-mission {
    background: var(--bg-sage);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-top: 2rem;
}

.about-mission p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* --- Services Card Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 53, 36, 0.08);
    border-color: rgba(197, 168, 128, 0.3);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Construction Process Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-container {
    padding: 1rem 3rem;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-cream);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -8px;
}

.timeline-content {
    background-color: var(--text-light);
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.timeline-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(18, 53, 36, 0.06);
}

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

.timeline-content:hover .timeline-img img {
    transform: scale(1.06);
}

.timeline-text {
    padding: 1.75rem 2rem 2rem 2rem;
}

.timeline-container:hover::after {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

.timeline-step {
    font-family: var(--font-meta);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-hover);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::after {
        left: 23px;
        right: auto;
    }
    
    .right {
        left: 0%;
    }
}

/* --- Investment Advantage --- */
.investment-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #154530 100%);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.investment-accent {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.investment-badge {
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.investment-content h3 {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.investment-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
}

.investment-highlight {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .investment-card {
        padding: 3rem 2rem;
    }
    .investment-accent {
        font-size: 3.5rem;
    }
}

/* --- Trust List Grid --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background-color: var(--bg-cream);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(18, 53, 36, 0.08);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    background-color: var(--text-light);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(18, 53, 36, 0.05);
}

.trust-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(197, 168, 128, 0.4);
    margin-bottom: 1rem;
    line-height: 1;
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact / Footer --- */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 6rem 0 3rem 0;
    border-top: 2px solid var(--accent-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-brand h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p.tagline {
    color: var(--accent-color);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-brand p.desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links h3, .footer-contact h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-contact p.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact strong {
    color: var(--text-light);
}

.footer-contact .icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    margin-left: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}

/* --- Dialog Modals --- */
dialog.contact-dialog {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: 0 25px 60px rgba(10, 31, 21, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 85vh; /* Keep form within viewport height */
    overflow-y: auto; /* Scroll internally if needed */
    padding: 2.5rem;
    background-color: var(--bg-cream);
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    border-top: 5px solid var(--accent-color); /* Premium gold header highlight */
}

dialog.contact-dialog[open] {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

dialog.contact-dialog::backdrop {
    background: rgba(10, 31, 21, 0.85);
    backdrop-filter: blur(8px);
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(18, 53, 36, 0.08);
    padding-bottom: 1rem;
}

.dialog-header h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.close-dialog {
    background: rgba(18, 53, 36, 0.05);
    border: none;
    font-size: 1.25rem;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-dialog:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(18, 53, 36, 0.15);
    background-color: var(--text-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.form-submit-btn {
    width: 100%;
    margin-top: 0.75rem;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.form-submit-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.form-response-msg {
    margin-top: 1.25rem;
    padding: 0.85rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-response-msg.success {
    background-color: #e2f0e6;
    color: #1b632e;
    border: 1px solid #c7e5cf;
    display: block;
}

.form-response-msg.error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
    display: block;
}

/* --- Mobile Responsiveness for Dialog Modals --- */
@media (max-width: 600px) {
    dialog.contact-dialog {
        padding: 1.5rem;
        width: 92%;
        max-height: 90vh;
    }
    
    .dialog-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }
    
    .dialog-header h3 {
        font-size: 1.35rem;
    }
    
    .form-group input, 
    .form-group textarea, 
    .form-group select {
        padding: 0.75rem 0.95rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* --- Remodeling Grayscale Filter --- */
.remodeling-img img {
    filter: grayscale(0.2) contrast(1.1);
}

/* --- Footer Brand Logo & Links --- */
.footer-logo-svg {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
}

.footer-contact .contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-contact .contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* --- Service Card Full-Width Variations --- */
.service-card-full {
    margin-top: 2rem;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
}

.service-card-full-body {
    text-align: center;
    padding: 3rem;
}

.service-card-full-desc {
    max-width: 800px;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .service-card-full {
        flex-direction: column;
    }
    .service-card-full-body {
        padding: 2rem 1.5rem;
    }
}

/* --- Project Card Micro-Animations --- */
.project-thumb-box {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.project-thumb-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22) !important;
}
.project-thumb-box:hover .sw-project-img {
    transform: scale(1.04) !important;
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Auspicious Swastikk Preloader Styles --- */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

.sw-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.sw-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sw-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.sw-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawSwastikk 2.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.sw-dot {
    opacity: 0;
    transform-origin: center;
    animation: popDot 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Quadrant pop delay offsets for dots */
.sw-dot:nth-child(2) { animation-delay: 1.2s; }
.sw-dot:nth-child(3) { animation-delay: 1.4s; }
.sw-dot:nth-child(4) { animation-delay: 1.6s; }
.sw-dot:nth-child(5) { animation-delay: 1.8s; }

.preloader-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: preloaderTextIn 1.2s ease forwards 0.8s;
}

.preloader-tagline {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 1px;
    opacity: 0;
    animation: preloaderTextIn 1.2s ease forwards 1.2s;
}

/* Keyframes */
@keyframes drawSwastikk {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popDot {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(197, 168, 128, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(197, 168, 128, 0.75));
    }
}

@keyframes preloaderTextIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Extreme Mobile Responsiveness (< 480px) --- */
@media (max-width: 480px) {
    /* Hero adjust */
    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Section paddings & headers */
    .section {
        padding: 3.5rem 0;
    }
    .section-header h2 {
        font-size: 1.85rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Grids & Cards */
    .about-content h3 {
        font-size: 1.75rem;
    }
    .about-mission p {
        font-size: 1.1rem;
    }
    .service-card-full-body {
        padding: 2.25rem 1.25rem;
    }
    
    /* Timeline optimization for narrow screens */
    .timeline::after {
        left: 20px;
    }
    .timeline-container {
        padding-left: 45px;
        padding-right: 5px;
    }
    .timeline-container::after {
        left: 12px;
    }
    .timeline-text {
        padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    }
    .timeline-img {
        height: 140px;
    }
    
    /* Investment Card */
    .investment-card {
        padding: 2.5rem 1.25rem;
        border-radius: var(--border-radius-md);
    }
    .investment-accent {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }
    .investment-content h3 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    .investment-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .investment-highlight {
        font-size: 1.1rem;
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse 2s infinite;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 0 0 4px var(--accent-color);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.05);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-meta);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--accent-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--primary-dark);
    border-top: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Adjust for small screens to prevent overlap with standard navigation */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on touch screens to save space */
    }
}

/* ==========================================================================
   Homepage Redesign Styles (Approved Content & Layouts)
   ========================================================================== */

/* --- Logo Styling --- */
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    max-height: 52px;
    width: auto;
    display: block;
}

/* --- Hero Redesign --- */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(197, 168, 128, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
                linear-gradient(135deg, #FCFBF7 0%, #F5F2EA 100%);
    padding: 5.5rem 0 4rem 0;
    text-align: center;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.55) 100%);
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.hero-subtitle {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-hover);
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
}
.hero h1 span {
    color: #D84315; /* Orange accent */
    font-style: italic;
}
.hero-lead {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.hero-pill {
    display: inline-block;
    border: 1px solid rgba(18, 53, 36, 0.12);
    background-color: #FFFFFF;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-meta);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}
.hero-pill:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.15);
}

/* --- Stats Strip --- */
.stats-strip {
    background-color: #FFFFFF;
    padding: 2.25rem 0;
    border-top: 1px solid rgba(18, 53, 36, 0.06);
    border-bottom: 1px solid rgba(18, 53, 36, 0.06);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(18, 53, 36, 0.08);
}
.stat-num {
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #D84315; /* Orange accent */
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.75rem;
    font-family: var(--font-meta);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- Two Ways To Work --- */
.ways-to-work {
    background-color: #FFFFFF;
    padding: 4rem 0;
}
.ways-to-work .section-tag-block {
    display: block;
    font-family: var(--font-meta);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clay);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.section-heading {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.section-heading span {
    color: #D84315;
    font-style: italic;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 1.25rem;
}
.work-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3.5rem 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.work-card.dark-bg {
    background-color: #081E36; /* Navy Blue background */
    color: var(--text-light);
    border: none;
    box-shadow: 0 15px 40px rgba(8, 30, 54, 0.15);
}
.card-tag {
    font-family: var(--font-meta);
    font-size: 0.8rem;
    font-weight: 500;
    color: #D84315; /* Orange card tags */
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    display: block;
}
.card-tag.gold {
    color: #D84315; /* Both tags are orange */
}
.work-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
}
.work-card.dark-bg h3 {
    color: var(--text-light);
}
.card-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}
.work-card.dark-bg .card-desc {
    color: rgba(255, 255, 255, 0.7);
}
.card-list {
    list-style: none;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.card-list li {
    padding-bottom: 0.88rem;
    margin-bottom: 0.88rem;
    font-size: 0.95rem;
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06); /* List dividers */
}
.work-card.dark-bg .card-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* List dividers for dark card */
}
.card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.chk-icon {
    color: #D84315; /* Orange checkmarks */
    font-weight: 500;
    font-size: 1.1rem;
}
.work-card .btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--primary-dark);
    background-color: transparent;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-family: var(--font-meta);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    align-self: flex-start;
}
.work-card .btn-outline:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
}
.work-card .btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    background-color: transparent;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-family: var(--font-meta);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-self: flex-start;
}
.work-card .btn-outline-white:hover {
    background-color: #FFFFFF;
    color: #081E36;
    border-color: #FFFFFF;
}
.section-footnote {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
}

/* --- Comparison Section --- */
.comparison-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}
.section-desc {
    max-width: 720px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3.5rem;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 2rem;
}
.chart-container {
    background-color: #081E36; /* Navy Blue background */
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 40px rgba(8, 30, 54, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.chart-header {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-meta);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
}
.color-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}
.color-dot.gold {
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}
.color-dot.grey {
    background-color: #9E9E9E;
}
.svg-wrapper {
    position: relative;
    width: 100%;
}
.comparison-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Chart SVG Animations */
.comparison-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.comparison-svg circle {
    opacity: 0;
    animation: popDotAnim 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.comparison-svg circle:nth-of-type(1) { animation-delay: 0.2s; }
.comparison-svg circle:nth-of-type(2) { animation-delay: 0.5s; }
.comparison-svg circle:nth-of-type(3) { animation-delay: 0.8s; }
.comparison-svg circle:nth-of-type(4) { animation-delay: 1.1s; }
.comparison-svg circle:nth-of-type(5) { animation-delay: 1.4s; }
.comparison-svg circle:nth-of-type(6) { animation-delay: 1.8s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes popDotAnim {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comparison-table-container {
    padding: 0.5rem 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table th {
    padding: 14px 12px;
    font-family: var(--font-meta);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
.comparison-table th:nth-child(1) { text-align: left; }
.comparison-table th:nth-child(2) { text-align: center; }
.comparison-table th:nth-child(3) { text-align: right; }

.comparison-table td {
    padding: 18px 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 500;
}
.comparison-table td:nth-child(1) {
    text-align: left;
    color: var(--primary-dark);
}
.comparison-table td:nth-child(2) {
    text-align: center;
    color: #666666;
}
.comparison-table td:nth-child(3) {
    text-align: right;
    color: #D84315;
    font-weight: 700;
}
.comparison-table tr:hover td {
    background-color: rgba(216, 67, 21, 0.02);
}
.table-closing {
    margin-top: 2.25rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-dark);
}

/* --- Scrolling Marquee Ticker --- */
.scrolling-ticker {
    background-color: #FFFFFF;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-top: 1px solid #EBECE6;
    border-bottom: 1px solid #EBECE6;
}
.ticker-content {
    display: inline-block;
    animation: tickerAnim 35s linear infinite;
}
.ticker-item {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.82rem;
    font-weight: 700;
    color: #081E36;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 1.75rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.ticker-chk {
    color: #D84315;
    margin-right: 8px;
    font-weight: 800;
}
@keyframes tickerAnim {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- About Us Section --- */
.about-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}
.about-main-content {
    display: flex;
    flex-direction: column;
}
.about-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.about-desc strong {
    color: var(--primary-dark);
}
.about-desc.font-highlight {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid #D84315; /* Orange border left */
    padding-left: 1.25rem;
    margin: 1.5rem 0 2rem 0;
}
.about-pillars {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.about-pillar-item {
    display: flex;
    align-items: start;
    gap: 20px;
}
.about-pillar-item .num {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: #D84315;
    line-height: 1;
    min-width: 35px;
    font-style: italic; /* Italic numbers */
}
.about-pillar-item h4 {
    font-family: var(--font-meta);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}
.about-pillar-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.about-stats-sidebar {
    display: flex;
    justify-content: flex-end;
    align-items: start;
}
.stats-box-dark {
    background-color: #081E36; /* Navy background */
    padding: 4rem 3.5rem;
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(8, 30, 54, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.stats-box-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Divider lines in stats card */
}
.stats-box-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}
.stats-box-item .num {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #D84315; /* Orange numbers */
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.stats-box-item .lbl {
    font-size: 0.8rem;
    font-family: var(--font-meta);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}
.stats-box-footnote {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
}

/* --- Dream Home Section (Steps) --- */
.dream-home-section {
    background-color: #FFFFFF;
    padding: 6.5rem 0;
}
.assurance-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-dark);
    background-color: #F8F7F4;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-meta);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}
.dream-home-section .section-heading span {
    color: #D84315;
    font-style: italic;
}
.process-steps-list {
    display: flex;
    flex-direction: column;
}
.process-step-row {
    display: flex;
    gap: 3.5rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: start;
    transition: var(--transition-smooth);
}
.process-step-row:last-child {
    border-bottom: none;
}
.process-step-row:hover {
    padding-left: 1rem;
}
.step-idx {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #D84315;
    line-height: 1;
    min-width: 60px;
    font-style: italic; /* Italic numbers */
}
.step-detail h3 {
    font-family: var(--font-meta);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.step-detail p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Services Grid --- */
.services-section {
    background-color: #F8F7F4; /* Soft grey/cream background */
    padding: 6.5rem 0;
}
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(0, 0, 0, 0.08); /* Outer box border */
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: #FFFFFF; /* Inner card backgrounds are white */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.service-block {
    background-color: #FFFFFF;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.06); /* Divider lines */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}
.service-block:nth-child(3n) {
    border-right: none;
}
.service-block:nth-child(n+4) {
    border-bottom: none;
}
.service-block:hover {
    background-color: rgba(216, 67, 21, 0.01); /* Soft hover highlight */
}
.service-icon-svg {
    margin-bottom: 1.5rem;
    display: inline-flex;
}
.service-block h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.35;
}
.service-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    flex-grow: 1;
}
.service-sublist-grid {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.service-sublist-grid ul {
    list-style: none;
}
.service-sublist-grid li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

/* --- Completed Projects --- */
.projects-section {
    background-color: var(--wash) !important;
    background: var(--wash) !important;
    color: var(--ink);
    padding: 76px 0;
}
.projects-section .section-tag {
    color: var(--clay-deep);
}
.projects-section .section-heading {
    color: var(--ink) !important;
}
.projects-section .section-heading span,
.projects-section .section-heading .hl {
    color: var(--clay) !important;
    font-style: normal;
}
.projects-section .section-desc {
    color: var(--stone);
}
.projects-categories-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
}
.projects-categories-grid::-webkit-scrollbar {
    height: 6px;
}
.projects-categories-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.projects-categories-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: background 0.3s;
}
.projects-categories-grid::-webkit-scrollbar-thumb:hover {
    background: #D84315;
}
.project-category-card {
    height: 260px;
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 250px;
    scroll-snap-align: start;
}
.project-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.project-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}
.project-category-card h4 {
    font-size: 1.35rem;
    color: var(--text-light);
    position: relative;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}
.card-blue { background-color: #0E2538; }
.card-orange { background-color: #2A170F; }
.card-olive { background-color: #152219; }
.card-lightblue { background-color: #12283E; }

.mountain-silhouette {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 55%;
    clip-path: polygon(0% 100%, 18% 50%, 35% 75%, 60% 25%, 80% 68%, 100% 45%, 100% 100%);
    z-index: 1;
}

.card-blue .mountain-silhouette {
    background-color: #1C456E;
}
.card-orange .mountain-silhouette {
    background-color: #A34E1B;
}
.card-olive .mountain-silhouette {
    background-color: #8C7247;
}
.card-lightblue .mountain-silhouette {
    background-color: #244B75;
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: #FFFFFF;
    border-top: 1px solid #EBECE6;
    text-align: center;
    padding: 6.5rem 0;
}
.final-cta-section .section-tag {
    color: #D84315; /* Orange tag */
}
.final-cta-section .section-heading span {
    color: #D84315; /* Orange italic text */
}
.final-cta-section .section-desc {
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.75rem;
}
.final-cta-section .btn {
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-meta);
}
.final-cta-section .btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--primary-dark);
    background-color: transparent;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.final-cta-section .btn-outline:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
}

/* --- Redesigned Footer --- */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 6rem 0 3.5rem 0;
    border-top: 2px solid var(--accent-color);
}
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
    gap: 3.5rem;
}
.footer-col h3 {
    font-family: var(--font-meta);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.88rem;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}
.footer-logo-img {
    max-height: 76px;
    width: auto;
    margin-bottom: 1.5rem;
}
.footer-brand-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-details li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: start;
    gap: 12px;
}
.contact-details li a {
    font-size: 0.9rem;
}
.contact-details .icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 4rem 0 2.5rem 0;
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}
.footer-bottom-flex p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}
.footer-bottom-flex .tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}
.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.75rem;
    text-align: justify;
}

/* ==========================================================================
   Responsive Adaptations for Redesigned Sections
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .dream-home-section .container.grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-block {
        border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
    .service-block:nth-child(2n) {
        border-right: none !important;
    }
    .service-block:nth-child(n+5) {
        border-bottom: none !important;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-lead {
        font-size: 1.25rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .work-card {
        padding: 2.5rem 2rem;
    }
    .section-heading {
        font-size: 2.2rem;
    }
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    .service-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
    .service-block:last-child {
        border-bottom: none !important;
    }
    .projects-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .projects-categories-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .process-step-row {
        gap: 1.5rem;
        flex-direction: column;
    }
    .step-idx {
        min-width: auto;
    }
}

/* --- Floating Back to Top Button --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite side of WhatsApp widget */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(8, 30, 54, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(216, 67, 21, 0.2);
    border-color: #D84315;
}
.btt-swastik-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top-btn:hover .btt-swastik-icon {
    transform: rotate(90deg); /* Premium rotation effect */
}
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    .btt-swastik-icon {
        width: 24px;
        height: 24px;
    }
}

/* --- Comparison SVG Chart Animation --- */
#swastikk-path {
    stroke-dasharray: 456;
    stroke-dashoffset: 456;
}
#fd-path {
    stroke-dasharray: 401;
    stroke-dashoffset: 401;
}
#swastikk-fill {
    opacity: 0;
}
#fd-dots, #swastikk-dots {
    opacity: 0;
}

.comparison-svg.start-animation #swastikk-path {
    animation: drawChartLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.comparison-svg.start-animation #fd-path {
    animation: drawChartLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.comparison-svg.start-animation #swastikk-fill {
    animation: chartFadeIn 0.8s ease 2s forwards;
}
.comparison-svg.start-animation #fd-dots {
    animation: chartFadeIn 0.5s ease 1.5s forwards;
}
.comparison-svg.start-animation #swastikk-dots {
    animation: chartFadeIn 0.5s ease 2.2s forwards;
}

@keyframes drawChartLine {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes chartFadeIn {
    to {
        opacity: 1;
    }
}

/* Custom spacing/alignment fix for letter J in Fraunces font */
.hero-j {
    display: inline-block;
    transform: translateY(-0.06em);
    margin-right: -0.08em;
    color: inherit !important;
    font-style: normal !important;
}

/* Header logo dimensions and hover scaling */
.logo-img {
    height: 170px;
    width: auto;
    display: block;
    margin-top: -42px;
    margin-bottom: -42px;
    transition: var(--transition-smooth);
}
.site-header.scrolled .logo-img {
    height: 125px;
    margin-top: -30px;
    margin-bottom: -30px;
}
.logo-img:hover {
    transform: scale(1.04);
}

/* Projects grid responsive sizing */
@media (max-width: 991px) {
    .project-category-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
@media (max-width: 767px) {
    .project-category-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (max-width: 480px) {
    .project-category-card {
        flex: 0 0 85%;
    }
}

/* --- Swastikk Difference & Flow Styles --- */
.hl {
    color: var(--clay);
    font-style: normal;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-meta, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--clay-deep);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-tag.on-dark {
    color: #f0916f;
}
.section-tag .tag-dash {
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--clay);
}
.section-tag.on-dark .tag-dash {
    background-color: #f0916f;
}
.promise-quote {
    max-width: 680px;
    margin: 3.5rem auto 0;
    text-align: center;
    font-family: var(--font-heading, serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1F2937;
}
.promise-line {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #4B5563;
}
.promise-line strong {
    color: #111827;
    font-weight: 700;
}
.flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-top: 3.5rem;
}
.flow-step {
    flex: 1 1 180px;
    max-width: 200px;
    text-align: center;
    padding: 0 8px;
}
.flow-num {
    font-family: var(--font-heading, serif);
    font-size: 1.05rem;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 6px;
}
.flow-step svg {
    display: block;
    margin: 0 auto 12px;
}
.flow-step h4 {
    font-family: var(--font-heading, serif);
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: #111827;
    font-weight: 700;
}
.flow-step p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.45;
}
.flow-arrow {
    align-self: flex-start;
    margin-top: 2.2rem;
    color: #D84315;
    font-size: 1.2rem;
    padding: 0 4px;
    flex: 0 0 auto;
}
}
@media (max-width: 768px) {
    .flow {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
    }
    .flow-step {
        max-width: 280px;
    }
}

/* --- What We Build Pills --- */
.build-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    background-color: #FFFFFF;
    font-family: var(--font-heading, serif);
    font-size: 0.98rem;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}
.build-pill:hover {
    border-color: #D84315;
    transform: translateY(-1px);
}
.capability-strip {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
}
.capability-strip span {
    margin: 0 4px;
}

/* --- Why Swastikk Stats Grid --- */
.stat-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background-color: #FFFFFF;
}
.stat {
    flex: 1 1 200px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid #E5E7EB;
}
.stat:last-child {
    border-right: none;
}
.stat svg {
    display: block;
    margin: 0 auto 12px;
}
.stat .num {
    font-family: var(--font-heading, serif);
    font-size: 2rem;
    color: #D84315;
    font-weight: 700;
    line-height: 1.1;
}
.stat .lbl {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B7280;
    font-weight: 600;
    margin-top: 8px;
}
.stat-subcaption {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6B7280;
    text-align: center;
}

/* --- About Us --- */
.about-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}
.body-copy {
    font-size: 1.02rem;
    color: #374151;
    line-height: 1.7;
}
.body-copy p + p {
    margin-top: 1.25rem;
}
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.about-card {
    border-top: 2px solid #D84315;
    padding-top: 1.5rem;
    text-align: left;
}
.about-card svg {
    margin-bottom: 12px;
}
.about-num {
    font-family: var(--font-heading, serif);
    font-size: 0.9rem;
    color: #D84315;
    font-weight: 700;
    margin-bottom: 6px;
}
.about-card h4 {
    font-family: var(--font-heading, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.about-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.55;
}

/* --- Projects / Our Work --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.project-item-card {
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    background-color: #FFFFFF;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.project-thumb-box {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background-color: #0E1A29;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-thumb-box svg {
    width: 100%;
    height: 100%;
    display: block;
}
.project-info {
    padding: 1.5rem;
    background-color: #FFFFFF;
}
.project-cat {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #D84315;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.project-title {
    font-family: var(--font-heading, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}
.btn-text-link {
    display: inline-block;
    font-family: var(--font-heading, serif);
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: color 0.2s ease;
}
.btn-text-link:hover {
    color: #D84315;
}

/* --- FAQ Accordion --- */
.faq-accordion {
    margin-top: 3rem;
    border-top: 1px solid #E5E7EB;
}
.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #E5E7EB;
}
.faq-item summary {
    font-family: var(--font-heading, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none !important;
}
.faq-item summary::after {
    content: "" !important;
    display: none !important;
}
.faq-item[open] summary::after {
    content: "" !important;
    display: none !important;
}
.faq-item p {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ==========================================================================
   STUNNING 3D ANIMATIONS & INTERACTIVE VISUAL EFFECTS
   ========================================================================== */

/* 1. 3D Card Perspective & Smooth Floating Tilt */
.project-carousel-card, 
.grid-box, 
.service-block, 
.work-card, 
.stat-box,
.about-feature-card {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    will-change: transform;
}

.project-carousel-card:hover,
.about-feature-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-2deg) scale(1.015);
    box-shadow: 0 20px 40px rgba(16, 38, 56, 0.12), 0 8px 16px rgba(217, 74, 36, 0.08);
}

/* 2. Image 3D Scale & Shimmer Effect */
.project-thumb-box img,
.feature-img-box img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.project-carousel-card:hover .project-thumb-box img {
    transform: scale(1.06) translateZ(12px);
    filter: brightness(1.03);
}

/* 3. 3D Scroll Reveal Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 4. Glowing 3D Button Micro-animations */
button, .btn, a[class*="btn"], .proj-prev, .proj-next {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

button:hover, .btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* 5. Subtitle & Eyebrow Shimmer */
@keyframes shimmerPulse {
    0% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.85; transform: scale(1); }
}

.section-tag, .eyebrow-tag {
    animation: shimmerPulse 4s ease-in-out infinite;
}


/* --- Final CTA & Destinations --- */
.cta-section {
    padding: 6.5rem 0 4.5rem;
}
.cta-section .section-heading {
    font-size: 2.85rem;
    line-height: 1.25;
    margin-top: 1.25rem;
}
.cta-section .section-desc {
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.6;
}
.cta-divider {
    margin: 3.5rem auto 2.5rem;
    max-width: 820px;
    border-top: 1px solid #E5E7EB;
}
.destinations-bar {
    font-family: var(--font-heading, serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
}
.dot-orange {
    color: #D84315;
    margin: 0 8px;
    font-size: 0.9rem;
}
.dot-grey {
    color: #9CA3AF;
    margin: 0 6px;
    font-size: 0.85rem;
}
.quick-contacts {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    color: #6B7280;
    text-align: center;
}
.quick-contacts a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}
.quick-contacts a:hover {
    color: #D84315;
}

@media (max-width: 992px) {
    .about-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-cards-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .about-cards-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }
}

/* --- Global Buttons & Utility Classes --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading, serif);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.btn-primary {
    background-color: #B83A14;
    color: #FFFFFF;
    border-color: #B83A14;
}
.btn-primary:hover {
    background-color: #A0310F;
    border-color: #A0310F;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 58, 20, 0.25);
}
.btn-outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.section-border {
    border-bottom: 1px solid #E5E7EB;
}

/* --- Centering Helper Classes --- */
.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.center .section-tag {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.center .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.center .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Floating WhatsApp Button & Pulse Effect --- */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 28px;
    right: 28px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #FFFFFF;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

/* --- High-Specificity Hero Text Contrast Overrides --- */
#hero, #hero *, .hero, .hero * {
    color: #FFFFFF;
}

.hero {
    position: relative;
    padding: 9rem 0 7rem;
    text-align: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

#hero .hero-subtitle, .hero .hero-subtitle, .hero-content .hero-subtitle {
    display: inline-block;
    color: #F0916F !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

#hero h1, .hero h1, .hero-content h1 {
    color: #FFFFFF !important;
    font-size: 3.4rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9) !important;
}

#hero p, .hero p, .hero-lead, .hero-content p {
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    font-weight: 500;
    line-height: 1.6;
    max-width: 660px;
    margin: 1.25rem auto 0 auto;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
}

#hero .hl, .hero .hl, #hero span.hl, .hero span.hl {
    color: #FF5722 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* --- Responsive Grid Boxes for Mobile --- */
@media (max-width: 768px) {
    .build-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .swastikk-diff-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .swastikk-diff-row > div {
        width: 100% !important;
    }
}

/* --- FAQ Accordion Fix (Suppress WebKit Summary Marker) --- */
details.faq-item summary::-webkit-details-marker {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
details.faq-item summary::marker {
    display: none !important;
    content: "" !important;
}
details.faq-item summary {
    list-style: none !important;
    list-style-type: none !important;
}
details.faq-item[open] summary .faq-toggle-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   SUPER RICH 3D ANIMATIONS & VISUAL EFFECTS
   ========================================================================== */

/* Keyframe 1: Floating 3D Y-Axis Animation */
@keyframes float3D {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Keyframe 2: Pulse Glow Shimmer */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(217, 74, 36, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(217, 74, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 74, 36, 0); }
}

/* Keyframe 3: 3D Gradient Text Shimmer */
@keyframes textGradientShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 1. 3D Perspective Containers */
.projects-section, .swastikk-difference-section, .what-we-build-section, .why-swastikk-section, .about-section, .faq-section {
    perspective: 1200px;
}

/* 2. Interactive 3D Cards & Grid Boxes */
.project-carousel-card,
.grid-box,
.swastikk-diff-row,
.stat-item,
.about-feature-box {
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s ease, border-color 0.3s ease, background-color 0.3s ease;
    will-change: transform;
}

.grid-box:hover {
    transform: translateY(-6px) rotateX(3deg) rotateY(-2deg);
    border-color: #d94a24 !important;
    box-shadow: 0 16px 32px rgba(16, 38, 56, 0.08), 0 4px 12px rgba(217, 74, 36, 0.06);
}

.swastikk-diff-row:hover {
    transform: translateX(8px) translateZ(10px);
    background-color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* 3. 3D Image Parallax Hover Scale */
.project-thumb-box {
    perspective: 800px;
    overflow: hidden;
}

.project-thumb-box img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.project-carousel-card:hover .project-thumb-box img {
    transform: scale(1.08) translateZ(20px);
    filter: brightness(1.04) contrast(1.02);
}

/* 4. Glassmorphism Accent Highlights */
.glass-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* 5. Smooth FAQ Expand Animation */
details.faq-item[open] {
    background: #ffffff;
    border-radius: 8px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

details.faq-item[open] summary {
    color: #d94a24 !important;
}

details.faq-item p {
    animation: faqExpand 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes faqExpand {
    0% { opacity: 0; transform: translateY(-10px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* 6. Dynamic Text Gradient Highlight */
.text-shimmer-orange {
    background: linear-gradient(135deg, #d94a24 0%, #FF6B00 50%, #d94a24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientShimmer 4s ease infinite;
}







