@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #00C2A8; /* Vibrant Teal/Cyan */
    --primary-hover: #00a892;
    --dark-bg: #0B132B; /* Deep Space Blue */
    --darker-bg: #050a17; /* Very Dark Blue */
    --light-bg: #f4f7fb;
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn:hover {
    background-color: var(--primary-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Header & Nav */
header {
    background-color: #ffffff;
    color: var(--text-dark);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

header.sticky {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--text-dark);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--darker-bg);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
    max-width: 800px;
    padding-top: 80px;
}

.hero-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: slideUp 1s ease 0.2s both;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: slideUp 1s ease 0.4s both;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    color: #e0e0e0;
    animation: slideUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideUp 1s ease 0.8s both;
}

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

/* Sections */
.section {
    padding: 100px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
    color: inherit;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-dark .about-text h2 {
    color: var(--text-light);
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.section-dark .service-card {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; /* 5 columns */
    gap: 30px;
    margin-bottom: 50px;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    height: 40vh;
    background-color: var(--dark-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: var(--primary-color);
}

.breadcrumb a {
    color: var(--text-light);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.contact-info-card i {
    font-size: 30px;
    color: var(--primary-color);
}

.contact-info-card h4 {
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-muted);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Blog */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0b1120; /* Dark background so white text is visible */
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 50px;
        transition: 0.5s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: transparent;
        border-top: none;
        padding: 10px 0;
        text-align: center;
    }
    
    .nav-dropdown-content a {
        padding: 8px 15px !important;
        font-size: 12px !important;
        color: #a0aec0 !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Budget Estimator */
.estimator-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.estimator-header select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}
.estimator-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
}
.estimator-table th, .estimator-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}
.estimator-table th {
    background-color: #fafafa;
    font-weight: 600;
    color: #333;
}
.estimator-table input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
.estimator-table .cost-col {
    text-align: right;
    font-weight: 600;
    color: #333;
}
.estimator-table .total-row td {
    font-weight: 700;
    font-size: 18px;
    text-align: right;
    background-color: #fafafa;
}
.estimator-btn-container {
    text-align: center;
}
.estimator-btn {
    background-color: #f4c150;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}
.estimator-btn:hover {
    background-color: #d8a635;
}
@media (max-width: 768px) {
    .estimator-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.floating-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}
.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
}
.btn-call {
    background-color: var(--primary-color);
}
.btn-call:hover {
    background-color: var(--primary-hover);
}


/* Modern Custom Cursor */
@media (pointer: fine) {
    body, a, button, select, input, textarea, .tilt-card {
        cursor: none !important;
    }

    .custom-cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--primary-color);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s;
    }

    .custom-cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    }

    /* Hover effects */
    .custom-cursor-dot.hovered {
        width: 0;
        height: 0;
    }

    .custom-cursor-outline.hovered {
        width: 60px;
        height: 60px;
        background-color: rgba(0, 86, 179, 0.1);
        border-color: var(--primary-color);
    }
}

/* Advanced Scroll Animations */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-up {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    transform: translateX(-100px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    transform: translateX(100px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale {
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* slight bounce */
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Active state triggered by JS */
.reveal.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-scale.active, 
.reveal-up.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Ensure no flash on load for hero elements which are above the fold */
.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

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


/* Base logo size adjustments */
.logo img {
    height: 75px !important;
}
.logo h1 {
    font-size: 30px !important;
}

/* Responsive adjustments for mobile */

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 40px !important;
    }
    .hero-buttons {
        flex-wrap: wrap;
    }
    .logo img {
        height: 60px !important;
    }
    .logo h1 {
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    .logo {
        max-width: calc(100% - 60px); /* Leave room for menu button */
    }
    .logo h1 {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .logo img {
        height: 60px !important;
        margin-right: 15px;
    }
    .services-grid, .projects-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Top Bar */
.top-bar {
    background-color: #0b1120;
    color: #a0aec0;
    padding: 8px 20px;
    font-size: 13px;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}
.top-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.top-bar a:hover {
    color: var(--primary-color);
}

/* Header updates */
header {
    background-color: #0b1120;
    border-bottom: none;
    padding-bottom: 5px;
}
header.sticky {
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
}
.navbar {
    padding: 10px 0;
}
.nav-links a {
    color: #fff;
    font-size: 13px;
}
.nav-links a::after {
    bottom: -25px;
}
.mobile-menu-btn {
    color: #fff;
}

/* New Logo Style */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
}
.logo-icon {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-style: italic;
    letter-spacing: -2px;
}
.logo-icon span {
    color: var(--primary-color);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text-main {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 1px;
}
.logo-text-main span {
    font-weight: 300;
}
.logo-text-sub {
    font-size: 8px;
    color: #a0aec0;
    letter-spacing: 1.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    margin-top: 40px; /* offset for top bar */
}
.hero-content {
    justify-content: flex-start;
    padding-top: 150px;
    max-width: 1000px;
}
.hero-content h1 {
    font-size: 65px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-content h1 span {
    color: var(--primary-color);
    display: block;
}
.hero-subtext {
    color: #e2e8f0;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}
.btn-play {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    margin-left: auto;
}
.btn-play i {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.btn-play:hover i {
    background: #fff;
    color: var(--darker-bg);
}

/* Stats Bar */
.stats-bar-wrapper {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 20px;
}
.stats-bar {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0b1120;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 30px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child {
    border-right: none;
}
.stat-icon {
    font-size: 30px;
    color: var(--primary-color);
}
.stat-text strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-text span {
    color: #a0aec0;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Expertise Grid */
.expertise-section {
    padding: 150px 0 80px;
    background: #f8fafc;
    text-align: center;
}
.expertise-title {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.expertise-subtitle {
    color: #0b1120;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.expertise-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.expertise-card i {
    font-size: 35px;
    color: #0b1120;
    margin-bottom: 15px;
    display: block;
}
.expertise-card span {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    line-height: 1.4;
    display: block;
}

/* New Floating Contact Panel */
.floating-contact {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    gap: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}
.floating-btn {
    border-radius: 0;
    width: 60px;
    height: 70px;
    flex-direction: column;
    font-size: 20px;
    gap: 5px;
}
.floating-btn span {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-enquire {
    background-color: var(--primary-color);
}
.btn-enquire:hover {
    background-color: var(--primary-hover);
}
.btn-whatsapp {
    background-color: #25D366;
}
.btn-call {
    background-color: #0b1120;
}
.btn-call:hover {
    background-color: #1e293b;
}

@media (max-width: 992px) {
    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .stat-item {
        border: none;
    }
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px !important;
    }
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .stats-bar-wrapper {
        position: relative;
        bottom: 0;
        margin-top: -30px;
    }
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .top-bar {
        justify-content: center;
    }
}

/* Gold Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: none;
}
.logo-text-gold {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gold-va5 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fceabb 0%, #f8b500 50%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.5));
    font-family: 'Arial', sans-serif;
    margin-bottom: 2px;
}
.gold-const {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(to bottom, #fceabb 0%, #f8b500 50%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
    margin-left: 6px; /* offset for letter spacing */
}
.gold-pvt {
    font-size: 9px;
    color: #fff;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    opacity: 0.9;
}
.gold-pvt .line {
    height: 1px;
    background: linear-gradient(to right, transparent, #b38728, transparent);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px !important;
        margin-right: 15px !important;
    }
    .gold-va5 { font-size: 28px; }
    .gold-const { font-size: 11px; letter-spacing: 3px; margin-left: 3px; }
    .gold-pvt { font-size: 7px; letter-spacing: 2px; }
}

@media (max-width: 768px) {
    .logo img:nth-child(2) {
        height: 45px !important;
    }
}

/* --- NAV DROPDOWN STYLES --- */
.nav-dropdown {
    display: inline-block;
    position: relative;
    padding-bottom: 25px; /* Creates an invisible bridge so hover doesn't drop off */
    margin-bottom: -25px; /* Offset the padding visually */
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 17, 32, 0.98);
    min-width: 260px;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

/* Show dropdown on hover over the container */
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* Individual Dropdown Links */
.nav-dropdown-content a {
    display: block !important;
    padding: 12px 25px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-transform: capitalize !important; /* To make it less aggressive than the main nav */
    transition: background 0.3s, color 0.3s !important;
}

.nav-dropdown-content a:last-child {
    border-bottom: none !important;
}

/* Hover effect for dropdown links */
.nav-dropdown-content a:hover {
    background-color: var(--primary-color) !important;
    color: var(--bg-dark) !important;
}

/* CRITICAL FIX: Hide the yellow underline on dropdown links */
.nav-links .nav-dropdown-content a::after {
    display: none !important;
}


/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: var(--light-bg);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content img {
    height: 90px;
    margin: 0 40px;
    object-fit: contain;
    vertical-align: middle;
    transition: 0.3s ease;
}

.marquee-content img:hover {
    transform: scale(1.1);
}

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

/* Services Carousel */
.services-carousel-container {
    position: relative;
    padding: 0 40px;
    margin: 40px auto 0;
    max-width: 1000px; /* Reduced widget overall width */
}

.services-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.services-slider .service-card {
    flex: 0 0 calc(25% - 15px); /* 4 cards per row */
    min-width: 240px;
    max-width: 280px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: #fff;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}
