/* General Styles */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400");
@import url("https://fonts.googleapis.com/css?family=Raleway");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures the navbar stays on top of other content */
  width: 100%;  /* Ensure the navbar spans the full width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: Add shadow to make it stand out */
}


a {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.header_text {
 font-family: 'Poppins', sans-serif;
font-size:55px;
}
.sub_header_text {
 font-family: 'Poppins', sans-serif;
font-size:35px;
}
.normal_text {
 font-family: 'Poppins', sans-serif;
font-size:18px;
}
.content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* Space between the columns */
}

.image-column {
  flex: 1 1 45%; /* The image column will take up 45% of the container width */
  max-width: 450px;
}
.text-column {
  flex: 1 1 45%; /* The text column will take up 45% of the container width */
  max-width: 700px;
}
/* Header Styles */
header {
  background-color: #333;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.logo img {
  width: 220px; /* Your logo size */
  margin-top:8px;
}
.button {
    display: inline-block;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
  .signup {
    background-color: #68cb63;
  }
  .login {
    background-color: #619ccd;
  }
  .signup:hover {
  background-color: #7de077; /* Lighten the green color */
}
.login:hover {
  background-color: #7db5e0; /* Lighten the blue color */
}

/* Hamburger Icon */
.hamburger {
  display: none;
  cursor: pointer;
  color: #fff;
  z-index: 1;
  position: relative;
  width: 25px;
}
.hamburger .bar {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background-color: #fff;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3c31dd, #00aaff); /* Purple to Blue gradient */
  padding: 5rem 0;
  color: #fff;
  text-align: center;
}
/* Flexbox for Hero content */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-content {
  flex: 1;
  padding-right: 2rem;
  line-height: 1.6rem;
}

.image-content {
  flex: 1;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Guests Section */
.featured-guests {
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.guest-carousel {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.guest-card {
 margin: 0 auto;
text-align: justify;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
}

.guest-img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.guest-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.guest-card p {
  font-size: 1rem;
  color: #737373;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background: linear-gradient(135deg, #3c31dd, #00aaff); /* Purple to Blue gradient */
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  text-align: center;
  max-width: 300px;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #777;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
}

.footer-bottom p {
  font-size: 1rem;
  color: #bfbfbf;
}


.btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #05f885;
  color: #000000;
  border: none;
  border-radius: 5px;
  transition: all 0.3s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.btn-box a:hover {
  background-color: #02cc67;
  color: #ffffff;
  box-shadow: none; /* Remove shadow on hover */
}


:root {
  --glow-color: hsl(2 100% 64%);
  --glow-color-yellow: hsl(80 100% 64%);
}

.glowing-btn {
  position: relative;
  color: var(--glow-color);
  cursor: pointer;
  padding: 0.35em 2em;
  border: 0.15em solid var(--glow-color);
  border-radius: 0.45em;
  background: none;
  perspective: 2em;
  font-family: "Raleway", sans-serif;
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 1em;

  -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  animation: border-flicker 2s linear infinite;
}

.glowing-txt {
  float: left;
  margin-right: -0.8em;
  -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
  animation: text-flicker 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: faulty-flicker 2s linear infinite;
}

.glowing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
  filter: blur(1em);
  transform: translateY(120%) rotateX(95deg) scale(1, 0); /*change the scale(1.0) to (1.35) to bring back glow underneath*/
  background: var(--glow-color);
  pointer-events: none;
  border-radius: 0.30em;
}

.glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
  transition: opacity 100ms linear;
  border-radius: 0.30em;
}

.glowing-btn:hover {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  animation: none;
}

.glowing-btn:hover .glowing-txt {
  animation: none;
}

.glowing-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.glowing-btn:hover:before {
  filter: blur(1.5em);
  opacity: 1;
}

.glowing-btn:hover:after {
  opacity: 1;
}

@keyframes faulty-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 0.1;
  }
  4% {
    opacity: 0.5;
  }
  19% {
    opacity: 0.5;
  }
  21% {
    opacity: 0.1;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  83% {
    opacity: 0.4;
  }

  87% {
    opacity: 1;
  }
}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  8% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes border-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.1;
  }

  8% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.header_text{
  margin: 0 auto;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}
.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 310px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #d2652d;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #d2652d;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 750px;
    padding: 20px;
}

.price-box {
    flex: 1 1 250px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative; /* Required for the banner to position correctly */
}


.price-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 2em;
    font-weight: bold;
    color: #28a745;
    margin: 15px 0;
}

.features {
    list-style: none;
    margin-top: 20px;
}

.features li {
    font-size: 1em;
    margin: 8px 0;
}

.features li span {
    font-weight: bold;
    margin-right: 8px;
}

.check {
    color: #28a745;
}

.cross {
    color: #e3342f;
}

/* Banner Styling */
.limited-time-banner {
    position: absolute;
    top: 10px;
    left: -20px;
    transform: rotate(-45deg);
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    white-space: nowrap;
    border-radius: 4px; /* Optional: Rounded corners */
}

/* Container for the toggle switch */
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px;
        }

        /* Toggle button style */
        .toggle-button {
            display: inline-flex;
            background-color: #e0e0e0;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
        }

        .toggle-option {
            padding: 10px 20px;
            font-size: 16px;
            color: #555;
            transition: all 0.3s;
            background-color: #e0e0e0;
        }

        .toggle-option.active {
            background-color: #4CAF50; /* Active color */
            color: white;
        }

        /* Style for the price display */
        .price-display {
            text-align: center;
            font-size: 18px;
            margin-top: 10px;
			color: #28a745;
			font-weight: bold;
        }
.faq-container {
            width: 100%;
            max-width: 1000px;
            margin: 20px auto;
            font-family: Arial, sans-serif;
			margin: 0 auto;
        }

        .faq-button {
            width: 650px;
            height: 75px;
            border-radius: 10px;
            background-color: #4CAF50;
            color: white;
            font-size: 19px;
            text-align: left;
            padding-left: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border: none;
            margin-bottom: 5px;
            transition: background-color 0.3s ease;
        }

        .faq-button:hover {
            background-color: #45a049;
        }

        .faq-answer {
            background-color: white;
            color: black;
            border: 1px solid black;
            display: none;
            padding: 10px;
            border-radius: 10px;
            margin-top: -5px;
			margin-bottom: 10px;
            width: 650px;
            transition: height 0.5s ease, padding 0.3s ease;
			text-align: left;
        }

        .plus-sign {
            font-weight: bold;
			margin-right: 30px;
			font-size:30px;
        }

.trial_text {
margin-left: -25px;
font-size:14px;
letter-spacing: 2px;
}


@media (max-width: 1085px) {
    .text-content {
        line-height: 1.8rem;
    }
    .header_text {
        font-family: 'Poppins', sans-serif;
        font-size: 45px;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
.content-container {
    flex-direction: column;
    align-items: center;
  }

.faq-button {
        width: 430px;  /* Smaller width on tablets */
        height: 50px;  /* Smaller height */
        font-size: 14px;  /* Smaller text */
    }
	 .faq-answer {
            width: 430px;
            transition: height 0.5s ease, padding 0.3s ease;
			text-align: left;
			font-size:14px;
        }

        .plus-sign {
            font-weight: bold;
			margin-right: 30px;
			font-size:14px;
        }
.pricing-container {
            flex-direction: column;
            align-items: center;
        }
.glowing-btn{
    font-size: 1em;
  }
.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.header_text {
font-size:40px;
}
.sub_header_text {
font-size:22px;
}
.normal_text {
font-size:14px;
}
  .nav-links {
    display: none;
    flex-direction: column;
    width: 60%;
    position: fixed;
    top: 0;
    right: 0; /* Ensures menu is aligned to the right */
    height: 100vh;
    background-color: #333;
    padding-top: 3rem;
    text-align: center;
    z-index: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 25px!important;
  }

    .nav-links li:last-child {
      margin-bottom: 0; /* Remove extra margin after the last button */
    }

  .hamburger {
    display: block;
  }

  /* Transform hamburger into 'X' */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero Section */
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .image-content img {
    width: 80%;
  }

  .footer-container {
    flex-direction: column;
  }
  .image-column,
  .text-column {
    flex: 1 1 100%; /* On smaller screens, both columns take up the full width */
    max-width: 100%;
  }
}



@media (max-width: 600px){
.features li {
    font-size:  .8em;
    margin: 8px 0;
}
.trial_text {
margin-left: -20px;
font-size:13px!important;
letter-spacing: 1px;
}
}

@media (max-width: 480px) {
	.faq-button {
        width: 300px;  /* Smaller width on tablets */
        height: 40px;  /* Smaller height */
        font-size: 14px;  /* Smaller text */
    }
	 .faq-answer {
            width: 300px;
            transition: height 0.5s ease, padding 0.3s ease;
			text-align: left;
        }

        .plus-sign {
            font-weight: bold;
			margin-right: 20px;
			font-size:15px;
        }
		.trial_text {
margin-left: -20px;
font-size:12px!important;
letter-spacing:1px;
}
}
