:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

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

body {
    color: #444444;
    font-family: var(--default-font);
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #052c53;
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Header Styles */
.header {
    color: #fff;
    background-color: #052c53;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky-top {
    background-color: rgba(5, 44, 83, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    line-height: 1;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: var(--nav-font);
    margin: 0;
}

.logo span {
    font-size: 28px;
    padding-left: 1px;
    color: #007bff;
}

/* Navigation */
.navmenu {
    padding: 0;
    z-index: 9997;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navmenu li {
    position: relative;
}

.navmenu a,
.navmenu a:focus {
    color: #fff;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
    color: #007bff;
}

.btn-getstarted,
.btn-getstarted:focus {
    color: #fff;
    background: #007bff;
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    font-family: var(--nav-font);
    font-weight: 500;
    border: none;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
    color: #fff;
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
}

/* Page Title */
.page-title {
    color: #fff;
    background-color: #052c53;
    background-image: linear-gradient(rgba(5, 44, 83, 0.8), rgba(5, 44, 83, 0.8));
    padding: 120px 0 60px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
    color: #fff;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

.section {
    color: #444444;
    background-color: #fff;
    padding: 80px 0;
    overflow: clip;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    color: #052c53;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.section-title p {
    color: rgba(68, 68, 68, 0.6);
    margin-bottom: 0;
}

/* Footer */
.footer {
    color: #fff;
    background-color: #052c53;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer .footer-about .logo {
    margin-bottom: 25px;
}

.footer .footer-about .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer .footer-about .logo span {
    color: #007bff;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 5px 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    line-height: 1.5;
    transition: 0.3s;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

.footer .credits a {
    color: #007bff;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #007bff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: #0056b3;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* Utilities */
.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}