:root {
    --navy: #04182b;
    --navy-2: #07233e;
    --navy-3: #0b3155;

    --gold: #d9a441;
    --gold-light: #f0bc59;

    --white: #ffffff;
    --light: #f6f7f9;

    --text: #14202e;
    --muted: #6d7580;

    --border: #e5e7eb;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Tajawal",
        sans-serif;

    background: #ffffff;

    color: var(--text);

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(2,18,33,.98),
            rgba(3,23,42,.94)
        );

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.topbar {

    height: 38px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    display: flex;

    align-items: center;
}


.topbar-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 13px;
}


.topbar a {

    color:
        rgba(255,255,255,.75);

    transition: .25s;
}


.topbar a:hover {
    color: var(--gold);
}


.top-contact,
.top-links {

    display: flex;

    align-items: center;

    gap: 18px;
}


.separator {

    width: 1px;

    height: 15px;

    background:
        rgba(255,255,255,.2);
}


.navbar {
    min-height: 88px;
}


.navbar-brand {

    min-width: 210px;

    display: flex;

    align-items: center;
}


.main-logo {

    height: 58px;

    width: auto;

    object-fit: contain;
}


.fallback-logo {

    display: none;

    align-items: center;

    gap: 10px;
}


.fallback-icon {

    width: 46px;
    height: 46px;

    border:
        2px solid
        var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-size: 27px;

    font-weight: 800;
}


.fallback-logo strong {

    color: var(--gold);

    display: block;

    font-size: 20px;
}


.fallback-logo small {

    color:
        rgba(255,255,255,.75);

    font-size: 9px;

    letter-spacing: 1px;
}


.navbar-nav {

    gap: 3px;

    margin-right: auto;
}


.navbar .nav-link {

    position: relative;

    padding:
        31px 14px !important;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    transition: .25s;
}


.navbar .nav-link::after {

    content: "";

    position: absolute;

    right: 14px;

    bottom: 21px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .25s;
}


.navbar .nav-link:hover,
.navbar .nav-link.active {

    color: var(--gold);
}


.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {

    width:
        calc(100% - 28px);
}


.btn-gold {

    background: var(--gold);

    border:
        1px solid
        var(--gold);

    color: var(--navy);

    font-weight: 700;

    padding:
        11px 25px;

    border-radius: 4px;

    transition: .25s;
}


.btn-gold:hover {

    background: var(--gold-light);

    border-color:
        var(--gold-light);

    color: var(--navy);

    transform:
        translateY(-2px);
}


.navbar-quote {
    white-space: nowrap;
}



/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 790px;

    background: var(--navy);

    overflow: hidden;
}


.hero-image {

    position: absolute;

    inset: 0;

    background-image:
        url("../images/hero.jpg");

    background-size: cover;

    background-position:
        center left;

    opacity: .75;
}


.hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,36,.15) 0%,
            rgba(3,20,36,.52) 42%,
            rgba(3,20,36,.97) 75%,
            #04182b 100%
        );
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(217,164,65,.12),
            transparent 35%
        );
}


.hero-row {
    min-height: 790px;
}


.hero-content {

    position: relative;

    z-index: 3;

    padding-top: 120px;

    color: #fff;

    max-width: 690px;
}


.hero-pretitle {

    display: inline-block;

    color: var(--gold);

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 15px;
}


.hero h1 {

    font-size:
        clamp(
            60px,
            7vw,
            96px
        );

    font-weight: 800;

    line-height: .95;

    margin:
        0 0 20px;
}


.hero h1 span {

    display: block;

    color: var(--gold);
}


.hero h2 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 18px;
}


.hero p {

    max-width: 620px;

    line-height: 2;

    color:
        rgba(255,255,255,.83);

    font-size: 18px;

    margin: 0;
}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}


.hero-actions .btn {

    min-width: 170px;

    padding:
        13px 25px;

    border-radius: 4px;

    font-size: 16px;
}



/* =========================================================
   FEATURES
========================================================= */

.features-section {

    position: relative;

    z-index: 20;

    margin-top: -80px;
}


.features-panel {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    background:
        linear-gradient(
            120deg,
            var(--navy),
            var(--navy-2)
        );

    border-radius: 6px;

    box-shadow:
        0 20px 55px
        rgba(3,17,31,.22);

    overflow: hidden;
}


.feature-item {

    position: relative;

    text-align: center;

    color: #fff;

    padding:
        32px 20px;
}


.feature-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 28px;
    left: 0;

    width: 1px;

    height:
        calc(100% - 56px);

    background:
        rgba(255,255,255,.12);
}


.feature-icon {

    color: var(--gold);

    font-size: 30px;

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.feature-item h3 {

    font-size: 17px;

    font-weight: 700;

    margin: 10px 0;
}


.feature-item p {

    font-size: 13px;

    color:
        rgba(255,255,255,.67);

    margin: 0;

    line-height: 1.7;
}



/* =========================================================
   COMMON SECTION
========================================================= */

.section {

    padding:
        115px 0;
}


.section-heading {

    text-align: center;

    max-width: 760px;

    margin:
        0 auto 55px;
}


.section-kicker {

    position: relative;

    display: inline-flex;

    color: var(--gold);

    font-size: 15px;

    font-weight: 700;

    padding:
        0 30px;
}


.section-kicker::before,
.section-kicker::after {

    content: "";

    width: 20px;

    height: 1px;

    background: var(--gold);

    position: absolute;

    top: 50%;
}


.section-kicker::before {
    right: 0;
}


.section-kicker::after {
    left: 0;
}


.section-heading h2 {

    font-size: 39px;

    font-weight: 800;

    margin:
        12px 0 8px;
}


.section-heading p {

    font-size: 17px;

    color: var(--muted);

    line-height: 1.8;
}



/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    padding-top: 100px;

    background: #ffffff;
}


.product-card {

    height: 100%;

    background: #fff;

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    overflow: hidden;

    transition: .35s;

    box-shadow:
        0 5px 18px
        rgba(0,0,0,.04);
}


.product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(3,17,31,.12);
}


.product-image {

    position: relative;

    height: 265px;

    background-color:
        var(--navy-2);

    background-size: cover;

    background-position: center;
}


.product-image-fallback {

    position: absolute;

    inset: 0;

    z-index: -1;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,.35);

    font-size: 20px;
}


.product-content {

    padding:
        25px 24px 26px;

    text-align: center;
}


.product-content h3 {

    font-size: 21px;

    font-weight: 700;
}


.product-content p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    min-height: 52px;
}


.product-content a {

    color: var(--gold);

    font-size: 14px;

    font-weight: 700;
}


.product-content a span {

    margin-right: 5px;

    transition: .2s;
}


.product-content a:hover span {
    margin-right: 10px;
}



/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding:
        110px 0;

    background:
        linear-gradient(
            135deg,
            #04182b,
            #082842
        );
}


.section-heading.light h2 {

    color: #fff;
}


.section-heading.light p {

    color:
        rgba(255,255,255,.67);
}


.service-card {

    height: 100%;

    position: relative;

    padding:
        35px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 6px;

    transition: .3s;

    overflow: hidden;
}


.service-card:hover {

    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(217,164,65,.45);

    transform:
        translateY(-5px);
}


.service-number {

    font-size: 58px;

    font-weight: 800;

    color:
        rgba(217,164,65,.12);

    position: absolute;

    left: 20px;

    top: 10px;
}


.service-card h3 {

    color: var(--gold);

    font-size: 21px;

    font-weight: 700;

    margin-bottom: 14px;

    position: relative;
}


.service-card p {

    color:
        rgba(255,255,255,.68);

    margin: 0;

    line-height: 1.9;

    position: relative;
}



/* =========================================================
   ABOUT
========================================================= */

.about-section {

    padding:
        115px 0;

    background: #f7f8fa;
}


.about-visual {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-main-box {

    width: 82%;

    min-height: 430px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-3)
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 25px 50px
        rgba(3,17,31,.2);
}


.about-main-box strong {

    color: var(--gold);

    font-size: 58px;

    font-weight: 800;
}


.about-main-box span {

    color: #fff;

    font-size: 28px;
}


.about-badge {

    position: absolute;

    bottom: 0;

    right: 2%;

    width: 170px;

    padding: 25px;

    text-align: center;

    background: var(--gold);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.15);
}


.about-badge strong {

    display: block;

    color: var(--navy);

    font-size: 23px;
}


.about-badge span {

    color: #fff;

    font-size: 14px;
}


.about-title {

    font-size: 43px;

    font-weight: 800;

    line-height: 1.35;

    margin:
        15px 0 22px;
}


.about-text {

    color: var(--muted);

    font-size: 17px;

    line-height: 2;
}


.about-points {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        14px 20px;

    margin:
        28px 0 35px;
}


.about-points div {

    font-weight: 600;
}


.about-points strong {

    color: var(--gold);

    margin-left: 7px;
}



/* =========================================================
   PROJECTS
========================================================= */

.projects-section {

    padding:
        110px 0;

    background:
        #031524;
}


.project-card {

    height: 330px;

    position: relative;

    border-radius: 6px;

    overflow: hidden;

    background-color:
        var(--navy-2);

    background-size: cover;

    background-position: center;

    transition: .35s;
}


.project-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: inherit;
}


.project-card:hover {

    transform:
        translateY(-7px);
}


.project-content {

    position: absolute;

    right: 25px;

    left: 25px;

    bottom: 25px;
}


.project-content small {

    color: var(--gold);
}


.project-content h3 {

    color: #fff;

    margin:
        4px 0 0;

    font-size: 21px;

    font-weight: 700;
}



/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    padding:
        80px 0;

    background: #fff;
}


.quote-box {

    position: relative;

    overflow: hidden;

    padding:
        45px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #efb64d
        );
}


.quote-box::after {

    content: "";

    position: absolute;

    left: -80px;

    top: -120px;

    width: 300px;

    height: 300px;

    border:
        50px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}


.quote-box > * {

    position: relative;

    z-index: 2;
}


.quote-box span {

    color: var(--navy);

    font-weight: 700;
}


.quote-box h2 {

    color: #fff;

    font-size: 30px;

    font-weight: 800;

    margin:
        6px 0;
}


.quote-box p {

    color:
        rgba(255,255,255,.85);

    margin: 0;
}


.quote-button {

    background: var(--navy);

    color: #fff;

    padding:
        14px 28px;

    min-width: 150px;

    border-radius: 4px;

    font-weight: 700;
}


.quote-button:hover {

    background:
        var(--navy-3);

    color: #fff;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        80px 0 0;

    background:
        #02111f;

    color:
        rgba(255,255,255,.65);
}


.site-footer h3 {

    color: var(--gold);

    font-size: 28px;

    font-weight: 800;
}


.site-footer h5 {

    color: #fff;

    font-weight: 700;

    margin-bottom: 20px;
}


.site-footer ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.site-footer li {

    margin-bottom: 10px;
}


.site-footer a {

    color:
        rgba(255,255,255,.65);

    transition: .2s;
}


.site-footer a:hover {

    color: var(--gold);
}


.footer-bottom {

    margin-top: 55px;

    padding:
        22px 0;

    text-align: center;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    font-size: 13px;
}



/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    left: 22px;

    bottom: 22px;

    z-index: 1000;

    padding:
        13px 20px;

    border-radius: 40px;

    background: #25d366;

    color: #fff;

    font-weight: 700;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.22);
}


.whatsapp-button:hover {

    color: #fff;

    transform:
        translateY(-2px);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .navbar .nav-link {

        padding-left:
            9px !important;

        padding-right:
            9px !important;
    }


    .features-panel {

        grid-template-columns:
            repeat(3,1fr);
    }

}



/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    .site-header {

        position: relative;

        background: var(--navy);
    }


    .topbar {
        display: none;
    }


    .navbar {

        min-height: 75px;

        padding:
            10px 0;
    }


    .navbar-collapse {

        margin-top: 15px;

        padding:
            10px 0 25px;

        border-top:
            1px solid
            rgba(255,255,255,.08);
    }


    .navbar .nav-link {

        padding:
            11px 5px !important;
    }


    .navbar .nav-link::after {
        display: none;
    }


    .navbar-quote {

        display: block;

        margin-top: 12px;

        text-align: center;
    }


    .hero {

        min-height: 650px;
    }


    .hero-row {

        min-height: 650px;
    }


    .hero-content {

        padding-top: 30px;
    }


    .hero-image::after {

        background:
            rgba(3,20,36,.78);
    }


    .features-section {

        margin-top: 0;
    }


    .features-panel {

        grid-template-columns:
            repeat(2,1fr);

        border-radius: 0;
    }


    .about-title {

        font-size: 35px;
    }


    .about-visual {

        min-height: 390px;
    }


    .about-main-box {

        min-height: 350px;
    }


    .quote-box {

        flex-direction: column;

        text-align: center;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .main-logo {

        max-width: 180px;

        height: 48px;
    }


    .hero {

        min-height: 600px;
    }


    .hero-row {

        min-height: 600px;
    }


    .hero h1 {

        font-size: 55px;
    }


    .hero h2 {

        font-size: 22px;
    }


    .hero p {

        font-size: 16px;
    }


    .hero-actions {

        flex-direction: column;
    }


    .hero-actions .btn {

        width: 100%;
    }


    .features-panel {

        grid-template-columns: 1fr;
    }


    .feature-item:not(:last-child)::after {

        top: auto;

        bottom: 0;

        left: 20px;

        right: 20px;

        width: auto;

        height: 1px;
    }


    .section {

        padding:
            75px 0;
    }


    .section-heading {

        margin-bottom: 35px;
    }


    .section-heading h2 {

        font-size: 30px;
    }


    .services-section,
    .projects-section,
    .about-section {

        padding:
            75px 0;
    }


    .about-title {

        font-size: 30px;
    }


    .about-points {

        grid-template-columns: 1fr;
    }


    .about-main-box {

        width: 92%;
    }


    .about-main-box strong {

        font-size: 45px;
    }


    .quote-box {

        padding:
            35px 20px;
    }


    .quote-box h2 {

        font-size: 25px;
    }

}
