*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Serif Display", serif;
}



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

.header {
    position: fixed;
    top: 18px;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 1000;

    transition: all 0.4s ease;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 92%;
    max-width: 1450px;
    height: 82px;

    margin: 0 auto;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(7, 16, 24, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(201, 164, 92, 0.25);

    border-radius: 16px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;

    width: 120px;
    height: 70px;

    text-decoration: none;
}

.rv-logo {
    font-family: "Cinzel", serif;

    font-size: 50px;

    font-weight: 700;

    letter-spacing: -4px;

    color: #c9a45c;

    line-height: 1;

    text-shadow:
        0 2px 12px rgba(201, 164, 92, 0.15);

    transition: 0.3s ease;
}

.logo:hover .rv-logo {
    color: #e0bd76;
    transform: translateY(-1px);
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-links {
    display: flex;
    align-items: center;

    gap: 35px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;

    font-family: "DM Serif Display", serif;

    font-size: 15px;

    white-space: nowrap;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #c9a45c;
}

.nav-links a.active {
    color: #c9a45c;
}


/* Underline */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: #c9a45c;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 26px;
}


/* =====================================================
   GET IN TOUCH
===================================================== */

.contact-btn {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 20px;

    background: #c9a45c;

    color: #101820;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: bold;

    white-space: nowrap;

    border-radius: 7px;

    flex-shrink: 0;

    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #e0bd76;

    transform: translateY(-2px);
}

.contact-btn span {
    font-size: 18px;

    transition: 0.3s;
}

.contact-btn:hover span {
    transform: translate(3px, -3px);
}


/* =====================================================
   SCROLLED NAVBAR
===================================================== */

.header.scrolled {
    top: 0;

    height: 82px;
}

.header.scrolled .navbar {
    width: 100%;
    max-width: none;

    margin: 0;

    border-radius: 0;

    background: rgba(7, 16, 24, 0.98);

    border-color: rgba(201, 164, 92, 0.2);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}


/* =====================================================
   MOBILE MENU ICON
===================================================== */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: white;

    transition: 0.3s;
}


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

@media (max-width: 1100px) {

    .navbar {
        width: 95%;
        padding: 0 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .contact-btn {
        padding: 12px 15px;
        font-size: 12px;
    }
}


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

@media (max-width: 900px) {

    .header {
        top: 10px;
        height: 70px;
    }

    .navbar {
        width: 94%;
        height: 70px;

        padding: 0 14px;

        border-radius: 14px;
    }


    /* Scrolled */

    .header.scrolled {
        top: 0;
    }

    .header.scrolled .navbar {
        width: 100%;
        height: 70px;

        border-radius: 0;
    }


    /* Logo */

    .logo {
        width: 135px;
        height: 56px;
    }

    .logo img {
        width: 128px;
        height: 53px;
    }


    /* Hide desktop button */

    .contact-btn {
        display: none;
    }


    /* Hide navigation */

    nav {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        display: none;
    }

    nav.active {
        display: block;
    }


    /* Mobile navigation */

    .nav-links {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 0;

        padding: 12px 0;

        background: rgba(7, 16, 24, 0.98);

        border: 1px solid rgba(201, 164, 92, 0.2);

        border-radius: 12px;

        backdrop-filter: blur(18px);
    }

    .nav-links li {
        width: 100%;

        text-align: center;
    }

    .nav-links a {
        display: block;

        padding: 13px 0;

        font-size: 15px;
    }


    /* Hamburger */

    .menu-toggle {
        display: flex;
    }
}


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

@media (max-width: 500px) {

    .navbar {
        width: 94%;
        padding: 0 12px;
    }

    .logo {
        width: 125px;
        height: 52px;
    }

    .logo img {
        width: 118px;
        height: 49px;
    }
}

/* =====================================================
   HOME SECTION
===================================================== */

.home {
    position: relative;

    min-height: 100vh;

    width: 100%;

    overflow: hidden;

    display: flex;

    align-items: center;
}



.hero-logo {
    position: absolute;

    right: 5%;
    top: 52%;

    transform: translateY(-50%);

    width: 420px;

    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    pointer-events: none;
}

.hero-logo img {
    width: 100%;
    height: auto;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));

    opacity: 0.95;
}

/* =====================================================
   BACKGROUND
===================================================== */

.home-bg {

    position: absolute;

    inset: 0;

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

    background-size: cover;

    background-position: center;

    transform: scale(1.05);

    animation: heroZoom 12s ease-out forwards;

    z-index: 0;
}


/* Slow cinematic zoom */

@keyframes heroZoom {

    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }

}


/* =====================================================
   OVERLAY
===================================================== */

.home-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 18, 0.92) 0%,
            rgba(5, 12, 18, 0.72) 40%,
            rgba(5, 12, 18, 0.35) 75%,
            rgba(5, 12, 18, 0.45) 100%
        );

    z-index: 1;
}


/* =====================================================
   HOME CONTENT
===================================================== */

.home-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1250px;

    margin: 0 auto;

    padding-top: 80px;

    color: white;
}


/* Small heading */

.home-subtitle {

    color: #c9a45c;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 5px;

    margin-bottom: 25px;

    position: relative;

    padding-left: 45px;
}


.home-subtitle::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 30px;

    height: 1px;

    background: #c9a45c;
}


/* Main heading */

.home h1 {

    font-size: clamp(48px, 6vw, 88px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2px;

    margin-bottom: 30px;

    max-width: 900px;
}


.home h1 span {

    color: #c9a45c;
}


/* Description */

.home-description {

    max-width: 600px;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.78);

    margin-bottom: 40px;
}


/* =====================================================
   BUTTONS
===================================================== */

.home-buttons {

    display: flex;

    gap: 18px;

    align-items: center;
}


/* Primary */

.primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 23px;

    background: #c9a45c;

    color: #101820;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 600;

    border-radius: 4px;

    transition: 0.3s;
}


.primary-btn span {

    font-size: 18px;

    transition: 0.3s;
}


.primary-btn:hover {

    background: #e0bd76;

    transform: translateY(-3px);
}


.primary-btn:hover span {

    transform: translate(4px, -4px);
}


/* Secondary */

.secondary-btn {

    display: inline-flex;

    align-items: center;

    padding: 15px 23px;

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

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    border-radius: 4px;

    transition: 0.3s;
}


.secondary-btn:hover {

    border-color: #c9a45c;

    color: #c9a45c;

    background: rgba(201, 164, 92, 0.08);
}


/* =====================================================
   BOTTOM INFORMATION
===================================================== */

.home-bottom {

    position: absolute;

    z-index: 2;

    bottom: 45px;

    right: 5%;

    display: flex;

    align-items: center;

    gap: 25px;

    color: white;
}


.bottom-item {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.bottom-item strong {

    color: #c9a45c;

    font-size: 18px;

    font-weight: 500;

    letter-spacing: 1px;
}


.bottom-item span {

    font-family: Arial, sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.55);
}


.bottom-line {

    height: 35px;

    width: 1px;

    background: rgba(255, 255, 255, 0.25);
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-down {

    position: absolute;

    z-index: 2;

    bottom: 45px;

    left: 5%;

    display: flex;

    align-items: center;

    gap: 15px;

    color: rgba(255, 255, 255, 0.6);

    font-family: Arial, sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.scroll-line {

    width: 45px;

    height: 1px;

    background: #c9a45c;

    position: relative;

    overflow: hidden;
}


.scroll-line::after {

    content: "";

    position: absolute;

    left: -100%;

    width: 100%;

    height: 100%;

    background: white;

    animation: scrollLine 2s infinite;
}


@keyframes scrollLine {

    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }

}

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

.about {

    position: relative;

    background: #f5f3ee;

    padding: 120px 6%;

    color: #111a22;
}


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

.about-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


/* =====================================================
   IMAGE
===================================================== */

/* =====================================================
   IMAGE / CAROUSEL
===================================================== */

.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Carousel fills the entire image area */

.about-image .carousel {
    width: 100%;
    height: 100%;
}

.about-image .carousel-inner {
    width: 100%;
    height: 100%;
}

.about-image .carousel-item {
    width: 100%;
    height: 600px;
}

/* Images */

.about-image .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Smooth zoom when image appears */

.about-image .carousel-item.active img {
    animation: aboutZoom 4s ease forwards;
}

@keyframes aboutZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* Gold corner */

.about-image::before {
    content: "";

    position: absolute;

    top: -12px;
    left: -12px;

    width: 90px;
    height: 90px;

    border-top: 2px solid #c9a45c;
    border-left: 2px solid #c9a45c;

    z-index: 5;
}

/* Image box */

.about-image-box {
    position: absolute;

    bottom: 25px;
    left: 25px;

    padding: 18px 25px;

    background: rgba(8, 15, 22, 0.9);

    color: white;

    border-left: 3px solid #c9a45c;

    z-index: 10;
}

.about-image-box span {
    display: block;

    color: #c9a45c;

    font-size: 28px;
    font-weight: bold;
}

.about-image-box p {
    margin: 4px 0 0;

    font-family: Arial, sans-serif;

    font-size: 9px;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.7);
}
/* =====================================================
   CONTENT
===================================================== */

.about-content {

    max-width: 560px;
}

.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(8px);
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

.service-arrow {
    transition: transform 0.3s ease;
}
/* Label */

.section-label {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #b18c4c;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


.section-label::before {

    content: "";

    width: 35px;

    height: 1px;

    background: #c9a45c;
}


/* Heading */

.about-content h2 {

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -1.5px;

    margin-bottom: 28px;
}


.about-content h2 span {

    display: block;

    color: #b18c4c;
}


/* Intro */

.about-intro {

    font-size: 19px;

    line-height: 1.6;

    color: #27333c;

    margin-bottom: 20px;
}


/* Normal text */

.about-text {

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #66717a;

    margin-bottom: 15px;
}


.hero-logo img {
    width: 180px;
    height: auto;
}


/* Tablet */
@media (max-width: 768px) {

    .hero-logo img {
        width: 130px;
    }

}


/* Mobile */
@media (max-width: 480px) {

    .hero-logo img {
        width: 110px;
    }

}
/* =====================================================
   BUTTON
===================================================== */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 15px;

    padding: 14px 20px;

    background: #101820;

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    border-radius: 4px;

    transition: 0.3s;
}


.about-btn span {

    color: #c9a45c;

    font-size: 18px;

    transition: 0.3s;
}


.about-btn:hover {

    background: #c9a45c;

    color: #101820;

    transform: translateY(-3px);
}


.about-btn:hover span {

    color: #101820;

    transform: translate(4px, -4px);
}


/* =====================================================
   VALUES
===================================================== */

.about-values {

    max-width: 1250px;

    margin: 100px auto 0;

    padding-top: 45px;

    border-top: 1px solid #d9d5cc;

    display: grid;

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

    gap: 22px;
}



/* =====================================================
   VALUE CARD
===================================================== */

.value-card {

    position: relative;

    min-height: 260px;

    padding: 28px 28px 25px;

    background: #ffffff;

    border: 1px solid #e5e0d6;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    transition: all 0.4s ease;
}


/* Gold top accent */

.value-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #c9a45c;

    transition: width 0.4s ease;
}


/* Hover */

.value-card:hover {

    transform: translateY(-8px);

    border-color: rgba(201, 164, 92, 0.45);

    box-shadow:
        0 18px 45px rgba(20, 30, 35, 0.12);
}


.value-card:hover::before {

    width: 100%;
}


/* =====================================================
   TOP
===================================================== */

.value-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Number */

.value-number {

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    color: #c9a45c;
}


/* Icon */

.value-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(201, 164, 92, 0.4);

    border-radius: 50%;

    color: #c9a45c;

    font-family: Arial, sans-serif;

    font-size: 16px;

    transition: all 0.4s ease;
}


.value-card:hover .value-icon {

    background: #c9a45c;

    color: #101820;

    transform: rotate(10deg);
}


/* =====================================================
   CONTENT
===================================================== */

.value-content {

    margin-top: 35px;
}


.value-content h3 {

    margin: 0 0 12px;

    font-size: 27px;

    font-weight: 500;

    color: #101820;
}


.value-content p {

    margin: 0;

    max-width: 320px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #68747c;
}


/* =====================================================
   BOTTOM GOLD LINE
===================================================== */

.value-line {

    width: 45px;

    height: 1px;

    background: #c9a45c;

    transition: width 0.4s ease;
}


.value-card:hover .value-line {

    width: 90px;
}





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

.services {

    position: relative;

    background: #0b141c;

    color: white;

    padding: 120px 6%;

    overflow: hidden;
}


/* subtle background */

.services::before {

    content: "RV";

    position: absolute;

    right: -80px;

    top: 20px;

    font-size: 350px;

    font-weight: bold;

    color: rgba(255,255,255,0.015);

    pointer-events: none;
}


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

.services-header {

    max-width: 1250px;

    margin: 0 auto 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    gap: 80px;
}


/* Light label */

.section-label.light {

    color: #c9a45c;

    margin-bottom: 20px;
}


/* Heading */

.services-header h2 {

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -2px;
}


.services-header h2 span {

    color: #c9a45c;
}


/* Introduction */

.services-intro {

    max-width: 520px;

    margin-left: auto;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.6);
}


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

.services-list {

    max-width: 1250px;

    margin: auto;

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


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {

    position: relative;

    min-height: 150px;

    display: grid;

    grid-template-columns: 100px 1fr 60px;

    align-items: center;

    gap: 30px;

    padding: 30px 15px;

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

    transition: 0.4s ease;

    overflow: hidden;

    cursor: pointer;
}


/* Gold line */

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 100%;

    background: #c9a45c;

    transition: 0.4s ease;

    z-index: 0;
}


/* Hover */

.service-card:hover {

    padding-left: 30px;

    background: rgba(255,255,255,0.035);
}


.service-card:hover::before {

    width: 3px;
}


/* =====================================================
   NUMBER
===================================================== */

.service-number {

    position: relative;

    z-index: 1;

    color: #c9a45c;

    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 2px;
}


/* =====================================================
   CONTENT
===================================================== */

.service-content {

    position: relative;

    z-index: 1;
}


.service-content h3 {

    margin: 0 0 7px;

    font-size: clamp(25px, 3vw, 38px);

    font-weight: 400;

    transition: 0.3s;
}


.service-card:hover h3 {

    color: #c9a45c;
}


.service-content p {

    margin: 0 0 8px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #c9a45c;
}


.service-description {

    display: block;

    max-width: 650px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.6;

    color: rgba(255,255,255,0.5);
}


/* =====================================================
   ARROW
===================================================== */

.service-arrow {

    position: relative;

    z-index: 1;

    width: 45px;

    height: 45px;

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

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 18px;

    transition: 0.4s ease;
}


.service-card:hover .service-arrow {

    background: #c9a45c;

    border-color: #c9a45c;

    color: #101820;

    transform: rotate(45deg);
}
/* =====================================================
   GLOBAL PRESENCE
===================================================== */

.global {

    position: relative;

    min-height: 750px;

    background: #071018;

    color: white;

    padding: 120px 6%;

    overflow: hidden;
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.global-glow {

    position: absolute;

    width: 600px;

    height: 600px;

    right: -200px;

    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        circle,
        rgba(201,164,92,0.12),
        transparent 70%
    );

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.global-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 60px;

    align-items: center;
}


/* =====================================================
   CONTENT
===================================================== */

.global-content {

    max-width: 500px;
}


.global-content h2 {

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2px;

    margin-bottom: 30px;
}


.global-content h2 span {

    display: block;

    color: #c9a45c;
}


.global-description {

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.6);

    margin-bottom: 18px;
}


/* =====================================================
   STATS
===================================================== */

.global-stats {

    display: flex;

    gap: 35px;

    margin-top: 45px;

    padding-top: 30px;

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


.global-stat {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.global-stat strong {

    color: #c9a45c;

    font-size: 28px;

    font-weight: 400;
}


.global-stat span {

    font-family: Arial, sans-serif;

    font-size: 9px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,0.45);
}


/* =====================================================
   WORLD MAP
===================================================== */

.world-map {

    position: relative;

    width: 100%;

    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.world-map img {

    width: 100%;

    max-width: 700px;

    opacity: 0.45;

    filter:
        brightness(0)
        invert(1)
        opacity(0.35);

}


/* =====================================================
   MAP POINTS
===================================================== */

.map-point {

    position: absolute;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #c9a45c;

    box-shadow:
        0 0 0 5px rgba(201,164,92,0.15),
        0 0 25px rgba(201,164,92,0.7);

    z-index: 3;
}


/* Pulse */

.pulse {

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 1px solid #c9a45c;

    animation: mapPulse 2s infinite;

}


@keyframes mapPulse {

    0% {

        transform: scale(0.7);

        opacity: 1;
    }

    100% {

        transform: scale(2.5);

        opacity: 0;
    }

}


/* =====================================================
   MAP POSITIONS
===================================================== */

.india {

    right: 27%;

    top: 57%;
}


.middle-east {

    right: 38%;

    top: 45%;
}


.europe {

    right: 49%;

    top: 30%;
}


.asia {

    right: 16%;

    top: 40%;
}


.africa {

    right: 48%;

    top: 65%;
}


/* =====================================================
   LABEL
===================================================== */

.map-label {

    position: absolute;

    left: 20px;

    top: -10px;

    white-space: nowrap;

    display: flex;

    flex-direction: column;

    gap: 3px;

    padding-left: 10px;

    border-left: 1px solid #c9a45c;
}


.map-label strong {

    font-family: Arial, sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: white;
}


.map-label small {

    font-family: Arial, sans-serif;

    font-size: 7px;

    letter-spacing: 1px;

    color: #c9a45c;
}


/* =====================================================
   CONNECTION LINES
===================================================== */

.connection {

    position: absolute;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #c9a45c,
        transparent
    );

    transform-origin: left center;

    opacity: 0.4;

    animation: connectionGlow 3s infinite;
}


.connection-1 {

    width: 180px;

    right: 28%;

    top: 50%;

    transform: rotate(-25deg);
}


.connection-2 {

    width: 220px;

    right: 35%;

    top: 48%;

    transform: rotate(15deg);
}


.connection-3 {

    width: 160px;

    right: 25%;

    top: 58%;

    transform: rotate(35deg);
}


@keyframes connectionGlow {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.6;
    }

}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact {
    position: relative;

    background: #0b141c;

    color: white;

    padding: 120px 6% 40px;

    overflow: hidden;
}


/* Main container */

.contact-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.contact-content {
    max-width: 520px;
}


.contact-content h2 {

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2px;

    margin-bottom: 30px;
}


.contact-content h2 span {

    display: block;

    color: #c9a45c;
}


.contact-intro {

    max-width: 480px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.6);
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


/* Contact card */

.contact-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px;

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

    background: rgba(255,255,255,0.025);

    text-decoration: none;

    color: white;

    border-radius: 5px;

    transition: 0.35s ease;
}


.contact-card:hover {

    border-color: #c9a45c;

    background: rgba(201,164,92,0.06);

    transform: translateX(5px);
}


/* Icon */

.contact-card-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border: 1px solid rgba(201,164,92,0.5);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #c9a45c;

    font-family: Arial, sans-serif;
}


/* Text */
.contact-card-text a {
    display: block;

    color: rgba(255,255,255,0.85);

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    transition: 0.3s;
}

.contact-card-text a:hover {
    color: #c9a45c;
}

.contact-card-text {

    flex: 1;
}


.contact-card-text small {

    display: block;

    font-family: Arial, sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    color: #c9a45c;

    margin-bottom: 6px;
}


.contact-card-text h3 {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 400;

    color: rgba(255,255,255,0.85);
}


/* Arrow */

.contact-arrow {

    font-size: 20px;

    color: #c9a45c;

    transition: 0.3s;
}


.contact-card:hover .contact-arrow {

    transform: translate(4px, -4px);
}


/* =====================================================
   MAIN CTA
===================================================== */

.contact-main-btn {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 22px;

    margin-top: 10px;

    background: #c9a45c;

    color: #101820;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: bold;

    border-radius: 4px;

    transition: 0.3s;
}


.contact-main-btn span {

    font-size: 20px;

    transition: 0.3s;
}


.contact-main-btn:hover {

    background: #e0bd76;

    transform: translateY(-3px);
}


.contact-main-btn:hover span {

    transform: translate(4px, -4px);
}


/* =====================================================
   BOTTOM
===================================================== */

.contact-bottom {

    max-width: 1250px;

    margin: 100px auto 0;

    padding-top: 25px;

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

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.contact-bottom span {

    color: #c9a45c;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;
}


.contact-bottom p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.35);
}










/* ================= MOBILE MENU ICON ================= */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: white;

    transition: 0.3s;
}


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

@media (max-width: 1100px) {

    .header {
        width: 95%;
    }

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .contact-btn {
        padding: 11px 15px;
        font-size: 14px;
    }

}


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

@media (max-width: 900px) {

    .header {
        width: 94%;
        top: 12px;
    }


    .navbar {
        height: 68px;
        padding: 0 18px;
    }


    /* Hide desktop contact button */

    .contact-btn {
        display: none;
    }


    /* Hide normal navigation */

    nav {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        display: none;
    }


    /* Show menu */

    nav.active {
        display: block;
    }


    .nav-links {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        width: 100%;

        padding: 15px 0;

        background: rgba(8, 15, 22, 0.97);

        backdrop-filter: blur(15px);

        border-radius: 12px;

        border: 1px solid rgba(255, 255, 255, 0.1);
    }


    .nav-links li {
        width: 100%;

        text-align: center;
    }


    .nav-links a {

        display: block;

        padding: 14px 0;

        font-size: 15px;
    }


    /* Mobile menu icon */

    .menu-toggle {
        display: flex;
    }


    /* Logo */

    .logo-mark {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .logo-text span {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 8px;
    }

}


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

@media (max-width: 500px) {

    .header {
        width: 92%;
    }


    .navbar {
        height: 64px;

        padding: 0 14px;
    }


    .logo {
        gap: 8px;
    }


    .logo-mark {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }


    .logo-text span {
        font-size: 13px;

        letter-spacing: 1.5px;
    }


    .logo-text small {
        font-size: 7px;

        letter-spacing: 3px;
    }


    nav {
        top: 72px;
    }

}

/* =====================================================
   HOME RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .home {

        min-height: 100vh;

        align-items: center;
    }


    .home-content {

        width: 88%;

        padding-top: 70px;
    }


    .home h1 {

        font-size: clamp(42px, 9vw, 65px);

        letter-spacing: -1px;
    }


    .home-description {

        font-size: 14px;

        max-width: 520px;
    }


    .home-bottom {

        display: none;
    }


    .scroll-down {

        bottom: 25px;
    }

}


@media (max-width: 600px) {

    .home-bg {

        background-position: 65% center;
    }


    .home-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(5, 12, 18, 0.88),
                rgba(5, 12, 18, 0.65)
            );
    }


    .home-content {

        width: 88%;

        padding-top: 60px;
    }


    .home-subtitle {

        font-size: 10px;

        letter-spacing: 3px;

        padding-left: 35px;

        margin-bottom: 18px;
    }


    .home-subtitle::before {

        width: 23px;
    }


    .home h1 {

        font-size: 42px;

        line-height: 1.08;

        margin-bottom: 22px;
    }


    .home-description {

        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


    .home-buttons {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .primary-btn,
    .secondary-btn {

        padding: 13px 18px;

        font-size: 13px;
    }


    .scroll-down {

        display: none;
    }

}


@media (max-width: 400px) {

    .home h1 {

        font-size: 36px;
    }

}

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

@media (max-width: 900px) {

    .about {

        padding: 90px 7%;
    }


    .about-container {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image {

        height: 500px;
    }


    .about-content {

        max-width: 100%;
    }


    .about-content h2 {

        font-size: 48px;
    }


    .about-values {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 70px;
    }

}


@media (max-width: 600px) {

    .about {

        padding: 70px 6%;
    }


    .about-container {

        gap: 40px;
    }


    .about-image {

        height: 400px;
    }


    .about-image-box {

        bottom: 15px;

        left: 15px;

        padding: 14px 18px;
    }


    .about-content h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }


    .about-intro {

        font-size: 16px;
    }


    .about-text {

        font-size: 13px;

        line-height: 1.7;
    }


    .about-values {

        margin-top: 55px;

        padding-top: 35px;
    }


    .value-item h3 {

        font-size: 19px;
    }

}


@media (max-width: 400px) {

    .about-image {

        height: 350px;
    }


    .about-content h2 {

        font-size: 34px;
    }

}




@media (max-width: 900px) {

    .about-values {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 70px;
    }

    .value-card {

        min-height: 220px;
    }
}


@media (max-width: 600px) {

    .about-values {

        margin-top: 55px;

        padding-top: 35px;
    }

    .value-card {

        min-height: 210px;

        padding: 24px 22px;
    }

    .value-content {

        margin-top: 25px;
    }

    .value-content h3 {

        font-size: 24px;
    }

    .value-content p {

        font-size: 12px;
    }
}
/* =====================================================
   SERVICES RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .services {

        padding: 90px 7%;
    }


    .services-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;
    }


    .services-intro {

        margin-left: 0;

        max-width: 600px;
    }


    .service-card {

        grid-template-columns: 60px 1fr 50px;

        gap: 20px;

        min-height: 140px;

        padding: 25px 10px;
    }


    .service-card:hover {

        padding-left: 20px;
    }


    .service-content h3 {

        font-size: 27px;
    }

}


@media (max-width: 600px) {

    .services {

        padding: 75px 6%;
    }


    .services-header h2 {

        font-size: 42px;

        letter-spacing: -1px;
    }


    .services-intro {

        font-size: 13px;

        line-height: 1.7;
    }


    .service-card {

        grid-template-columns: 35px 1fr 40px;

        gap: 12px;

        padding: 22px 5px;

        min-height: 130px;
    }


    .service-card:hover {

        padding-left: 12px;
    }


    .service-number {

        font-size: 10px;
    }


    .service-content h3 {

        font-size: 22px;

        line-height: 1.2;
    }


    .service-content p {

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .service-description {

        font-size: 11px;

        line-height: 1.5;
    }


    .service-arrow {

        width: 35px;

        height: 35px;

        font-size: 14px;
    }

}


@media (max-width: 400px) {

    .service-description {

        display: none;
    }


    .service-card {

        min-height: 95px;
    }


    .service-content h3 {

        font-size: 20px;
    }

}
/* =====================================================
   GLOBAL RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .global {

        padding: 90px 7%;
    }


    .global-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .global-content {

        max-width: 650px;
    }


    .global-content h2 {

        font-size: 50px;
    }


    .world-map {

        height: 400px;
    }

}


@media (max-width: 600px) {

    .global {

        padding: 75px 6%;
    }


    .global-content h2 {

        font-size: 40px;

        letter-spacing: -1px;
    }


    .global-description {

        font-size: 13px;

        line-height: 1.7;
    }


    .global-stats {

        gap: 20px;

        margin-top: 30px;
    }


    .global-stat strong {

        font-size: 23px;
    }


    .world-map {

        height: 300px;
    }


    .world-map img {

        width: 110%;

        max-width: none;
    }


    .map-label {

        display: none;
    }


    .map-point {

        width: 9px;

        height: 9px;
    }


    .connection {

        display: none;
    }


    .india {

        right: 26%;

        top: 57%;
    }


    .middle-east {

        right: 38%;

        top: 45%;
    }


    .europe {

        right: 50%;

        top: 31%;
    }


    .asia {

        right: 14%;

        top: 40%;
    }


    .africa {

        right: 48%;

        top: 65%;
    }

}


@media (max-width: 400px) {

    .global-content h2 {

        font-size: 35px;
    }


    .world-map {

        height: 260px;
    }

}
/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact {

        padding: 90px 7% 35px;
    }

    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-content {

        max-width: 650px;
    }

    .contact-bottom {

        margin-top: 70px;
    }

}


@media (max-width: 600px) {

    .contact {

        padding: 75px 6% 30px;
    }

    .contact-content h2 {

        font-size: 40px;

        letter-spacing: -1px;
    }

    .contact-intro {

        font-size: 13px;

        line-height: 1.7;
    }

    .contact-card {

        padding: 17px;

        gap: 14px;
    }

    .contact-card-icon {

        width: 42px;

        height: 42px;
    }

    .contact-card-text h3 {

        font-size: 12px;
    }

    .contact-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: 55px;
    }

}


@media (max-width: 400px) {

    .contact-content h2 {

        font-size: 35px;
    }

}