@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;
  --section-margin: 35px;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  overflow-x: hidden;
}

body > * {
  max-width: 100vw !important;
}

/* Header Styles */
header {
  padding: 2rem 1rem;
}

.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;
  line-height: 1.3;
  margin-top: 50px !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.h2_p1 {
  font-size: clamp(1rem, 3vw, 1.375rem);
  color: #999999;
  margin-top: 1rem;
}

/* Grid Section Styles */
.grid-section {
  padding: 3rem 0;
}

.section-content {
  margin-left: var(--section-margin);
}

.grid-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.feature-text {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.feature-text.text-white {
  color: var(--primary-color) !important;
}

.feature-text ul {
  padding-left: 1.25rem;
}

.feature-text li {
  margin-bottom: 0.5rem;
}

/* Navbar Styles */
.navbar {
  min-height: var(--nav-height);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.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);
}

.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;
}

.Nav_items {
  color: var(--primary-color) !important;
  font-weight: 300;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  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%;
}

/* Button Styles */
.framer-button {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 14px;
  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: clamp(0.75rem, 1.5vw, 0.875rem);
  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: 1199.98px) {
  .navbar-brand img {
    height: 45px;
    min-width: 110px;
  }
  
  .section-content {
    margin-left: 25px;
  }
}

@media (max-width: 991.98px) {
  .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 14px;
  }
  
  .section-content {
    margin-left: 20px;
  }
}

@media (max-width: 767.98px) {
  .grid-section .row {
    flex-direction: column;
  }
  
  .section-content {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  
  .grid-section .col {
    margin-bottom: 2rem;
  }
  
  header {
    padding: 1.5rem 1rem;
  }
  
  .navbar {
    padding: 0.5rem;
  }
  
  .navbar-brand img {
    height: 40px;
    min-width: 100px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 35px;
    min-width: 90px;
  }
  
  .navbar {
    min-height: 70px;
  }
  
  .framer-button {
    max-width: 180px;
    gap: 6px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .framer-button svg {
    width: 12px;
    height: 12px;
  }
  
  .hs_p1 {
    margin-top: 30px !important;
  }
  
  .h2_p1 {
    margin-top: 0.5rem;
  }
  
  .grid-section {
    padding: 2rem 0;
  }
}

@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;
  }
}
/* 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;
}