@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: #F1D7BB;
  --nav-height: 80px;
}

/* 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.png); */
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: 1200% 1200px; /* Full width, fixed 100px height */
  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%;

}

/* 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: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 20px;
  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;
  }

  .video-overlay {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }

  .hs_p1 {
    margin-bottom: 8rem;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .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: 3rem;
    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: 120%;
  }

  .hs_p1 {
    margin-bottom: 5rem;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .scroll-downs {
    transform: translateX(-50%) scale(0.6);
    bottom: 15px;
  }
}




.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;}
}
.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;
}
.services_btn{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #F1D7BB;
  border-radius: 10px;
 background: transparent;
 color: white;
}
@media (max-width: 576px) {
  .btns {
    flex-direction: column;
    align-items: stretch;
  }

  .services_btn {
    width: 100%;
    margin-bottom: 10px; /* optional: space between stacked buttons */
  }

  .services_btn:last-child {
    margin-bottom: 0; /* remove bottom margin from last button */
  }
}


.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;
}

@media (max-width: 768px) {
  .pricing-header h1 {
      font-size: 2rem;
  }
  
  .pricing-card {
      margin-bottom: 2rem;
  }
  
  .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.95);
      padding: 1rem;
      border-radius: 8px;
  }
}


.Bg_glow::before{
  content: "";
  background: white;
  position: absolute;
  width: 50%;
  height: 270px;
  filter: blur(245px);
  left: 266px;
  top: 100%;
  z-index: -1;
  opacity: 0.5;
}
