:root {
    --primary-navy: #02162e;
    --secondary-navy: #032142;
    --accent-gold: #e59524;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, .serif-font {
    font-family: 'Playfair Display', serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .top-bar a {
        color: #ffffff;
        text-decoration: none;
    }

.social-icons a {
    margin-left: 10px;
    color: #fff;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: var(--accent-gold);
    }

/* Main Navbar */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 14px;
    margin: 0 5px;
}

    .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
        color: var(--accent-gold);
    }

.btn-call {
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 600;
}

.btn-whatsapp-top {
    background-color: var(--accent-gold);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #02162e 40%, #042d5c 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.hero-tagline {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

    .hero-section h1 span {
        color: var(--accent-gold);
    }

.hero-feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--accent-gold);
}

    .hero-feature-box i {
        color: var(--accent-gold);
        font-size: 24px;
    }

.hero-badge-card {
    border: 2px solid var(--accent-gold);
    background: rgba(2, 22, 46, 0.8);
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
}

/* Section Headings */
.section-tag {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

    .section-tag::before, .section-tag::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40px;
        height: 1px;
        background-color: var(--accent-gold);
    }

    .section-tag::before {
        left: -50px;
    }

    .section-tag::after {
        right: -50px;
    }

/* Services Grid */
.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-navy);
    font-size: 28px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
}

.service-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Counter Bar Section */
.counter-section {
    background-color: var(--primary-navy);
    color: white;
    padding: 40px 0;
}

.counter-box i {
    color: var(--accent-gold);
    font-size: 32px;
}

.counter-box h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 5px 0 0 0;
}

/* Updates / Blog Section */
.updates-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    color: white;
    text-transform: uppercase;
}

.bg-tax {
    background-color: #28a745;
}

.bg-gst {
    background-color: #fd7e14;
}

.bg-tds {
    background-color: #007bff;
}

.bg-legal {
    background-color: #6f42c1;
}

.blog-body {
    padding: 20px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 15px;
}

/* Value Badges Strip */
.value-strip {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.value-item {
    font-size: 14px;
    font-weight: 500;
}

    .value-item i {
        color: var(--accent-gold);
        font-size: 20px;
    }

/* Widgets Section (Testimonials / Gallery) */
.widgets-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

    .testimonial-card::before {
        content: "\f10d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 30px;
        color: rgba(229, 149, 36, 0.2);
    }

.gallery-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/* CTA Bar */
.cta-bar {
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: white;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta-icon-box {
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
}

    .cta-icon-box i {
        color: var(--accent-gold);
    }

/* Main Footer */
.footer-main {
    background-color: var(--primary-navy);
    color: #b0bac5;
    padding: 60px 0 30px;
    font-size: 14px;
}

    .footer-main h5 {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-main h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--accent-gold);
        }

.footer-links list-unstyled li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bac5;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: var(--accent-gold);
        padding-left: 5px;
    }

.footer-bottom {
    background-color: #010f21;
    color: #7b8896;
    font-size: 12px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}
