* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f5f7fa, #e0e4e8);
  color: #1a1a1a;
  font-family: "ADLaM Display","Roboto", sans-serif;
  overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  background: #fff;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: "ADLaM Display", sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none; /* Added to ensure the logo link has no underline */
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 25px;
 
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
  color: #ef6d19;
  transform: translateY(-2px);
  display: inline-block;
}

.nav-buttons .btn {
    display: inline-block;         /* Ensure it's not full-width */
    width: auto;                   /* Allow content to define width */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 16px;
}


.nav-buttons .login {
  color: #ef6d19;
  border: 2px solid #ef6d19;
}

.nav-buttons .get-started {
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
}
.get-starteds {
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
   display: inline-block;         /* Ensure it's not full-width */
    width: auto;                   /* Allow content to define width */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 16px;
}
.nav-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}

/* Hero Section */
.hero {
  height: auto;
background: linear-gradient(0deg, #d8efdb, #edf7ef);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-content {
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: visible; /* Ensure images are not cropped */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slideshow-container img {
  width: 100%; /* Ensure images take the full width */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent image cropping */
}


.slide {
  display: none;
  width: 100%;
  margin-top: 0; 
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 0; 
 
}

.fade {
  animation: fadeEffect 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeEffect {
 0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}


.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #ef6d19;
}

/* Hero Content Styles */
.hero-content h1 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 20px;
  background: #ef6d19;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 40px;
  
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  color: #666;
}

.hero-content .btn {
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0 10px;
  font-size: 16px;
}

.hero-content .get-started {
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
}

.hero-content .explore {
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.hero-content .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 111, 97, 0.5);
}

/* Easy to Start Section */
.easy-to-start-section {
  padding: 0px 60px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
  position: relative;
  overflow: hidden;
}

.easy-to-start-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.05), transparent 70%);
  z-index: 0;
}


.easy-to-start-section > p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  border-image: linear-gradient(45deg, #00c6ff, #0072ff) 1;
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  transition: transform 0.5s, box-shadow 0.5s;
  animation: slideUp 1s ease-in-out 0.6s forwards;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 198, 255, 0.2);
}

.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00c6ff;
}

.feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
}

.easy-to-start-graphic {
  margin: 40px 0;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out 0.9s forwards;
  opacity: 0;
}

.easy-to-start-graphic img {
  max-width: 100%;
  height: auto;
}

.create-site-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease-in-out 1.2s forwards;
  opacity: 0;
}

.create-site-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.supported-tech {
  text-align: center;
  margin: 40px 0 50px; /* Consolidated margin from multiple definitions */
  position: relative;
  z-index: 1;
}

.supported-tech p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #00c6ff;
  animation: fadeIn 1s ease-in-out 1.5s infinite;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.5s;
  animation: bounceIn 1s ease-in-out 1.8s infinite;
}

.tech-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.tech-icon span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.tech-icon:hover {
  transform: scale(1.2);
}

/* Feature Sections (Other Sections) */
.feature-section {
  padding: 40px 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.feature-section h2 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-section > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
  gap: 40px;
}

.feature-text {
  width: 50%;
}

.feature-text h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ef6d19;
}

.feature-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.feature-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s;
}

.feature-image img:hover {
  transform: rotate(5deg) scale(1.05);
}

/* App Support Section */
.app-support {
  display: flex;
  justify-content: space-around;
  margin: 60px 0;
  gap: 30px;
}

.app-card {
  width: 30%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}

.app-card:hover {
  transform: translateY(-15px) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(255, 111, 97, 0.3);
}

.app-card h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ef6d19;
}

.app-card p {
  font-size: 16px;
  color: #666;
}

/* Security Section */
.security-features {
  display: flex;
  justify-content: space-around;
  margin: 60px 0;
  gap: 30px;
  flex-wrap: wrap;
}

.security-card {
  width: 30%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}

.security-card:hover {
  transform: translateY(-15px) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(255, 111, 97, 0.3);
}

.security-card h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ef6d19;
}

/* Performance Section */
.performance-features {
  display: flex;
  justify-content: space-around;
  margin: 60px 0;
  gap: 30px;
}

.performance-card {
  width: 30%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}

.performance-card:hover {
  transform: translateY(-15px) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(255, 111, 97, 0.3);
}

.performance-card h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ef6d19;
}

/* FAQ Section */
.faq-section {
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  margin: 30px 0;
  border-radius: 25px;
}

.faq-section h2 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq details {
  margin: 20px 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  transition: background 0.3s;
}

.faq summary {
  font-family: "ADLaM Display", sans-serif;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  color: #ef6d19;
}

.faq p {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
}

/* Contact Us Section */
.contact-us-section {
  padding: 100px 60px;
  text-align: left;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-us-section h1 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-us-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form h2,
.contact-info h2 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-form p,
.contact-info p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ef6d19;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  padding: 15px 35px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 111, 97, 0.5);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info li strong {
  color: #1a1a1a;
}

.contact-info li a {
  color: #ef6d19;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info li a:hover {
  color: #00ddeb;
}

/* Requirements Section */
.requirements-section {
  padding: 100px 60px;
  text-align: left;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.requirements-section h1 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.requirements-content {
  margin-bottom: 50px;
}

.requirements-content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 30px 0 20px;
  color: #1a1a1a;
}

.requirements-content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 15px;
  color: #1a1a1a;
}

.requirements-content p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.requirements-note {
  background: #ffe6e6;
  border-left: 4px solid #ff4d4d;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.requirements-note p {
  font-size: 16px;
  color: #1a1a1a;
}

.requirements-note strong {
  color: #ff4d4d;
}

.requirements-content ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.requirements-content li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.requirements-content li strong {
  color: #1a1a1a;
}

/* Introduction Section */
.introduction-section {
  padding: 100px 60px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.7));
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.introduction-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 221, 235, 0.1), transparent 70%);
  z-index: 0;
}

.introduction-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.introduction-header h1 {
  font-family: 'ADLaM Display', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in-out;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

.introduction-content {
  position: relative;
  z-index: 1;
}

.introduction-block {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.2);
}

.introduction-block h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
}

.introduction-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  border-radius: 2px;
}

.introduction-block p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Image Styles */
.introduction-image {
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out 0.5s forwards;
  opacity: 0;
}

.introduction-image img {
  max-width: 100%;
  height: auto;
}



.introduction-block ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.introduction-block li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.introduction-block li strong {
  color: #1a1a1a;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #00ddeb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.3s; }
.benefit-card:nth-child(2) { animation-delay: 0.5s; }
.benefit-card:nth-child(3) { animation-delay: 0.7s; }
.benefit-card:nth-child(4) { animation-delay: 0.9s; }

.benefit-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00ddeb;
}

.benefit-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}




/* Documentation Section */
.documentation-section {
  padding: 100px 60px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.7));
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.documentation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 221, 235, 0.1), transparent 70%);
  z-index: 0;
}

.documentation-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.documentation-header h1 {
  font-family: 'ADLaM Display', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in-out;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

.documentation-content {
  position: relative;
  z-index: 1;
}

.documentation-block {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.documentation-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.2);
}

.documentation-block h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
}

.documentation-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 2px;
}

.documentation-block p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.documentation-block p a {
  color: #ef6d19;
  text-decoration: none;
  transition: color 0.3s;
}

.documentation-block p a:hover {
  color: #00ddeb;
}

.documentation-block ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.documentation-block li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.documentation-block li code {
  font-family: 'Courier New', Courier, monospace;
  background: #f0f0f0;
  padding: 2px 5px;
  border-radius: 3px;
  color: #1a1a1a;
}

/* Image Styles */
.documentation-image {
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out 0.5s forwards;
  opacity: 0;
}

.documentation-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.documentation-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

/* Platform Cards */
.platform-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.platform-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ef6d19;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.platform-card:nth-child(1) { animation-delay: 0.3s; }
.platform-card:nth-child(2) { animation-delay: 0.5s; }
.platform-card:nth-child(3) { animation-delay: 0.7s; }
.platform-card:nth-child(4) { animation-delay: 0.9s; }
.platform-card:nth-child(5) { animation-delay: 1.1s; }

.platform-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.platform-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ef6d19;
}

.platform-card ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.platform-card li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Container for the code snippet */
.code-snippet {
  position: relative;
  background-color: #1e1e1e;
  padding: 1rem;
  border-radius: 10px;
  overflow: auto;
  color: #f0f0f0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
  margin-bottom: 0; /* Remove any margin below the container */
}

/* Copy button styling */
.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  padding: 4px 8px; /* Smaller padding for compact size */
  font-size: 12px; /* Smaller font size */
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 0; /* Ensure no space below the button */
}

.copy-btn:hover {
  background-color: #555;
}

.copy-btn i {
  font-size: 14px; /* Adjust icon size */
}

.copy-btn:focus {
  outline: none;
}

/* Code styling */
pre {
  margin: 0;
  white-space: pre-wrap;  /* Allow long lines to wrap */
  word-wrap: break-word;  /* Break words when necessary */
}


.code-snippet code {
  font-family: 'Courier New', Courier, monospace;
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;   /* Allows wrapping at line breaks */
  word-break: break-word;  /* Breaks long words if needed */
}


/* Documentation Note */
.documentation-note {
  background: #ffe6e6;
  border-left: 4px solid #ff4d4d;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  animation: fadeIn 1s ease-in-out 0.9s forwards;
  opacity: 0;
}

.documentation-note p {
  font-size: 16px;
  color: #1a1a1a;
}

.documentation-note strong {
  color: #ff4d4d;
}

.documentation-note code {
  font-family: 'Courier New', Courier, monospace;
  background: #f0f0f0;
  padding: 2px 5px;
  border-radius: 3px;
  color: #1a1a1a;
}

/* Next Button */
.next-button-container {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.next-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out 1.2s forwards;
  opacity: 0;
}

.next-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 111, 97, 0.5);
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



.footer {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.footer-column {
  margin: 20px;
  flex: 1; /* Ensures the columns are equally spaced */
}
@media (max-width: 768px) {
  /* On mobile devices, use two columns */
  .footer {
    justify-content: space-between;
  }

  .footer-column {
    width: 48%; /* Set each column to take 48% of the width */
    
  }
}
.footer-column h4 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #666;
  margin: 10px 0;
  transition: color 0.3s, transform 0.3s;
}

.footer-column a:hover {
  color: #ef6d19;
  transform: translateX(5px);
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.3);
  }
  50% {
      opacity: 1;
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

/* Mobile Responsive Design */
@media (max-width: 1030px) {
  /* Navigation Bar */
  .navbar {
      
      padding: 15px 20px;
      flex-wrap: wrap;
  }

  .logo {
      font-size: 24px;
  }

  .hamburger {
      display: flex;
  }

.nav-container {
      display: none;
      flex-direction: column;
     width: 60%;
     height: 100vh;  
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
     /* padding: 20px;*/
      position: absolute;
      top: 70px;
      right: 0;   
      z-index: 998;
  }


  .nav-container.active {
      display: flex;
  }

  .nav-links {
       background: rgba(255, 255, 255, 0.95);
      flex-direction: column;
      gap: 0px;
      width: 100%;
      text-align: left;
  }

  .nav-links li {
      margin: 10px 0;
      padding: 0px 10px 20px 10px;
       border-bottom: 1px solid #ddd;
  }

  .nav-links a {
      font-size: 16px;
      padding: 0px 10px;
      display: block;
  }

  .nav-buttons {
       display: inline-block;         /* Ensure it's not full-width */
    width: auto;  
      text-align: left;  
      flex-direction: column;
      gap: 15px;
      width: 100%;
      margin-top: 10px;
       margin-left: 20px;
        margin-bottom: 20px;
  }

  .nav-buttons .btn {
     
       display: inline-block;         /* Ensure it's not full-width */
    width: auto;  
      margin: 0;
      padding: 12px 20px;
      font-size: 16px;
  }

  /* Hero Section */
  .hero {
      padding: 60px 20px;
  }

  .slideshow-container {
      margin-bottom: 30px;
  }

 

  .dots-container {
      bottom: 10px;
  }

  .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
  }

  .hero-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
  }

  .hero-content p {
      font-size: 16px;
      max-width: 100%;
  }

  .hero-content .btn {
      padding: 12px 25px;
      font-size: 14px;
      margin: 5px;
  }

  /* Easy to Start Section */
  .easy-to-start-section {
      padding: 60px 20px;
  }

  .easy-to-start-section h2 {
      font-size: 20px;
      margin-bottom: 20px;
  }

  .easy-to-start-section > p {
      font-size: 14px;
      max-width: 100%;
  }

  .feature-cards {
      gap: 20px;
      margin: 40px 0;
  }

  .feature-card {
      max-width: 100%;
      padding: 20px;
  }

  .feature-card h3 {
      font-size: 20px;
  }

  .feature-card p {
      font-size: 14px;
  }

  .create-site-btn {
      padding: 12px 25px;
      font-size: 14px;
  }

  .easy-to-start-graphic {
      margin: 20px 0;
  }

  .supported-tech p {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .tech-icon img {
      width: 50px;
      height: 50px;
  }

  .tech-icon span {
      font-size: 12px;
  }

  /* Feature Sections (General) */
  .feature-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .feature-section h2 {
      font-size: 32px;
      margin-bottom: 20px;
  }

  .feature-section > p {
      font-size: 14px;
      max-width: 100%;
  }

  .feature-content {
      flex-direction: column;
      gap: 20px;
      margin: 40px 0;
  }

  .feature-text {
      width: 100%;
  }

  .feature-text h3 {
      font-size: 20px;
  }

  .feature-text p {
      font-size: 14px;
  }

  .feature-image img {
      max-width: 100%;
  }

  /* App Support Section */
  .app-support {
      flex-direction: column;
      gap: 20px;
  }

  .app-card {
      width: 100%;
      padding: 20px;
  }

  .app-card h3 {
      font-size: 20px;
  }

  .app-card p {
      font-size: 14px;
  }

  /* Security Section */
  .security-features {
      flex-direction: column;
      gap: 20px;
  }

  .security-card {
      width: 100%;
      padding: 20px;
  }

  .security-card h3 {
      font-size: 20px;
  }

  .security-card p {
      font-size: 14px;
  }

  /* Performance Section */
  .performance-features {
      flex-direction: column;
      gap: 20px;
  }

  .performance-card {
      width: 100%;
      padding: 20px;
  }

  .performance-card h3 {
      font-size: 20px;
  }

  .performance-card p {
      font-size: 14px;
  }

  /* FAQ Section */
  .faq-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .faq-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
  }

  .faq details {
      margin: 15px 0;
      padding: 20px;
  }

  .faq summary {
      font-size: 18px;
  }

  .faq p {
      font-size: 14px;
  }

  /* Contact Us Section */
  .contact-us-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .contact-us-section h1 {
      font-size: 32px;
      margin-bottom: 30px;
  }

  .contact-us-content {
      flex-direction: column;
      gap: 30px;
  }

  .contact-form h2,
  .contact-info h2 {
      font-size: 28px;
      margin-bottom: 15px;
  }

  .contact-form p,
  .contact-info p {
      font-size: 14px;
  }

  .form-group label {
      font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
      font-size: 14px;
      padding: 10px;
  }

  .submit-btn {
      padding: 12px 25px;
      font-size: 14px;
  }

  .contact-info li {
      font-size: 14px;
      margin-bottom: 10px;
  }

  /* Requirements Section */
  .requirements-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .requirements-section h1 {
      font-size: 32px;
      margin-bottom: 15px;
  }

  .requirements-content h2 {
      font-size: 28px;
      margin: 20px 0 15px;
  }

  .requirements-content h3 {
      font-size: 20px;
  }

  .requirements-content p {
      font-size: 14px;
  }

  .requirements-note {
      padding: 10px 15px;
      margin: 15px 0;
  }

  .requirements-note p {
      font-size: 14px;
  }

  .requirements-content li {
      font-size: 14px;
      margin-bottom: 8px;
  }

  /* Introduction Section */
  .introduction-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .introduction-header h1 {
      font-size: 32px;
      margin-bottom: 15px;
  }

  .section-subtitle {
      font-size: 14px;
      max-width: 100%;
  }

  .introduction-block {
      padding: 15px;
      margin-bottom: 30px;
  }

  .introduction-block h2 {
      font-size: 28px;
      margin-bottom: 15px;
  }

  .introduction-block h2::after {
      width: 40px;
  }

  .introduction-block p {
      font-size: 14px;
  }

  .introduction-image img {
      max-width: 100%;
  }

  .benefits-cards {
      flex-direction: column;
      gap: 15px;
  }

  .benefit-card {
      min-width: 100%;
      padding: 15px;
  }

  .benefit-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .benefit-card p {
      font-size: 14px;
  }

  .introduction-block li {
      font-size: 14px;
      margin-bottom: 8px;
  }

  /* Documentation Section */
  .documentation-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .documentation-header h1 {
      font-size: 32px;
      margin-bottom: 15px;
  }

  .documentation-block {
      padding: 15px;
      margin-bottom: 30px;
  }

  .documentation-block h2 {
      font-size: 28px;
      margin-bottom: 15px;
  }

  .documentation-block h2::after {
      width: 40px;
  }

  .documentation-block p {
      font-size: 14px;
  }

  .documentation-image img {
      max-width: 100%;
  }

  .platform-cards {
      flex-direction: column;
      gap: 15px;
  }

  .platform-card {
      min-width: 100%;
      padding: 15px;
  }

  .platform-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .platform-card li {
      font-size: 14px;
      margin-bottom: 8px;
  }

  .code-snippet {
      padding: 10px;
      margin: 10px 0;
  }

  .code-snippet code {
      font-size: 12px;
  }

  .documentation-note {
      padding: 10px 15px;
      margin: 15px 0;
  }

  .documentation-note p {
      font-size: 14px;
  }

  .documentation-block li {
      font-size: 14px;
      margin-bottom: 8px;
  }

  .next-btn {
      padding: 12px 25px;
      font-size: 14px;
  }

  /* Footer */
  

  .footer-column h4 {
      font-size: 18px;
      margin-bottom: 15px;
  }

  .footer-column a {
      font-size: 14px;
      margin: 8px 0;
  }
}

/* Additional Breakpoint for Very Small Screens (e.g., 480px) */
@media (max-width: 480px) {
    .nav-links li {
  padding: 0px 10px 20px 10px;
border-bottom: 1px solid #ddd;
}
  .navbar {
      padding: 10px 15px;
  }

  .logo {
      font-size: 20px;
  }

  .hamburger span {
      width: 25px;
      height: 2px;
  }

  .nav-container {
      
     top: 70px;
     /* padding: 15px;*/
  }

  .nav-links a {
      font-size: 14px;
  }

  .nav-buttons .btn {
       display: inline-block;         /* Ensure it's not full-width */
    width: auto;  
      padding: 10px 15px;
      font-size: 14px;
  }

  .hero {
      padding: 40px 15px;
  }

  .slideshow-container {
      margin-bottom: 20px;
  }

  

  .dot {
      height: 8px;
      width: 8px;
      margin: 0 3px;
  }

  .hero-content h1 {
      font-size: 32px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .hero-content .btn {
      padding: 10px 20px;
      font-size: 12px;
  }

  .easy-to-start-section h2 {
      font-size: 20px;
  }

  .feature-section h2 {
      font-size: 28px;
  }

  .faq-section h2 {
      font-size: 28px;
  }

  .contact-us-section {
      padding: 40px 15px;
  }

  .contact-us-section h1 {
      font-size: 28px;
  }

  .contact-form h2,
  .contact-info h2 {
      font-size: 24px;
  }

  .contact-form p,
  .contact-info p {
      font-size: 12px;
  }

  .form-group label {
      font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
      font-size: 12px;
      padding: 8px;
  }

  .submit-btn {
      padding: 10px 20px;
      font-size: 12px;
  }

  .contact-info li {
      font-size: 12px;
  }

  .requirements-section {
      padding: 40px 15px;
  }

  .requirements-section h1 {
      font-size: 28px;
  }

  .requirements-content h2 {
      font-size: 24px;
  }

  .requirements-content h3 {
      font-size: 18px;
  }

  .requirements-content p {
      font-size: 12px;
  }

  .requirements-note p {
      font-size: 12px;
  }

  .requirements-content li {
      font-size: 12px;
  }

  .introduction-section {
      padding: 40px 15px;
  }

  .introduction-header h1 {
      font-size: 28px;
  }

  .section-subtitle {
      font-size: 12px;
  }

  .introduction-block h2 {
      font-size: 24px;
  }

  .introduction-block h2::after {
      width: 30px;
  }

  .introduction-block p {
      font-size: 12px;
  }

  .benefit-card h3 {
      font-size: 18px;
  }

  .benefit-card p {
      font-size: 12px;
  }

  .introduction-block li {
      font-size: 12px;
  }

  .documentation-section {
      padding: 40px 15px;
  }

  .documentation-header h1 {
      font-size: 28px;
  }

  .documentation-block h2 {
      font-size: 24px;
  }

  .documentation-block h2::after {
      width: 30px;
  }

  .documentation-block p {
      font-size: 12px;
  }

  .platform-card h3 {
      font-size: 18px;
  }

  .platform-card li {
      font-size: 12px;
  }

  .code-snippet code {
      font-size: 10px;
  }

  .documentation-note p {
      font-size: 12px;
  }

  .documentation-block li {
      font-size: 12px;
  }

  .next-btn {
      padding: 10px 20px;
      font-size: 12px;
  }
}













/* Add this to all elements with animations to pause them initially */
.easy-to-start-section h2,
.easy-to-start-section > p,
.feature-card,
.create-site-btn,
.supported-tech p,
.tech-icon,
.introduction-header h1,
.section-subtitle,
.introduction-image,
.benefit-card,
.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3),
.benefit-card:nth-child(4),
.next-btn,
.documentation-header h1,
.documentation-image,
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3),
.platform-card:nth-child(4),
.platform-card:nth-child(5),
.code-snippet,
.documentation-note {
    animation-play-state: paused;
}

/* Ensure the animations are defined and applied as before */
.easy-to-start-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: 38px; /* Default font size for mobile */
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ef6d19, #00ddeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-in-out;
}

/* Larger screens (PC) */
@media (min-width: 768px) {
    .easy-to-start-section h2 {
        font-size: 48px; /* Font size for larger screens */
    }
}


.easy-to-start-section > p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.feature-card {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    border-image: linear-gradient(45deg, #00c6ff, #0072ff) 1;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    transition: transform 0.5s, box-shadow 0.5s;
    animation: slideUp 1s ease-in-out 0.6s forwards;
    opacity: 0;
}

.create-site-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-in-out 1.2s forwards;
    opacity: 0;
}

.supported-tech p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #00c6ff;
    animation: fadeIn 1s ease-in-out 1.5s infinite;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 1.5s;
    animation: bounceIn 1s ease-in-out 1.8s infinite;
}

.introduction-header h1 {
    font-family: 'ADLaM Display', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ef6d19, #00ddeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-in-out;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.introduction-image {
    margin-bottom: 20px;
    text-align: center;
    animation: slideUp 1s ease-in-out 0.5s forwards;
    opacity: 0;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00ddeb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 1s ease-in-out forwards;
    opacity: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.3s; }
.benefit-card:nth-child(2) { animation-delay: 0.5s; }
.benefit-card:nth-child(3) { animation-delay: 0.7s; }
.benefit-card:nth-child(4) { animation-delay: 0.9s; }

.next-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, #ef6d19, #00ddeb);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 1s ease-in-out 1.2s forwards;
    opacity: 0;
}

.documentation-header h1 {
    font-family: 'ADLaM Display', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ef6d19, #00ddeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-in-out;
}

.documentation-image {
    margin-bottom: 20px;
    text-align: center;
    animation: slideUp 1s ease-in-out 0.5s forwards;
    opacity: 0;
}

.platform-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ef6d19;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 1s ease-in-out forwards;
    opacity: 0;
}

.platform-card:nth-child(1) { animation-delay: 0.3s; }
.platform-card:nth-child(2) { animation-delay: 0.5s; }
.platform-card:nth-child(3) { animation-delay: 0.7s; }
.platform-card:nth-child(4) { animation-delay: 0.9s; }
.platform-card:nth-child(5) { animation-delay: 1.1s; }

.code-snippet {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    overflow-x: auto;
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
}

.documentation-note {
    background: #ffe6e6;
    border-left: 4px solid #ff4d4d;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    animation: fadeIn 1s ease-in-out 0.9s forwards;
    opacity: 0;
}


/* Technology Stack Section */
.technology-stack-section {
  padding: 100px 60px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.7));
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.technology-stack-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 221, 235, 0.1), transparent 70%);
  z-index: 0;
}

.technology-stack-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.technology-stack-header h1 {
  font-family: 'ADLaM Display', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in-out;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #ef6d19;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

.technology-stack-content {
  position: relative;
  z-index: 1;
}

.technology-stack-block {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-stack-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.2);
}

.technology-stack-block h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
}

.technology-stack-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  border-radius: 2px;
}

.technology-stack-block p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Image Styles */
.technology-stack-image {
  margin-bottom: 20px;
  text-align: center;
  animation: slideUp 1s ease-in-out 0.5s forwards;
  opacity: 0;
}

.technology-stack-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-stack-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

.technology-stack-block ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.technology-stack-block li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.technology-stack-block li strong {
  color: #1a1a1a;
}

/* Tech Cards */
.tech-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.tech-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #00ddeb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.tech-card:nth-child(1) { animation-delay: 0.3s; }
.tech-card:nth-child(2) { animation-delay: 0.5s; }
.tech-card:nth-child(3) { animation-delay: 0.7s; }
.tech-card:nth-child(4) { animation-delay: 0.9s; }
.tech-card:nth-child(5) { animation-delay: 1.1s; }
.tech-card:nth-child(6) { animation-delay: 1.3s; }

.tech-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00ddeb;
}

.tech-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Technology Stack Note */
.technology-stack-note {
  background: #ffe6e6;
  border-left: 4px solid #ff4d4d;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  animation: fadeIn 1s ease-in-out 0.9s forwards;
  opacity: 0;
}

.technology-stack-note p {
  font-size: 16px;
  color: #1a1a1a;
}

.technology-stack-note strong {
  color: #ff4d4d;
}

/* Next Button */
.next-button-container {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.next-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out 1.2s forwards;
  opacity: 0;
}

.next-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 111, 97, 0.5);
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}





/* Ensure platform-card animation works */
.platform-card {
  opacity: 0; /* Initial state */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.platform-card.animate {
  animation: slideUp 1s ease-in-out forwards; /* Trigger the slideUp animation */
}

/* Ensure other elements also animate correctly */
.easy-to-start-section h2,
.easy-to-start-section > p,
.feature-card,
.create-site-btn,
.supported-tech p,
.tech-icon,
.introduction-header h1,
.section-subtitle,
.introduction-image,
.benefit-card,
.next-btn,
.documentation-header h1,
.documentation-image,
.code-snippet,
.documentation-note {
  opacity: 0; /* Initial state */
  transition: opacity 0.3s ease;
}

.easy-to-start-section h2.animate,
.easy-to-start-section > p.animate,
.feature-card.animate,
.create-site-btn.animate,
.supported-tech p.animate,
.tech-icon.animate,
.introduction-header h1.animate,
.section-subtitle.animate,
.introduction-image.animate,
.benefit-card.animate,
.next-btn.animate,
.documentation-header h1.animate,
.documentation-image.animate,
.code-snippet.animate,
.documentation-note.animate {
  animation: slideUp 1s ease-in-out forwards; /* Trigger the slideUp animation */
}

/* Add parallax styles for documentation-section */
.parallax-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.documentation-section {
  text-align: left;
  background: none; /* Remove the original background */
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.documentation-section::before {
  display: none; /* Remove the radial gradient since we're using parallax */
}

.documentation-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('/assets/img/cloud_server.png') no-repeat center/cover;
}

.documentation-header,
.documentation-content,
.next-button-container {
  position: relative;
  z-index: 1;
}


/* About Us Hero Section */
.about-hero {
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  background: none;
}

.about-hero .parallax-wrapper {
  background: linear-gradient(130deg, rgba(255, 111, 97, 0.3), rgba(0, 221, 235, 0.3)), url('https://www.globusinternet.com/assets/img/about-img.svg') no-repeat center/cover;
}



/* Mission Section */
.mission-section {
  padding: 100px 60px;
  background: none;
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

.mission-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.mission-header h2 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in-out;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mission-text {
  flex: 1;
}

.mission-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #ef6d19;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: slideUp 1s ease-in-out 0.5s forwards;
  opacity: 0;
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out 0.7s forwards;
  opacity: 0;
}

.mission-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

/* Values Section */
.values-section {
  padding: 100px 60px;
  background: none;
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.values-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

.values-section h2 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
}

.values-cards {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.value-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.3s; }
.value-card:nth-child(2) { animation-delay: 0.5s; }
.value-card:nth-child(3) { animation-delay: 0.7s; }

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

.value-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ef6d19;
}

.value-card p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 60px;
  background: none;
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

.team-section h2 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
}

.team-cards {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.team-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.team-card:nth-child(1) { animation-delay: 0.3s; }
.team-card:nth-child(2) { animation-delay: 0.5s; }
.team-card:nth-child(3) { animation-delay: 0.7s; }

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 3px solid #ef6d19;
}

.team-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ef6d19;
}

.team-card p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.team-card p:first-of-type {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* Ensure footer has parallax */
.footer .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

/* Update footer to support parallax */
.footer {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background: none;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* Ensure footer content is above parallax background */
.footer-column {
  position: relative;
  z-index: 1;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
  .about-hero {
      padding: 60px 20px;
  }

  .hero-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
  }

  .hero-content p {
      font-size: 16px;
      max-width: 100%;
  }

  .mission-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .mission-header h2 {
      font-size: 32px;
      margin-bottom: 15px;
  }

  .mission-content {
      flex-direction: column;
      gap: 20px;
  }

  .mission-text p {
      font-size: 14px;
  }

  .mission-image img {
      max-width: 100%;
  }

  .values-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .values-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
  }

  .value-card {
      max-width: 100%;
      padding: 20px;
  }

  .value-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .value-card p {
      font-size: 14px;
  }

  .team-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .team-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
  }

  .team-card {
      max-width: 100%;
      padding: 20px;
  }

  .team-card img {
      width: 120px;
      height: 120px;
  }

  .team-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
  }

  .team-card p {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-hero {
      padding: 40px 15px;
  }

  .hero-content h1 {
      font-size: 32px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .mission-header h2 {
      font-size: 28px;
  }

  .values-section h2 {
      font-size: 28px;
  }

  .team-section h2 {
      font-size: 28px;
  }

  .team-card img {
      width: 100px;
      height: 100px;
  }

  .team-card h3 {
      font-size: 16px;
  }

  .team-card p {
      font-size: 12px;
  }
}


/* Blog Hero Section */
.blog-hero {
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  background: none;
}

.blog-hero .parallax-wrapper {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.3), rgba(0, 221, 235, 0.3)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

/* Blog Section */
.blog-section {
  padding: 100px 60px;
  background: none;
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.blog-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
}

.blog-container {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.blog-posts {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.blog-post:nth-child(1) { animation-delay: 0.3s; }
.blog-post:nth-child(2) { animation-delay: 0.5s; }
.blog-post:nth-child(3) { animation-delay: 0.7s; }

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

.blog-image {
  flex: 1;
  max-width: 300px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  flex: 2;
  padding: 20px;
}

.blog-content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.blog-meta {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog-content p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.5);
}

/* Blog Sidebar */
.blog-sidebar {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  animation: slideUp 1s ease-in-out 0.9s forwards;
  opacity: 0;
}

.blog-sidebar h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.category-list a:hover {
  color: #ef6d19;
  transform: translateX(5px);
  display: inline-block;
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
  .blog-hero {
      padding: 60px 20px;
  }

  .hero-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
  }

  .hero-content p {
      font-size: 16px;
      max-width: 100%;
  }

  .blog-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .blog-container {
      flex-direction: column;
      gap: 20px;
  }

  .blog-post {
      flex-direction: column;
  }

  .blog-image {
      max-width: 100%;
      height: 200px;
  }

  .blog-content {
      padding: 15px;
  }

  .blog-content h2 {
      font-size: 20px;
      margin-bottom: 8px;
  }

  .blog-meta {
      font-size: 12px;
  }

  .blog-content p {
      font-size: 14px;
  }

  .read-more {
      padding: 8px 15px;
      font-size: 12px;
  }

  .blog-sidebar {
      padding: 15px;
  }

  .blog-sidebar h3 {
      font-size: 20px;
      margin-bottom: 15px;
  }

  .category-list a {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
      padding: 40px 15px;
  }

  .hero-content h1 {
      font-size: 32px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .blog-section {
      padding: 40px 15px;
  }

  .blog-content h2 {
      font-size: 18px;
  }

  .blog-meta {
      font-size: 10px;
  }

  .blog-content p {
      font-size: 12px;
  }

  .read-more {
      padding: 6px 12px;
      font-size: 10px;
  }

  .blog-sidebar h3 {
      font-size: 18px;
  }

  .category-list a {
      font-size: 12px;
  }
}

/* Pricing Hero Section */
.pricing-hero {
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  background: none;
}

.pricing-hero .parallax-wrapper {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.3), rgba(0, 221, 235, 0.3)), url('/assets/img/Pricingl.png') no-repeat center/cover;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 60px;
  background: none;
  margin: 30px 0;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-section .parallax-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(245, 247, 250, 0.2)), url('/assets/img/price.png') no-repeat center/cover;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out forwards;
  opacity: 0;
}

.pricing-card:nth-child(1) { animation-delay: 0.3s; }
.pricing-card:nth-child(2) { animation-delay: 0.5s; }
.pricing-card:nth-child(3) { animation-delay: 0.7s; }

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 221, 235, 0.3);
}

.pricing-card.popular {
  border: 2px solid #00ddeb;
  position: relative;
}

.popular-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ddeb;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.pricing-card h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-family: "ADLaM Display", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #00ddeb;
  margin-bottom: 5px;
}

.pricing-card h3 span {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.regular-price {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.features-list li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ddeb;
  font-weight: 700;
}

.features-list li span {
  float: right;
  color: #1a1a1a;
  font-weight: 700;
}

.features-list .total-value {
  font-weight: 700;
  color: #1a1a1a;
  border-top: 1px solid #e0e4e8;
  padding-top: 10px;
  margin-top: 10px;
}

.features-list .subscription-price {
  font-weight: 700;
  color: #00ddeb;
}

.features-list .savings {
  font-size: 14px;
  color: #666;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.pricing-buttons .btn {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.install-free {
  background: #00ddeb;
  color: #fff;
  border: 2px solid #00ddeb;
}

.trial-btn {
  background: #fff;
  color: #00ddeb;
  border: 2px solid #00ddeb;
}

.buy-now {
  background: linear-gradient(90deg, #ef6d19, #00ddeb);
  color: #fff;
}

.pricing-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 221, 235, 0.4);
}

.trial-note {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
  .pricing-hero {
      padding: 60px 20px;
  }

  .hero-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
  }

  .hero-content p {
      font-size: 16px;
      max-width: 100%;
  }

  .pricing-section {
      padding: 60px 20px;
      margin: 20px 0;
  }

  .pricing-container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .pricing-card {
      max-width: 100%;
      padding: 20px;
  }

  .pricing-card h2 {
      font-size: 20px;
      margin-bottom: 8px;
  }

  .pricing-card h3 {
      font-size: 28px;
  }

  .pricing-card h3 span {
      font-size: 14px;
  }

  .regular-price {
      font-size: 12px;
  }

  .features-list li {
      font-size: 14px;
  }

  .features-list li span {
      font-size: 12px;
  }

  .features-list .total-value,
  .features-list .subscription-price {
      font-size: 14px;
  }

  .features-list .savings {
      font-size: 12px;
  }

  .pricing-buttons .btn {
      padding: 10px 20px;
      font-size: 14px;
  }

  .trial-note {
      font-size: 12px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
      padding: 40px 15px;
  }

  .hero-content h1 {
      font-size: 32px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .pricing-section {
      padding: 40px 15px;
  }

  .pricing-card h2 {
      font-size: 18px;
  }

  .pricing-card h3 {
      font-size: 24px;
  }

  .pricing-card h3 span {
      font-size: 12px;
  }

  .features-list li {
      font-size: 12px;
  }

  .features-list li span {
      font-size: 10px;
  }

  .pricing-buttons .btn {
      padding: 8px 15px;
      font-size: 12px;
  }
}

/*documents slider*/


  /* General container for the whole page */
  .ols-docs-container {
    display: flex;
    min-height: 100vh;
    transition: margin-left 0.3s ease; /* Smooth transition for content shift */
  }

  /* General Sidebar Styling */
  .ols-docs-sidebar {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-right: 1px solid #eee;
    position: fixed; /* Fix the sidebar on screen */
    top: 99px;
    bottom: 0; /* Ensure it spans the full height of the viewport */
    overflow-y: auto; /* Allow scrolling inside the sidebar */
    z-index: 1000;
    transition: left 0.3s ease; /* Smooth transition for mobile slide in/out */
  }

  .ols-docs-sidebar .ols-docs-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ols-docs-sidebar .ols-docs-menu li {
    margin-bottom: 10px;
    position: relative;
  }

  .ols-docs-sidebar .ols-docs-menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ols-docs-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 15px;
  }

  .ols-docs-content {
    flex: 1;
    padding: 40px;
    background: #fff;
    transition: margin-left 0.3s ease;
  }

  /* ---------- Desktop Layout (Sidebar always visible) ---------- */
  @media (min-width: 769px) {
    .ols-docs-container {
      margin-left: 0px; /* Push content to the right when sidebar is visible */
    }
    .ols-docs-sidebar {
      position: fixed; /* Keep sidebar fixed on desktop */
      left: 0;
    }

    .ols-docs-content {
      padding-left: 20px;
      margin-left: 250px; /* Default margin for the content when sidebar is visible */
    }
  }

  /* ---------- Mobile Layout (Sidebar slides in/out) ---------- */
  @media (max-width: 768px) {
    .ols-docs-container {
      flex-direction: column;
    }

    .ols-docs-sidebar {
      position: absolute;
      left: -100%; /* Initially hide sidebar off-screen */
      top: 75px; /* Adjust to avoid overlap with header */
      height: 100vh;
      width: 250px;
      background: #fff;
      z-index: 1000;
      transition: left 0.3s ease; /* Smooth transition */
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    }

    .ols-docs-sidebar.active {
      position: fixed; /* Keep sidebar fixed when active */
      left: 0; /* Show the sidebar */
      top: 75px;
      bottom: 0;
      z-index: 1000;
    }

   .ols-docs-menu-toggle {
      display: block;
      background: #ef6d19;
      color: #fff;
      padding: 10px 10px;
      border-radius: 5px;
      width: fit-content;
      margin: 5px;
      cursor: pointer;
      font-size: 14px;
    }

    .ols-docs-content {
      padding: 20px;
    }
  }

  /* Dropdown Styling */
  .dropdown-menu {
    display: none;
    padding-left: 20px;
  }

  .dropdown.active > .dropdown-menu {
    display: block;
  }

  /* Arrow icon styling */
  .dropdown .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .dropdown.active .arrow {
    transform: rotate(180deg); /* Rotate arrow when active */
  }
  
  /* Remove the bullet point from the submenu items */
.ols-docs-sidebar .ols-docs-menu ul {
  list-style-type: none; /* Remove bullets */
  padding-left: 0; /* Remove padding to align properly */
  margin: 0; /* Remove margin */
  margin-left: 20px;
}

.ols-docs-sidebar .ols-docs-menu ul li {
  padding-left: 0; /* Remove indentation from submenu items */
}
/* Set normal font style for submenu items */
.ols-docs-sidebar .ols-docs-menu ul li a {
  font-weight: 500 !important;     /* Medium weight for a smart look */
  font-style: normal !important;   /* No italics */
  font-family: 'Open Sans', sans-serif; /* Use Arial font */
  font-size: 14px;
  color: #ef6d19;                     /* Optional: Smart dark gray text */
  text-decoration: none;           /* Optional: Remove underline */
  margin-top: 10px;
}

/* Terms Section */
.terms-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: "Arial", sans-serif;
    color: #333;
}

.terms-section .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.terms-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.terms-section h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul {
    margin-left: 20px;
    padding-left: 10px;
}

.terms-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-section a {
    color: #0073e6;
    text-decoration: underline;
    transition: color 0.2s;
}

.terms-section a:hover {
    color: #005bb5;
}

/* Privacy Section */
.privacy-section {
    padding: 60px 20px;
    background-color: #fdfdfd;
    font-family: "Arial", sans-serif;
    color: #333;
}

.privacy-section .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.privacy-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.privacy-section h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section a {
    color: #0073e6;
    text-decoration: underline;
    transition: color 0.2s;
}

.privacy-section a:hover {
    color: #005bb5;
}
.success-message {
    padding: 12px;
    color: #155724;
    background-color: #d4edda;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

.error-message {
    padding: 12px;
    color: #721c24;
    background-color: #f8d7da;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}
