/* Color Variables */
:root {
    --primary-navy: #0d1b2a;
    --accent-gold: #c59b27;
    --accent-gold-hover: #b0871e;
    --light-bg: #f8f9fa;
    --text-dark: #222222;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.top-bar a:hover {
    color: var(--accent-gold);
}

/* Main Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 12px 0;
    
.site-logo img {
    max-height: 55px; /* Adjust based on logo proportions */
    width: auto;
}
/* Enhanced Logo Sizing */
.site-logo img,
.site-logo .logo-img {
    height: 95px !important;    /* Standard visual size to high visibility */
    max-height: none !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    padding: 5px 0;             /* Top and bottom spacing */
}

/* Header Padding Balance */
.main-header {
    padding: 5px 0 !important;   /* Large logo-nu header height balance cheyyaan */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-logo img,
    .site-logo .logo-img {
        height: 65px !important; /* Mobile-il correct scale *
    }
}
/* Navigation Menu */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li {
    margin: 0 15px;
}
.nav-list li a {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}
.nav-list li a:hover {
    color: var(--accent-gold);
}

/* CTA Button */
.btn-gold {
    background-color: var(--accent-gold);
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-1px);
}
/* Google Serif Font for Hero Title */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Color Variables */
:root {
    --hero-dark-navy: #0d1e25;
    --accent-gold: #c59b27;
    --gold-hover: #b0871e;
}

/* Hero Section Base */
.hero-banner {
    background-color: var(--hero-dark-navy);
    overflow: hidden;
}

.hero-content-panel {
    background-color: var(--hero-dark-navy);
    min-height: 520px;
}

.hero-text-wrapper {
    max-width: 580px;
}

/* Font Styling */
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.tracking-widest {
    letter-spacing: 2px;
}

.gold-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
}

.text-gold {
    color: var(--accent-gold) !important;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Hero Buttons */
.btn-hero-gold {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-hero-gold:hover {
    background-color: var(--gold-hover);
    color: #ffffff;
}

.btn-hero-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Hero Right Image */
.hero-bg-img {
    height: 520px;
    object-fit: cover;
    object-position: center;
}

/* Feature Badges Bar */
.feature-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #fcf8ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-bg-img {
        height: 380px;
    }
}
/* Service Cards Animation */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1) !important;
}
.service-card .card-img-wrapper img {
    transition: transform 0.5s ease;
}
.service-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}
/* Auto Adjust Service Card Images */
.service-card .card-img-top {
    height: 220px !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

/* Optional: Slight Zoom on Hover for Interactive Feel */
.service-card:hover .card-img-top {
    transform: scale(1.03);
}