:root {
    --gold: #b8891e;
    --gold-light: #d4a83a;
    --gold-pale: #fdf3dc;
    --dark: #fafaf8;
    --dark-2: #f4f2ee;
    --dark-3: #ffffff;
    --dark-4: #edeae3;
    --text: #1a1612;
    --text-muted: #6b6458;
    --white: #1a1612;
    --border: rgba(184, 137, 30, 0.18);
    /* --font-display: 'Cormorant Garamond', serif; */
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark-4);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

#mainNav {
    background: #fff;
    transition: all .4s ease;
    width: 100%;
}

#mainNav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(250, 250, 248, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
}

.nav-inner {
    transition: all .4s ease;
    padding: 10px 0;
}

#mainNav.scrolled .nav-inner {
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo-box img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all .3s ease;
}

#mainNav.scrolled .brand-logo-box img {
    height: 65px;
}

.navbar-nav .nav-item {
    margin: 0 4px;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px !important;
    position: relative;
    transition: .3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: #000 !important;
    border-radius: 5px !important;
    padding: 10px 22px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

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

.navbar-toggler {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
    min-height: 85vh;
    background: url(../img/hero.webp);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    /* background: var(--dark); */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #00000030;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-line-vert {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--dark);
    opacity: 0.5;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 70px);
    font-weight: bold;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {

    color: #23126c;
    display: block;
    font-weight: bold;
}

.hero-desc {
    font-size: 16px;
    color: #fff;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-gold:hover {
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover::before {
    transform: translateX(100%);
}

.btn-outline-gold {
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 36px;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    margin: auto;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-pad {
    padding: 80px 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 50px);
    font-weight: bold;
    color: #22116c;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title em {

    color: var(--gold);
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
    max-width: 560px;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 24px 0;
}

.about-section {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: -20px;
    right: -40px;
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 700;
    color: rgba(201, 168, 76, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.about-img-block {
    position: relative;
    height: 500px;
}

.about-img-frame {
    aspect-ratio: 1;
    width: 100%;
    /* border: 1px solid var(--border); */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-img-frame-inner i {
    font-size: 60px;
    color: var(--gold);
}



.about-img-dot {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.about-tag {
    position: absolute;
    top: 90%;
    right: 0;
    transform: translateY(-50%);
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px 24px;
    text-align: center;
    min-width: 120px;
}

.about-tag-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.about-tag-lbl {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.about-feature:first-of-type {
    border-top: 1px solid var(--border);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.mv-section {
    background: var(--dark);
}

.mv-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mv-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 28px;
}

.mv-card-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.mv-card-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    line-height: normal;
}

.mv-card-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.mv-bg-num {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    pointer-events: none;
}

.wedo-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wedo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wedo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.25);
}

.wedo-card:hover::after {
    opacity: 1;
}

.wedo-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.wedo-card:hover .wedo-icon {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

.wedo-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.wedo-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.why-section {
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.why-item {
    background: var(--dark-3);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s ease;
}

.why-item:hover {
    background: var(--dark-4);
}

.why-num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
}

.why-icon {
    font-size: 28px;
    color: var(--gold);
    opacity: 0.8;
}

.why-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.why-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.products-section {
    background: var(--dark-2);
}

.product-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 6px 4px;
    transition: all 0.25s ease;
    cursor: default;
}

.product-tag:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.products-banner {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}















.products-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06), transparent 70%);
    pointer-events: none;
}

.clients-section {
    background: var(--dark);
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.channel-partners{
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.client-logo-item {
    background: var(--dark-3);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    min-height: 90px;
}

.client-logo-item:hover {
    background: var(--dark-4);
}

.partners-section {
    background: var(--dark-2);
}

.testimonials-section {
    background: var(--dark);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px 44px;
    flex: 0 0 calc(33.333% - 16px);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 36px;
    font-family: var(--font-display);
    font-size: 100px;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 40px;
    aspect-ratio: 1;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
}

.slider-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

.slider-arrows {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--dark-3);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
}

.slider-btn:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}

.projects-section {
    background: var(--dark-2);
}

.project-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.3);
}

.project-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13, 13, 13, 0.8));
}

.project-thumb i {
    font-size: 48px;
    color: rgba(201, 168, 76, 0.2);
}






.project-link:hover {
    color: var(--gold-light);
    gap: 14px;
}

.cta-band {
    background: linear-gradient(135deg, #22126b 0%, #22126b 50%, #08031e 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent 70%);
    pointer-events: none;
}

footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    margin-bottom: 24px;
}

.footer-about {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-links {
      list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li,
.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links li::before {  border-radius: 50%;
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: 1;
    transform: translateX(-6px);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

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

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-copy span {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.values-section {
    background: var(--dark-2);
}

.value-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 44px 36px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(184, 137, 30, 0.07);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    margin: 0 auto 24px;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.value-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

.surya-section {
    background: var(--dark);
}


.surya-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.surya-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--dark-3);
    transition: background 0.25s ease;
}

.surya-step:last-child {
    border-bottom: none;
}

.surya-step:hover {
    background: var(--dark-4);
}

.step-num {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    min-width: 28px;
    padding-top: 2px;
    flex-shrink: 0;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    transition: background 0.25s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.contact-info-icon {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 14px;
}

.contact-info-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.contact-info-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info-value a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: #fff;
}

.values-section {
    background: var(--dark-2);
}

.value-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 44px 36px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 68px;
    height: 68px;
    background: rgba(184, 137, 30, 0.07);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    margin: 0 auto 24px;
    transition: background 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(184, 137, 30, 0.13);
}

.value-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.value-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

.surya-section {
    background: var(--dark);
}

.surya-benefit-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 28px 28px 24px;
    margin-top: 8px;
}

.surya-benefit-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--gold);
    margin-bottom: 14px;
}

.surya-subsidy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(184, 137, 30, 0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.surya-subsidy-cap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.surya-subsidy-cap i {
    color: var(--gold);
    font-size: 16px;
}

.surya-subsidy-amt {
    text-align: end;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.surya-subsidy-amt span {
    font-size: 15px;
}

.surya-subsidy-amt p {
    margin: 0;
}

.surya-subsidy-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.surya-subsidy-note i {
    color: var(--gold);
}

.surya-steps-tagline {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.surya-steps {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.surya-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--dark-3);
    transition: background 0.25s ease;
}

.surya-step:last-child {
    border-bottom: none;
}

.surya-step:hover {
    background: var(--dark-4);
}

.step-body {
    flex: 1;
}



.step-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.why-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    transition: background 0.25s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 14px;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.contact-info-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.contact-info-value a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value a:hover {
    color: #fff;
}

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

@media (max-width: 991px) {

    .brand-logo-box img {
        height: 60px;
    }

    #mainNav.scrolled .brand-logo-box img {
        height: 55px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 14px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 15px;
        width: 100%;
        text-align: center;
        display: block;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

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

    .hero-stats .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-stats .stat-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .why-grid-4 {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 36px 28px;
    }

    .surya-step {
        padding: 14px 16px;
        gap: 14px;
    }

    .container.nav-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-logo-box img {
        height: 50px;
    }

    #mainNav.scrolled .brand-logo-box img {
        height: 45px;
    }

    .navbar-toggler {
        padding: 6px 8px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        letter-spacing: .8px;
    }

    .nav-cta {
        padding: 12px !important;
        font-size: 12px !important;
    }

    .surya-subsidy-amt {
        font-size: 20px;
    }

    .surya-subsidy-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .surya-step {
        padding: 16px 18px;
        gap: 14px;
    }

    .subsidy-amt {
        font-size: 18px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .section-pad {
        padding: 40px 0;
    }

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

    .hero-scroll-hint {
        display: none;
    }

    .about-img-block {
        height: auto;
        margin-bottom: 40px;
    }

    .mv-card {
        padding: 36px 28px;
    }

    .products-banner {
        padding: 40px 28px;
    }



    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline-gold {
        text-align: center;
    }
}

.calculation_solar_energy {
    padding: 80px 0;
    background: url(../img/hero.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.calculation_solar_energy::after {
    content: "";
    background-color: #0f172aa1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.solar-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2;
}

.solar-top {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.left-panel {
    width: 35%;
}

.right-panel {
    width: 65%;
}

.left-panel h2 {
    color: #fff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 15px;
}

.left-panel p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    margin-bottom: 25px;
}

.switch-box {
    display: flex;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 5px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    height: 55px;
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    transition: .35s;
}

.tab-btn.active {
    background: #f1ba26;
    color: #16344d;
    box-shadow: 0 8px 20px rgba(183, 215, 74, .4);
}

.input-box {
    margin-bottom: 18px;
}

.input-box label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.input-box input {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, .95);
}

.input-box input.is-invalid {
    border: 1px solid red;
}

.input-box input.is-valid {
    border: 1px solid green;
}

.input-box input:focus {
    box-shadow: 0 0 0 4px rgba(183, 215, 74, .3);
}

.btn-calculate {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 6px;
    background: #f1ba26;
    color: #16344d;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(183, 215, 74, .35);
}

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

.result-item {
    background: rgba(255, 255, 255, .96);
    border-radius: 6px;
    padding: 30px;
    min-height: 190px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.result-item:hover {
    transform: translateY(-6px);
}

.result-item span {
    display: block;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-item h3 {
    color: #0d3b66;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.result-item p {
    margin: 0;
    color: #16a34a;
}

#commercialSection {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 25px;
}

@media(max-width:991px) {

    .solar-top {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel h2 {
        font-size: 40px;
    }

    .result-item h3 {
        font-size: 24px;
    }.result-item span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}.result-item {
    padding: 10px;
    min-height: auto;
}.result-item p {
    font-size: 12px;
}
}

.Solar-Calculator-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.Solar-Calculator-modal.show {
    display: flex;
}

.Solar-Calculator-modal .modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.Solar-Calculator-modal .modal-content h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 26px;
}

.Solar-Calculator-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.Solar-Calculator-modal .modal-content button {
    height: 55px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
    background: #f1ba26;
    color: #16344d;
    box-shadow: 0 8px 20px rgba(183, 215, 74, .4);
    margin-top: 15px;
    padding: 10px 25px;
}

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

.service-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin: 0;
    font-size: 20px;
    color: #222;
}

.service-content p {
    font-size: 14px;
    color: #666;
    margin: 8px 0 12px;
}

.service-content ul {
    text-align: start;
    padding-left: 18px;
    margin: 0 0 15px;
}

.service-content ul li {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 6px;
}

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

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