/* Custom styles */
body {
  background-color: #000;
  color: #fff;
}

/* 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;
  }
 

}


/* Form Styles */
.custom-input {
  background-color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 1rem;
  border-radius: 5px;
}

.custom-input:focus {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* Style for the dropdown options */
.custom-input option {
  background-color: #0A0A0A; /* Same as your input background */
  color: #fff; /* White text */
}

/* For Firefox */
@-moz-document url-prefix() {
  .custom-input {
    color: #fff !important;
    background-color: #0A0A0A !important;
  }
}

/* For IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-input {
    color: #fff !important;
    background-color: #0A0A0A !important;
  }
}

.send-btn {
  background: transparent;
  color: #ffff;
  border: 1px solid #F1D7BB;
  padding: 0.75rem 3rem;
  border-radius: 8px;
  /* font-weight: 500; */
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #F1D7BB;
  color: #000;
  /* transform: translateY(-2px); */
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* Animation Delays */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos-delay="600"] { transition-delay: 600ms; }
[data-aos-delay="700"] { transition-delay: 700ms; }
[data-aos-delay="800"] { transition-delay: 800ms; }
[data-aos-delay="900"] { transition-delay: 900ms; }
[data-aos-delay="1000"] { transition-delay: 1000ms; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
      text-align: center;
  }
  
  .contact-btn {
      margin-top: 1rem;
      width: 100%;
  }
}

.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;
}
