* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #24415d;
    background: #edf5fb;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #125a9c;
    margin-bottom: 40px;
}

.section-title.left {
    text-align: left;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
    cursor: pointer;
}

/* PRIMARY BUTTON */

.btn-primary {
    background: linear-gradient(to bottom, #2790e6, #1569b3);
    color: #fff;
    box-shadow: 0 6px 15px rgba(21, 105, 179, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* SECONDARY BUTTON */

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #125a9c;
    border: 2px solid #125a9c;
}

.btn-secondary:hover {
    background: #125a9c;
    color: #fff;
}

/* CALL BUTTON */

.btn-third {
    background: linear-gradient(to bottom, #2790e6, #1569b3);
    color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(21, 105, 179, 0.25);
}

.btn-third:hover {
    transform: translateY(-2px);
    background: linear-gradient(to bottom, #1f82d6, #125ea3);
}

/* HERO BUTTON CONTAINER */

.hero-buttons {
    display: inline-block;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: nowrap;
    align-items: center;
    width: 680px;
}

/* CALL BUTTON EXTRA STYLE */

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
/* HEADER */

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: 0.35s ease;
}

.header-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px;
    background: rgba(230, 241, 251, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(18, 90, 156, 0.12);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}


.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #125a9c;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 18px;
    font-weight: 600;
    color: #445b75;
    position: relative;
    transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #125a9c;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: #125a9c;
    border-radius: 10px;
}

.header-btn {
    background: linear-gradient(135deg, #2f8fe4, #1c6dc0);
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(21, 105, 179, 0.25);
    transition: 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: #125a9c;
    cursor: pointer;
}

.site-header.scrolled {
    top: 0;
}

.site-header.scrolled .header-container {
    min-height: 66px;
    border-radius: 0 0 16px 16px;
    background: rgba(230, 241, 251, 0.98);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

/* HERO */

.hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(19, 105, 179, 0.15), rgba(19, 105, 179, 0.15)),
        url("images/hero-bg.jpg") center/cover no-repeat;
}
.hero-ac-focus {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #2790e6, #1569b3);
    color: #fff;    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 22px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 43, 82, 0.72) 0%,
        rgba(8, 43, 82, 0.45) 38%,
        rgba(8, 43, 82, 0.15) 70%,
        rgba(8, 43, 82, 0.06) 100%
    );
    z-index: 1;
}
.hero-services {
    font-size: 28px;
    margin-bottom: 35px;
    color: #e9f4ff;
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-brand {
    display: inline-block;
    font-size: 42px;
    font-weight: 800;
    color: #7ceae3;
    padding: 8px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

.hero-text {
    max-width: 900px;
    color: #fff;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 28px;
    margin-bottom: 35px;
    color: #e9f4ff;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* HOME CARDS */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 90, 156, 0.12);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.card-content {
    padding: 22px;
    text-align: center;
}

.card-content h3 {
    color: #125a9c;
    font-size: 28px;
    margin-bottom: 10px;
}

.card-content p {
    color: #5b6f86;
    font-size: 18px;
    margin-bottom: 18px;
}

.card-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #2790e6, #1569b3);
    color: #fff;
    font-weight: bold;
}
.services-featured {
    margin-bottom: 32px;
}

.featured-service-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 90, 156, 0.12);
    transition: 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-6px);
}

.featured-service-image img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.featured-service-content {
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 90, 156, 0.10);
    color: #125a9c;
    font-size: 14px;
    font-weight: 700;
}

.featured-service-content h3 {
    font-size: 40px;
    line-height: 1.1;
    color: #125a9c;
    margin-bottom: 16px;
}

.featured-service-content p {
    font-size: 19px;
    color: #4f647d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.featured-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.featured-service-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #4f647d;
    line-height: 1.5;
}

.featured-service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #125a9c;
    font-weight: 700;
}

.secondary-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.small-service-card .card-content h3 {
    font-size: 30px;
}

.small-service-card .card-content p {
    font-size: 18px;
}

/* ABOUT */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 90, 156, 0.12);
}

.about-text p {
    font-size: 20px;
    color: #4f647d;
    margin-bottom: 18px;
}

/* CONTACT PAGE */

.contact-page {
    padding-top: 130px;
}

.contact-hero {
    padding: 20px 0 10px;
}

.contact-hero-content {
    max-width: 980px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 42px 46px;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
}

.contact-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #125a9c;
    margin-bottom: 18px;
}

.contact-hero p {
    font-size: 22px;
    color: #4f647d;
    line-height: 1.7;
    max-width: 820px;
}

.contact-main {
    padding-top: 35px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-card,
.contact-map-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
}

.contact-info-card h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #125a9c;
    margin-bottom: 24px;
}

.contact-info-card .contact-info-list li {
    font-size: 18px;
    color: #4b617b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-map-card {
    padding: 14px;
    overflow: hidden;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 16px;
    display: block;
}
/* FOOTER */

.site-footer {
    margin-top: 50px;
    background: #0f4f8a;
    color: #fff;
}

.footer-container {
    padding: 60px 0 30px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 16px;
}

.footer-box p,
.footer-box li,
.footer-box a {
    color: #dceaf7;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-box a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* SERVICES PAGE */

.services-page {
    padding-top: 130px;
}
.services-bg {
    background-image:url("images/services-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-hero {
    padding: 20px 0 10px;
}

.services-hero-content {
    max-width: 980px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 42px 46px;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
}

.services-hero h1 {
    text-align: center;
    font-size: 56px;
    line-height: 1.1;
    color: #125a9c;
    margin-bottom: 18px;
}

.services-hero p {
    font-size: 22px;
    color: #4f647d;
    line-height: 1.7;
    max-width: 820px;
}

.services-section {
    padding-top: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(18, 90, 156, 0.16);
}

.service-box h2 {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    color: #125a9c;
    margin-bottom: 14px;
}

.service-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4f647d;
}

.work-process {
    padding-top: 35px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
    transition: 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #125a9c;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-box h3 {
    text-align: center;
    font-size: 24px;
    color: #125a9c;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 17px;
    color: #5b6f86;
    line-height: 1.6;
}

.services-cta {
    padding-top: 25px;
    padding-bottom: 70px;
}
.services-cta .container {
    display: flex;
    justify-content: center;
}

.cta-panel {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 42px 46px;
    box-shadow: 0 10px 28px rgba(18, 90, 156, 0.10);
}
.process-title{
    display:inline-block;
    font-size:28px;
    font-weight:700;
    color:#125a9c;

    padding:12px 28px;
    border-radius:14px;

    background:rgba(255,255,255,0.92);
    box-shadow:0 8px 22px rgba(18,90,156,0.12);

    margin-bottom:50px;
}
.work-process .container{
    text-align:center;
}

.cta-panel h2 {
    font-size: 40px;
    color: #125a9c;
    margin-bottom: 12px;
}

.cta-panel p {
    font-size: 20px;
    color: #4f647d;
    margin-bottom: 22px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cards-grid,
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .contact-preview-container,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
    grid-template-columns: 1fr;
}
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(230, 241, 251, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
        border-bottom: 1px solid rgba(18, 90, 156, 0.12);
    }

    .main-nav.show {
        display: flex;
    }

    .cards-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 44px;
    }
}

@media (max-width: 700px) {
    .contact-page {
    padding-top: 120px;
}

.contact-hero-content {
    padding: 28px 24px;
}

.contact-hero h1 {
    font-size: 42px;
}

.contact-hero p {
    font-size: 18px;
}
    .services-page {
        padding-top: 120px;
    }

    .services-hero-content {
        padding: 28px 24px;
    }

    .services-hero h1 {
        font-size: 42px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .service-box h2 {
        font-size: 25px;
    }

    .service-box p {
        font-size: 17px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 28px;
    }

    .cta-panel h2 {
        font-size: 30px;
    }

    .cta-panel p {
        font-size: 18px;
    }
}


@media (max-width: 560px) {
    .contact-info-card,
.contact-map-card {
    padding: 24px;
}
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 19px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }
}
@media (max-width: 1100px) {
    .featured-service-card {
        grid-template-columns: 1fr;
    }

    .secondary-services-grid {
        grid-template-columns: 1fr;
    }

    .featured-service-image img {
        min-height: 300px;
    }
}

@media (max-width: 700px) {
    .featured-service-content {
        padding: 26px 22px;
    }

    .featured-service-content h3 {
        font-size: 30px;
    }

    .featured-service-content p {
        font-size: 17px;
    }

    .featured-service-list li {
        font-size: 16px;
    }
}