/* Font Face Declarations for ITC Eras Std */
@font-face {
    font-family: 'ITC Eras Std';
    src: url('../Ersa-Font/eras-light-5871822a2e706.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Eras Std';
    src: url('../Ersa-Font/eras-book-587181c4d21d4.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Eras Std';
    src: url('../Ersa-Font/eras-demi-587182767b329.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Eras Std';
    src: url('../Ersa-Font/eras-bold-5871820c913a2.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Eras Std';
    src: url('../Ersa-Font/eras-bold-5871825645ec8.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* .section1{
    padding-bottom: 10%;
} */


:root {
    --primary: #134bb8; /* Accountsage Blue */
    --secondary: #f2b90d; /* Accountsage Gold */
    --accent: #f2b90d; /* Accountsage Gold */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #212529;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'ITC Eras Std', 'Inter', 'Arial', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    color: #fff;
}

h4{
    color: #fff !important;
}

/* Brand Name Styling */
.brand-name {
    color: #f4b942 !important;
    font-weight: 500;
}
.container {
    width: 100%;
    max-width: 90% !important;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */
header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    max-width: 90%;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-default {
    display: block;
}

.logo-scrolled {
    display: none;
}

header.scrolled .logo-default {
    display: none;
}

header.scrolled .logo-scrolled {
    display: block !important;
}

header.scrolled .logo {
    color: #134bb8;
}

.logo span {
    color: #f2b90d;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 1.1rem;
    cursor: pointer;
}

header.scrolled nav ul li a {
    color: #212529;
}

nav ul li a:hover {
    color: #f2b90d;
}

header.scrolled nav ul li a:hover {
    color: #f2b90d;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f2b90d;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

header.scrolled .mobile-menu {
    color: #212529;
}

/* Footer */
footer {
    background: url('../images/Footer bg.jpg') center/cover no-repeat;
    color: #134bb8;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #134bb8;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f2b90d;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #134bb8;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-column ul li a:hover {
    color: #f2b90d;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(19, 75, 184, 0.1);
    border-radius: 50%;
    color: #134bb8;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #f2b90d;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(19, 75, 184, 0.1);
    color: #134bb8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        /* padding: 10px 20px; */
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        max-width: 250px;
        text-align: center;
    }
    
    .btn-outline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .header-container {
        max-width: 95%;
        padding: 8px 15px;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .header-container {
        padding: 6px 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}