/* Root Styling */
:root {
  /* Primary Colors */
  --color-primary: #2B31A1;  
  --color-secondary: #FF1B00;
  --color-third: white;
  --gradient:linear-gradient(to right, #52157f, #1d2372);

  /* Text Colors */
  --text-primary: white;   
  --text-secondary: #5a585d;
  --text-light-blue:  #3e527a;  
  --text-white: var(--color-third);;

  /* Background Colors */
  --bg-primary: #dde8fd;  
  --bg-secondary: var(--color-primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html, body {
  overflow-x: hidden;
  width: 100%;
}


/* Main Styling */
body {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden !important;
  padding-top: 90px; 
  width:100%;
  background: var(--gradient);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #1d2372;
}

::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}


/* Buttons */

.red-button{
  background-color: var(--color-secondary);
  border:1px solid var(--color-secondary);
  border-radius: 20px;
  padding: 10px;
  color: var(--color-third);
  font-size: 18px;
  cursor: pointer;
}

.red-button:hover{
  background-color: transparent;
  border:1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.razbutton{
  background: var(--gradient);
  border-radius: 20px;
  padding: 10px;
  border:none;
  color: var(--color-third);
  font-size: 18px;
  border:2px solid var(--gradient);
  cursor: pointer;
}

.copied{
  background:#1d2372;
  color:white;
}
  
.blue-button{
  background-color: var(--color-primary);
  border:1px solid var(--color-primary);
  border-radius: 20px;
  padding: 10px;
  color: var(--color-third);
  font-size: 18px;
  cursor: pointer;
}

.blue-button:hover{
  background-color: transparent;
  border:1px solid var(--color-primary);
  color: var(--color-primary);
}

.white-button{
  background-color: var(--color-third);
  border:2px solid var(--color-third);
  border-radius: 20px;
  padding: 10px;
  color: #0b0670;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.white-button:hover{
  background-color: transparent;
  border:2px solid var(--color-third);
  color: var(--color-third);
}


/* Add this new style for the active state */
.white-button.nav-button.button-active {
  background-color: #9169f5;  /* Using your dark blue color */
  border: 2px solid #9169f5;
  color: var(--color-third);
}

/* Add hover state for active button */
.white-button.nav-button.button-active:hover {
  background-color: transparent;
  border: 2px solid #9169f5;
  color: #9169f5;
}



.cto-button{
display:flex;
justify-content: center;
}


/* //////////////////////////////////////////////////////////////// */

.content-card{
  border:3px solid rgba(255, 255, 255, 0.4); 
  border-radius:30px; 
  /*backdrop-filter: blur(8px);*/
  background-color: rgba(255, 255, 255, 0.2);
  display: flex; 
  flex-direction: column;
  margin-bottom: 100px;
  padding: 0 15px;
  width:100%;
  box-sizing: border-box;
}


.splitter_one{
  width:100%; 
  display:flex; 
  justify-content: center; 
  margin-top:-63px; 
  flex-direction: column; 
  align-items: center;
}

.splitter_one_line{
  width:3px; 
  height:60px; 
  background-color:#A192BF; 
  margin-bottom:-12px;
}

.splitter_one_sphere{
  height:25px; 
  width:25px; 
  border:3.5px solid rgba(255, 255, 255, 0.4); 
  background-color:#381C79; 
  border-radius:30px;
}


.splitter_two{
  width:100%; 
  display:flex; 
  justify-content: center; 
  margin-top:-97px; 
  flex-direction: column; 
  align-items: center;
}

.splitter_two_line{
  width:3px; 
  height:94px; 
  background-color:#A192BF; 
  margin-bottom:-12px;
}

.splitter_two_sphere{
  height:25px; 
  width:25px; 
  border:3.5px solid #A192BF; 
  background-color:#381C79; 
  border-radius:30px;
}


.section-title{
  color:white; 
  text-align:center; 
  font-size:40px; 
  margin:20px;
}

.section-description{
  max-width: 800px; 
  width: 90%; 
  margin-bottom: 10px; 
  text-align: center; 
  color: white; 
  font-size: clamp(14px, 3vw, 16px);
}


.services-section {
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 16px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #52157f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 16px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}


.raz-section{
  margin:10px;
  background-color:var(--color-third);
  padding:20px;
  border-radius:15px;
  width:90%;
  display:flex;
  flex-direction: row;
}
/* //////////////////////////////////////////////////////////////// */

iframe {
	margin:20px;
}

/* Header Section */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
  
/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  background: var(--gradient);
  color: white;
  transition: box-shadow 0.3s ease-in-out;
}

.navbar-shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
  
.navbar-content {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.nav-links {
  display: flex;
}

.nav-link-content {
  display: flex;
  align-items: center;
  flex-direction: row;
}
  
.nav-links ul {
  display: flex;
  list-style: none;
}
  
.nav-links ul li {
  margin-left: 30px;
}
  
.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  border:2px solid transparent;
  transition: all 0.3s ease;
}
  
.nav-links ul li a:hover {
  color: #9169f5;
}

/* Active state */
.nav-links ul li.active a {
  color: #9169f5;
  border:2px solid transparent;

}


/* Logo image in navbar */
.brand-image{
  height:50px;
}

.nav-button{
  margin-left:20px; 
  width:100px;
}


  
/* Mobile Navbar */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}
  
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 4px 0;
}
  
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #7700CE, #0f0b68);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

/* Prevent body scrolling when overlay is shown */
body.menu-overlay-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
  
.menu-overlay.active {
  display: flex;
}
  
.overlay-content {
  text-align: center;
}
  
.overlay-content ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
  
.overlay-content ul li {
  margin: 20px 0;
}
  
.overlay-content ul li a {
  font-size: 24px;
  color: var(--color-third);
  text-decoration: none;
}
  
.close-btn {
  position: absolute;
  top: 30px;
  right:20px;
  font-size: 30px;
  text-align:right;
  color: var(--color-third);
  background: none;
  border: none;
  cursor: pointer;
}
  
.close-btn:hover {
  color: var(--color-third);
}

/* End of Header Section */


/* Main Content */
.container {
  max-width: 1150px;
  display: flex;
  flex-direction: row;
  width: 97%; /* Responsive fallback for smaller screens */
  justify-content: center;
  z-index: 1 !important;
}

/* Section */
.section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.section-content {
  width: 60%;
  display: flex;
  flex-direction: row;
}
  
.section-item {
  display: flex;
  width:100%;
  object-fit: contain; 
  display:flex;
  justify-content:right;
  align-items:center;
}
  

/* Call to action Section */
  
.cto {
  display: flex;
  flex-direction: row;
  padding: 30px 0 50px;
}
  
.cto-btn-container{
  width:100%;
  margin-top:30px;
  display:flex;
  justify-content: left;
}

/* Titles and Text */
.maintitle {
  margin-bottom: 20px;
  font-size: clamp(40px, 4vw, 50px);
}
  
.secondarytitle {
  font-size: clamp(30px, 4vw, 40px);
}
  
p {
  font-size: 20px;
}

.bolded-text{
  font-weight: bold;
  color:var(--text-primary);
}
  
/* Images */
img {
  height: 40px;
}
  
.rounded-image {
  border-radius: 15px;
}

.taskblocks{
  background-color:transparent;
  flex-direction: row; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 20px; 
  width: 100%; 
  margin-bottom: 30px;
}

.taskblock{
 display:flex;
 flex-direction: column;
 border:1px solid black;
 border-radius:35px;
 padding:20px;
 margin:10px;
 width: 280px; 
 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blocktitle{
  font-size:20px;
  margin-bottom:10px;
  font-weight: bold;
}

.blockdesc{
  font-size:15px;
  margin-bottom:10px;
  width:150px;
}

.blocktag{
  font-size:21px;
  opacity: 0.8;
}


.image-display{
  object-fit: contain;
  border-radius:15px; 
  width: 100%; 
  max-width: 1000px; 
  min-width: 280px; 
  height: auto; 
  margin-top: 20px;
}
  

/* Features Section */
.features-container{
  width:100%;
  padding:0px;
  margin:0px;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  flex-direction: row;
}

.feature{
  display:flex;
  align-items:center;
  background-color:var(--color-third);
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding:20px;
  margin:10px;
  width:300px;
  height:400px;
  border-radius:30px;
  font-size:20px;
}


/* FAQ Section */
.faq-wrapper .faq-collapsible {
  background-color: var(--color-third);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 0px;
  text-align: center;
  font-size: 20px;
  outline: none;
}

.faq-wrapper .faq-collapsible.active,
.faq-wrapper .faq-collapsible:hover {
  background-color: var(--color-third);
}

.faq-wrapper .faq-collapsible:after {
  content: '\002B';
  color: var(--text-secondary);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faq-wrapper .faq-collapsible.active:after {
  content: "\2212";
}

.faq-wrapper .faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: var(--color-third);
  border: none;
  color: var(--text-secondary);
}

.faq-wrapper .faq-content p {
  margin: 0;
  padding: 18px;
}


/* Footer Section */
.footer {
  background: var(--gradient);
  color: var(--color-third);
  padding: 60px 0 0 0;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--color-third);
  font-size: 20px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #f1f1f1;
  transform: translateY(-3px);
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-third);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--color-third);
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.contact-info li i {
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.designlogo:hover{
  color:var(--text-white);
}



.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
}

.modal-content {
  background-color: black;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.close-button {
  background-color: #34B556;
  color: black;
  border: 2px solid #34B556;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 1rem;
}

.close-button:hover {
  background-color: black;
  color: #34B556;
  border: 2px solid #34B556;
}

.modal-title {
  font-size: 24px;
  margin-bottom: 1rem;
  color:var(--text-white);
}

.modal-message {
  font-size: 16px;
  line-height: 1.5;
  color:var(--text-white);
}

  .landinganimation{
    height:90% !important;
  }

/* Styles for small mobile devices */
@media (max-width: 300px) {
  .landinganimation{
    height:90% !important;
  }
}



/* Styles for larger mobile devices (phablets, small tablets) */
@media (max-width: 576px) {
  .container{
    width:80%;
  }

  .landinganimation{
    height:200px !important;
  }
}


  
  /* Media Queries */
  @media (max-width: 900px) {

    .container{
      width:90%;
    }

    .landinganimation{
      height:400px !important;
    }


    .taskblocks{
      display:flex;
      justify-content: center;
      align-items: center;
    }
    .content-card{
      border-radius:0px !important;
      border-top:3px solid rgba(255, 255, 255, 0.4) !important;
      border-bottom:3px solid rgba(255, 255, 255, 0.4)!important;
      border-right:none!important;
      border-left:none!important;
    }
    .white-line {
      display: none !important;
    }
    .blue-line {
      flex-grow: 1 !important;
    }

    .section-item {
      padding: 0;
      display:flex;
      align-items: center;
      justify-content: center !important;
    }
  
    .cto {
      flex-direction: column;
      padding: 20px 10px;
    }

    .cto-btn-container{
      justify-content: center;
      margin-top:20px;
      margin-bottom:20px;
    }
  
    .navbar-content {
      justify-content: space-between;
    }
  
    .nav-links {
      display: none; /* Hide nav links on mobile */
    }
  
    .menu-toggle {
      display: flex;
    }

    .maintitle{
      text-align:center;
    }
    .maintext{
      text-align:center;
    }
    .cto-button{
      display:flex;
      justify-content: center;
      margin-bottom:20px;
    }

    .footer-content {
      flex-direction: column;
      gap: 40px;
  }
  
  .footer-section {
      width: 100%;
      text-align: center;
  }
  
  .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .social-links {
      justify-content: center;
  }
  
  .contact-info li {
      justify-content: center;
  }

  .services-container {
    flex-direction: column;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
}

/* Styles for small mobile devices */
@media (max-width: 480px) {
  .maindesc{
    width:75%;
  }
.title{
  width:80%;
}
  .maintitle{
    font-size:30px;
  }
  .nav-button{
    width:90px;
    margin-left:10px;
  }
.white-button{
  font-size:15px;
}
  .container{
    width:70%;
  }

  .landinganimation{
    height:90% !important;
  }
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Make sure the pricing cards don't stretch too wide on larger screens */
@media (min-width: 1200px) {
  .pricing-container {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Adjust to 2 columns on medium screens */
@media (max-width: 900px) and (min-width: 600px) {
  .pricing-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Single column on mobile */
@media (max-width: 599px) {
  .pricing-container {
      grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  transition: transform 0.3s ease;
}

.pricing-card.recommended {
  border: 2px solid #8A4FFF;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8A4FFF;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.price-container {
  margin: 1rem 0;
  text-align: center;
}

.price-label {
  color: #666;
  font-size: 0.875rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin: 0.5rem 0;
}

.price-period {
  color: #666;
  font-size: 0.875rem;
}

select {
  width: 100%;
  padding: 0.5rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  outline: none;
}

select:focus {
  border-color: #8A4FFF;
  box-shadow: 0 0 0 2px rgba(138, 79, 255, 0.1);
}

.features-list {
  margin-top: 1.5rem;
  flex-grow: 1;
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #666;
}

.feature-item::before {
  content: "✓";
  color: #28a745;
  margin-right: 0.5rem;
  font-weight: bold;
}

.pricing-card button {
  background: #8A4FFF;
  color: white;
  border: 2px solid #8A4FFF;
  width: 100%;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.pricing-card button:hover {
  background: transparent;
  color: #8A4FFF;
  border-color: #8A4FFF;
}

.buybuttonclass {
	text-decoration:none;
	color:white;
	width:100%;
	height:50px;
	display:block;
	font-size:20px;
}

.buybuttonclass:hover {
	color:black;
}