:root {
  --theme-primary: #FF7E00;
  --theme-secondary: #FFF6ED;
  --bg-color: #FFF6ED;
  --black-primary: #444444;      /* lighter gray */
  --black-primary-dark: #000000;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    
}

body.modal-open {
  overflow-x: hidden !important;
}

html, body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/*@media (max-width: 768px) {*/
/*  .scroll-animate {*/
/*    opacity: 1 !important;*/
/*    transform: none !important;*/
/*    transition: none !important;*/
/*  }*/
/*}*/


a{
    text-decoration: none;
}

.info-links{
    color: #000!important;
}


/* ========== NAVBAR ========== */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
}

/* Flex layout with space-between */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1440px; /* Increased from 1200px */
  width: 100%;       /* Ensures it fills available width */
  margin: auto;
  padding: 0 2rem;   /* Adds horizontal spacing inside the container */

}


/* --- Logo Section --- */
.navbar-logo img {
  height: 80px;
  width:100;
}

/* --- Nav Menu Centered --- */
.navbar-menu {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.navbar-menu li a:hover {
  color: var(--theme-primary);
}

/* --- Button Group on Right --- */
.navbar-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.solid {
  background-color: var(--theme-primary);
  color: #fff;
  border: none;
}

.btn.outline {
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
  background-color: transparent;
}

.btn.outline:hover {
  background-color: black;
  color: #fff;
}

/*Shimer effect*/

.btn.yellow-shimmer {
  position: relative;
  overflow: hidden;
  color: black;
  border: 2px solid var(--theme-primary);
  background-color: transparent; /* no white used */
  z-index: 1;
}

.btn.yellow-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    var(--theme-primary) 50%,
    transparent 100%
  );
  transition: all 0.5s ease;
  z-index: -1;
  animation: none;
}

/* Hover animation */
.btn.yellow-shimmer:hover::before {
  animation: shimmer-fill 0.8s forwards;
}

.btn.yellow-shimmer:hover {
  color: #fff; /* white text is OK */
}

/* Keyframes for shimmer motion */
@keyframes shimmer-fill {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

/*black*/
.btn.outline.black-shimmer {
  position: relative;
  overflow: hidden;
  color: black;
  border: 2px solid var(--black-primary);
  background-color: transparent;
  z-index: 1;
}

.btn.outline.black-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    var(--black-primary) 50%,
    transparent 100%
  );
  transition: all 0.5s ease;
  z-index: -1;
  animation: none;
}

.btn.outline.black-shimmer:hover::before {
  animation: shimmer-fill-black 0.8s forwards;
}

.btn.outline.black-shimmer:hover {
  color: #fff; /* white text on black shimmer */
}

/* Keyframes for shimmer motion */
@keyframes shimmer-fill-black {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

/*shimmer effect close*/

/* --- Toggle for Mobile View --- */
.navbar-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar-menu li a.active {
  color: var(--theme-primary);
  /*border-bottom: 2px solid var(--theme-primary);*/
}


/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.2rem 0.5rem;
  }

  .navbar-logo img {
    max-height: 60px;
    width:100%;
  }

  .navbar-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
    gap: 0.5rem;
    align-items: center;
  }

  .navbar-buttons a {
    width: 100%;
    text-align: center;
  }
}



/* ========== HERO SECTION ========== */
.hero-section {
  background-color: var(--bg-color);
}

.hero-heading {
  color: var(--theme-primary);
  font-weight: 600;
  font-size: 2.5rem;
}

/* ========== BUTTONS ========== */
.btn,
.btn-orange,
.btn-outline-dark,
.btn-outline-orange {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Button with orange border and transparent background */
.btn-outline-orange {
  background-color: transparent;
  color: #000 !important;
  border: 2px solid black;
}

/* Hover effect for .btn-outline-orange */
.btn-outline-orange:hover {
  background-color: black;
  color: white;
}

.btn-orange {
  background-color: #ff7e00 !important;
  color: white !important;
  border: none !important;
}

.btn-orange:hover {
  background-color: transparent !important;
  color: #e56e00 !important;
  border: 2px solid #e56e00 !important;
}


.btn-outline-dark {
  background-color: transparent;
  color: black;
  border: 2px solid black;
}

.btn-outline-dark:hover {
  background-color: black;
  color: white;
}



.text-orange {
  color: var(--theme-primary);
}

/* ========== CUSTOM LIST ========== */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: var(--theme-primary);
  border-radius: 50%;
}

.custom-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

/* ========== TIMELINE ========== */
.timeline-wrapper {
  position: relative;
  margin-left: 30px;
  padding-left: 30px;
}

.timeline-line {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #ccc;
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-marker::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}











/* ========== SERVICES ALT ========== */
.services-box-alt {
  background: linear-gradient(to left, #FB993A, var(--theme-primary));
  border-radius: 20px;
  position: relative;
  padding: 40px 20px;
}

.service-column-alt {
  position: relative;
}

/* Desktop and tablet view (≥ 768px) */
.brservice-alt {
  border-right: 2px solid #fff;
}

/* Mobile view (< 768px) */
@media (max-width: 767.98px) {
  .brservice-alt {
    border-right: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px; /* Optional for spacing */
    margin-bottom: 15px;  /* Optional for spacing */
  }
}

@media (max-width: 767.98px) {
  .brservice{
    border-right: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px; /* Optional for spacing */
    margin-bottom: 15px;  /* Optional for spacing */
  }
}


/*.vertical-line-alt {*/
/*  pointer-events: none;*/
/*  width: 1px !important;*/
/*  height: 100% !important;*/
/*  background-color: #ffffff66;*/
/*  transform: none !important;*/
/*  position: absolute;*/
/*  top: 0;*/
/*}*/

/*.left-line-alt {*/
/*  left: 33.3%;*/
/*}*/

/*.right-line-alt {*/
/*  left: 66.6%;*/
/*}*/

/*.vertical-line-alt.center-line-alt {*/
/*  left: 50%;*/
/*  transform: translateX(-50%) scaleX(0.1);*/
/*  pointer-events: none;*/
/*}*/









/* ========== CAROUSEL ========== */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
}

.conop{
    background-color:#fff;
}
.conop:hover {
    background-color: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

.gradient {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 10;
}

.left-gradient {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.right-gradient {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.carousel {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logos-slide {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 128px;
  margin: 0 32px;
}

.logo {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    margin: 0 16px;
    width: 100px;
  }

  .gradient {
    width: 40px;
  }
}

/* ========== FOOTER ========== */
.highlight-box {
  background-color: #ff7e00;
  color: white;
  padding: 20px;
  border-radius: 0 20px 20px 0;
  font-weight: 600;
  width: 100%;
  max-width: 300px;
  position: relative;
  left: -40px;
}

.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 100%;
  background-color: #ff7e00;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: -1;
}

.footer-links a {
  display: block;
  color: black;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
  text-decoration-color: #ff7e00;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.social-icons i {
  font-size: 24px;
  margin: 0 10px;
  color: black;
}

.social-icons i:hover {
  color: #ff7e00;
}

/* ========== MISC ========== */
.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.fw-medium {
  font-weight: 500;
}

.border-orange {
  border-bottom: 2px solid var(--theme-primary) !important;
}


/*SCROLL UI*/

/*1st OPTION*/
/*.scroll-animate {*/
/*  opacity: 0;*/
/*  transform: translateY(40px);*/
/*  transition: all 0.6s ease-out;*/
/*}*/

/*.scroll-animate.visible {*/
/*  opacity: 1;*/
/*  transform: none;*/
/*}*/

/*SCROLL UI*/



/*2nd OPTION*/
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

/* Animation types */
.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.scale-up {
  transform: scale(0.95);
}

.scroll-animate.visible {
  opacity: 1;
  transform: none;
}




