/* ==========================================================================
   Valexpert Enterprises Custom Stylesheet
   ========================================================================== */

/* Design System Tokens */
:root {
    --primary-blue: #101056;
    --premium-gold: #D4A017;
    --grey: #6B7280;
    --light-grey: #F5F5F7;
    --white: #FFFFFF;
    --dark-charcoal: #111827;
    --max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helper Grid & Flexbox Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--light-grey);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography elements */
.section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tagline.tag-gold {
    color: var(--premium-gold);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--premium-gold);
    margin: 20px 0;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mr-10 { margin-right: 10px; }
.inline-flex { display: inline-flex; align-items: center; justify-content: center; }

/* Interactive Elements (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary-gold {
    background-color: var(--premium-gold);
    color: var(--white);
}

.btn-primary-gold:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary-blue:hover {
    background-color: #1a1a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar Styling */
.top-bar {
    background-color: #d4a017;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-info-item svg {
    color: var(--premium-gold);
}

.top-bar-right a.top-info-item:hover {
    color: var(--premium-gold);
}

.text-whatsapp svg {
    color: #25D366 !important;
}

/* Header & Main Navigation Rules */
.main-header {
    background-color: rgba(16, 16, 86, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    
}

.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-val {
    color: var(--white);
    font-size: 20px;
}

.logo-ent {
    color: var(--premium-gold);
    font-size: 20px;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--premium-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--premium-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Burger Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 26px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Hero Elements Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--premium-gold);
}

/* About Section Layout */
.about-section {
    background-color: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(16, 16, 86, 0.1), rgba(16, 16, 86, 0.4));
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Statistics Section styling */
.stats-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-custom-text {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Service Card Layout Rules */
.service-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--premium-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--premium-gold);
    margin-bottom: 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Us Dark Blue Cards */
.why-choose-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* Specifications Table design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    background: var(--white);
    border: 1px solid #E5E7EB;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    min-width: 600px;
}

.specs-table th, .specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.specs-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--light-grey);
}

.specs-table tr:hover {
    background-color: rgba(212, 160, 23, 0.04);
}

/* Industry Cards Grid */
.industry-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.industry-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Product Application Cards */
.app-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.app-card:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(16,16,86,0.04);
    transform: translateY(-4px);
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.app-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Gallery Hover Grid and Zoom Elements */
.project-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.project-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.project-cat {
    font-size: 13px;
    color: var(--grey);
}

/* Vision Section Styling */
.vision-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.vision-text {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Accordion FAQ Module */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--premium-gold);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.faq-question:hover {
    color: var(--premium-gold);
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Form Design & Elements */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14.5px;
    color: var(--dark-charcoal);
    background-color: var(--white);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--premium-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.form-error {
    color: #DC2626;
    font-size: 12.5px;
    margin-top: 5px;
    display: none;
}

.required {
    color: #DC2626;
}

/* Call to Action Sections */
.cta-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer & Sub-Footer Layout */
.footer {
    background-color: #0b0b3d;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--premium-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-info li svg {
    color: var(--premium-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #080830;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements Styles */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--premium-gold);
}

/* Responsive Overrides (Mobile-First approach overrides) */
@media (max-width: 1023px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0;
        background-color: var(--primary-blue);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-blue);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 105;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta-wrapper .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .w-full-mobile {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Valexpert Enterprises Custom Unified Stylesheet
   ========================================================================== */

/* Design System Tokens */
:root {
    --primary-blue: #101056;
    --premium-gold: #D4A017;
    --grey: #6B7280;
    --light-grey: #F5F5F7;
    --white: #FFFFFF;
    --dark-charcoal: #111827;
    --max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helper Grid & Flexbox Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--light-grey);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography elements */
.section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tagline.tag-gold {
    color: var(--premium-gold);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--premium-gold);
    margin: 20px 0;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mr-10 { margin-right: 10px; }
.inline-flex { display: inline-flex; align-items: center; justify-content: center; }

/* Interactive Elements (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary-gold {
    background-color: var(--premium-gold);
    color: var(--white);
}

.btn-primary-gold:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary-blue:hover {
    background-color: #1a1a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar Styling */
.top-bar {
    background-color: #d4a017;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(3, 3, 3, 0.8);
  
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-info-item svg {
    color: #000000;
}

.top-bar-right a.top-info-item:hover {
    color: #FFFFFF;
}

.text-whatsapp svg {
    color: #25D366 !important;
}

/* Header & Main Navigation Rules */
.main-header {
    background-color: rgba(16, 16, 86, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-val {
    color: var(--white);
    font-size: 20px;
}

.logo-ent {
    color: var(--premium-gold);
    font-size: 20px;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--premium-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--premium-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Burger Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 26px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Page Hero Template Styles (Internal Subpages) */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--premium-gold);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--premium-gold);
}

/* Hero Elements Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--premium-gold);
}

/* About Section Layout */
.about-section {
    background-color: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(16, 16, 86, 0.1), rgba(16, 16, 86, 0.4));
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Statistics Section styling */
.stats-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-custom-text {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Service Detail Layout Cards (Used in services.php Grid) */
.service-detail-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.service-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.service-card-icon-wrapper {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 18px;
}

.service-card-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-features li {
    font-size: 13.5px;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 22px;
}

.service-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--premium-gold);
    font-weight: 800;
}

.service-card-btn {
    margin-top: auto;
    width: 100%;
}

/* Core Value Cards (Used in about.php) */
.value-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--premium-gold);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.05);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-card-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

/* Why Choose Us Dark Blue Cards */
.why-choose-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* Specifications Table design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    background: var(--white);
    border: 1px solid #E5E7EB;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    min-width: 600px;
}

.specs-table th, .specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.specs-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--light-grey);
}

.specs-table tr:hover {
    background-color: rgba(212, 160, 23, 0.04);
}

/* Benefit Cards (Used in services.php) */
.benefit-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--premium-gold);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.05);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefit-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.benefit-card-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

/* Industry Cards Grid */
.industry-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.industry-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Product Application Cards */
.app-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.app-card:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(16,16,86,0.04);
    transform: translateY(-4px);
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.app-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Gallery Hover Grid and Zoom Elements */
.project-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.project-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.project-cat {
    font-size: 13px;
    color: var(--grey);
}

/* Vision Section Styling */
.vision-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.vision-text {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Implementation Process Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 30px;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    height: 100%;
    width: 2px;
    background-color: #E5E7EB;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--premium-gold);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px #E5E7EB;
}

.timeline-content {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 25px 30px;
    width: 100%;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 0;
        display: flex;
        flex-direction: column;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(even) {
        align-self: flex-end;
        margin-left: 50%;
        padding-left: 40px;
        flex-direction: row;
    }
    
    .timeline-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 40px;
        flex-direction: row-reverse;
    }
    
    .timeline-item:nth-child(even) .timeline-badge {
        position: absolute;
        left: -16px;
        top: 25px;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge {
        position: absolute;
        right: -16px;
        top: 25px;
    }
}

/* Accordion FAQ Module */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--premium-gold);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.faq-question:hover {
    color: var(--premium-gold);
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Contact Details Cards (Used in contact.php Grid) */
.contact-info-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin: 0 auto 20px;
}

.info-card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-value {
    font-size: 15px;
    color: var(--grey);
}

.info-card-value a {
    color: var(--grey);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-card-value a:hover {
    color: var(--premium-gold);
}

/* Why Contact Us Cards (Used in contact.php Grid) */
.why-contact-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-contact-card:hover {
    border-color: var(--premium-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16,16,86,0.03);
}

.why-contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-contact-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.why-contact-desc {
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.6;
}

/* Google Map Container section */
.map-section {
    background-color: var(--light-grey);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.map-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.map-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.map-subtitle {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 15px;
}

.map-hint {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--premium-gold);
}

/* Custom Contact & Quote Form Styling */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14.5px;
    color: var(--dark-charcoal);
    background-color: var(--white);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--premium-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.form-error {
    color: #DC2626;
    font-size: 12.5px;
    margin-top: 5px;
    display: none;
}

.required {
    color: #DC2626;
}

/* Structural CTA Banner section */
.cta-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Section Layout */
.footer {
    background-color: #0b0b3d;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--premium-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-info li svg {
    color: var(--premium-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #080830;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements Styles */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--premium-gold);
}

/* Responsive Viewport Overrides */
@media (max-width: 1023px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0;
        background-color: var(--primary-blue);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-blue);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 105;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta-wrapper .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .w-full-mobile {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;                 /* space between image and text */
  text-decoration: none;
}

.logo img {
  width: 50px;              /* base size */
  height: 50px;             /* keep it square or use auto */
  border-radius: 5px;
  object-fit: contain;      /* prevent distortion */
  flex-shrink: 0;           /* image won’t shrink */
}

/* logo text spans */
.logo-val,
.logo-ent {
  
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Responsive: slightly smaller on mobile */
@media (max-width: 600px) {
  .logo img {
    width: 32px;
    height: 32px;
  }
  .logo-val,
  .logo-ent {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Valexpert Enterprises - Zigzag Services Layout (Mobile-First Setup)
   ========================================================================== */

.services-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    
   
}

.zigzag-row {
    background-color: var(--white);
    border: 2px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zigzag-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    width: 100%;
}

.zigzag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zigzag-row:hover .zigzag-img {
    transform: scale(1.05);
}

.zigzag-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 16, 86, 0.05), rgba(16, 16, 86, 0.25));
}

.zigzag-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.zigzag-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.zigzag-icon svg {
    width: 100%;
    height: 100%;
}

.zigzag-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.zigzag-desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 20px;
}

.zigzag-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zigzag-features li {
    font-size: 14px;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 24px;
}

.zigzag-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--premium-gold);
    font-weight: 800;
}

.zigzag-btn {
    align-self: flex-start;
    min-width: 160px;
}

/* Desktop Zigzag Alternating Alignment (992px and up) */
@media (min-width: 992px) {
    .services-zigzag-section {
        padding: 100px 0;
    }

    .services-zigzag-container {
        gap: 100px;
    }

    .zigzag-row {
        display: flex;
        flex-direction: row; /* Horizontal layout */
        gap: 80px;
        align-items: center;
        border: 2px;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        border-radius: 0;
       
    }

    /* Alternates image and text blocks on even items */
    .zigzag-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .zigzag-img-wrapper, 
    .zigzag-body {
        flex: 1;
        width: 50%;
    }

    .zigzag-img-wrapper {
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(16, 16, 86, 0.06);
    }

    .zigzag-body {
        padding: 0;
    }

    .zigzag-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }
}

/* ==========================================================================
   Dropdown Navigation & Logo styling
   ========================================================================== */

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 4px;
    transition: var(--transition-smooth);
    display: inline-block;
    vertical-align: middle;
}

/* Desktop Dropdown states (1024px and up) */
@media (min-width: 1024px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background-color: var(--primary-blue);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--premium-gold);
        border-radius: 4px;
        width: 240px;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: var(--transition-smooth);
        text-align: left;
    }
    
    .dropdown-menu li a:hover {
        color: var(--premium-gold);
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 25px;
    }
}

/* Mobile Dropdown states (under 1024px) */
@media (max-width: 1023px) {
    .dropdown-menu {
        display: none;
        list-style: none;
        background-color: rgba(255, 255, 255, 0.04);
        width: 100%;
        padding: 5px 0;
        border-radius: 4px;
        margin-top: 10px;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        text-align: center;
        transition: var(--transition-smooth);
    }
    
    .dropdown-menu li a:hover {
        color: var(--premium-gold);
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Prevents the sticky header from overlapping service sections on anchor clicks */
.zigzag-row {
    scroll-margin-top: 120px;
}

/* ==========================================================================
   Valexpert Enterprises - Full Gallery Subpage Styling
   ========================================================================== */

/* Filter Toolbar Layout */
.filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid rgba(16, 16, 86, 0.15);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Portfolio Cards Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card Transitions & Hidden States */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.gallery-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Gallery Portfolio Card */
.gallery-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 30px rgba(16, 16, 86, 0.06);
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 86, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.zoom-icon {
    font-size: 24px;
    color: var(--white);
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .zoom-icon {
    transform: scale(1);
}

.gallery-info {
    padding: 24px 20px;
    text-align: left;
}

.gallery-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
    margin-bottom: 6px;
}

.gallery-card-cat {
    font-size: 12.5px;
    color: var(--premium-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox Portal Layout */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 11, 61, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--premium-gold);
    text-decoration: none;
}

/* Zoom animation */
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ==========================================================================
   Valexpert Enterprises - Edge-To-Edge Service Card Images
   ========================================================================== */

.services-section .grid-3 {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-section .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-section .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden; /* Clips image edges to the card's rounded borders */
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    text-align: left;
    height: 100%;
    padding: 0 !important; /* Removes padding inside the card so image fits flush */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.service-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    width: 100%;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

/* Card typography box handles text-side padding */
.service-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-card-desc {
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* ---------- FULL VIEW OVERLAY ---------- */
.full-view-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.full-view-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.full-view-close:hover {
    color: #D4A017;
}

.full-view-overlay video {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.gallery-overlay {
    cursor: pointer;
}


/* ---------- FULL VIEW OVERLAY ---------- */
.full-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.full-view-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.full-view-close:hover {
    color: #D4A017;
}

.full-view-overlay video {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

/* Gallery overlay clickable */
.gallery-overlay {
    cursor: pointer;
}

/* Ensure video in preview doesn't capture clicks */
.gallery-img-wrapper video.gallery-img {
    pointer-events: none;
}


/* ---------- VIDEO PREVIEW WRAPPER ---------- */
.video-preview-wrapper {
  position: relative;
  cursor: pointer;
}

/* Always place the overlay on top of the video */
.video-preview-wrapper .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 86, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.video-preview-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/* ---------- FULL VIEW OVERLAY ---------- */
.full-view-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.full-view-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.3s;
}

.full-view-close:hover {
  color: #D4A017;
}

.full-view-overlay video {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}