@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--main-color);
    font-family: 'Poppins';
    overflow-x: hidden;
}

/* -----------color variables start-------------- */
:root {
    --nav-bg-color: #121212;
    --primary-color:#3B82F6;
    --main-color: #FFFFFF;           
    --dark-white-color: #D1D5DB;
    --text-p-color: #9CA3AF;
}




/* -----------color variables end-------------- */

.row {
    margin: 0 auto;
}

/* -----------heading style start-------------- */

.heading-1{
  font-weight: 700;
  font-size: clamp(28px, 4vw, 60px);
  line-height: clamp(34px, 4.5vw, 60px);
  letter-spacing: 0%;
}
.heading-2{
  font-weight: 700;
  font-size: clamp(20px, 3vw, 38px);
  line-height: clamp(26px, 3.5vw, 45px);
  letter-spacing: 0%;
  vertical-align: middle;
}
.heading-3{
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 27.54px);
  line-height: clamp(24px, 2.7vw, 36px);
  letter-spacing: 0%;
}
.heading-4{
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 33.75px);
  line-height: clamp(28px, 3.1vw, 40px);
  letter-spacing: 0%
}
.heading-5{
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 21.56px);
  line-height: clamp(24px, 2.4vw, 32px);
  letter-spacing: 0%;
  vertical-align: middle;
}
.heading-6{
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18.44px);
  line-height: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0%;
}

/* -----------heading style end-------------- */


/* -----------p tag style start-------------- */
.p1{
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0%;
  vertical-align: middle;
}
.p2{
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: clamp(20px, 2.2vw, 24px);
  letter-spacing: 0%;
  vertical-align: middle;
}
.p3{
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 17.5px);
  line-height: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0%; 
}
.p4{
  font-weight: 400;
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: clamp(20px, 2.3vw, 25px);
  letter-spacing: 0%;
}
/* -------------p tag style end------------------ */

.main-wrapper{
    width:100%;
    height: 100%;
}

/* Container max-width override */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1400px !important;
}
/* -----------btn start-------------- */
.btn-warning {
  background-color: var(--primary-color);
  color: var(--text-black-color);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 5%;
  width: 45%;
  text-align: center;
}

.btn-warning:hover {
  background: var(--nav-bg-color);
  color: var(--main-color);
  border: 1px solid var(--primary-color);
}

.btn-demo {
  background-color: var(--primary-color);
  color: var(--text-black-color);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 5%;
  width: 45%;
  text-align: center;
}
.btn-demo:hover {
  background: var(--nav-bg-color);
  color: var(--main-color);
  border: 1px solid var(--primary-color);
}

.btn-login {
  background: transparent;
  color: var(--main-color);
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.btn-login:hover {
  background: var(--primary-color);
  color: var(--text-black-color);
}
.learn-more-btn{
  padding: 11px 24px; 
}

.btn-signup {
  background: var(--primary-color);
  color: var(--text-black-color);
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: var(--nav-bg-color);
  color: var(--main-color);
  border: 1px solid var(--primary-color);
}
.send-message-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.send-message-btn:hover {
  background: var(--nav-bg-color);
  color: var(--main-color);
  border: 1px solid var(--primary-color);
  transform: translateY(-2px);
}

.demo {
  display: flex;
}
/* -----------btn end-------------- */


/* --------------navbar start-------------- */
.head {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--nav-bg-color);
  backdrop-filter: blur(10px);
}

.navbar {
  background: var(--nav-bg-color); 
}

.nav-bg {
  padding: 15px 12px;
}

/* Navigation Links */
.offcanvas-link{
  margin-top: 10px;
}
.offcanvas-item{
  margin-top: 10px;
}
.nav-link {
  color: var(--main-color);
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-item {
  display: flex;
  align-items: center;
}

/* Hamburger Button */
.navbar-toggler {
  border: none;
  background-color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--text-black-color);
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler:hover {
  background-color: #2d6cdb;
}

.navbar-toggler i {
  font-size: 1.2rem;
}

/* Offcanvas Styles */
.bg-offcanvas {
  background-color: var(--nav-bg-color);
}
.offcanvas{
height: 100vh;
}
.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
}

.offcanvas-body {
  padding: 1.5rem;
  background-color: var(--nav-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offcanvas-body .nav-link {
  color: var(--main-color);
  font-size: 1.1rem;
  /* padding: 0.75rem 0 !important; */
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: block;
  width: 100%;
}

.offcanvas-body .nav-link:hover {
  color: var(--primary-color);
}

.offcanvas-body .nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.offcanvas-body .btn {
  width: 100%;
  text-align: center;
  padding: 8px 50px;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
bg-offcanvas {
  background-color: var(--nav-bg-color);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
}

.offcanvas-body {
  padding: 1.5rem;
  background-color: var(--nav-bg-color);
  overflow-y: auto;
  flex: 1;
}

.nav-buttons-container {
  padding: 1rem 1.5rem;
  background-color: var(--nav-bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Logo Styles */
.navbar-brand {
  padding: 0;
  text-decoration: none;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.ai-text {
  color: var(--primary-color);
}

.header-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Nav Buttons */
.nav-buttons {
  display: flex;
  gap: 12px;
}

/* ------------navbar end------------ */

/* ---------section-1 start------------ */
.section-1 {
    background-color: var(--nav-bg-color);    
    width: 100%;
    padding: 0px;
}

.s1-h1 {
    color: var(--primary-color);
    text-align: left;
}

.s1-span {
    color: var(--main-color);
}

.s1-p {
    color: var(--text-p-color);
    text-align: left;
}
.brand-name{
  color: var(--primary-color);
}
/* -------------section-1 end------------ */


/* -------------section-2 start------------ */
.section2 {
  background-color: #1a1a1a; 
  color: var(--main-color);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.offer-card {
  background-color:rgba(59, 130, 246, 0.22); 
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.s2-icon{
  background-color:rgba(59, 130, 246, 0.2); 
}

.icon-wrapper i {
  color: rgba(59, 130, 246, 1);
}

.offer-card h3 {
  margin-bottom: 10px;
  color: var(--main-color);
}

.offer-card p {
  line-height: 1.4;
  color: var(--text-p-color);
}

.section-title {
  margin-bottom: 1rem;
  color: var(--main-color);
}

.title-image {
  margin-bottom: 2rem;
}

.underline-img {
  max-width: 200px;
}



/* -------------------section-2 end------------------- */

/* -------------------section-3 start------------------- */
.section3 {
  background-color: rgba(18, 18, 18, 1);
  color: var(--main-color);
  padding: 60px 0;
  position: relative;
}

.section3 .section-title {
  margin-bottom: 40px;
  color: var(--main-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center; 
  margin: 0px 10px;
}

.step-card {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box; 
}

.step-card:hover {
  filter: blur(0px);
  transform: scale(1.05);
}

.step-card h2 {
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F97316 0%, var(--main-color) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-card h3{
  color: var(--main-color);
}


.step-card p {
  color: var(--text-p-color);
}


.top-polygon {
  position: absolute;
  top: 270px;
  left: 0;
}

.bottom-polygon {
  position: absolute;
  bottom:250px;
  right: -230px;
}

.top-polygon img,
.bottom-polygon img {
  max-width: 50%;
  height: auto;
}



/* -------------------section-3 end------------------- */


/* -------------------section-4 start------------------- */
.section4 {
  padding: 50px 0;
  background-color:var(--primary-color);
  color:var(--main-color);
  position: relative;
  overflow: hidden;
}

.top-curve {
  position: absolute;
  top: 0;
  left: 0;
}

.bottom-curve {
  position: absolute;
  bottom: 0;
  right: 0;
}
.t-curve {
  position: absolute;
  top: 310px;
  left: 0;
}

.top-curve img,
.bottom-curve img {
  max-width: 100%;
  height: auto;
}

.section-title {
  margin-bottom: 1rem;
}

.title-image {
  margin-bottom: 2rem;
}

.underline-img {
  max-width: 200px;
}

.benefit-card {
  background-color: var(--nav-bg-color);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 999;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 5px;
}
.s4-icon{
  background-color: #1E1E1E ;
}
.icon-wrapper i {
  font-size: 24px;
}

/* Specific icon colors */
.car-icon i,
.salon-icon i,
.estate-icon i,
.service-icon i {
  color: #FF6B00;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  min-height: 2.5em;
  color: var(--main-color);
}

.benefit-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefit-list li {
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--text-p-color);
  padding-left: 20px;
  position: relative;
}

.benefit-list li:before {
  content: "•";
  color:var(--main-color);
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  
  .benefit-card h3 {
    min-height: auto;
  }
}
/* -------------------section-4 end------------------- */


/* -------------------section-5 start------------------- */
.section5 {
    padding: 30px 0;
    background-color: var(--nav-bg-color); 
    color: var(--main-color);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: var(--main-color);
  }
  .title-image {
      text-align: center;
      margin: 10px auto;
    }
    
    .underline-img {
      max-width: 180px;
      height: auto;
    }
    
    .title-image::after {
      display: none;
    }
  .section-description {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    color: var(--text-p-color);
  }
  
  .comparison-table {
    margin: 50px auto;
  }
  
  .table-header {
    background-color: transparent;
    color: white;
    padding: 15px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #333;
  }
  
  .table-header h3 {
    margin: 0;
    color: var(--main-color);
  }
  
  .table-content {
    max-height: 400px;
    overflow-y: auto;
    background-color: transparent;
  }
  
  .table-row {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    color: var(--main-color);
    margin-left: 10px;
  }
  
  .table-row:last-child {
    border-bottom: 1px solid #333;
  }
  
  .table-row .col-4:first-child {
    color: var(--main-color);
  }
  
  .fas.fa-check {
    color: var(--primary-color);
  }
  
  .fas.fa-times {
    color: var(--text-p-color);
  }
  
  /* Custom scrollbar */
  .table-content::-webkit-scrollbar {
    width: 4px;
  }
  
  .table-content::-webkit-scrollbar-track {
    background: #111111;
  }
  
  .table-content::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
  }
  
  .table-content::-webkit-scrollbar-thumb:hover {
    background: #444;
  }
  
  /* -------------------section-5 end------------------- */

/* -------------------section-6 start------------------- */
.section6 {
    background: linear-gradient(135deg, #1a2234 0%, #2d1f26 100%);
    color: var(--main-color);
    overflow: hidden;
    min-height: 480px;  
    display: flex;
    align-items: center;
}

.section6 .container {
    position: relative;
}

.section6 .display-4 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--main-color);
}

.section6 .lead {
    color: var(--dark-white-color);
    line-height: 1.6;
    max-width: 90%;  
    margin-bottom: 2rem;
}

.section6 .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section6 .img-fluid {
    max-width: 90%;
}

@media (max-width: 991px) {
    .section6 {
        padding: 80px 0;
    }
    
    .section6 .col-lg-6:last-child {
        margin-top: 3rem;
        justify-content: center;
    }
    
    .section6 .lead {
        max-width: 100%;
    }
}
/* -------------------section-6 end------------------- */
/* ... existing code ... */

/* ------------footer start--------- */
.section11 {
  background-color: rgba(26, 26, 26, 1);
  padding: 60px 0 0 0;
}

.footer-left {
  padding-right: 20px;
  margin-bottom: 20px;
}

.footer-brand {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.ai-text {
  color: var(--primary-color);
}

.footer-description {
  color: var(--text-p-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.footer-heading {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--text-p-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-divider {
  height: 1px;
  background-color: #333;
  margin-top: 60px;
}

.footer-copyright {
  padding: 20px 0;
  text-align: center;
}

.footer-copyright p {
  color: var(--text-p-color);
  margin: 0;
  opacity: 0.8;
}

/* ------------footer end--------- */


/* ------------contact us start------------ */

.contact-section {
  background-color: #121212;
  color: var(--main-color);
  padding: 2px 0;
  position: relative;
  overflow: hidden;
}

.contact-section h1, .contact-section h2 {
  color: var(--main-color);
  position: relative;
  z-index: 1;
}

/* Background elements */
.contact-bg-element {
  position: absolute;
  background-color: #0a3b80;
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.contact-bg-element.top-left {
  width: 500px;
  height: 500px;
  top: -250px;
  left: -250px;
}

.contact-bg-element.bottom-right {
  width: 600px;
  height: 600px;
  bottom: -300px;
  right: -300px;
}

.contact-underline {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.contact-description {
  color: var(--text-p-color);
  line-height: 1.6;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Container Styles */
.contact-form-container, 
.contact-info-container {
  background-color: rgba(26, 26, 26, 1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.contact-form-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#contactForm {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#contactForm .mb-3 {
  flex-grow: 1;
}

.contact-info-container {
  height: calc(70% - 1rem);
}

/* Form Styles */
.form-label {
  color: var(--dark-white-color);
  margin-bottom: 8px;
}

.form-control {
  background-color: rgba(13, 13, 13, 1);
  border: 1px solid rgba(55, 65, 81, 1);
  color: var(--main-color);
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.form-control:focus {
  background-color: #1a1a1a;
  border-color: var(--primary-color);
  color: var(--main-color);
  box-shadow: none;
}

/* Contact Info Styles */
.contact-info-container h4 {
  color: var(--main-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(13, 13, 13, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: rgba(43, 127, 255, 1);
}

.contact-details h5 {
  margin: 0 0 5px;
  color: var(--main-color);
}

.contact-details p {
  margin: 0;
  color: var(--text-p-color);
}

/* Social Media Section */
.social-media-container {
  height: calc(30% - 1rem);
  padding: 20px;
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 10px;
  margin-top: 30px;
}

.social-media-container h4 {
  color: var(--main-color);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(13, 13, 13, 1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--nav-bg-color);
  transform: translateY(-3px);
}


/* ------------contact us end------------ */


/* ------------terms & conditions start------------ */

.terms-section {
    background-color: #121212;
    color: var(--main-color);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.terms-section h2{
    color: var(--main-color);
  }

.terms-bg-shape {
    position: absolute;
    z-index: 0;
}

.terms-bg-shape.left {
    width: 600px;
    height: 600px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -200px;
    left: -200px;
    background: linear-gradient(135deg, rgba(26, 42, 71, 0.7) 0%, rgba(45, 31, 38, 0.7) 100%);
}

.terms-bg-shape.right {
    width: 600px;
    height: 600px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -200px;
    right: -200px;
    background: linear-gradient(135deg, rgba(26, 42, 71, 0.7) 0%, rgba(45, 31, 38, 0.7) 100%);
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.terms-section h1 {
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 1rem;
}

.last-updated {
    color: var(--text-p-color);
    margin-bottom: 2rem;
}

.terms-container {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-container h2 {
    margin-bottom: 1rem;
    color: var(--main-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-navigation {
    color: var(--main-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-item {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.terms-section-item h3 {
    color: var(--main-color);
    margin-bottom: 1rem;
    text-align: center;
}

.terms-section-item p {
    color: var(--main-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.terms-section-item ul {
  padding-left: 1.5rem; 
  margin: 0 auto;
  max-width: 400px;
  text-align: center; 
  list-style-type: disc; 
}

.terms-section-item li {
  color: var(--main-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0;
}


    @media (max-width: 768px) {
        .terms-section {
            padding: 40px 0;
        }
        
        .terms-container {
            padding: 25px;
        }
        
      
        
        .terms-navigation {
            max-width: 95%;
        }
        
        .terms-content {
            max-width: 95%;
        }
        
        .terms-section-item {
            max-width: 95%;
        }
        
        .terms-section-item ul {
            max-width: 90%;
        }
}

/* ------------terms & conditions end------------ */


/* ------------privacy policy start------------ */

/* Privacy Policy Page Styles */
.privacy-policy-page {
    background-color: #121212;
    color: var(--main-color);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
    background-image: url('path/to/background-pattern.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .privacy-policy-page h2{
    color: var(--main-color);
  }

  .privacy-header {
    margin-bottom: 40px;
  }
  
  .privacy-header h1 {
    color: var(--main-color);
    margin-bottom: 0.5rem;
  }
  
  .title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 1rem;
  }
  
  
  /* Privacy Card Styles - Separate Cards */
  .privacy-card {
    background-color: rgba(26, 26, 26, 1);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .privacy-card-content {
    padding: 30px;
  }
  
  .privacy-card h3 {
    color: var(--main-color);
    margin-bottom: 20px;
  }
  
  .privacy-card p {
    color: var(--text-p-color);
    margin-bottom: 20px;
  }
  
  /* Information Subsections */
  .info-subsection {
    margin-bottom: 25px;
  }
  
  .info-subsection:last-child {
    margin-bottom: 0;
  }
  
  .info-subsection h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .info-list {
    /* list-style: none; */
    padding-left: 20px;
    margin-bottom: 0;
  }
  
  .info-list li {
    color: var(--text-p-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
  }
  
  /* Rights Grid Layout */
  .rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .rights-item {
    background-color: rgba(30, 30, 30, 1);
    border-radius: 8px;
    padding: 20px;
  }
  
  .rights-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .rights-item p {
    color: var(--text-p-color);
    margin-bottom: 0;
  }
  
  /* Contact Information */
  .contact-info-card {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(249, 115, 22, 0.2));
  }
  .contact-info {
    background-color: rgba(26, 26, 26, 1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .contact-item i {
    color: var(--primary-color);
    width: 24px;
  }
  
  .contact-item span {
    color: var(--text-p-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .privacy-policy-page {
      padding: 20px 0;
    }
  
    .privacy-card-content {
      padding: 20px;
    }
    
    .rights-grid {
      grid-template-columns: 1fr;
    }
  }

/* ------------privacy policy end------------ */




/* Update the curve positioning */
.top-triangel {
  position: absolute;
  top: 210px;
  left: 0;
  z-index: 0;
}

.bottom-triangel {
  position: absolute;
  bottom: 210px;
  right: 0;
  z-index: 0;
}

.bottom-t-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

/* Make sure the content is above the curves */
.privacy-card {
  position: relative;
  z-index: 1;
}

/* Ensure the privacy policy page has proper positioning */




















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































