/* ========== Base Styles ========== */

:root {
    --primary: #C7863C;
    --secondary: #D9A052;
    --dark-gold: #9A6428;
    --light-gold: #F0D2A5;

    --text-dark: #2B2B2B;
    --white: #FFFFFF;
}

.nav-link.active,
.nav-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
/* Responsive Reset & Scroll Fix */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll */
  width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.row,
.columns {
  flex-wrap: wrap;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
/* =====================================================
   HEADER & NAVIGATION
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    height: 100px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: #ffffff;
    box-sizing: border-box;
}

/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 50px;
    padding: 0;
    height: 100px;
    line-height: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin: 0 0 8px 0;
    padding: 0;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

/* =====================================================
   NAV CONTAINER
===================================================== */

.nav-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =====================================================
   NAV LINK
===================================================== */

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    transition: color 0.35s ease, transform 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* =====================================================
   NAV LINK BACKGROUND
===================================================== */

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg,#C7863C,#D9A052);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

/* =====================================================
   NAV LINK UNDERLINE
===================================================== */

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 50px;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* =====================================================
   NAV HOVER
===================================================== */

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover::after {
    width: 40%;
}

/* =====================================================
   ACTIVE NAV LINK
===================================================== */

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg,#C7863C,#D9A052);
}

.nav-link.active::after {
    display: none;
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 7px;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    box-sizing: border-box;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background: #C7863C;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =====================================================
   HAMBURGER ACTIVE
===================================================== */

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================
   MENU OVERLAY
===================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   PREVENT SCROLL
===================================================== */

body.no-scroll {
    overflow: hidden;
}

/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 992px) {

    .header {
        height: 75px;
    }

    .navbar {
        height: 75px;
        min-height: 75px;
        padding: 0 18px 0 10px;
    }

    .logo {
        height: 75px;
        margin: 0;
        padding: 0;
        justify-content: flex-start;
    }

    .logo-img {
        height: 65px;
        width: auto;
        max-width: 190px;
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

    .hamburger {
        display: block !important;
        width: 45px;
        height: 45px;
        padding: 7px;
        margin: 0;
        position: relative;
        z-index: 10001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        margin: 5px auto;
        background: #C7863C;
        border-radius: 3px;
    }

    /* =================================================
       MOBILE DROP-DOWN MENU
    ================================================= */

    .nav-container {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 0;
        padding: 0;
        margin: 0;
        background: #ffffff;
        border-top: 2px solid #C7863C;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
        z-index: 9999;
        box-sizing: border-box;
    }

    .nav-container.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 10px 15px 15px;
        box-sizing: border-box;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        margin: 3px 0;
        padding: 14px 18px;
        border-radius: 7px;
        box-sizing: border-box;
        font-size: 16px;
        font-weight: 600;
        color: #2b2b2b;
        text-align: left;
        background: transparent;
        transform: none;
    }

    .nav-link::before {
        border-radius: 7px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: #ffffff;
        transform: none;
    }

    .nav-link:hover::before {
        transform: scaleX(1);
    }

    .nav-link.active {
        color: #ffffff;
        background: linear-gradient(135deg,#C7863C,#D9A052);
    }

    .menu-overlay {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(0,0,0,0.35);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.no-scroll {
        overflow: hidden;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .header {
        height: 70px;
    }
    .navbar {
        height: 70px;
        min-height: 70px;
        padding: 0 12px 0 8px;
    }
    .logo {
        height: 70px;
        margin: 0;
    }
    .logo-img {
        height: 58px;
        max-width: 170px;
    }
    .hamburger {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    .hamburger span {
        width: 27px;
        height: 3px;
    }
    .nav-container {
        top: 70px;
    }
    .menu-overlay {
        top: 70px;
        height: calc(100vh - 70px);
    }
    .nav-links {
        padding: 8px 12px 12px;
    }
    .nav-link {
        font-size: 15px;
        padding: 13px 16px;
    }
}

/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 360px) {

    .navbar {
        padding-left: 6px;
        padding-right: 8px;
    }
    .logo-img {
        height: 54px;
        max-width: 155px;
    }
}
/* =====================================================
   ORIZON INTERNATIONAL
   SERVICES PAGE COVER
===================================================== */
.service-cover {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

/* =====================================================
   BACKGROUND
===================================================== */

.service-cover-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("Picture/image1.jpg");
    background-size: cover;
    background-position: center;
}

/* =====================================================
   OVERLAY
===================================================== */
.service-cover-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(8, 19, 32, 0.93) 0%,
            rgba(8, 19, 32, 0.75) 50%,
            rgba(8, 19, 32, 0.55) 100%
        );
}


/* =====================================================
   CONTENT
===================================================== */

.service-cover-content {
    position: relative;
    z-index: 2;
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    /* Move content down */
    padding-top: 45px !important;
    text-align: center;
    color: #ffffff;
}


/* =====================================================
   ORIZON INTERNATIONAL LABEL
===================================================== */

.service-label {
    display: inline-block;
    margin: 0 0 14px 0;
    padding-left: 13px;
    border-left: 3px solid #C7863C;
    color: #C7863C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}


/* =====================================================
   PAGE TITLE
===================================================== */

.service-cover h1 {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

/* =====================================================
   BREADCRUMB
===================================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0 0 !important;
    padding: 0 !important;
    font-size: 13px;
    line-height: 1.4;
}

/* HOME */
.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}
.breadcrumb a:hover {
    color: #C7863C;
}

/* SLASH */
.breadcrumb span {
    color: #C7863C;
}

/* SERVICES */
.breadcrumb strong {
    color: #C7863C;
    font-weight: 500;
}

/* =====================================================
   DESKTOP HEADER PROTECTION
   Prevents fixed header from covering content
===================================================== */

@media (min-width: 769px) {
    .service-cover-content {
        padding-top: 55px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {
    .service-cover {
        height: 260px;
    }
    .service-cover-content {
        max-width: 88%;
        padding-top: 45px !important;
    }
    .service-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 11px;
    }
    .service-cover h1 {
        font-size: 38px;
    }
    .breadcrumb {
        margin-top: 12px !important;
        font-size: 12px;
    }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 480px) {
    .service-cover {
        height: 235px;
    }
    .service-cover-content {
        max-width: 90%;
        padding-top: 35px !important;
    }
    .service-label {
        font-size: 9px;
        letter-spacing: 1.3px;
        padding-left: 10px;
    }
    .service-cover h1 {
        font-size: 32px;
    }
    .breadcrumb {
        gap: 7px;
        margin-top: 10px !important;
        font-size: 11px;
    }
}


/* =====================================================
   REMOVE UNWANTED OUTER SPACING
===================================================== */

.service-cover:first-child {
    margin-top: 0 !important;
}
.service-cover {
    margin-bottom: 0 !important;
}
/* =====================================================
   ORIZON INTERNATIONAL HERO
===================================================== */

.construction-hero {
    width: 100%;
    min-height: 600px;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    margin-top: 50px;
    box-sizing: border-box;
}

/* =====================================================
   LEFT CONTENT - 40%
===================================================== */

.construction-left {
    width: 40%;
    min-width: 40%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #0b2638;
    position: relative;
    z-index: 2;
    padding: 70px 5%;
    box-sizing: border-box;
}


/* =====================================================
   TEXT
===================================================== */

.construction-text {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* =====================================================
   SMALL LINE
===================================================== */
.construction-line {
    width: 55px;
    height: 4px;
    background: #c7863c;
    margin-bottom: 22px;
}
/* =====================================================
   TAG
===================================================== */

.construction-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c7863c;
    margin-bottom: 20px;
}


/* =====================================================
   HEADING
===================================================== */
.construction-text h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
}


/* =====================================================
   DESCRIPTION
===================================================== */
.construction-text p {
    max-width: 520px;
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

/* =====================================================
   BUTTON
===================================================== */

.construction-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    background: #c7863c;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.construction-button:hover {
    background: #ffffff;
    color: #0b2638;
    transform: translateY(-2px);
}

/* =====================================================
   ARROW
===================================================== */
.construction-arrow-icon {
    font-size: 22px;
    line-height: 1;
}

/* =====================================================
   RIGHT IMAGE - 60%
===================================================== */
.construction-right {
    width: 60%;
    min-width: 60%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* =====================================================
   IMAGE CONTAINER
===================================================== */
.construction-images {
    width: 100%;
    height: 100%;
    position: relative;
}

/* =====================================================
   SLIDES
===================================================== */
.construction-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.construction-slide.active {
    opacity: 1;
    z-index: 1;
}

/* =====================================================
   DIAGONAL SHAPE
===================================================== */

.construction-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90px;
    width: 180px;
    height: 100%;
    background: #0b2638;
    transform: skewX(-10deg);
    z-index: 3;
    pointer-events: none;
}

/* =====================================================
   SLIDER CONTROLS
===================================================== */

.construction-controls {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    gap: 7px;
    z-index: 5;
}

/* =====================================================
   SMALL SLIDER BUTTON
===================================================== */
.construction-controls button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: rgba(11, 38, 56, 0.90);
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.construction-controls button:hover {
    background: #c7863c;
    transform: translateY(-2px);
}

/* =====================================================
   TABLET
===================================================== */
@media (max-width: 900px) {

    .construction-hero {
        min-height: 520px;
    }

    /* LEFT 40% */
    .construction-left {
        width: 40%;
        min-width: 40%;
        min-height: 520px;
        padding: 50px 5%;
    }

    /* RIGHT 60% */
    .construction-right {
        width: 60%;
        min-width: 60%;
        min-height: 520px;
    }

    .construction-text h1 {
        font-size: 42px;
    }
    .construction-text p {
        font-size: 15px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .construction-hero {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: auto;
    }
    /* =================================================
       IMAGE FIRST
    ================================================= */
    .construction-right {
        order: 1;
        width: 100%;
        min-width: 100%;
        height: 300px;
        min-height: 300px;
    }
    /* REMOVE DIAGONAL */
    .construction-right::before {
        display: none;
    }

    /* =================================================
       CONTENT SECOND
    ================================================= */
    .construction-left {
        order: 2;
        width: 100%;
        min-width: 100%;
        min-height: auto;
        padding: 50px 25px;
    }

    .construction-text {
        width: 100%;
        max-width: 100%;
    }
    .construction-line {
        width: 45px;
        height: 3px;
        margin-bottom: 18px;
    }

    .construction-tag {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    .construction-text h1 {
        font-size: 36px;
        line-height: 1.12;
        margin-bottom: 18px;
    }
    .construction-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 26px;
    }

    .construction-button {
        padding: 13px 18px;
        font-size: 14px;
    }
    /* =================================================
       MOBILE SLIDER BUTTONS
    ================================================= */
    .construction-controls {
        right: 15px;
        bottom: 15px;
    }
    .construction-controls button {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 450px) {
    .construction-right {
        height: 250px;
        min-height: 250px;
    }
    .construction-left {
        padding: 40px 20px;
    }
    .construction-text h1 {
        font-size: 31px;
    }
    .construction-text p {
        font-size: 14px;
    }
}


.construction-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1);
    transition:
        opacity 0.6s ease,
        transform 3s ease;
}

/* ACTIVE IMAGE */
.construction-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.08);
}

/* =====================================================
   ORIZON ABOUT SECTION
===================================================== */

.oi-about-section {
    width: 100%;
    padding: 90px 6%;
    background: #ffffff;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.oi-about-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* =====================================================
   IMAGE
===================================================== */

.oi-about-image {
    position: relative;
    width: 100%;
}

.oi-about-image img {
    width: 100%;
    height: 560px;

    display: block;

    object-fit: cover;

    border-radius: 8px;
}


/* =====================================================
   EXPERIENCE
===================================================== */

.oi-about-experience {
    position: absolute;

    right: -20px;
    bottom: 30px;

    width: 165px;

    padding: 22px 15px;

    background: #C7863C;

    color: #ffffff;

    text-align: center;

    border-radius: 6px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.18);

    box-sizing: border-box;
}

.oi-about-experience strong {
    display: block;

    font-size: 50px;
    line-height: 1;

    font-weight: 800;
}

.oi-about-experience span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}


/* =====================================================
   CONTENT
===================================================== */

.oi-about-content {
    width: 100%;
}

.oi-about-label {
    display: block;

    margin-bottom: 14px;

    color: #C7863C;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* HEADING */

.oi-about-content h2 {
    margin: 0 0 22px;

    color: #172B3A;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}

.oi-about-content h2 span {
    color: #C7863C;
}


/* PARAGRAPHS */

.oi-about-content > p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   FEATURES
===================================================== */

.oi-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 25px;

    margin: 30px 0;
}

.oi-about-feature {
    display: flex;

    align-items: center;

    gap: 10px;
}

.oi-about-check {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #C7863C;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;
}

.oi-about-feature span {
    color: #333333;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
   BUTTON
===================================================== */

.oi-about-button {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 13px 24px;

    background: #C7863C;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.oi-about-button span {
    font-size: 20px;
    line-height: 1;
}

.oi-about-button:hover {
    background: #172B3A;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .oi-about-section {
        padding: 75px 6%;
    }

    .oi-about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .oi-about-image img {
        height: 480px;
    }

    .oi-about-content h2 {
        font-size: 38px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .oi-about-section {
        padding: 60px 5%;
    }

    .oi-about-container {
        gap: 40px;
    }

    .oi-about-image img {
        height: 350px;
    }

    .oi-about-experience {
        right: 10px;
        bottom: 20px;

        width: 130px;

        padding: 17px 10px;
    }

    .oi-about-experience strong {
        font-size: 40px;
    }

    .oi-about-experience span {
        font-size: 12px;
    }

    .oi-about-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .oi-about-content h2 {
        font-size: 30px;
    }

    .oi-about-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .oi-about-features {
        grid-template-columns: 1fr;

        gap: 14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .oi-about-image img {
        height: 310px;
    }

    .oi-about-content h2 {
        font-size: 27px;
    }

}
/* =====================================================
   VISION MISSION OBJECTIVES
===================================================== */

.vim-section {
    width: 100%;
    padding: 90px 6%;
    background: #f7f8f9;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.vim-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.vim-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.vim-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #C7863C;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.vim-header h2 {
    margin: 0 0 16px;

    color: #172B3A;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}

.vim-header h2 span {
    color: #C7863C;
}

.vim-header p {
    margin: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   MAIN CARDS
===================================================== */

.vim-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   CARD
===================================================== */

.vim-card {
    position: relative;

    padding: 38px 30px 35px;

    background: #ffffff;

    border-radius: 8px;

    border: 1px solid #eeeeee;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;

    overflow: hidden;
}

.vim-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #C7863C;
}

.vim-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   NUMBER ICON
===================================================== */

.vim-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #172B3A;

    border-radius: 50%;
}

.vim-icon span {
    color: #C7863C;

    font-size: 25px;
    font-weight: 700;
}


/* =====================================================
   CARD TITLE
===================================================== */

.vim-card h3 {
    margin: 0 0 15px;

    color: #172B3A;

    font-size: 24px;
    font-weight: 750;
}


/* =====================================================
   CARD TEXT
===================================================== */

.vim-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   OBJECTIVE HIGHLIGHTS
===================================================== */

.vim-objectives {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    margin-top: 30px;

    background: #172B3A;

    border-radius: 8px;

    overflow: hidden;
}

.vim-objective-item {
    min-height: 110px;

    padding: 20px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,0.12);
}

.vim-objective-item:last-child {
    border-right: none;
}

.vim-objective-item strong {
    margin-bottom: 8px;

    color: #C7863C;

    font-size: 22px;
}

.vim-objective-item span {
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.4;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .vim-section {
        padding: 75px 6%;
    }

    .vim-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .vim-card {
        padding: 32px 28px;
    }

    .vim-objectives {
        grid-template-columns: repeat(3, 1fr);
    }

    .vim-objective-item {
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .vim-section {
        padding: 60px 5%;
    }

    .vim-header {
        margin-bottom: 35px;
    }

    .vim-header h2 {
        font-size: 30px;
    }

    .vim-header p {
        font-size: 14px;
    }

    .vim-card {
        padding: 30px 24px;
    }

    .vim-card h3 {
        font-size: 22px;
    }

    .vim-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vim-objectives {
        grid-template-columns: 1fr 1fr;
    }

    .vim-objective-item {
        min-height: 95px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .vim-header h2 {
        font-size: 27px;
    }

    .vim-objectives {
        grid-template-columns: 1fr;
    }

    .vim-objective-item {
        border-right: none;
    }

}


/* =====================================================
   CORE VALUES SECTION
===================================================== */

.core-values-section {
    width: 100%;
    padding: 90px 20px;
    background: #f7f8f6;
    font-family: Arial, Helvetica, sans-serif;
}

.core-values-container {
    max-width: 1200px;
    margin: auto;
}


/* =====================================================
   SECTION HEADER
===================================================== */

.core-values-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #c7863c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.core-values-header h2 {
    margin: 0 0 18px;
    color: #1d1d1d;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.core-values-header h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 18px auto 0;
    background: #c7863c;
    border-radius: 10px;
}

.core-values-header p {
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   VALUES GRID
===================================================== */

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =====================================================
   VALUE CARD
===================================================== */

.value-card {
    position: relative;
    overflow: hidden;
    padding: 35px 30px;
    min-height: 330px;

    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.value-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: #c7863c;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);

    border-color: #c7863c;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.value-card:hover::before {
    transform: scaleX(1);
}


/* =====================================================
   ICON
===================================================== */

.value-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: rgba(199, 134, 60, 0.10);
    border-radius: 50%;

    color: #c7863c;
    font-size: 25px;

    transition: all 0.35s ease;
}

.value-card:hover .value-icon {
    background: #c7863c;
    color: #ffffff;
    transform: rotateY(180deg);
}


/* =====================================================
   NUMBER
===================================================== */

.value-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: rgba(199, 134, 60, 0.10);

    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.value-card h3 {
    position: relative;

    margin: 0 0 15px;

    color: #202020;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.value-card p {
    margin: 0;

    color: #666;

    font-size: 14.5px;
    line-height: 1.8;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .core-values-section {
        padding: 70px 20px;
    }

    .core-values-header h2 {
        font-size: 36px;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .core-values-section {
        padding: 55px 15px;
    }

    .core-values-header {
        margin-bottom: 35px;
    }

    .core-values-header h2 {
        font-size: 30px;
    }

    .core-values-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .value-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .value-card h3 {
        font-size: 19px;
    }

    .value-card p {
        font-size: 14px;
    }

}




/* ===============================
   GLOBAL
================================ */

.expertise-section {
    background: #f7f8f6;
    padding: 90px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.expertise-container {
    max-width: 1200px;
    margin: auto;
}


/* ===============================
   HEADER
================================ */

.expertise-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.expertise-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C7863C;
    margin-bottom: 12px;
}

.expertise-header h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.15;
    color: #1e2a26;
}

.expertise-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #68716d;
}


/* ===============================
   CATEGORY
================================ */

.expertise-category {
    margin-bottom: 70px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C7863C;
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
}

.category-title h2 {
    margin: 0 0 5px;
    color: #1d2925;
    font-size: 27px;
}

.category-title p {
    margin: 0;
    color: #7a817e;
    font-size: 14px;
}


/* ===============================
   CARDS
================================ */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.expertise-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid #e7e9e6;
    min-height: 270px;
    overflow: hidden;
    transition: all .3s ease;
}

.expertise-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    border-color: #C7863C;
}

.expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #C7863C;
    transition: height .3s ease;
}

.expertise-card:hover::before {
    height: 100%;
}

.card-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #C7863C;
    margin-bottom: 18px;
}

.expertise-card h3 {
    margin: 0 0 15px;
    font-size: 19px;
    line-height: 1.4;
    color: #202a27;
}

.expertise-card p {
    margin: 0;
    color: #707875;
    font-size: 14px;
    line-height: 1.75;
}


/* ===============================
   QUOTE
================================ */

.expertise-quote {
    position: relative;
    margin-top: 20px;
    padding: 45px 55px;
    background: #1f2c27;
    border-radius: 18px;
    text-align: center;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: -25px;
    left: 30px;
    font-size: 130px;
    color: rgba(199,134,60,.15);
    font-family: Georgia, serif;
}

.expertise-quote p {
    position: relative;
    max-width: 850px;
    margin: 0 auto 18px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
}

.expertise-quote span {
    color: #C7863C;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   GEOGRAPHIC REACH
========================================================= */

.geographic-section {
    background: #ffffff;
    padding: 90px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.geographic-container {
    max-width: 1200px;
    margin: auto;
}

.geographic-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.geographic-header h2 {
    margin: 0 0 15px;
    font-size: 42px;
    color: #1e2a26;
}

.geographic-header p {
    margin: 0;
    color: #707875;
    line-height: 1.8;
    font-size: 15px;
}


/* ===============================
   MAP + LIST
================================ */

.geographic-content {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 60px;
    align-items: center;
}


/* ===============================
   MAP
================================ */

.map-area {
    display: flex;
    justify-content: center;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.bangladesh-map {
    display: block;
    width: 100%;
    height: auto;
}


/* ===============================
   MAP MARKERS
================================ */

.map-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #C7863C;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    z-index: 5;
}

.map-marker::after {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    top: -9px;
    left: -9px;
    border-radius: 50%;
    border: 2px solid rgba(199,134,60,.35);
    animation: mapPulse 2s infinite;
}


/* 
   Adjust these positions according to your
   exact Bangladesh map image.
*/

.chattogram {
    top: 51%;
    left: 72%;
}

.cox {
    top: 65%;
    left: 75%;
}

.bogura {
    top: 34%;
    left: 43%;
}

.barguna {
    top: 65%;
    left: 54%;
}

.noakhali {
    top: 54%;
    left: 64%;
}

.dinajpur {
    top: 22%;
    left: 35%;
}

.pirojpur {
    top: 60%;
    left: 55%;
}

.barisal {
    top: 57%;
    left: 57%;
}


@keyframes mapPulse {

    0% {
        transform: scale(.7);
        opacity: .8;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }

}


/* ===============================
   DISTRICT LIST
================================ */

.district-area {
    padding: 35px;
    background: #f7f8f6;
    border-radius: 18px;
}

.district-heading span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #C7863C;
}

.district-heading h3 {
    margin: 8px 0 25px;
    font-size: 25px;
    color: #1f2c27;
}

.district-list {
    display: flex;
    flex-direction: column;
}

.district-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #e1e4e1;
}

.district-item:last-child {
    border-bottom: none;
}

.district-item span {
    width: 28px;
    font-size: 11px;
    font-weight: 700;
    color: #C7863C;
}

.district-item strong {
    font-size: 15px;
    color: #303a36;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 900px) {

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .geographic-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .district-area {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .expertise-section,
    .geographic-section {
        padding: 60px 15px;
    }

    .expertise-header {
        margin-bottom: 50px;
    }

    .expertise-header h1 {
        font-size: 34px;
    }

    .geographic-header h2 {
        font-size: 32px;
    }

    .category-title {
        align-items: flex-start;
        gap: 14px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .category-title h2 {
        font-size: 21px;
    }

    .category-title p {
        font-size: 13px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .expertise-quote {
        padding: 35px 25px;
    }

    .expertise-quote p {
        font-size: 18px;
    }

    .district-area {
        padding: 25px 22px;
    }

}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .expertise-header h1 {
        font-size: 30px;
    }

    .category-title h2 {
        font-size: 19px;
    }

    .expertise-card h3 {
        font-size: 17px;
    }

}

.chattogram { top: 65%; left: 78%; }
.cox { top: 80%; left: 84%; }
.bogura { top: 28%; left: 30%; }
.barguna { top: 73%; left: 37%; }
.noakhali { top: 59%; left: 66%; }
.dinajpur { top: 16%; left: 16%; }
.pirojpur { top: 66%; left: 46%; }
.barisal { top: 59%; left: 47%; }






/* =========================================================
   MAIN SECTION
========================================================= */

.projects-section {
    background: #f6f7f5;
    padding: 100px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.projects-container {
    max-width: 1250px;
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.projects-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.projects-label {
    display: inline-block;
    color: #C7863C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.projects-header h1 {
    margin: 0 0 18px;
    font-size: 46px;
    color: #1e2925;
    line-height: 1.15;
}

.projects-header p {
    margin: 0;
    color: #6f7773;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FILTER
========================================================= */

.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.filter-btn {
    border: 1px solid #d9ddd9;
    background: #fff;
    color: #515b56;
    padding: 11px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #C7863C;
    border-color: #C7863C;
    color: #fff;
}


/* =========================================================
   GRID
========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e8e5;
    cursor: pointer;
    transition: .35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.09);
}


/* =========================================================
   IMAGE
========================================================= */

.project-image {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}


/* =========================================================
   NUMBER
========================================================= */

.project-number {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(31,44,39,.9);
    color: #fff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   CATEGORY
========================================================= */

.project-category {
    position: absolute;
    right: 15px;
    top: 15px;

    background: #C7863C;
    color: #fff;

    padding: 7px 11px;

    border-radius: 4px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   OVERLAY
========================================================= */

.project-overlay {
    position: absolute;
    inset: 0;

    background: rgba(31,44,39,.75);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: .3s;
}

.project-overlay span {
    color: #fff;
    border: 1px solid rgba(255,255,255,.7);
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.project-card:hover .project-overlay {
    opacity: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.project-content {
    padding: 25px;
}

.project-location {
    display: block;
    color: #C7863C;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-content h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.45;
    color: #202a27;
}

.project-content p {
    margin: 0 0 20px;
    color: #747b78;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CLIENT
========================================================= */

.project-client {
    padding-top: 15px;
    border-top: 1px solid #eceeec;
}

.project-client span {
    display: block;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #a0a6a3;

    margin-bottom: 5px;
}

.project-client strong {
    color: #3a4540;
    font-size: 12px;
}


/* =========================================================
   MODAL
   TEXT ONLY — NO PROJECT IMAGE
========================================================= */

.project-modal {
    position: fixed;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;
}

.project-modal.show {
    display: flex;
}


/* =========================================================
   MODAL OVERLAY
========================================================= */

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(10,18,15,.78);

    backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL BOX
========================================================= */

.project-modal-box {
    position: relative;

    width: 100%;
    max-width: 800px;

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 18px;

    z-index: 2;

    display: block;

    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.modal-content {
    padding: 50px 55px;
}

.modal-category {
    display: inline-block;

    color: #C7863C;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.modal-content h2 {
    margin: 0 0 18px;

    color: #1f2c27;

    font-size: 29px;
    line-height: 1.35;
}

.modal-location {
    color: #C7863C;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.modal-client {
    padding: 16px;

    background: #f6f7f5;

    border-left: 3px solid #C7863C;

    font-size: 13px;

    margin-bottom: 25px;
}

.modal-client strong {
    display: block;

    color: #8a918d;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.modal-client span {
    color: #303a35;

    font-weight: 600;
}

.modal-description {
    color: #626b67;

    font-size: 14px;

    line-height: 1.9;

    white-space: pre-line;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #222;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;

    transition: .3s;
}

.modal-close:hover {
    background: #C7863C;
    color: #fff;
}


/* =========================================================
   HIDDEN FILTER
========================================================= */

.project-card.hidden {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-modal-box {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .projects-section {
        padding: 65px 15px;
    }

    .projects-header h1 {
        font-size: 34px;
    }

    .projects-header p {
        font-size: 14px;
    }

    .project-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 22px;
    }

    .project-modal {
        padding: 10px;
    }

    .project-modal-box {
        max-height: 94vh;
        border-radius: 14px;
    }

    .modal-content {
        padding: 40px 23px 30px;
    }

    .modal-content h2 {
        font-size: 23px;
    }

    .modal-description {
        font-size: 13px;
        line-height: 1.8;
    }

}




/* =====================================================
   ORIZON INTERNATIONAL
   GET IN TOUCH / CONTACT SECTION
===================================================== */

.contact-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f7f7;
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    align-items: center;
}


/* =====================================================
   LEFT SIDE - CONTACT INFORMATION
===================================================== */

.contact-info {
    width: 100%;
}

.contact-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    color: #C7863C;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 700;
}

.contact-description {
    max-width: 540px;

    margin: 0 0 32px;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   CONTACT INFORMATION ITEMS
===================================================== */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 23px;
}


/* =====================================================
   ICON CIRCLE
===================================================== */

.contact-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #C7863C;

    box-sizing: border-box;
}


/* =====================================================
   SVG ICONS
===================================================== */

.contact-icon svg {
    width: 22px;
    height: 22px;

    display: block;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CONTACT TEXT
===================================================== */

.contact-details {
    padding-top: 1px;
}

.contact-details h4 {
    margin: 0 0 5px;

    color: #172033;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 700;
}

.contact-details p {
    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.6;
}

.contact-details a {
    color: #666;

    font-size: 15px;

    line-height: 1.6;

    text-decoration: none;

    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #C7863C;
}


/* =====================================================
   RIGHT SIDE - FORM BOX
===================================================== */

.contact-form-box {
    width: 100%;

    padding: 40px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.contact-form-box h3 {
    margin: 0 0 10px;

    color: #172033;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 700;
}

.contact-form-box > p {
    margin: 0 0 25px;

    color: #777;

    font-size: 15px;

    line-height: 1.6;
}


/* =====================================================
   FORM ROW
===================================================== */

.form-row {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =====================================================
   FORM GROUP
===================================================== */

.form-group {
    width: 100%;

    margin-bottom: 15px;

    box-sizing: border-box;
}


/* =====================================================
   INPUT + TEXTAREA
===================================================== */

.form-group input,
.form-group textarea {
    width: 100%;

    display: block;

    box-sizing: border-box;

    border: 1px solid #dddddd;

    border-radius: 5px;

    background: #fafafa;

    color: #333;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* INPUT */

.form-group input {
    height: 50px;

    padding: 0 16px;
}


/* TEXTAREA */

.form-group textarea {
    min-height: 140px;

    padding: 14px 16px;

    resize: vertical;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;

    opacity: 1;
}


/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
    border-color: #C7863C;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(199, 134, 60, 0.10);
}


/* =====================================================
   SEND MESSAGE BUTTON
===================================================== */

.contact-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 13px 25px;

    border: none;

    border-radius: 5px;

    background: #C7863C;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.contact-btn:hover {
    background: #a86d2d;

    transform: translateY(-2px);
}

.contact-btn:active {
    transform: translateY(0);
}


/* =====================================================
   BUTTON ARROW SVG
===================================================== */

.contact-btn svg {
    width: 18px;
    height: 18px;

    display: block;

    fill: none;

    stroke: #ffffff;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   BUTTON LOADING STATE
===================================================== */

.contact-btn.loading {
    opacity: 0.7;

    cursor: not-allowed;

    pointer-events: none;

    transform: none;
}

.contact-btn.loading svg {
    display: none;
}


/* =====================================================
   SUCCESS / ERROR MESSAGE
===================================================== */

.form-message {
    display: none;

    width: 100%;

    padding: 12px 15px;

    margin-bottom: 18px;

    border-radius: 5px;

    box-sizing: border-box;

    font-size: 14px;

    line-height: 1.5;
}


/* SUCCESS */

.success-message {
    background: #eaf7ed;

    color: #247a3b;

    border: 1px solid #b9e3c2;
}


/* ERROR */

.error-message {
    background: #fff0f0;

    color: #b42318;

    border: 1px solid #f0b8b8;
}


/* =====================================================
   HIDDEN WEB3FORMS BOT CHECK
===================================================== */

.contact-form-box input[name="botcheck"] {
    display: none !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .contact-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-form-box {
        padding: 32px;
    }
}


/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 800px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-description {
        max-width: 650px;
    }

    .contact-form-box {
        max-width: 700px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .contact-section {
        padding: 60px 15px;
    }

    .contact-container {
        gap: 35px;
    }

    .contact-info h2 {
        font-size: 30px;

        line-height: 1.2;
    }

    .contact-subtitle {
        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .contact-description {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 28px;
    }

    .contact-item {
        gap: 14px;

        margin-bottom: 20px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;

        min-width: 44px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h4 {
        font-size: 15px;
    }

    .contact-details p,
    .contact-details a {
        font-size: 14px;
    }

    .contact-form-box {
        padding: 25px 20px;

        border-radius: 8px;
    }

    .contact-form-box h3 {
        font-size: 24px;
    }

    .contact-form-box > p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group input {
        height: 48px;
    }

    .form-group textarea {
        min-height: 130px;
    }

    .contact-btn {
        width: 100%;

        min-height: 48px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .contact-section {
        padding: 50px 12px;
    }

    .contact-info h2 {
        font-size: 27px;
    }

    .contact-form-box {
        padding: 22px 16px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;
    }
}








/* =====================================================
   ORIZON INTERNATIONAL - PREMIUM FOOTER
===================================================== */

.modern-footer {
    position: relative;
    width: 100%;
    background: #111318;
    color: #d7d7d7;
    overflow: hidden;
    margin-top: 80px;
}


/* =====================================================
   TOP BRAND LINE
===================================================== */

.modern-footer::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #9a642c,
        #c7863c,
        #e0ad68,
        #c7863c,
        #9a642c
    );

}


/* =====================================================
   DECORATIVE CIRCLE
===================================================== */

.modern-footer::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;

    background: #c7863c;
    opacity: 0.05;
    pointer-events: none;

}


/* =====================================================
   CONTAINER
===================================================== */

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
    padding: 45px 35px 18px;

}

/* =====================================================
   GRID
===================================================== */

.footer-grid {
    display: grid;
    grid-template-columns:
        1.8fr
        1fr
        1.5fr;
    gap: 45px;

}


/* =====================================================
   FOOTER COLUMN
===================================================== */

.footer-col h3 {

    position: relative;
    margin: 0 0 28px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Heading underline */

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #c7863c;
    border-radius: 20px;

}


/* =====================================================
   COMPANY DESCRIPTION
===================================================== */

.company-col p {
    max-width: 430px;
    margin: 0;
    color: #aeb0b4;
    font-size: 14.5px;
    line-height: 1.9;

}


/* =====================================================
   QUICK LINKS
===================================================== */

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-col ul li {

    margin-bottom: 15px;

}


.footer-col ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #bdbfc3;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;

}
/* Arrow */

.footer-col ul li a::before {
    content: "›";
    margin-right: 9px;
    color: #c7863c;
    font-size: 20px;
    line-height: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(6px);

}

.footer-col ul li a:hover::before {

    color: #e0ad68;

}

/* =====================================================
   CONTACT
===================================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;

}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

}
.contact-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 134, 60, 0.10);
    color: #c7863c;
    border-radius: 9px;
    font-size: 16px;
}

.contact-item span {
    padding-top: 2px;
    color: #bdbfc3;
    font-size: 14px;
    line-height: 1.7;

}

/* =====================================================
   COMPANY PROFILE BUTTON
===================================================== */
.profile-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 18px;
    background: #c7863c;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-download i {
    font-size: 16px;
}


.profile-download:hover {
    background: #a96f32;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(199, 134, 60, 0.20);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);

}

.footer-bottom p {
    margin: 0;
    color: #85878c;
    font-size: 13px;
    line-height: 1.6;

}

.footer-bottom span {

    color: #c7863c;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .footer-content {

        padding: 40px 30px 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .company-col {
        grid-column: 1 / -1;
    }
    .company-col p {

        max-width: 700px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
    .modern-footer {
        margin-top: 60px;
    }
    .footer-content {
        padding: 40px 22px 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;

    }
    .company-col {
        grid-column: auto;
    }
    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .company-col p {
        max-width: 100%;
    }

    .profile-download {
        margin-top: 20px;
    }
    .footer-col ul li a {
        justify-content: center;
    }

    .contact-item {
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;

    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
         margin-top: 30px;
        padding-top: 15px;margin-top: 40px;

    }

}










