/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px 16px 40px; /* space for fixed header + bottom */
  display: flex;
    align-items: center;
    justify-content: center;
  overflow: hidden;
    /* Modern soft gradient background */
    background: linear-gradient(135deg, #fff9ec 0%, #ffe2b8 40%, #ffd6f0 100%);
}

/* MAIN WRAPPER */
.hero-wrapper {
  width: 100%;
  max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hero-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
    margin-top: 40px; /* padding from fixed header */
}

.hero-image img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
}

/* Right column: companies list */
.hero-companies {
    flex: 1 1 40%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.hero-companies-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b35b00;
    margin-bottom: 12px;
}

.hero-company-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-company-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-company-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-company-item span {
    font-size: 0.8rem;
    color: #333333;
}

.hero-company-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    background-color: #fff9ed;
}
@media (max-width: 768px) {

  .hero-section {
    min-height: 80vh;
    padding: 110px 12px 32px;
  }

  .hero-image img {
    max-width: 100%;
  }
  
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-main,
    .hero-companies {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .hero-companies {
        margin-top: 24px;
    }
}



/*--------------------------------------------------------------
# Global Header (Default - Top)
--------------------------------------------------------------*/
.header {
  --background-color: #fbf3e4;   /* Cream */
  --default-color: #000000;
  --heading-color: #000000;
  --nav-color: #000000;
  --nav-hover-color: orange;

  background-color: var(--background-color);
  color: var(--default-color);
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Header on Scroll
--------------------------------------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;

  background-color: var(--background-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1200px) {

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
  }

  /* ORANGE UNDERLINE */
  .navmenu > ul > li > a::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    width: 0;
    background-color: orange;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  /* Hover / Focus / Active */
  .navmenu a:hover::before,
  .navmenu a:focus::before,
  .navmenu .active::before,
  .navmenu li:hover > a::before {
    visibility: visible;
    width: 100%;
  }

  /* Text color stays readable */
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }
}
.mobile-nav-toggle {
  color: var(--nav-color);
  transition: color 0.3s ease;
}

.scrolled .mobile-nav-toggle {
  color: #ffffff;
}





/* ORANGE THEME VARIABLES */
:root {
    --orange-primary: #ff7a00;
    --orange-dark: #e86c00;
    --orange-light: #fff3e6;
    --text-dark: #222;
}

/* About Section Background */
.about-section {
    background: linear-gradient(135deg, #fff8f1, #ffffff);
}

/* Image Styling */
.about-section img {
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15); */
}

/* Sub Title */
.about-section .sub-title {
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Heading */
.about-section h1 {
    color: var(--text-dark);
    font-weight: 700;
}

.about-section h1 .text-primary {
    color: var(--orange-primary) !important;
}

/* Paragraph */
.about-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Button */
.about-section .btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border: none;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
    transition: all 0.3s ease;
}

.about-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
    transform: translateY(-3px);
}
.cmd-desk {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #fff5ec, #ffffff);/
     */
  background: rgba(255, 255, 255, 0.85);
    }

.cmd-card {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12); */
    position: relative;
}

/* Orange Glow Line */
.cmd-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    width: 6px;
    height: 80%;
    background: linear-gradient(#ff7a00, #ffb066);
    border-radius: 10px;
}

/* Image */
.cmd-img img {
    width: 500px;
    border-radius: 25px;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2); */
}

/* Badge */
.cmd-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #ff7a00;
    color: #fff;
    font-size: 13px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* Headings */
.cmd-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cmd-info h2 span {
    color: #ff7a00;
}

/* Quote */
.cmd-quote {
    font-size: 19px;
    font-style: italic;
    color: #ff7a00;
    margin-bottom: 25px;
    position: relative;
}

/* Text */
.cmd-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Signature */
.cmd-sign {
    margin-top: 30px;
}

.cmd-sign strong {
    font-size: 18px;
    color: #222;
    display: block;
}

.cmd-sign span {
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 991px) {
    .cmd-card {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }

    .cmd-card::before {
        display: none;
    }

    .cmd-img img {
        width: 260px;
    }
}


/* COMPANY LIST – ONE LINE */
.company-section {
    width: 100%;
    padding: 20px 0;
}

/* Container */
.company-list-container1 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Company row */
.company-list1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: max-content;
    margin: 0 auto;

    transform: translateX(-30px);
}

/* Card */
.company-card1 {
    flex: 0 0 auto;
    width: 200px;
    padding: 14px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.company-card1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hover */
.company-card1:hover {
    transform: translateY(-6px) scale(1.05);
}

/* Side fade */
.company-list-container1::before,
.company-list-container1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.company-list-container1::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.company-list-container1::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

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

    .company-list-container1 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .company-list1 {
        justify-content: flex-start;
        padding-left: 20px;
        transform: none;
    }

    .company-card {
        width: 100px;
    }

    /* Hide fade on mobile */
    .company-list-container1::before,
    .company-list-container1::after {
        display: none;
    }
}

/* LAPTOP FRAME */
.laptop-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.laptop-wrapper {
    position: relative;
    width: 900px;
}

.laptop-mockup {
    width: 100%;
    display: block;
}

/* SCREEN INSIDE LAPTOP */
.screen-content {
    position: absolute;
    top: 9%;
    left: 12%;
    width: 76%;
    height: 82%;
    overflow: hidden;
    border-radius: 8px;
}

.screen-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .laptop-wrapper {
        width: 100%;
    }
}
.laptop-container {
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

/* Laptop wrapper */
.laptop-wrapper {
    position: relative;
    width: 900px;   /* adjust based on image */
    max-width: 100%;
}

/* Laptop image */
.laptop-mockup {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

/* Screen position inside laptop */
.laptop-screen {
    position: absolute;
    top: 31%;    
    left: 24%;
    width: 61%;
    height: 40%;
    /* background: #000; */
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
}

/* Iframe inside screen */
.laptop-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(0.85);     /* makes site fit nicely */
    transform-origin: top left;
}



.laptop-container {
  position: relative;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: url("../image/logo/bk.png"); /* your bg */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional dark overlay for contrast */
.laptop-container::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 1;
}

/* Keep laptop above background */
.laptop-wrapper {
  position: relative;
  z-index: 2;
}



.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .map-responsive {
    padding-bottom: 75%; /* Taller map on mobile */
    border-radius: 12px;
  }
}
