* {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Josefin Sans', sans-serif;
}
body {
    font-family: 'Playfair Display', serif;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #000000;
    color: #FFD700;
    font-weight: bold;
}
p {
    font-size: 14px;
}
.blue-underline {
    text-decoration: underline;
    color: #FFD700;
    font-weight: bold;
}

/* Form Input Styles for Dark Theme */
.form-control {
    background-color: #000000 !important;
    color: #FFD700 !important;
    font-weight: bold !important;
    border: 1px solid #FFD700 !important;
}

.form-control:focus {
    background-color: #000000 !important;
    color: #FFD700 !important;
    font-weight: bold !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3) !important;
}

.form-control option {
    background-color: #000000 !important;
    color: #FFD700 !important;
    font-weight: bold !important;
}

select.form-control {
    background-color: #000000 !important;
    color: #FFD700 !important;
    font-weight: bold !important;
}

/* =========== Product Cards ============ */
.product-card {
    background: #000000;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #FFD700;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.product-card .product-icon {
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.product-card h3 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

.product-card h4 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.product-card .price-tag {
    margin: 20px 0;
}

.product-card .price {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
}

.product-card .popular {
    display: block;
    background: #FFD700;
    color: #000000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-top: 10px;
}

.product-card .features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.product-card .features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-card .features li:last-child {
    border-bottom: none;
}

.product-card .features i {
    color: #FFD700;
    margin-right: 10px;
}

/* =========== BYOB Section ============ */
.byob-section {
    background: #000000;
    padding: 80px 0;
}

.byob-info h3 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 28px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step-number {
    background: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #FFD700;
    font-weight: bold;
    line-height: 1.6;
}

.conversion-calculator {
    background: #000000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
    border: 1px solid #FFD700;
}

.conversion-calculator h3 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 8px;
    display: block;
}

.total-price {
    background: #000000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.total-price h4 {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 26px;
}

.total-price #totalPrice {
    font-weight: bold;
}

/* =========== Navigation ============ */

.navbar-default {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #FFD700;
    z-index: 110;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.navbar-default.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.navbar-default .navbar-nav > li > a {
    color: #B5B5B5;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -webkit-transition: all 1s;
    
}
.navbar-default .navbar-nav > li > a:hover {
    color: #FFD700;
    font-weight: bold;
}
.navbar-default .navbar-nav > li > a:focus {
    color: #B5B5B5;
}
.navbar-brand {
    padding: 9px 15px;
}
.navbar-brand img  {
     transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -webkit-transition: all 1s;
}
.navbar-default .navbar-nav > .active>a, 
.navbar-default .navbar-nav > .active>a:hover,
.navbar-default .navbar-nav > .active>a:focus {
    background-color: transparent;
    color: #FFD700;
    font-weight: bold;
} 


.header {
    background-image: url(https://images2.imgbox.com/6c/f3/rEj1W17m_o.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size : cover;
    -o-background-size : cover;
    -webkit-background-size : cover;
}
.header-col {
    height: 600px;
    
    
}
.header-col .header-form {
    /*border: 2px solid #129CF3;*/
    padding: 20px;
    margin-top: 130px;
    text-align: center;
}
.header-col .form-control {
    border: 1px solid #FFD700;
    background-color: transparent;
}
.header-col input[type=text] {
    background-color: transparent;
    color: #FFD700;
    font-weight: bold;
    border-radius: 0;
    border: 2px solid #FFD700;
}
.header-col h2 {
    color: #FFD700;
    font-weight: bold;
    padding-bottom: 12px;
}
.header-col .btn-primary {
    width: 100%;
    background-color: transparent;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 3px;
    border: 2px solid #FFD700;
    color: #FFD700;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    
}
.header-col .btn-primary:hover {
    width: 100%;
    background-color: #FFD700;
    color: #000000;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    border: 2px solid #FFD700;
    
}
.header-text h1 {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 60px;
    padding-top: 120px;
}
.header-text p {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif; 
    font-weight: 300;
    font-size: 30px;
    line-height: 45px;
    
}
.logoimg {
    padding-top: 10px;
}
.header-overlay {
    background-color: rgba(31, 31, 31, 0.75);
}

.header-btns {
    margin-top: 30px;
    margin-bottom: 50px;
}

.header-btns i {
    color: #FFD700;
    font-weight: bold;
    padding-left: 300px;
    font-size: 70px;
    transition: 0.75s;
}
.header-btns i:hover {
    color:#fff;
    transition: 0.75s;
}
.section-about {
    text-align: center;
    padding-bottom: 8rem;
    padding-top: 5rem;
    background-color: #000000;
    
}
.section-title {
    color: #FFD700;
    font-size: 48px;
    font-weight: bold;
    padding-top: 2rem;
    
    text-align: center;
    font-family: 'Playfair Display', serif;
}
.fa-user,
.fa-bicycle,
.fa-location-arrow {
    color: #FFD700;
    font-weight: bold;
    padding-bottom: 10px;   
    transition: .9s;
}
.fa-user:hover,
.fa-bicycle:hover,
.fa-location-arrow:hover {
    color:#fff;
    transition: 0.9s;
}
.fa-cogs,
.fa-wrench,
.fa-cogs.fa-5x,
.fa-wrench.fa-5x {
    color: #FFD700;
    font-weight: bold;
    transition: .9s;
}
.fa-cogs:hover,
.fa-wrench:hover {
    color:#fff;
    transition: 0.9s;
}

/* Additional icon styling for gold */
.fa {
    color: #FFD700;
    font-weight: bold;
}

.fa-tachometer,
.fa-fire,
.fa-cog,
.fa-angle-down,
.fa-angle-double-right {
    color: #FFD700;
    font-weight: bold;
}

/* Ensure all FontAwesome icons are gold by default */
i[class*="fa-"] {
    color: #FFD700;
    font-weight: bold;
}

/* Button styling updates */
.btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000000;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #000000;
    border-color: #FFD700;
    color: #FFD700;
}
.heading {
    font-family: 'Playfair Display', serif;
    color: #FFD700;
    font-weight: bold;
    font-size: 36px;
    padding-bottom: 15px;
    text-align: center;
}
.col-caption {
    color: #FFD700;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif; 
    font-size: 22px;
    
}
.performer {
    background-image: url(../images/testimonial-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
}

.performer-overlay {
    background-color: rgba(0, 0, 0, .70);
}
.carousel-inner .item img {
    padding: 5px;
    border: solid 2px #FFD700;
    border-radius: 50%;
    margin: 0 auto;
    width: 110px;
    height: 110px;
}
.carousel-inner .item h2 {
    color: #FFD700;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    padding-bottom: 15px;
}
.job {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    
}
.performer-caption p {
    color: #fff;
    font-size: 26px;
    line-height: 50px;
    font-family: 'Josefin Sans', sans-serif;
    padding-bottom: 40px;
    
}
.carousel-indicators {
    bottom: 12px;
    
}
.carousel-indicators > li {
    border: 1px solid #FFD700;
}
.carousel-indicators .active {
    background-color: #FFD700;
}
/*SECTION-TIMELINE*/

.section-timeline {
    background-color: #000000;
    padding-top: 5rem;
}
.timeline {
    list-style: none;
    padding: 20px 0 80px;
    padding-top: 50px;
    position: relative;
}
.timeline:before{
    top:0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
    
}
.timeline > li {
    margin-bottom: 20px;
    position: relative;
}
.timeline > li:before,
.timeline > li:after {
    display: table;
    content: " ";
}
.timeline > li:after {
    clear: both;
}
.timeline > li > .timeline-panal {
    width: 50%;
    float: left;
    border: 1px solid #FFD700;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 6px rgba(255, 215, 0, 0.175);
    background-color: #000000;
}
.timeline p {
    font-family: 'Josefin Sans', sans-serif;;
    font-weight: bold;
    color: #FFD700;
}
.timeline > li:not(.timeline-inverted) {
    padding-right: 90px;
}
.timeline > li.timeline-inverted {
    padding-left: 90px;
}
.timeline > li > .timeline-badge {
    font-size: 2rem !important;
    color: #000000; 
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #FFD700;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}
.timeline > li > .timeline-badge > .counteryear {
    color: #FFF;
    font-weight: 900;
}
.timeline > li.timeline-inverted > .timeline-panal {
    float: right;
}
.timeline-title {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
}
.under-heading {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
}

.section-wrapper {
    margin-top: 60px;
    text-align: center;
}
.numbers-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: #000000;
    
}
.numbers-section .num-data  i {
    color: #FFD700;
    font-weight: bold;
    padding-bottom: 20px;
    transition: all .7s;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -o-transition: all .7s;
}
.numbers-section .num-data  i:hover {
    color: #fff;
}
.numbers-section .num-data .counter {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 8px;
    color: #FFD700;
}
.numbers-section .num-data p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
}
.contact-us {
    padding-bottom: 5rem;
    padding-top: 3rem;
    background-color: #000000;
}
.contact-us textarea {
    height: 105px;
}
.contact-us .social-icons {
    padding-top: 45px;
    padding-bottom: 25px;
}
.contact-us li {
    display: inline-block;
    padding-left: 20px;
}
.contact-us .list-unstyled i {
    color: #FFD700;
    font-weight: bold;
    transition: all 0.75s;
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
    -moz-transition: all 0.75s;
}
 .contact-us .list-unstyled i:hover {
    color: #fff;
    
}   
.footer-section {
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: #000000;
    color: #FFD700;
    text-align:center;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
    border-top: 2px solid #FFD700;
}    
.usama a {
    color: #fff;
    text-decoration: none;
    
}    
.usama a:hover {
    color: #333;
    text-decoration: underline;
    
}
.loading-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #000000;
    
}
/*spinner*/
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 300px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #FFD700;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}