/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Satish Puri branding website)
   ========================================================================== */

:root {
    /* Constant Branding Colors */
    --color-primary: #081B33;    /* Deep Executive Blue */
    --color-secondary: #C8102E;  /* Rich Corporate Red */
    --color-accent: #D4AF37;     /* Luxury Gold */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Container Widths */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Light Theme Variables */
body.light-theme {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F8FA;
    --bg-dark-only: #081B33; /* remains dark for visual depth sections */
    --text-main: #081B33;
    --text-muted: #556B82;
    --text-light: #F7F8FA;
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(8, 27, 51, 0.08);
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --shadow-premium: 0 15px 35px rgba(8, 27, 51, 0.05);
    --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.8);
    --glass-blur: blur(15px);
}

/* Dark Theme Variables */
body.dark-theme {
    --bg-primary: #040D1A;
    --bg-secondary: #081B33;
    --bg-dark-only: #030A14;
    --text-main: #FFFFFF;
    --text-muted: #A0B2C6;
    --text-light: #F7F8FA;
    --card-bg: rgba(8, 27, 51, 0.45);
    --card-border: rgba(212, 175, 55, 0.12);
    --navbar-bg: rgba(4, 13, 26, 0.88);
    --shadow-premium: 0 20px 45px rgba(0, 0, 0, 0.45);
    --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    --glass-blur: blur(15px);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

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

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

.glass {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-premium), var(--shadow-inset);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.badge-gold {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.badge-gold::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

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

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

.text-white {
    color: var(--color-white) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-light-gray {
    color: #A0B2C6 !important;
}

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

.dark-section {
    background-color: var(--bg-dark-only);
    color: var(--color-white);
}

.center-title-container {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #030D1A 100%);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(8, 27, 51, 0.3);
}

.light-theme .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #152c4a 100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #900B20 100%);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--navbar-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--card-border);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-txt {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    background-color: var(--text-main);
    color: var(--bg-primary);
}

.theme-toggle .sun-icon {
    display: none;
}

body.dark-theme .theme-toggle .sun-icon {
    display: block;
}

body.dark-theme .theme-toggle .moon-icon {
    display: none;
}

/* Hamburger */
.menu-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px;
}

.menu-hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.02);
    transition: var(--transition-smooth);
}

.hero-container {
    align-items: center;
    z-index: 2;
}

.hero-content {
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-taglines {
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero-quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    padding-left: 20px;
    border-left: 3px solid var(--color-secondary);
    color: #E2E8F0;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    gap: 16px;
}

.hero-stats .stat-card {
    text-align: left;
}

.stat-num, .badge-num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--color-white);
}

.stat-plus, .badge-plus {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-accent);
}

.stat-desc {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Media Portrait */
.image-wrapper-luxury {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 5;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gold-halo {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    z-index: 1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 14px 20px;
    border-radius: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-badge .badge-num {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-accent);
}

.floating-badge .badge-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.fb-bottom-left {
    bottom: 20px;
    left: -40px;
}

.fb-top-right {
    top: 40px;
    right: -40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    margin-bottom: 8px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-anim 1.8s infinite;
}

/* Animations */
@keyframes scroll-anim {
    0% { top: 8px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 25s linear infinite;
}

/* ==========================================================================
   TRUST SECTION (MARQUEE)
   ========================================================================== */

.trust-section {
    background-color: var(--bg-secondary);
    padding: 30px 0;
    border-bottom: 1px solid var(--card-border);
}

.trust-title {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-item {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-right: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-item i {
    color: var(--color-accent);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.glass-photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--card-border);
}

.glass-photo-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(8, 27, 51, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-white);
}

.glass-photo-caption h4 {
    margin-bottom: 2px;
    color: var(--color-white);
    font-size: 18px;
}

.glass-photo-caption p {
    font-size: 12px;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-qualifications {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.qualification-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
}

.q-icon {
    font-size: 24px;
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.q-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   JOURNEY SECTION (TIMELINE)
   ========================================================================== */

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent) 10%, var(--color-accent) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-card-wrapper {
    position: relative;
    width: 50%;
    display: flex;
}

.timeline-card-wrapper.left {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 48px;
}

.timeline-card-wrapper.right {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 48px;
}

.timeline-badge {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-dark-only);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 16px;
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
}

.timeline-card-wrapper.left .timeline-badge {
    right: -22px;
    top: 24px;
}

.timeline-card-wrapper.right .timeline-badge {
    left: -22px;
    top: 24px;
}

.timeline-card {
    padding: 24px;
    max-width: 420px;
    border-radius: 16px;
}

.timeline-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-card h4 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-card p {
    color: #A0B2C6;
    font-size: 14px;
    line-height: 1.5;
}

/* Timeline animations/hover */
.timeline-card-wrapper:hover .timeline-badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   OUR BRANDS SECTION
   ========================================================================== */

.brands-grid {
    gap: 32px;
}

.brand-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-premium), 0 0 20px rgba(212, 175, 55, 0.08);
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.brand-logo-container {
    height: 50px;
    display: flex;
    align-items: center;
}

.brand-svg-logo {
    height: 100%;
    width: auto;
    max-width: 200px;
}

.text-logo-title {
    fill: var(--text-main);
    transition: var(--transition-fast);
}

body.dark-theme .text-logo-title {
    fill: var(--color-white);
}

.brand-category {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.brand-tagline {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.brand-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.brand-services h6 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.brand-service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.brand-service-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-service-list li i {
    color: var(--color-secondary);
    font-size: 12px;
}

/* ==========================================================================
   MANUFACTURING FACILITY
   ========================================================================== */

.facility-section {
    overflow: hidden;
}

.facility-specs-grid {
    margin-top: 36px;
    gap: 20px;
}

.spec-bullet {
    display: flex;
    gap: 16px;
    padding: 20px;
}

.spec-number {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-accent);
}

.spec-bullet h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-white);
}

.spec-bullet p {
    font-size: 13px;
    color: #A0B2C6;
    line-height: 1.4;
}

.stacked-images-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 480px;
}

.glass-panel {
    background: rgba(8, 27, 51, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 20px;
    overflow: hidden;
}

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

.stacked-img:hover {
    transform: scale(1.05);
}

.fac-main-img-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 380px;
    z-index: 2;
}

.fac-sub-img-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 60%;
    height: 240px;
    z-index: 3;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-grid {
    gap: 24px;
}

.service-card {
    padding: 36px;
    border-radius: 16px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-premium), 0 0 20px rgba(212, 175, 55, 0.05);
}

.service-icon {
    font-size: 28px;
    color: var(--color-accent);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   WHY CHOOSE US & VISION 2030
   ========================================================================== */

.why-choose-img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.luxury-border-box {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.accent-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    z-index: 1;
}

@keyframes pulse-slow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.benefits-grid {
    margin-top: 36px;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-item i {
    font-size: 20px;
    margin-top: 3px;
}

.benefit-item h5 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13.5px;
    color: #A0B2C6;
}

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

/* Vision 2030 Glass Box */
.vision-box {
    padding: 60px 48px;
    border-radius: 24px;
}

.vision-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.vision-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.vision-summary {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.vision-grid {
    gap: 32px;
}

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

.vision-icon {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.vision-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.vision-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   PORTFOLIO MASONRY GALLERY
   ========================================================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    border: 1px solid var(--card-border);
    transition: var(--transition-fast);
}

.dark-section .filter-btn {
    background-color: var(--bg-dark-only);
    color: #A0B2C6;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

/* Ensure varied aspect ratios if standard layout desired */
.gallery-item:nth-child(2), .gallery-item:nth-child(3) {
    aspect-ratio: 3 / 4;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(8, 27, 51, 0.9) 0%, transparent 100%);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay h4 {
    color: var(--color-white);
    margin-bottom: 4px;
    font-size: 18px;
}

.gallery-overlay p {
    font-size: 12px;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 48px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-sizing: border-box;
}

.t-rating {
    color: var(--color-accent);
    font-size: 14px;
    margin-bottom: 20px;
}

.t-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
}

.t-quote::before {
    content: '\201C';
    font-size: 4rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -30px;
    left: -10px;
    opacity: 0.15;
    line-height: 1;
}

.t-author .t-name {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
}

.t-author .t-role {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.arrow-prev {
    left: 0;
}

.arrow-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--card-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-accent);
}

/* ==========================================================================
   BLOG / SEO INSIGHTS
   ========================================================================== */

.blog-grid {
    gap: 32px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 12px;
    color: #A0B2C6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-body h4 {
    color: var(--color-white);
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-body p {
    font-size: 13.5px;
    color: #A0B2C6;
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-read-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--color-white);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
}

.faq-icon {
    font-size: 14px;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content p {
    padding: 0 24px 20px 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    border-color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-secondary);
}

/* ==========================================================================
   CONTACT SECTION & LEAD FORM
   ========================================================================== */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 20px;
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 14px;
    color: #A0B2C6;
    line-height: 1.5;
}

.link-light {
    color: #F7F8FA;
}

.link-light:hover {
    color: var(--color-accent);
}

.google-maps-btn-container {
    margin-top: 40px;
}

/* Contact Form */
.glass-form-card {
    background: rgba(8, 27, 51, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.glass-form-card h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-instructions {
    font-size: 13px;
    color: #A0B2C6;
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A0B2C6;
}

.form-group label .required {
    color: var(--color-secondary);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(4, 13, 26, 0.45);
    color: var(--color-white);
    font-size: 14.5px;
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: rgba(4, 13, 26, 0.7);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: #081B33;
    color: var(--color-white);
}

.form-buttons {
    gap: 16px;
    margin-top: 12px;
}

.form-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Form Success State */
.form-status-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 0;
}

.form-status-message.active {
    display: flex;
}

.status-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 16px;
    animation: pulse-slow 2s infinite;
}

.status-text {
    font-size: 15px;
    color: var(--color-white);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer {
    background-color: #030A14;
    color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: 2px;
}

.footer-ceo-title {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 13.5px;
    color: #A0B2C6;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #A0B2C6;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-services h4, .footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    color: var(--color-white);
}

.footer-links h4::before, .footer-services h4::before, .footer-newsletter h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links ul, .footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a, .footer-services ul li a {
    font-size: 13.5px;
    color: #A0B2C6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 13px;
    color: #A0B2C6;
    margin-bottom: 16px;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-input-group input {
    padding: 12px 16px;
    flex-grow: 1;
    font-size: 13px;
    color: var(--color-white);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-input-group button {
    background-color: var(--color-accent);
    color: var(--color-primary);
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-input-group button:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.newsletter-status {
    display: none;
    font-size: 12px;
    color: var(--color-accent);
    margin-top: 8px;
}

.footer-bottom {
    background-color: #02070e;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 12.5px;
    color: #A0B2C6;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal a {
    margin-left: 12px;
    color: #A0B2C6;
}

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

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */

.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 30px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    width: 50px; /* circle state default */
    height: 50px;
    overflow: hidden;
}

.float-btn i {
    font-size: 24px;
    min-width: 24px;
    text-align: center;
}

.float-label {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    background-color: #20BA5A;
}

.float-call {
    background-color: var(--color-secondary);
}

.float-call:hover {
    background-color: #A00C22;
}

/* Expand float labels on hover */
.floating-contact-buttons:hover .float-btn {
    width: 150px;
}

.floating-contact-buttons:hover .float-label {
    opacity: 1;
}

/* ==========================================================================
   SCROLL FADE ANIMATIONS
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

.animated {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-taglines {
        justify-content: center;
    }
    
    .hero-quote {
        margin: 0 auto 30px auto;
        border-left: none;
        border-bottom: 2px solid var(--color-secondary);
        padding-left: 0;
        padding-bottom: 12px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .fb-bottom-left {
        left: -10px;
    }
    
    .fb-top-right {
        right: -10px;
    }
    
    /* Navigation drawer */
    .menu-hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        transition: 0.4s ease;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--card-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        width: 100%;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .menu-hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .btn-nav {
        display: none; /* Hide in nav bar for mobile, put focus on contact */
    }
    
    /* Timeline left/right to single column */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-card-wrapper {
        width: 100%;
        padding-left: 48px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }
    
    .timeline-badge {
        left: 0 !important;
        right: auto !important;
    }
    
    .stacked-images-container {
        height: 380px;
    }
    
    .fac-main-img-card {
        height: 280px;
    }
    
    .fac-sub-img-card {
        height: 180px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-taglines {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .brand-service-list {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Portrait Crop from Banner Image */
.portrait-crop {
    background-image: url('satish_puri_banner.jpg');
    background-size: 260% auto;
    background-position: 78% 12%;
    background-repeat: no-repeat;
    display: block;
}

