/* Color Variables */
:root {
    --primary-blue: #397FBB;
    --dark-blue: #397FBB;
    --red-heading: #AA0303;
    --gold-btn: #CEA115;
    --gold-btn-hover: #b08912;
    --text-dark: #363636;
    --text-light: #f5f5f5;
    --white: #FFFFFF;
}

/* Base Styles */
body {
    font-family: "Poppins", Sans-serif;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'AR One Sans', sans-serif;
    color: var(--text-dark);
}

.text-primary-blue { color: var(--primary-blue) !important; }
.bg-primary-blue { background-color: var(--primary-blue) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.text-red { color: var(--red-heading) !important; }

/* Header */
.header-spacing {
    height: 70px;
}
#main-header {
    z-index: 9999;
}
.navbar-brand h4 {
    font-family: 'Poppins', sans-serif;
}
.nav-link {
    color: var(--text-dark) !important;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
}
.navbar-nav{
    gap:20px
}

/* Mobile: prevent number button overflow */
@media (max-width: 991px) {
    .header-spacing {
        height: 62px;
    }
    #main-header .btn-sm {
        font-size: 16px !important;
        padding: 10px 20px !important;
        white-space: nowrap;
    }
}

/* Buttons */
.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-blue:hover {
    background-color: #2c6394;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold-btn);
    /* color: var(--white); */
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-btn-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../img/office-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Light overlay to let text pop */
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* Cards & Hover Effects */
.hover-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    background-color: var(--white);
}
.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Section Dividers */
.divider-blue {
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 15px auto 30px;
}
.divider-white {
    width: 60px;
    height: 3px;
    background-color: var(--white);
    margin: 15px 0 30px;
}

/* Brand Cards */
.brand-icon {
  height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Services */
.service-img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Issues Section */
.issue-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

/* Testimonial */
.review-img {
    max-width: 300px;
    height: auto;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 500;
    z-index: 1000;
    transition: all 0.3s;
}
.floating-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links a {
    transition: color 0.3s;
    color: #fff !important;
}
.footer-links a:hover {
    color: #0dcaf0 !important;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .divider-white {
        margin: 15px auto 30px;
    }
    .text-md-start {
        text-align: center !important;
    }
}
