:root {
    --primary-color: #002855;
    --primary-dark: #001935;
    --secondary-color: #e44993;
    --accent-color: #d4af37;
    --accent-hover: #b4941f;
    --text-color: #555555;
    --heading-color: #1a1a1a;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #111111;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Poppins', sans-serif
}

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

a:hover {
    color: var(--accent-color)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px
}

h1 {
    font-size: 48px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 24px
}

p {
    margin-bottom: 15px
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.text-center {
    text-align: center
}

.text-muted {
    color: #777
}

.section {
    padding: 100px 0
}

.bg-light {
    background-color: var(--light-bg)
}

.mb-5 {
    margin-bottom: 3rem
}

.mt-4 {
    margin-top: 1.5rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.max-w-600 {
    max-width: 600px
}

.divider {
    height: 4px;
    width: 70px;
    background-color: var(--accent-color);
    margin: 20px 0
}

.divider.mx-auto {
    margin: 20px auto
}

.sub-title {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color)
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px)
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--heading-color)
}

.btn-dark {
    background-color: var(--primary-color);
    color: #fff
}

.btn-dark:hover {
    background-color: var(--primary-dark)
}

.btn-lg {
    padding: 16px 40px;
    font-size: 14px
}

header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
    top: 0
}

.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    display: none
}

@media (min-width:992px) {
    .top-bar {
        display: block
    }
}

.top-bar .contact-info span {
    margin-right: 25px;
    opacity: .9
}

.top-bar .contact-info i {
    color: var(--accent-color);
    margin-right: 8px
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px
}

.logo a img {
    height: 55px
}

.desktop-nav ul {
    list-style: none;
    display: flex
}

.desktop-nav ul li {
    margin-left: 30px
}

.desktop-nav ul li a {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width .3s
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
    width: 100%
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
    color: var(--accent-color)
}

.mobile-menu-toggle button {
    background: 0 0;
    border: none;
    color: var(--heading-color);
    font-size: 24px;
    cursor: pointer;
    display: none
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible
}

.mobile-menu ul {
    list-style: none;
    text-align: center
}

.mobile-menu ul li {
    margin: 25px 0
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-heading)
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer
}

.hero-section {
    position: relative;
    background-image: url(img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 100px 0
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 17, 17, .7), rgba(34, 123, 195, .6));
    z-index: 1
}

.container-relative {
    position: relative;
    z-index: 2;
    width: 100%
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(255, 255, 255, .15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .2)
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.hero-desc {
    font-size: 20px;
    opacity: .9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.hero-btns .btn {
    margin: 0 10px
}

.stats-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-item:last-child {
    border-right: none
}

.stat-item .counter {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 5px
}

.stat-item p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500
}

.about-grid-redesign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.features-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0
}

.feat-item {
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center
}

.feat-item i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
    background: rgba(255, 179, 0, .15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-visual {
    position: relative
}

.img-main {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 123, 195, .4)
}

.exp-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color)
}

.exp-badge .text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.service-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: all .3s;
    border-bottom: 3px solid transparent
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    border-bottom-color: var(--accent-color)
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f0f7fc;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all .3s
}

.service-box:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: #fff
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px
}

.service-box p {
    color: #666;
    margin-bottom: 25px
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center
}

.link-arrow i {
    font-size: 12px;
    margin-left: 8px;
    transition: margin-left .3s
}

.link-arrow:hover {
    color: var(--accent-color)
}

.link-arrow:hover i {
    margin-left: 12px
}

.cta-section {
    position: relative;
    background-image: url(img/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1
}

footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 80px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px
}

.contact-detail {
    display: flex;
    margin-bottom: 15px
}

.contact-detail i {
    min-width: 25px;
    color: var(--accent-color);
    margin-top: 5px
}

.social-links {
    margin-top: 25px
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px
}

.social-links a:hover {
    background-color: var(--accent-color)
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px
}

@media (max-width:992px) {
    .h1 {
        font-size: 42px
    }

    .desktop-nav {
        display: none
    }

    .mobile-menu-toggle button {
        display: block
    }

    .about-grid-redesign,
    .services-grid-3,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-visual {
        order: -1;
        margin-bottom: 40px
    }

    .exp-badge {
        left: 0;
        bottom: -20px
    }
}

@media (max-width:576px) {
    .hero-title {
        font-size: 36px
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .hero-btns .btn {
        margin: 10px 0;
        display: block;
        width: 100%
    }
}

.section-padding {
    padding: 80px 0
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.rounded {
    border-radius: 8px
}

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-top: 0
}

.page-hero .overlay {
    background: linear-gradient(to right, rgba(0, 40, 85, .85), rgba(0, 25, 53, .85))
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: auto
}

.about-content {
    background-color: #fff
}

.about-intro {
    max-width: 800px;
    margin: 0 auto
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start
}

.about-images-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.about-features-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.feature-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: transform .3s
}

.feature-box:hover {
    transform: translateY(-5px)
}

.feature-box .icon {
    min-width: 50px;
    height: 50px;
    background: #f0f7fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.feature-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: #fff
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6)
}

.parallax-section .container {
    position: relative;
    z-index: 2
}

.parallax-section h2 {
    font-size: 36px;
    margin-bottom: 10px
}

@media (max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr
    }

    .about-images-col {
        order: -1
    }
}

.contact-section {
    background-color: #f9f9f9
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px
}

.contact-form-panel {
    padding: 40px
}

.contact-info-panel h3 {
    color: var(--accent-color);
    margin-bottom: 20px
}

.contact-detail-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start
}

.contact-detail-item i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px
}

.form-group {
    width: 100%;
    margin-bottom: 20px
}

.form-group.half {
    width: 50%
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .3s
}

input:focus,
textarea:focus {
    border-color: var(--accent-color)
}

@media (max-width:768px) {
    .contact-container {
        grid-template-columns: 1fr
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0
    }

    .form-group.half {
        width: 100%;
        margin-bottom: 20px
    }
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px
}

.service-full-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    padding: 40px;
    transition: all .3s;
    border-top: 4px solid var(--accent-color)
}

.service-full-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.service-full-card .icon {
    width: 70px;
    height: 70px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px
}

.service-full-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px
}

.service-full-card ul {
    list-style: none;
    padding-left: 10px
}

.service-full-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555
}

.service-full-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
    font-size: 12px
}