/* ==================================================
   ROADLEX – ULTRA CLEAN CORPORATE STYLE (NO GRADIENTS)
   ================================================== */

:root{
  --white:#ffffff;
  --black:#111111;
  --muted:#6b6b6b;
  --line:#eaeaea;

  --primary:#f3a51f;
  --primary-dark:#f9a109;

  --radius:14px;
  --container:1200px;

  --shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* ===== GLOBAL ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:var(--white);
  color:var(--black);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(var(--container),92%);
  margin:auto;
}

.section{
  padding:90px 0;
}

.sectionHead{
  text-align:center;
  margin-bottom:60px;
}

.sectionHead h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
}

.sectionHead p{
  color:var(--muted);
}

/* ===== HEADER ===== */

.header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand__logo{
  width:50px;
}

.brand__name{
  font-weight:800;
  font-size:18px;
}

.brand__tag{
  font-size:12px;
  color:var(--muted);
}

.nav__menu{
  list-style:none;
  display:flex;
  gap:28px;
}

.nav__link{
  font-weight:600;
  color:var(--muted);
  transition:.3s;
}

.nav__link:hover{
  color:var(--primary);
}

.nav__link--cta{
  background:var(--primary);
  color:#fff;
  padding:10px 18px;
  border-radius:var(--radius);
}

.nav__link--cta:hover{
  background:var(--primary-dark);
}

/* ===== MOBILE NAV ===== */

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
/* ===== HERO ===== */


.btn{
  padding:14px 24px;
  border-radius:var(--radius);
  font-weight:600;
  display:inline-block;
  transition:.3s;
}

.btn--primary{
  background:var(--primary);
  color:#fff;
}

.btn--primary:hover{
  background:var(--primary-dark);
}

.btn--ghost{
  border:2px solid var(--primary);
  color:var(--primary);
  margin-left:15px;
}

.btn--ghost:hover{
  background:var(--primary);
  color:#fff;
}

/* ===== AUTHORITIES MARQUEE ===== */

.marquee{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.marquee__track{
  display:flex;
  gap:40px;
  padding:20px 0;
  animation:scroll 25s linear infinite;
}

@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== ABOUT ===== */

/* =============================
   ABOUT SECTION - NEW MODEL
   ============================= */

.aboutNew {
  background: #ffffff;
}

.aboutNew__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.aboutNew__text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutNew__text p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.8;
}

.aboutNew__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.aboutCardItem {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.aboutCardItem:hover {
  transform: translateY(-6px);
}

.aboutCardItem img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.aboutCardItem h4 {
  padding: 18px;
  font-weight: 600;
  font-size: 16px;
}

/* Responsive */

@media (max-width: 992px) {
  .aboutNew__grid {
    grid-template-columns: 1fr;
  }

  .aboutNew__cards {
    grid-template-columns: 1fr;
  }



  .nav__toggle {
  display: flex;
}

.nav__menu {
  position: absolute;
  top: 70px;
  right: 0;
  background: #fff;
  width: 250px;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transform: translateX(100%);
  transition: 0.3s ease;
}

.nav__menu.isOpen {
  transform: translateX(0);
}


}



/* ================= PROJECTS ================= */

.projectsGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.projectCard{
  border:1px solid #eaeaea;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.projectCard:hover{
  transform:translateY(-6px);
}

.projectCard img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.projectBody{
  padding:18px;
}

.projectBody h4{
  font-weight:600;
  margin-bottom:6px;
}

.projectBody span{
  color:#666;
  font-size:14px;
}

/* ================= MODAL ================= */

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
}

.modal.isOpen{
  display:flex;
}

.modal__panel{
  background:#fff;
  width:90%;
  max-width:900px;
  border-radius:16px;
  padding:30px;
  position:relative;
}

.modal__close{
  position:absolute;
  right:20px;
  top:20px;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

.viewer{
  position:relative;
  margin-top:20px;
}

.viewerStage{
  height:450px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  overflow:hidden;
}

.viewerStage img,
.viewerStage video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.viewerBtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.5);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
}

.viewerBtn.prev{ left:10px; }
.viewerBtn.next{ right:10px; }

.viewerCounter{
  text-align:center;
  margin-top:15px;
  font-weight:600;
}





/* ===== SERVICES ===== */

.servicesGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.serviceCard{
  text-align:center;
  padding:40px 25px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:.3s;
}

.serviceCard:hover{
  transform:translateY(-5px);
}

.serviceIcon{
  font-size:45px;
  color:var(--primary);
  margin-bottom:18px;
}

/* ===== PROJECTS ===== */

.projectsGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.projectCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  transition:.3s;
}

.projectCard:hover{
  transform:translateY(-6px);
}

.projectBody{
  padding:20px;
}

.projectTitle{
  font-weight:700;
  margin-bottom:6px;
}

.projectMeta{
  font-size:14px;
  color:var(--muted);
}

/* ===== GALLERY ===== */

.galleryMarquee{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.galleryMarquee__track{
  display:flex;
  gap:20px;
  padding:20px 0;
  animation:scroll 30s linear infinite;
}

.galleryItem{
  width:280px;
  height:180px;
  border-radius:var(--radius);
  overflow:hidden;
}

/* ===== CONTACT ===== */

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

.contactCard{
  border:1px solid var(--line);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.contactItem{
  margin-bottom:20px;
}

.contactItem i{
  color:var(--primary);
  margin-right:8px;
}

.mapCard iframe{
  width:100%;
  height:100%;
  min-height:350px;
  border:none;
  border-radius:var(--radius);
}


/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #f3a51f;
}

.footer__col a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer__col a:hover {
  color: #d68801;
}

.footer__logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer__desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.footer__social a:hover {
  background: #be7902;
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

.nav__toggleLine {
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ===== MODAL ===== */

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
}

.modal.isOpen{
  display:flex;
}

.modal__panel{
  background:#fff;
  width:90%;
  max-width:900px;
  border-radius:var(--radius);
  padding:30px;
  max-height:90vh;
  overflow:auto;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){



  .servicesGrid,
  .projectsGrid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .servicesGrid,
  .projectsGrid{
    grid-template-columns:1fr;
  }

  .nav__menu{
    display:none;
    flex-direction:column;
    position:absolute;
    right:20px;
    top:80px;
    background:#fff;
    border:1px solid var(--line);
    padding:20px;
    border-radius:var(--radius);
  }

  .nav__menu.isOpen{
    display:flex;
  }

.nav__toggle{
  display:flex;
}


}



/* =============================
   ROADLEX HERO – ORIGINAL STYLE
   ============================= */

.hero {
  position: relative;
  height: 100vh;
  background: url("img/header.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero__title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__title span {
  color: #f3a51f; /* Your brand orange */
}

.hero__subtitle {
  font-size: 20px;
  color: #dddddd;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn--primary {
  background:var(--primary-dark);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary);
}

.btn--outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn--outline:hover {
  background: #ffffff;
  color: #000;
}

/* Responsive */

@media (max-width: 992px) {
  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 32px;
  }

  .hero {
    height: 85vh;
  }
}


/* =========================
   AUTHORITIES LOGO SECTION
   ========================= */

.marquee {
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 30px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.marquee__track img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: 0.3s ease;
}

.marquee__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infinite scroll animation */

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .marquee__track {
    gap: 40px;
  }

  .marquee__track img {
    height: 45px;
  }
}


/* ==============================
   ULTRA PREMIUM GALLERY
   ============================== */

.galleryPremium {
  background: #ffffff;
  padding-bottom: 0;
}

.galleryWrapper {
  overflow: hidden;
  position: relative;
  padding: 60px 0;
}

/* Fade edges effect */
.galleryWrapper::before,
.galleryWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.galleryWrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.galleryWrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.galleryTrack {
  display: flex;
  gap: 30px;
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}

.galleryWrapper:hover .galleryTrack {
  animation-play-state: paused;
}

.galleryItem {
  flex: 0 0 420px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  cursor: pointer;
  transition: 0.4s ease;
}

.galleryItem:hover {
  transform: translateY(-10px);
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.galleryItem:hover img {
  transform: scale(1.08);
}

/* Smooth infinite animation */
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media(max-width:768px){
  .galleryItem{
    flex: 0 0 300px;
    height: 220px;
  }
}