/* =============================================
   RAVIKUMAR EXIM PRIVATE LIMITED — MAIN.CSS
   Color Palette: Deep Teal + Gold + Ivory
   Theme: Premium Trade & Finance
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
    --teal-deep: #0b1d3a;
    --teal-mid: #132d5e;
    --teal-light: #1e4080;
    --teal-pale: #e8eef8;
    --gold: #c9923f;
    --gold-light: #e8b86d;
    --gold-pale: #fdf5e8;
    --ivory: #f7f9fc;
    --dark: #070e1e;
    --navy: #0b1d3a;
    --navy-mid: #132d5e;
    --text-main: #0f1e38;
    --text-muted: #5a6a88;
    --white: #ffffff;
    --border: rgba(11, 29, 58, 0.12);
    --shadow-sm: 0 2px 16px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 8px 40px rgba(11, 29, 58, 0.14);
    --shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.20);

    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'DM Sans', sans-serif;

    --radius: 12px;
    --nav-h: 90px;
    --banner-h: 76px;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-main);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SECTION SHARED ---- */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-label {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--teal-deep);
    line-height: 1.2;
    font-weight: 700;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-title.centered {
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 56px;
    font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 146, 63, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 146, 63, 0.45);
}

.btn-primary.full {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease, height 0.4s ease;
}

#navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-name {
    display: none;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-deep);
    letter-spacing: 0.01em;
}

.logo-name-main em {
    font-style: normal;
    color: var(--gold);
}

.logo-name-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- LOGO FIX ---- */
.logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(201, 146, 63, 0.35));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 14px rgba(201, 146, 63, 0.45));
}

.logo-ravi {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold);
}

.logo-kumar {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: normal;
    color: var(--teal-deep);
}

.logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-mid);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 146, 63, 0.4);
}

.nav-extra {
    display: flex;
    align-items: center;
}

.nav-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-email i {
    color: var(--gold);
    font-size: 1rem;
}

.nav-email:hover {
    color: var(--teal-mid);
}

.nav-email span {
    display: inline-block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-mid);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SLIDER
   ============================================= */
#hero {
    min-height: calc(100vh - var(--nav-h) - var(--banner-h));
    margin-top: calc(var(--nav-h) + var(--banner-h));
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* ---- Slider Container ---- */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-h) - var(--banner-h));
    min-height: calc(100vh - var(--nav-h) - var(--banner-h));
}

/* ---- Individual Slide ---- */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: scale(1.04);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.prev {
    opacity: 0;
    transform: scale(0.98);
    z-index: 1;
}

/* ---- Slide Overlay ---- */
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(7, 14, 30, 0.88) 0%,
            rgba(11, 29, 58, 0.82) 40%,
            rgba(19, 45, 94, 0.55) 70%,
            rgba(7, 14, 30, 0.30) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 146, 63, 0.10) 0%, transparent 55%);
    z-index: 1;
}

/* ---- Hero Content (inside each slide) ---- */
.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Tagline, Title, Sub, Buttons ---- */
.hero-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem); /* Slightly scaled down clamp */
    color: var(--white);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px; /* Reduced from 28px */
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
    font-style: normal;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-sub {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 30px; /* Reduced from 44px */
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Re-trigger animations for active slide content */
.hero-slide.active .hero-tagline,
.hero-slide.active .hero-title,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-btns {
    animation-play-state: running;
}

/* ---- Scroll Hint ---- */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(201, 146, 63, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Slider Dots ---- */
.slider-dots {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(201, 146, 63, 0.4);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 28px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(201, 146, 63, 0.55);
}

.slider-dot:hover:not(.active) {
    background: rgba(201, 146, 63, 0.55);
    border-color: var(--gold-light);
}

/* ---- Grid/pattern overlay (subtle) on hero ---- */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 146, 63, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 146, 63, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 3;
}

@media (max-height: 750px) {
    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 600px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .slider-dots {
        right: 16px;
        bottom: 24px;
    }
}



/* =============================================
   ABOUT
   ============================================= */
#about {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

#about-label {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-bottom: 20px;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal-mid);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

.about-visual {
    position: relative;
}

.about-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(13, 92, 87, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.icon-cell {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: default;
}

.icon-cell:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.icon-cell i {
    font-size: 1.8rem;
    color: var(--teal-mid);
}

.icon-cell span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    letter-spacing: 0.03em;
}

/* =============================================
   TEAM
   ============================================= */
#team {
    background: linear-gradient(180deg, #070e1e 0%, #113997 100%);
    position: relative;
    overflow: hidden;
}

#team::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(201, 146, 63, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(30, 64, 128, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

#team .section-label {
    color: var(--gold-light);
}

#team .section-title {
    color: var(--white);
}

#team .section-title em {
    color: var(--gold-light);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
}

.team-card {
    position: relative;
    animation: fadeUp 0.6s ease both;
}

.team-card-inner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 146, 63, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card-inner:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 146, 63, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.team-photo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 24px;
    overflow: hidden;
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 146, 63, 0.2), rgba(201, 146, 63, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    color: var(--white);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.4;
    padding: 10px;
    background: transparent;
}

.team-role {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.team-vision-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.team-vision-label i {
    font-size: 0.9rem;
}

.team-message {
    font-family: var(--font-accent);
    font-size: 1.08rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.9;
    padding-left: 20px;
    border-left: 3px solid rgba(201, 146, 63, 0.4);
}

.team-message strong {
    color: var(--gold-light);
    font-style: normal;
}

/* =============================================
   SERVICES
   ============================================= */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    border-color: var(--teal-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-card:nth-child(4) {
    grid-column: 1 / 2;
}

.service-card:nth-child(5) {
    grid-column: 2 / 3;
}

.service-card.featured {
    background: var(--ivory);
    border-color: var(--border);
    color: var(--text-main);
}

.service-badge {
    display: none;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: rgba(11, 29, 58, 0.08);
    color: var(--teal-mid);
    transition: all 0.3s;
}

.service-card.featured .service-icon {
    background: rgba(11, 29, 58, 0.08);
    color: var(--teal-mid);
}

.service-card:hover .service-icon {
    background: var(--teal-mid);
    color: var(--white);
}

.service-card.featured:hover .service-icon {
    background: var(--teal-mid);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card.featured h3 {
    color: var(--teal-deep);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-card.featured p {
    color: var(--text-muted);
}

.service-card p strong {
    color: var(--gold);
}

/* =============================================
   BENEFITS
   ============================================= */
#benefits {
    background: var(--gold-pale);
    position: relative;
}

.benefits-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 5% 95%, rgba(13, 92, 87, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 95% 5%, rgba(201, 146, 63, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-item {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border: 1px solid rgba(201, 146, 63, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #132d5e, var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(201, 146, 63, 0.35);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-pale);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b1d3a, #1e4080);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
    background: var(--ivory);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    margin-top: 16px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-mid);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item strong {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--teal-mid);
}

.contact-quote {
    background: linear-gradient(135deg, #0b1d3a, #132d5e);
    border-radius: 16px;
    padding: 28px 28px 28px 36px;
    position: relative;
    margin-top: 8px;
}

.contact-quote i {
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 2rem;
    color: var(--gold);
}

.contact-quote p {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

/* --- Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--ivory);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    outline: none;
    transition: all 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(19, 45, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0c0be;
}

.form-success {
    display: none;
    text-align: center;
    color: var(--teal-mid);
    font-weight: 600;
    padding: 12px;
    background: var(--teal-pale);
    border-radius: 10px;
    font-size: 0.95rem;
}

.form-success.show {
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
    background: #133072;
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 72px 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo .logo-kumar {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li {
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links-col ul li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-links-col ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-bottom i {
    color: var(--gold);
}

.footer-launch-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(201, 146, 63, 0.1);
    border: 1px solid rgba(201, 146, 63, 0.3);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 6px;
}

.footer-launch-notice strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* =============================================
   LAUNCH NOTICE
   ============================================= */

.launch-box {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, var(--teal-deep), var(--teal-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md), 
                inset 0 0 30px rgba(201, 146, 63, 0.1);
    border: 1px solid rgba(201, 146, 63, 0.3);
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 40px;
}

.launch-box-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.launch-icon {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 4px 10px rgba(201, 146, 63, 0.3));
    margin-bottom: 4px;
}

.launch-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.4;
    font-weight: 700;
}

.launch-text span {
    display: block;
    color: var(--gold-light);
    font-size: 1.35rem;
    margin-top: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.launch-decoration {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201, 146, 63, 0.15);
    border-radius: 18px;
    pointer-events: none;
}

/* Specific springy pop-up effect for this reveal */
.launch-box.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.launch-box.reveal:not(.visible) {
    opacity: 0;
    transform: translateY(30px) scale(0.6);
}

@media (max-width: 768px) {
    .launch-box {
        aspect-ratio: auto;
        min-height: 350px;
        padding: 40px 24px;
    }
    
    .launch-text {
        font-size: 1.4rem;
    }
    
    .launch-text span {
        font-size: 1.8rem;
    }
}

/* =============================================
   FLOATING ANNOUNCEMENT
   ============================================= */
.top-banner-announcement {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: var(--banner-h);
    margin-top: 0;
    background: #02060f;
    border-bottom: 2px solid #c9923f;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.35rem; /* Extra large text */
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.announcement-content i {
    color: #c9923f;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px rgba(201, 146, 63, 0.5));
}

.announcement-content strong {
    color: #e8b86d; /* Light gold for the date */
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    padding-left: 6px;
}

.rotate-icon {
    animation: rotateSlow 5s infinite linear;
}

/* Removed floating-specific animations */

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    :root {
        --banner-h: 105px;
    }

    .top-banner-announcement {
        padding: 15px;
        height: auto;
        min-height: var(--banner-h);
    }
    
    .announcement-content {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 4px;
        text-align: center;
        white-space: normal;
        line-height: 1.5;
    }

    .announcement-content i {
        display: none;
    }
    
    .announcement-content strong {
        font-size: 1.15rem;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .nav-inner {
        padding: 0 24px;
    }
}

/* Tablet & Mobile Navigation (Hamburger Menu) */
@media (max-width: 1024px) {
    :root {
        --nav-h: 80px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .logo-img {
        height: 56px;
    }

    /* Hide horizontal links and email icon */
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 60px 24px;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        color: var(--teal-deep);
    }

    .nav-extra {
        display: none;
    }

    /* Add email to mobile menu via pseudo content or better visibility */
    .nav-links::after {
        content: 'magicalplanets@ravikumarexim.com';
        display: block;
        font-size: 0.85rem;
        color: var(--gold);
        margin-top: 20px;
        opacity: 0.7;
    }

    .hamburger {
        display: flex;
        margin-left: 15px;
    }

    .hamburger span {
        background: var(--navy-mid);
    }

    /* Stacking grids for tablet */
    .about-grid,
    .team-grid,
    .services-grid,
    .benefits-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .about-visual {
        order: -1;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .footer-logo .logo-kumar {
        color: var(--white);
    }
}

@media (max-width: 1024px) {
    .logo-name {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 90px;
    }

    .logo-img {
        height: 56px;
    }

    section {
        padding: 60px 0;
    }

    .logo-img {
        height: 70px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info-item a,
    .contact-info-item span {
        word-break: break-all;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 80px;
    }

    .logo-img {
        height: 60px;
    }

    .logo-name-main {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 48px 24px 40px;
    }

    .footer-bottom {
        padding: 20px 24px;
        justify-content: center;
        text-align: center;
    }

    .hero-badge {
        display: none;
    }

    .team-card-inner {
        padding: 32px 24px;
    }

    .team-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 32px;
    }

    .contact-layout {
        gap: 32px;
    }
}

@media (max-width: 1024px) {

    /* Fix hero height - don't need full viewport */
    #hero {
        min-height: 70vh;
        align-items: center;
    }

    /* Bigger text on tablet */
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 6vw, 3.5rem);
        /* bigger than before */
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* Center everything on tablet */
    .hero-content {
        text-align: center;
        padding: 0 40px;
        padding-top: var(--nav-h);
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide scroll hint to reduce empty space */
    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {

    /* Fix tagline wrapping */
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        /* reduce spacing so it fits one line */
        white-space: nowrap;
        /* force single line */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Fix hero min-height so content isn't too cramped */
    #hero {
        min-height: 100svh;
        /* svh = small viewport height, better on mobile */
        padding-bottom: 40px;
    }

    /* Fix about icon grid on small screens */
    .about-icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .icon-cell {
        padding: 20px 12px;
    }

    .icon-cell span {
        font-size: 0.75rem;
    }
}

.btn-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* brighter border */
    background: rgba(255, 255, 255, 0.08);
    /* subtle fill */
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
}