:root {
    --gold: #D4AF37;
    --black: #1C1C1C;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--black);
    color: var(--gold);
}

/* HEADER */
.main-header {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
    margin-right: 3%;
    background-color: var(--black);
    border-bottom: 2px solid var(--gold);
    position: fixed;
    width: 100%;
    z-index: 10001;
}

.logo img {
    height: 30px;
}

/* Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.menu-icon span {
    background: var(--gold);
    height: 3px;
    width: 25px;
    display: block;
}

 .carousel-bg {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  /* Slides */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  /* Text overlay container */
  .text-overlay {
    position: absolute;
    left: -100%;
    bottom: 5%;
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    padding: 20px 4px;
    border-radius: 12px;
    font-size: 1.4em;
    text-align: center;
    width: 80%;
    opacity: 0;
    transition: all 1s ease-in-out;
    z-index: 101;
  }

  .text-overlay.active {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
  }

  .overlay-fade {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
    top: 0;
    left: 0;
    z-index: 0;
  }

/* Search Icon */
.search-icon {
    cursor: pointer;
    font-size: 20px;
    color: var(--gold);
    margin-right: 100px;
    margin-left: 100px;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 10px;
    
    
}
.desktop-nav a {
    text-decoration: none;
    color: var(--gold);
    font-weight: bold;
    position: sticky;
    margin-left: auto;
}
.desktop-nav a:hover {
    color: var(--gold);
}
.dropdown {
    position: relative;
    float: left;
    margin-left: auto;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--black);
    top: 100%;
    left: 0;
    border: 1px solid var(--gold);
    z-index: 1000;
    float: left;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    display: fixed;
    top: 50px;
    left: -70%;
    width: 70%;
    height: 100%;
    background-color: var(--black);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
}
.mobile-menu li {
    padding: 15px;
    border-bottom: 1px solid var(--gold);
}
.mobile-menu a {
    color: var(--gold);
    text-decoration: none;
}
.sub-toggle {
    float: right;
    cursor: pointer;
    color: var(--gold);
}
.desktop-nav .dropdown > a {
    padding-right: 1px;
}

.sub-menu {
    display: none;
    background-color: black;
}
.sub-menu li {
    padding-left: 20px;
}

/* Search Window */
.search-window {
    display: none;
    position: fixed;
    background-color: var(--black);
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.search-window.desktop {
    width: 80%;
    height: 60%;
    top: 20%;
    left: 10%;
    border: 2px solid var(--gold);
    border-radius: 8px;
}
.search-header input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    background-color: var(--black);
    border: 2px solid var(--gold);
    color: white;
    width: 90%;
    border-radius: 4px;
    outline: none;
}
.search-header input::placeholder {
    color: #ccc;
}

.search-icon img{
    width: 25px;
    height: 25px;
}


.close-search {
    cursor: pointer;
    font-size: 20px;
    color: var(--gold);
}


/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .menu-icon {
        display: flex;
    }
    .logo {
        order: 2;
    }
    .search-icon {
        order: 3;
    }
    
 .search-header input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    background-color: var(--black);
    border: 2px solid var(--gold);
    color: white;
    width: 80%;
    }
    
 .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--black);
    border-bottom: 2px solid var(--gold);
    position: fixed;
    width: 90%;
    z-index: 1000;
}
 .search-icon {
    cursor: pointer;
    font-size: 20px;
    color: var(--gold);
    margin-right: 0px;
    margin-left: 0px;
}

.hero-section img{
    width: 100%;
    height: 300px;
}

.text-slider {
    position: absolute;
    bottom: 30px; /* adjustable */
    left: 30px;   /* adjustable */
    max-width: 300px; /* adjustable width */
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent */
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: 12px;
    overflow: hidden;
    white-space: normal;
}


}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-icon.active span:nth-child(2) {
    opacity: 0;
}
.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.menu-icon span {
    transition: all 0.3s ease;
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
.sub-menu.open {
    max-height: 500px; /* enough space to fit items */
    opacity: 1;
}

.bottom-nav{
    margin-bottom: 50px;
}

.bottom-nav p{
    margin-left: 10px;
    font-size: 17px;
    font-weight: bold;
}





/* Full section background */
.hero-section {
    position: relative;
    width: 100%;
    height: 800px;
    background: url('assets/background.gif');
    overflow: hidden;
}

/* Text slider container */
.text-slider {
    position: absolute;
    bottom: 30px; /* adjustable */
    left: 0px;   /* adjustable */
    max-width: 500px; /* adjustable width */
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent */
    color: var(--gold);
    font-size: 0.7rem;
    border-radius: 12px;
    overflow: hidden;
    white-space: normal;
}

/* Slide-in animation */
.text-slider span {
    display: inline-block;
    transform: translateX(-120%);
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ECON SECTION STYLES */
.econ-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 30px 2%;
    gap: 20px;
    flex-wrap: wrap; /* stacks on mobile */
}

.econ-text {
    flex: 1;
    min-width: 300px;
}

.econ-text h2 {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 15px;
}

.econ-text p {
    font-size: 0.7rem;
    color: var(--gold);
    line-height: 1.6;
}

.econ-video {
    flex: 1;
    min-width: 100px;
}

#econ-video-player{
    width: 100%;
    height: 615;
    border: 2px solid var(--gold);
}

.econ-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .econ-section {
        padding: 30px 5%;
    }

    .econ-text h2 {
        font-size: 1.5rem;
    }

    .econ-text p {
        font-size: 1rem;
    }
}

/*...Brands...*/
.brandsimg img{
    align-items: center;
    width: 100%;
}
.trusted-by-section {
  background-color: var(--gold);
  padding: 10px 10px;
  text-align: center;
  height: 30px;
}

.trusted-by-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #003366;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: fit-content;
  animation: scrollMarquee 20s linear infinite;
}

.marquee-track img {
  height: 50px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* Marquee animation */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* END OF MARQUEE */
/* JOIN SECTION STYLES */
.join-section {
    display: flex;
    justify-content: space-between;
    align-items: left;
    background: #fff;
    background-image: url("joinbg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 1px;
    flex-wrap: wrap; /* stacks on mobile */
    margin-bottom: 10px;
}

.join-image {
    flex: 1;
    min-width: 200px;
}

.join-image img {
    width: 100%;
    border-radius: 12px;
    margin-top: 100px;
}

.join-text {
    flex: 1;
    min-width: 500px;
    color: var(--gold);
    margin-top: 20%;
    margin-bottom: 10px;
    
}

.join-text h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    
}

.join-text p {
    font-size: 0.6rem;
    line-height: 1.6;
    margin-bottom: 0px;
    padding: 10%;
    background: rgba(0, 0, 0, 0.5);
}

.join-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold);
    color: black;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px; /* curved edges */
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.join-btn:hover {
    background: #d4af37; /* darker gold */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .join-section {
        padding: 30px 5%;
    }

    .join-image {
        display: none;
      }
    .join-text h2 {
        font-size: 1.7rem;
    }

    .join-text p {
        font-size: 1.3rem;
    }
    
    .join-text {
    flex: 1;
    min-width: 300px;
    color: var(--gold);
}
    
    .join-text p {
    font-size: 0.7rem;
    line-height: 1.6;
    margin-bottom: 0px;
    padding: 2%;
}

}

/* End of join-us*/
/* Global Section Style */
.alt-section {
    padding: 20px 5%;
    margin-top: -20px;
    display: flex;
    justify-content: space-between;
}

.alt-sec1-text p,
.alt-sec2-text p,
.alt-sec3-text p,
.alt-sec4-text p{
    font-size: 0.8em;
}


.alt-sec1 > div,
.alt-sec2 > div,
.alt-sec3 > div,
.alt-sec4 > div{
    flex: 1;
    padding: 20px;
}

/* Section 1 */
#alt-sec1 .alt-sec1-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
}
#alt-sec1 .alt-sec1-text {
  
}
#alt-sec1 .alt-sec1-image img {
    width: 100%;
    border-radius: 10px;
}
#alt-sec1 .alt-sec1-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Section 2 */
#alt-sec2 .alt-sec2-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
}
#alt-sec2 .alt-sec2-image img {
    width: 100%;
    border-radius: 10px;
}
#alt-sec2 .alt-sec2-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Section 3 */
#alt-sec3 .alt-sec3-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
}
#alt-sec3 .alt-sec3-image img {
    width: 100%;
    border-radius: 10px;
}
#alt-sec3 .alt-sec3-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Section 4 */
#alt-sec4 .alt-sec4-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
}
#alt-sec4 .alt-sec4-image img {
    width: 100%;
    border-radius: 10px;
}
#alt-sec4 .alt-sec4-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile View */
@media (max-width: 768px) {
    #alt-sec1 .alt-sec1-content,
    #alt-sec2 .alt-sec2-content,
    #alt-sec3 .alt-sec3-content,
    #alt-sec4 .alt-sec4-content {
        flex-direction: column;
    }
  
  /* Make sure image div always comes first */
  
  .alt-sec1-content .alt-sec1-img,
  .alt-sec2-content .alt-sec2-img,
  .alt-sec3-content .alt-sec3-img,
  .alt-sec4-content .alt-sec4-img {
    order: -1; /* push images above text */
  }

  /* Adjust spacing */
  .alt-sec1-content1 > div,
  .alt-sec1-content2 > div,
  .alt-sec1-content3 > div,
  .alt-sec1-content4 > div {
    padding: 1px;
  }

}

/* End of quick access */
.carrier img{
    width: 100%;
    height: 800px;
}
/* Career Section Styling */
#careerSection-bg {
    background: url('assets/cb.png') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

#careerSection-overlay {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent */
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
}

#careerSection-header {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#careerSection-text {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Reusing regular button design */
#careerSection-btn {
    background: #d4af37; /* Gold color */
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#careerSection-btn:hover {
    background: #b8902d;
}

/* Mobile View */
@media (max-width: 768px) {
    #careerSection-header {
        font-size: 1.6rem;
    }

    #careerSection-text {
        font-size: 1rem;
    }
}
