@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --accent-color: #FF8B00;
  --nav-height: 80px;
}
/* Add as last resort */
body > * {
  max-width: 100vw !important;
  overflow: hidden !important;
}
:root {
  /* --primary-color: #1a1a1a; */
  /* --secondary-color: #252525; */
  --accent-color: #F1D7BB;
  --text-color: #f5f5f5;
  /* --card-bg: #252525; */
  --timeline-width: 4px;
  --dot-size: 18px;
  --glow-color: rgba(241, 215, 187, 0.7);
  --line-color: rgba(241, 215, 187, 0.3);
}

/* navbar animation */

/* Base Styles */
body {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: url(assets/Top\ bg\ gradient.pn);
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: 1200% 1200px; 
  background-position: top center;
  font-family: 'Manrope', sans-serif;

  
}
/* Navbar */
.header{
  /* background-image: url(assets/Section_1_bg.png); */
  height: 1000px;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 8px;
  background-repeat: no-repeat;
  /* background-size: contain; */
 
}
.s1_bg{
  /* overflow-x: hidden; */
  /* background-image: url(assets/Top\ bg\ gradient.png); */
  background-repeat: no-repeat;
  /* width: 100%; */
  height: 100%;

}

.space{
    
    height: 100vh
  }
  .elevator-transition{
   animation: repeat 1s forwards;
    animation-delay: 1s;
      
  }
  
  .elevator{
  margin:5em 0;
    color: #fff;
    font-family:AvenirNextLTPro-Bold;
    font-size: 3em;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap:10px;
  
  }
  .elevatorL{
    text-align: right;
    left:5em;
  }
  .elevatorR{
    left:10em;
  }
  @keyframes repeat{
    100%{
      filter: drop-shadow(0 1em 0 #fff) drop-shadow(0 1em 0 #fff) drop-shadow(0 1em 0 #fff) drop-shadow(0 1em 0 #fff) drop-shadow(0 1em 0 #fff) drop-shadow(0 1em 0 #fff);
    }
    
  }
  .elevatorL-transition{
      animation: moveLeft .7s forwards;
  /*   animation-delay:2s; */
        animation-play-state: paused ;
    animation-delay:  calc(var(--scroll) * -1s);
  
  }
  .elevatorR-transition{
      animation: moveRight .7s forwards;
  /*     animation-delay:2s; */
        animation-play-state: paused ;
    animation-delay:  calc(var(--scroll) * -1s);
  }
  
  @keyframes moveLeft {
        0% {
          transform: translateX(0px) rotate(0);
    }
    100%{
        transform: translateX(-10em);
    } 
  }
  @keyframes moveRight {
        0% {
          transform: translateX(0px) rotate(0);
    }
    100%{
        transform: translateX(10em);
    } 
  }
/* Navbar Container */
.navbar {
  min-height: var(--nav-height);
  /* background-color: var(--secondary-color) !important; */
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* Logo Styles */
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  min-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: none;
  color: var(--primary-color);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* Navigation Items */
.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
  position: relative;
}

.Nav_items {
  color: var(--primary-color) !important;
  font-weight: 300;
  font-size:16px;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.Nav_items:hover {
  color: var(--accent-color) !important;
}

.Nav_items::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.Nav_items:hover::after {
  width: 70%;
}

/* Action Button */
.framer-button {
  background: transparent;
  color: #F1D7BB;
  border: 2px solid #F1D7BB;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 200px;
  font-size: 14px;
  z-index: 1;
}

.framer-button span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.framer-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;  
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  z-index: 1;
}

.framer-button:hover {
  border-color: var(--accent-color);
}

.framer-button:hover::before {
  width: 100%;
}

.framer-button:hover span {
  color: var(--secondary-color) !important;
}

.framer-button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.framer-button:hover svg {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .navbar-nav {
    width: 100%;
  }
  
  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }
  
  .Nav_items {
    padding: 0.75rem !important;
  }
  
  .Nav_items::after {
    display: none;
  }
  
  .framer-button {
    margin-top: 1rem;
    width: auto;
    padding: 8px 16px;
  }
  
  .navbar-brand img {
    height: 45px;
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem;
  }
  
  .navbar-brand img {
    height: 40px;
    min-width: 100px;
  }
  
  .Nav_items {
    font-size: 0.9rem;
  }
  
  .framer-button {
    font-size: 13px;
    padding: 7px 14px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 35px;
    min-width: 90px;
  }
  
  .navbar {
    min-height: 70px;
  }
  
  .framer-button {
    max-width: 180px;
    gap: 6px;
  }
  
  .framer-button svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 400px) {
  .navbar-brand img {
    height: 30px;
    min-width: 80px;
  }
  
  .Nav_items {
    padding: 0.5rem !important;
    font-size: 0.85rem;
  }
  
  .framer-button {
    font-size: 12px;
    padding: 6px 12px;
  }
}
/* Import DM Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* Collapse content center-aligned on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar_items {
    padding: 0;
    margin: 1rem 0;
  color: #ffffff!important;
  }
  
  .navbar_btn {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto 0;
  }
 

}


/* Base Styles */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px; /* Ensures video doesn't get too small */
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.3); */
  text-align: center;
}

.hs_p1 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  background: linear-gradient(to bottom, #eee, #333);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 500;
  /* margin: 0 1rem 10rem 1rem; */
  line-height: 1.3;
  margin-top: 50px!important;
  padding: 0 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}



.scroll-downs {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 34px;
  height: 55px;
  z-index: 10;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}


.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* Responsive Adjustments */

/* Tablets and small laptops (768px and below) */
@media (max-width: 768px) {
  .video-container {
    height: 80vh;
    min-height: 450px;
  }
  
  .hs_p1 {
    margin-bottom: 8rem;
    font-size: 36px;
  }
 
  .scroll-downs {
    transform: translateX(-50%) scale(0.8);
    bottom: 20px;
  }
}

/* Large phones (576px and below) */
@media (max-width: 576px) {
  .video-container {
    height: 70vh;
    min-height: 400px;
  }

  #myVideo {
    width: 150%; /* Zoom out slightly to maintain coverage */
    height: auto;
  }

  .hs_p1 {
    margin-bottom: 6rem;
    font-size: clamp(1.3rem, 5vw, 2rem);
    line-height: 1.25;
    padding: 0 0.8rem;
  }

  .scroll-downs {
    transform: translateX(-50%) scale(0.7);
    bottom: 15px;
  }
}

/* Small phones (425px and below) */
@media (max-width: 425px) {
  .video-container {
    height: 65vh;
    min-height: 350px;
  }

  #myVideo {
    width: 180%; /* Further zoom out */
  }

  .video-overlay {
    /* padding-bottom: 3rem; */
  }

  .hs_p1 {
    margin-bottom: 4rem;
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }

  .scroll-downs {
    transform: translateX(-50%) scale(0.6);
  }
}

/* Extra small phones (320px and below) */
@media (max-width: 390px) {
  .video-container {
    height: 60vh;
    min-height: 300px;
  }

  #myVideo {
    width: 200%; /* Maximum zoom out for smallest screens */
    height: auto;
  }

  .hs_p1 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 20rem;
    /* margin-top: 0%; */
    padding: 0 0.5rem;
  }

  .scroll-downs {
    transform: translateX(-50%) scale(0.5);
    bottom: 10px;
  }

  .mousey {
    padding: 8px 12px;
    height: 30px;
  }

  .scroller {
    height: 8px;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .video-container {
    height: 120vh;
    min-height: auto;
  }

  #myVideo {
    width: auto;
    height: 100%;
  }

  .hs_p1 {
    margin-bottom: 5rem;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .scroll-downs {
    transform: translateX(-50%) scale(0.6);
    bottom: 15px;
  }
}


@media (max-width: 768px) {
  .video-overlay {
      justify-content: flex-center;
      padding-bottom: 5rem;
  }
}


.hs_p1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  font-weight: 500;
  /* color: white; */
  /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); */
  /* margin: 0 1rem 15rem 1rem; */
  line-height: 1.2;
  padding: 0 1rem;
}


.scroll-downs {
  position: absolute;
  /* top: 0;
  right: 0;
  bottom: 0; */
  left: 0;
margin-top: 10rem;

  
  width :34px;
  height: 55px;
}
.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}
/* ===== Existing Card Styles (Unchanged) ===== */
.solution-card {
  display: flex;
  width: 500px;
  background-color: #1D1D1D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-top-right-radius: 32px;
  border-bottom-left-radius: 32px;
  gap: 15px;
}

.solution-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: #404040 1px solid;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.solution-content {
  flex: 1;
}

.solution-title {
  color: #ffffff;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.solution-description {
  color: #999999;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== New Responsive Rules (Cards Only) ===== */
@media (max-width: 992px) {
  /* Tablet: Cards use full width but don't overflow */
  .solution-card {
    width: 100%;
    max-width: 500px; /* Prevents stretching too wide */
  }
}

@media (max-width: 768px) {
  /* Mobile: Stack icon + text vertically */
  .solution-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  /* Center icon and add spacing below */
  .solution-icon {
    margin: 0 auto 15px auto;
  }
}

@media (max-width: 480px) {
  /* Smaller mobile adjustments */
  .solution-card {
    padding: 20px 15px;
  }

  .solution-icon {
    width: 70px;
    height: 70px;
  }

  .icon-img {
    width: 45px;
    height: 45px;
  }

  .solution-title {
    font-size: 22px;
  }

  .solution-description {
    font-size: 15px;
  }
}
/* section 3 */
.seamless-section {
  padding: 60px 0;
  background-color: #121212;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.2rem;
  color: #6c757d;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #0d6efd;
  margin: 0 auto 30px;
  border-radius: 2px;
}

.step-card {
  /* background: white; */
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
 
 border: 1px solid #404040;
  color: white;
  border-radius: 12px;

 width: fit-content;
  padding: 12px;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.step-content p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title h1 {
      font-size: 2rem;
  }
  
  .step-card {
      margin-bottom: 30px;
  }
}

.step-card {
  /* background-color: #774949; */
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  height: 100%;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  text-align: left;
  transition: transform 0.3s ease;
}

.step-icon-box {
  border: 1px solid #404040;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

.step-icon-box img {
  width: 40px;
  height: 40px;
}



.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.step-content p {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.step-numbers-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card_2_special{
margin-top: 130px;
}
@media (min-width: 992px) {
  /* If using card containers */
  .step-card-container:nth-child(2),
  /* If using Bootstrap columns */
  .col-md-4:nth-child(2) {
    margin-top: 130px;
  }
  
  /* Alternative: Add class 'card-2' to your specific card */
  .card-2-desktop {
    margin-top: 130px;
  }
}
/* section_4 */
/* Base Styles */

/* Stacked Card */
/* Base Styles */
.mx_5 {
  margin-top: 150px;
  margin-bottom: 300px; /* Just enough bottom space */
}

.stacked-cards {
  position: relative;
  height: 300vh; /* More scroll space for better reveal */
}

.card-item {
  position: sticky;
  top: 20px;
  margin-bottom: -100px; /* Reduced overlap for better spacing */
  opacity: 0; /* Start hidden for animation */
  transform: translateY(20px);
  transition: all 0.6s ease;
  z-index: 1;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Card stacking order */
.card-item:nth-child(2) {
  z-index: 2;
  top: 60px;
}
.card-item:nth-child(3) {
  z-index: 3;
  top: 120px;
}
.card-item:nth-child(4) {
  z-index: 4;
  top: 180px;
}
.card-item:nth-child(5) {
  z-index: 5;
  top: 240px;
}

/* Card content styling */
.s3_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #0c0d0e;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Text styles */
.s2_sp {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.s2_p {
  font-size: 16px;
  color: #999999;
  line-height: 1.5;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .stacked-cards {
    height: 120vh; /* Extra space for mobile scroll stacking */
  }

  .card-item {
    width: 95%;
    margin-bottom: -80px;
    top: 10px;
  }

  .card-item:nth-child(2) {
    top: 40px;
  }
  .card-item:nth-child(3) {
    top: 80px;
  }
  .card-item:nth-child(4) {
    top: 120px;
  }
  .card-item:nth-child(5) {
    top: 160px;
  }

  .s3_container {
    padding: 15px;
  }
}

/* section_5 */
/* Custom Styles */
.feature-card {
  position: relative;
  background: #111111;
  border-radius: 12px;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  /* border-left: 4px solid #0d6efd; */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  padding-top: 10px;
}

.feature-text {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .feature-card {
    padding: 20px;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
}
.divider_css{
 border : 0.5px solid #292929;
 margin-top: 15px;
}
.S5_steps{
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px #292929 solid;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #111111;
  width: fit-content;
  border-radius: 35px;
  margin-top: 15px;
}
/* section_6 */
/* Highlight underline */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: orange;
  left: 0;
  bottom: -5px;
  border-radius: 999px;
}

/* Scroll containers */
.scroll-vertical-container {
  height: 420px;
  width: 280px;
  overflow: hidden;
  position: relative;
}

.scroll-column {
  display: flex;
  flex-direction: column;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scroll-up {
  animation-name: scroll-up;
  animation-duration: 20s;
}

.scroll-down {
  animation-name: scroll-down;
  animation-duration: 20s;
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Card Styling */
.review-card {
  background: linear-gradient(337deg,rgba(9, 9, 9, 1) 0%, rgba(22, 22, 22, 1) 49%, rgba(9, 9, 9, 1) 100%);
  border-radius: 15px;
  padding: 1rem;
  margin: 0.5rem 0;
  color: #ddd;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.stars {
  color: #FF8B00;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}


.card_col::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}
.section_7 {
  position: relative;
  z-index: 1;
}

.section_7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/last bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 1;
}


.content-wrapper {
  height: 100%;
}

/* Typography */
.section-label {
  font-size: 16px;
  color: #b9b9b9;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.main-heading {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  margin: 20px 0;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

/* Truck Image */
.truck-image-wrapper {
  margin-top: 50px;
}

.truck-image {
  max-width: 100%;
  height: auto;
}

/* Contact Form */
.contact-form {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px #0000001a;
  /* background-color: #0a0a0acc; */
  margin-top: 60px;
}

.form-title {
  font-size: 20px;
  font-weight: 500;
  color: #fafafa;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid #292929;
  border-radius: 5px;
  font-size: 14px;
  background-color: #0a0a0a;
  color: #fff;
  width: 100%;

  &::placeholder {
    color: #666;
  }
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

/* Submit Button */
.submit-btn {
  background: transparent;
  border: 1px solid #FF8B00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100px;

  &:hover {
    background-color: #ff8b00;
    color: #fff;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .section_7 {
    padding: 40px 0;
  }

  .contact-form {
    padding: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .main-heading br {
    display: none;
  }

  .contact-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info + .contact-info {
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  .section_7 {
    padding: 30px 0;
  }

  .form-control {
    font-size: 16px;
  }
}
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
.aos-animate {
  opacity: 1;
}


.col1_margin{
  margin-top: 800px;
}





@media (max-width: 767.98px) {
  .col_margin {
    margin-top: 67px;
  }
  
  .col1_margin {
    margin-top: 700px;
  }
}


@media (min-width: 768px) {
  .col_margin {
    margin-top: 229px; 
  }
  
  .col1_margin {
    margin-top: 318px; 
  }
}

.s2_truck{
  /* margin-left: 300px!important; */
  /* width: 550px;
  height: 396px; */
}


.h2_par{
  margin-top: 10px;
}
.h2_portion{
  color: #999999;
  margin-top: 0;
 }
 .s1_st{
  font-size: 1.25rem;
  background: linear-gradient(180deg, #F1D7BB, #A5B1D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2_h1{
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2_p1{
     font-size: 22px;
    color: #999999;
    /* text-align: center; */
}
/* Updated CSS */
.s2 {
  background-color: #121212;
  padding: 4rem 1rem;
}

.s2_st {
  font-size: 1.25rem;
  background: linear-gradient(180deg, #F1D7BB, #A5B1D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.s2_h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  background: linear-gradient(to right, #eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.steps-row {
  gap: 1rem;
}

.step-column {
  margin-bottom: 1.5rem;
}

.step-card {
  padding: 1.5rem;
  height: 100%;
}

.step-icon {
  height: 60px;
  margin-bottom: 1rem;
}

.s2_sp {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.5rem;
}

.s2_p {
  color: #999999;
  font-size: 1rem;
  margin-bottom: 0;
}

.step-arrow {
  height: 70px;
  width: auto;
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
  }
  
  .arrow-column {
    display: none !important;
  }
  
  .step-column {
    width: 100%;
    max-width: 300px;
  }
  
  .step-card {
    padding: 1.25rem;
  }
  
  .step-icon {
    height: 50px;
  }
}

/* Small mobile devices */
@media (max-width: 375px) {
  .s2 {
    padding: 3rem 0.5rem;
  }
  
  .s2_st {
    font-size: 1.1rem;
  }
  
  .s2_sp {
    font-size: 1rem;
  }
  
  .s2_p {
    font-size: 0.9rem;
  }
  
  .step-icon {
    height: 40px;
  }
}
/* Platforms Section CSS */
.platforms-section {
  background-color: #121212;
  color: #ffffff;
}

.platform-subtitle {
  font-size: 1.25rem;
  background: linear-gradient(180deg, #F1D7BB, #A5B1D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.platform-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  background: linear-gradient(to right, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.platform-content {
  max-width: 800px;
}

.platform-description {
  color: #999999;
  font-size: clamp(1rem, 3vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.platform-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .platforms-section {
    padding: 3rem 1rem;
  }
  
  .platform-subtitle {
    font-size: 1.1rem;
  }
  
  .platform-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .platforms-section {
    padding: 2.5rem 1rem;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .platform-badge {
    width: 100%;
    text-align: center;
  }
}
.s5_padding{
padding-left: 238px;
padding-right:238px ;
padding-top: 4e0px;
padding-bottom: 40px;
}
  /* Isolated Review Carousel CSS */
  .del-reviews-section {
    background-color: #121212;
    color: #ffffff;
    overflow: hidden;
    padding: 4rem 0;
  }

  .del-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .del-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    background: linear-gradient(to right, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
  }

  .del-review-carousel {
    position: relative;
    padding: 1rem 0;
    margin: 1.5rem 0;
    overflow: hidden;
  }

  .del-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
  }

  .del-review-card {
    background: linear-gradient(159deg,rgba(9, 9, 9, 1) 0%, rgba(22, 22, 22, 1) 50%, rgba(9, 9, 9, 1) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    width: 320px;
    flex-shrink: 0;
    border: 1px solid #363636;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
  
  }
  .del-review-card:before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 1;}

  .del-rating {
    color: #F1D7BB;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .del-review-text {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: lighter;
  }

  .del-reviewer {
    color: #999999;
    font-style: italic;
    font-size: 0.9rem;
  }

  /* Animation */
  .del-top-row .del-track {
    animation: del-scroll-left 30s linear infinite;
  }

  .del-bottom-row .del-track {
    animation: del-scroll-right 30s linear infinite;
  }

  @keyframes del-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes del-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .del-reviews-section {
      padding: 3rem 0;
    }
  
    .del-review-card {
      width: 280px;
      padding: 1.25rem;
    }
  
    .del-track {
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .del-review-card {
      width: 260px;
      padding: 1rem;
    }
  
    .del-rating {
      font-size: 1.1rem;
    }
  
    .del-review-text {
      font-size: 0.9rem;
    }
  
    .del-reviewer {
      font-size: 0.85rem;
    }
  
    .del-section-title {
      font-size: 1.8rem;
    }
  }

  /* Optional: Pause animation on hover */
  .del-review-carousel:hover .del-track {
    animation-play-state: paused;
  }
  .contact-section {
    background: #0c0d0e;
    color: #fff;
    padding: 60px 20px;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .contact-left {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .contact-left a {
    color: #caa47e;
    text-decoration: underline;
  }
  
  .contact-right {
    flex: 2;
    min-width: 300px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .input-row input {
    flex: 1;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
  }
  
  textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    resize: none;
  }
  
  button {
    width: 120px;
    background: #f5d7b3;
    color: #000;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #e6c29d;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .input-row {
      flex-direction: column;
    }
  }
  .contact-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .form-control::placeholder {
    color: #888;
  }
  
  .submit-btn {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid orange;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-btn:hover {
    background: orange;
    color: black;
  }
    
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  min-height: 100vh;
}

header {
  margin-bottom: 64px;
}

header h1 {
  color: var(--text-color);
  margin-bottom: 16px;
}

header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline Structure */
.timeline {
  position: relative;
  min-height: 100vh;
  padding: 32px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: var(--timeline-width);
  background-color: var(--line-color);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-light {
  position: absolute;
  width: var(--timeline-width);
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(241, 215, 187, 0),
    var(--accent-color),
    rgba(241, 215, 187, 0)
  );
  box-shadow: 0 0 15px var(--glow-color);
  border-radius: 4px;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 2;
  animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
  0% { box-shadow: 0 0 15px var(--glow-color); }
  50% { box-shadow: 0 0 25px var(--glow-color); }
  100% { box-shadow: 0 0 15px var(--glow-color); }
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  margin-bottom: 120px;
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item.active {
  opacity: 1;
}

.timeline-truck {
  flex: 1;
  text-align: right;
  padding-right: 48px;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1s ease;
}

.timeline-item:nth-child(even) .timeline-truck {
  text-align: left;
  padding-right: 0;
  padding-left: 48px;
  transform: translateX(50px);
}

.timeline-item.active .timeline-truck {
  transform: translateX(0);
  opacity: 1;
}

.timeline-truck img {
 /* width: 440px;
 height: 274px; */
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-truck img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content {
  flex: 1;
  position: relative;
  padding-left: 48px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 0;
  padding-right: 48px;
  transform: translateX(-50px);
}

.timeline-item.active .timeline-content {
  transform: translateX(0);
  opacity: 1;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 16px;
  width: var(--dot-size);
  height: var(--dot-size);
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--glow-color);
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: auto;
  right: -9px;
}

.timeline-item.active .timeline-dot {
  box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
}

.timeline-card {
  background: linear-gradient(159deg,rgba(9, 9, 9, 1) 0%, rgba(22, 22, 22, 1) 50%, rgba(9, 9, 9, 1) 100%);
  padding: 24px;
  border: 1px solid #363636;
/* /* width: 550px; */
/* height: 380px; */ 
  border-radius: 8px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.timeline-number {
  display: inline-block;
  margin-right: 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-line {
    left: 32px;
  }
  
  .timeline-truck {
    order: 2;
    text-align: left;
    padding-right: 0;
    padding-left: 64px;
    margin-top: 24px;
  }
  
  .timeline-content {
    order: 1;
    padding-left: 64px;
    padding-right: 0;
  }
  
  .timeline-dot {
    left: 32px;
    margin-left: -9px;
  }
  
  .timeline-item:nth-child(even) .timeline-truck,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 64px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: 32px;
    right: auto;
  }
}

@media (max-width: 767px) {
  .timeline-truck img {
    max-width: 140px;
  }
  
  .timeline-card {
    padding: 16px;
  }
  
  .timeline-title {
    font-size: 18px;
  }
  
  .timeline-number {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .timeline-truck img {
    max-width: 120px;
  }
  
  .timeline-line {
    left: 24px;
  }
  
  .timeline-content,
  .timeline-truck,
  .timeline-item:nth-child(even) .timeline-truck,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 48px;
  }
  
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 24px;
  }
}
.s3_bg{
  background-color: #121212;
}
.section_2{
  margin-top: 150px;
}

















.door-animation {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100vh;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

/* Arrows */
.arrow-container {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.arrow {
  width: 30px;
  height: 30px;
  margin: 5px 0;
  animation: bounce 2s infinite;
}
.arrow:nth-child(1) { animation-delay: 0.1s; }
.arrow:nth-child(2) { animation-delay: 0.3s; }
.arrow:nth-child(3) { animation-delay: 0.5s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}








/* Website content styles */
.website-content {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  width: 100%;
}

/* When visible, fade in and pop like a bubble */
.website-content.visible {
  opacity: 1;
  transform: scale(1);
  animation: bubble 0.7s ease-out;
}

@keyframes bubble {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* #websiteContent {
  opacity: 0;
  transition: opacity 0.1s ease-in; 
} */

.contact-section {
  /* background-color: #f8f9fa; */
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  grid-column: 1 / -1;
  /* text-align: center; */
  margin-bottom: 30px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
}

.contact-header p {
  font-size: 1.1rem;
  /* color: #999999; */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-info {
  /* background: white; */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  align-self: start;
}

.contact-info-item {
  display: grid;
  /* grid-template-columns: 40px 1fr; */
  gap: 15px;
  margin-bottom: 25px;
  /* align-items: center; */
}

.contact-info-item i {
  font-size: 1.5rem;
  /* color: #0d6efd; */
  /* text-align: center; */
}

.contact-info-text {
  font-size: 1.05rem;
}

.contact-form {
  /* background-color: white; */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-control {
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid #292929;
  /* opacity: 50%; */
  width: 134%;
  padding: 12px 15px;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.btn-send {
  background-color: #F1D7BB;
  color: #121212;
  padding: 12px 40px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s;
  width: 100%;
  /* max-width: 200px; */
}

.btn-send:hover {
  background-color: transparent;
  transform: translateY(-2px);
  border: 1px #f5d7b3 solid;
  color: #f5d7b3;
}

@media (max-width: 992px) {
  .contact-container {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 0 20px;
  }
  
  .contact-info {
      order: 2;
  }
  
  .contact-form {
      /* order: 1; */
  }
}

@media (max-width: 768px) {
  .contact-section {
      padding: 60px 0;
  }
  
  .contact-header h2 {
      font-size: 2rem;
  }
  
  .contact-form {
      /* padding: 30px; */
  }
  
  .form-control {
      height: 45px;
  }
}
/* Video Container Styles */
.video-container {
  /* position: relative; */
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: -1; */
}

/* Default: Show desktop video, hide mobile video */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* Mobile view: Switch videos */
@media (max-width: 767px) {
  .desktop-video {
    display: none;
  }
  
  .mobile-video {
    display: block;
  }
  
  /* Optional: Adjust video container height for mobile */
  .video-container {
    height: 100vh; /* or use 100svh for better mobile behavior */
  }
}

/* Optional: Video overlay for better text readability */
.s1_bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* z-index: 0; */
}

.input_modify{
  margin-left: 50px;
}
@media only screen and (max-width: 767px) {
  .input_modify {
    margin-left: 0px;
    width: 320px;
  }
  .form_modify{
    width: 320px; 
  }
}


/* footer */

.footer {
  margin-top: 6rem;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: px;
  margin-bottom: 2rem;
}

.footer-address {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
}

.footer-copyright {
  color: #666;
  font-size: 0.8rem;
}
