/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gold: #DFCB99;
  --secondary-gold: #f9f6ef;
  --dark-accent: #111111;
  --darker-accent: #0a0a0a;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #fbf9f1;
  --bg-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-accent);
}

p {
  line-height: 28px;
  font-weight: 300;
  font-size: 1.1rem;
}

/* Custom Utilities */
.text-gold {
  color: var(--primary-gold) !important;
}

.bg-gold {
  background-color: var(--primary-gold) !important;
}

.bg-dark-accent {
  background-color: var(--dark-accent) !important;
  color: var(--text-light);
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--dark-accent);
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-gold:hover {
  background-color: #000;
  color: var(--primary-gold);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: #000;
}

/* Navbar */
.navbar {
  background-color: transparent;
  backdrop-filter: blur(2px);
  transition: all 0.4s ease;
  padding: 15px 0;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); */
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: var(--darker-accent);
}

.navbar-brand {
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-light) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-brand span {
  color: var(--primary-gold);
}

.nav-link {
  font-weight: 500;
  color: #aaaaaa !important;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--darker-accent);
  color: var(--text-light);
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at right center, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 1) 70%); */
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(../assets/images/main-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-light);
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--primary-gold);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 50px;
  color: #dddddd;
  /* max-width: 600px; */
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  text-align: right;
}

.hero-image {
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
  animation: float 6s ease-in-out infinite;
  margin-left: -10%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Sections */
.section-padding {
  padding: 120px 0;
}

.section-title {
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-gold);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
}

/* About Section */
.about-image {
  border-radius: 20px;
  box-shadow: -20px 20px 0px rgba(212, 175, 55, 0.2);
}

.stats-box {
  background: #faf9f2;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 15px;
  border-bottom: 4px solid var(--primary-gold);
}

/* Expertise & Features */
.expertise-card {
  padding: 50px 40px;
  background: var(--bg-white);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.expertise-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
  background: linear-gradient(145deg, #ffffff, #fcf9ee);
}

.expertise-icon {
  font-size: 3.5rem;
  color: var(--primary-gold);
  margin-bottom: 30px;
}
.expertise-card h4{
  font-weight: 500;
}
/* Timeline Process */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: rgba(212, 175, 55, 0.3);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -12.5px;
}

.timeline-content {
  padding: 30px;
      background-color: #faf9f2;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 9%);
  border-left: 5px solid var(--primary-gold);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Products Portfolio */
.product-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.product-img-wrapper {
  height: 220px;
  overflow: hidden;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img {
  max-width: 100%;
  max-height: auto;
  transition: transform 0.6s ease;
  object-fit: cover;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Contact Page */
.contact-section {
  background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('../assets/images/hero-bike.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-light);
}

.contact-section .section-title,
.contact-section h2,
.contact-section h5 {
  color: var(--text-light);
}
.contact-section h5{
  font-weight: 500;
}
.contact-form {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  color: var(--text-dark);
}

.form-control {
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  background-color: var(--bg-white);
}

/* Footer */
footer {
  background-color: var(--darker-accent);
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
footer h4{
  font-weight: 500;
}
.social-icons {
  display: flex;
  /* flex-direction: column; */
  gap: 15px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--primary-gold);
  margin-right: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.social-icons a:hover {
  background-color: var(--primary-gold);
  color: var(--dark-accent);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #888888;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent;
}
/* Responsive */
@media (max-width: 991px) {
  .hero-title { font-size: 3.5rem; }
  .hero-section { text-align: center; padding-top: 150px; }
  .hero-image-wrapper { margin-top: 50px; text-align: center; }
  .hero-image { margin-left: 0; max-width: 100%; }
  
  .timeline::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-item::after { left: 18px; }
  .right { left: 0%; }
}



.why-choose {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

/* Hover */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Top gold line */
.card::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #c8a96a, #e6c88c);
  top: 0;
  left: 0;
  transition: 0.4s;
}

.card:hover::before {
  width: 100%;
}

/* ICON */
.icon {
  font-size: 34px;
  margin-bottom: 15px;
}

/* TEXT */
.why-choose h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}


/* ANIMATION */
.card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}


.section-export {
  padding: 100px 20px;
  background-color: #fff;
}

/* TOP GRID */
.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

/* TEXT */
.top-grid .content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}


/* IMAGE */
.top-grid .image img {
  width: 100%;
  border-radius: 20px;
}

/* BOTTOM GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card-grid .card {
  background: rgb(249 249 242);
  padding: 20px;
  border-radius: 20px;
  /* border: 1px solid rgba(255,255,255,0.08); */
  transition: 0.4s;
  border-bottom: 4px solid var(--primary-gold)
}

.card-grid .card:hover {
  transform: translateY(-10px);
  border-color: #c8a96a;
  box-shadow: 0 10px 40px rgba(200,169,106,0.2);
}

.card-grid .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.card-grid .card h3 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .top-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial{
    padding:60px 30px;
    background-color: #fff;
    border: 1px solid #f4f3ef;
}

/* HEADER */
.header-slide{
    margin:auto;
    margin-bottom:50px
}


/* ARROWS */
.nav-btn{
    display: flex;
    gap: 10px;
    justify-content: end;
    padding-top: 25px;
}

.nav-btn div{
    width:40px;
    height:40px;
    border:1px solid #af9459;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s;
}

.nav-btn div:hover{
    background:#bc9052;
    color:#fff;
    border-color:#bc9052;
}

/* SWIPER */
.swiper{
   
}

/* CARD */
.card-review {
    background: #f4f3ef;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e2e2e2;
    transition: 0.3s;
    height: 100%;
}

.card-review:hover{
    transform:translateY(0px);
    border-color:var(--primary-gold);
}

/* STARS */
.stars{
    color:var(--primary-gold);
    margin-bottom:10px;
}

/* TEXT */
.text{
    font-size:16px;
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

/* USER */
.user{
    display:flex;
    align-items:center;
    gap:10px;
}

.avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:500;
}

.name{
    font-size:16px;
    line-height: normal;
    padding-bottom: 2px;
}

.meta{
   font-size: 13px;
    color: #666;
    line-height: normal;
}


.export-section{
    padding:90px 7%;
    background:#faf9f2;
}


/* TOP AREA */

.top-grid{
    display:grid;
    grid-template-columns:1.3fr 0.7fr;
    gap:40px;
    align-items:center;
}

.heading{
    font-size:36px;
    font-weight:600;
    margin-bottom:30px;
    text-transform:uppercase;
}

.description{

    max-width:700px;
    margin-bottom:40px;
}

/* STATS */

.stats{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}

.stat-box h2{
    font-size:30px;
    font-weight:600;
    margin-bottom:5px;
    background:linear-gradient(90deg,#000000,#000000);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* SERVICES CARD */

.services-card{
    background:#fff;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:25px 25px 0;
    position:relative;
    overflow:hidden;
}

.services-card::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#fff;
    border-radius:50%;
    top:-60px;
    right:-60px;
    filter:blur(40px);
}

.service-item{
    padding:5px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    cursor:pointer;
    transition:0.3s;
}

.service-item:last-child{
    border-bottom:none;
}

.service-item:hover{
    transform:translateX(10px);
}

.service-item h3{
    font-size:26px;
    margin-bottom:10px;
    font-weight:600;
}

.service-item p{
    color:#8b8b8b;
    line-height:1.8;
    font-size:15px;
}

/* SECOND AREA */

.bottom-section{
    margin-top:50px;
}

.bottom-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:end;
    margin-bottom:45px;
}

.big-title{
    font-size:36px;
    font-weight:600;
    text-transform:uppercase;
}

/* FEATURE CARDS */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    border:2px solid rgba(255,255,255,0.07);
    border-radius:20px;
    padding:20px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#c8a96a;
}

.feature-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#fff;
    border-radius:50%;
    top:-80px;
    right:-60px;
    filter:blur(50px);
}

.feature-card h3{
    font-size:26px;
    margin-bottom:20px;
    font-weight: 600;
}

.feature-image{
    margin-top:30px;
    text-align:right;
}

.feature-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); */
    height: 19vh;
    border-radius: 19px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .top-grid,
    .bottom-top,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .heading{
        font-size:52px;
    }

    .big-title{
        font-size:50px;
    }
}

@media(max-width:768px){

    .export-section{
        padding:70px 5%;
    }

    .heading{
        font-size:42px;
    }

    .big-title{
        font-size:38px;
    }

    .service-item h3{
        font-size:24px;
    }

    .feature-card h3{
        font-size:24px;
    }

    .stats{
        gap:30px;
    }
}