/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&amp;family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap');

/* CSS Variables */
:root {
  --primary: #00a2ff;
  --primary-dark: #015d92;
  --primary-light: rgba(0, 162, 255, 0.1);
  --secondary: #38BDF8;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --black: #000000;
  --gray: #333333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Font Faces */
@font-face {
  font-family: 'web';
  src: url('assets/CascadiaMono-Light.html') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'web2';
  src: url('assets/CascadiaMono-Light.html') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('https://www.devdha.in/assets/image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

/* a:focus, button:focus { */
  /* outline: 2px solid var(--primary); */
  /* outline-offset: 2px; */
/* } */

ul {
  list-style: none;
}





/*header *//*header *//*header *//*header *//*header */
/*header *//*header *//*header *//*header *//*header */



  /* ===== Header ===== */
  header {
    background-color: transparent;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  }
  
  .company-logo img {
    height: 40px;
    width: 124px;
    transition: var(--transition);
  }
  
  .company-logo img:hover {
    opacity: 0.9;
  }
  
  /* ===== Navigation ===== */
  .nav-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  #hamburger-icon, #close-icon {
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
  }

  .nav-toggle.active {
      position: fixed;
      right: 5%;
      top: 20px;
  }
  .nav-toggle[aria-expanded="true"] .hamburger {
    transform: rotate(45deg);
  }
  
  .nav-links {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links li a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
  }
  
  .nav-links li a:hover::after,
  .nav-links li a:focus::after {
    width: 100%;
  }
  
/* Desktop Navigation */
@media (min-width: 769px) {
  .nav-links {
      display: flex;
      gap: 2rem; /* Adjust this value for proper spacing */
      align-items: center;
  }

  .nav-links li {
      position: relative;
  }

  .nav-links li a {
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.5rem 0;
      position: relative;
      white-space: nowrap; /* Prevents text wrapping */
  }

  .nav-toggle {
      display: none; /* Hide toggle button on desktop */
  }
}






/*herooo *//*heroo *//*heroo *//*heroo *//*heroo */
/* hweroo *//*heroo *//*heroo *//*heroo *//*heroo */


#banner {
  min-height:60vh;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.hero-text {
  width: 100%;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 30px;
  margin-top: 150px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards 0.2s;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--white), var(--secondary));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards 0.4s;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--white-70);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards 0.6s;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards 0.8s;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-primary {
  background: linear-gradient(90deg, #0EA5E9, #6366F1);
  color: var(--white);
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.5);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -8px rgba(14, 165, 233, 0.6);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-element {
  position: absolute;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
}

.project-icon {
  font-size: 40px;
  color: rgba(82, 85, 228, 0.589);
  transition: transform 0.5s ease, color 0.3s ease;
}

.tech-element:hover .project-icon {
  transform: scale(1.05);
}

/* Element positions */
.main-element {
  width: 100px;
  height: 100px;
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  right: 20%;
  animation-delay: 1s;
}

.element-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 30%;
  animation-delay: 2s;
}

.element-3 {
  width: 90px;
  height: 90px;
  top: 15%;
  left: 65%;
  animation-delay: 0.5s;
}

.element-4 {
  width: 70px;
  height: 70px;
  top: 80%;
  right: 25%;
  animation-delay: 3s;
}

.element-5 {
  width: 85px;
  height: 85px;
  top: 40%;
  right: 10%;
  animation-delay: 2.5s;
}

.element-6 {
  width: 50px;
  height: 50px;
  top: 75%;
  left: 10%;
  animation-delay: 1.5s;
}

.element-7 {
  width: 65px;
  height: 65px;
  top: 35%;
  left: 45%;
  animation-delay: 0.7s;
}

.element-8 {
  width: 75px;
  height: 75px;
  top: 55%;
  right: 45%;
  animation-delay: 0.3s;
}

.element-9 {
  width: 55px;
  height: 55px;
  top: 5%;
  left: 5%;
  animation-delay: 0.8s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 1.5s;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  margin-top: 10px;
  position: relative;
  display: none;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}




/*about *//*about *//*about *//*about *//*about */
/*about *//*about *//*about *//*about *//*about */





/* About Us Section */
#about-us {
  margin-top: 100px;
  padding: 40px 5%;
  color: var(--white);
  
  min-height: 80vh;
}

.about-container {
  display: flex;
  
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }
}
.about-video {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-content {
  flex: 1;
  text-align: left;
}

#about-us h2 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

#about-us p {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.8;
  text-align: justify;
}










/* service *//* service *//* service *//* service *//* service *//* service */
/* service *//* service *//* service *//* service *//* service *//* service */








/* Services Section - Responsive Grid */
.services-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 5%;
  min-height: 80vh;

}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.services-header:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.services-header h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 15px;
  color: var(--primary);
  display: inline-block;
}

.services-header p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout - 2x2 on large screens */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
  transform: translateY(-10px);
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover:before {
  opacity: 0.2;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background-color: rgba(99, 102, 241, 0.2);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary);
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
}

.service-card h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 15px;
  position: relative;
  transition: var(--transition);
  color: var(--white);
  text-align: center;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--white-70);
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.service-card .learn-more {
  margin-top: auto;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  width: fit-content;
  margin: 20px auto 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-card:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.service-card .learn-more:hover {
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services-container {
    max-width: 95%;
    padding: 40px 3%;
  }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    height: 380px;
  }
}

/* Switch to single column on smaller screens */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-header {
    margin-bottom: 50px;
  }
  
  .services-header:after {
    bottom: -15px;
  }
  
  .service-card {
    height: 360px;
  }
  
  .service-content {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .services-container {
    max-width: 100%;
    padding: 40px 15px;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-grid {
    gap: 15px;
  }
  
  .service-card {
    height: auto;
    min-height: 350px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .service-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .service-card .learn-more {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 400px) {
  .service-card {
    min-height: 320px;
  }
  
  .service-content {
    padding: 12px;
  }
}


/* Projects section *//* Projects section *//* Projects section *//* Projects section *//* Projects section */
/* Projects section *//* Projects section *//* Projects section *//* Projects section *//* Projects section */





/* Projects section - Responsive */
#projects {
  max-width: 90%;
  margin: 60px auto;
  padding: 5%;
  min-height: 80vh;

}

#projects h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: var(--white);
}

#projects h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

/* Bento grid layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Large screen layout (two side-by-side, third centered below) */
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "project1 project2"
      "project3 project3";
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .project:nth-child(1) {
    grid-area: project1;
  }
  
  .project:nth-child(2) {
    grid-area: project2;
  }
  
  .project:nth-child(3) {
    grid-area: project3;
    max-width: 800px;
    margin: 0 auto;
    grid-column: 1 / -1;
  }
}

.project {
  position: relative;
  border-radius: 16px;
  border: 0.2px solid rgba(255, 255, 255, 0.185);
  overflow: hidden;
  box-shadow: rgba(255, 252, 252, 0.05) 0px 10px 20px;
  transition: var(--transition);
  cursor: pointer;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 5px 15px;
  border-color: var(--primary);
}

/* Icon styling */
.project-icon1 {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.project:hover .project-icon1 {
  transform: scale(1.05);
  color: var(--secondary);
}

.project-content {
  padding: 20px;
}

.project h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.project p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--white-70);
  line-height: 1.5;
  margin-bottom: 15px;
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.view-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 6px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
}

/* Medium screens */
@media (max-width: 1023px) and (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Small screens */
@media (max-width: 767px) {
  #projects {
    max-width: 95%;
    padding: 5% 3%;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .project {
    padding: 15px;
  }
  
  .project-content {
    padding: 15px;
  }
  
  .project-icon1 {
    font-size: 50px;
    margin-bottom: 15px;
  }
  
  .project-tag {
    top: 12px;
    left: 12px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .project {
    padding: 12px;
  }
  
  .project-content {
    padding: 12px;
  }
  
  .view-btn {
    padding: 8px 16px;
  }
}


 /* client  */ /* client  */ /* client  */ /* client  */ /* client  */ /* client  */
  /* client  */ /* client  */ /* client  */ /* client  */ /* client  */ /* client  */





/* Clients Section */
#clients {
  padding: 60px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;

}

#clients h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 30px;
  color: var(--white);
}

.testimonials-container {
  padding: 1%;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
 
}



.title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--primary);
}

.testimonial-content {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 15px;
  width: 100%;
}

.client-logo {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: var(--white);
  padding: 10px;
  margin: 5px;
  opacity: 0.3;
  transition: var(--transition);
  cursor: pointer;
  object-fit: contain;
}

.client-logo.active {
  opacity: 1;
  transform: scale(1.1);
}

#testimonials{
  min-height: 80vh;

}
.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.testimonial.active {
  opacity: 1;
  display: block;
  position: relative;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 20px 0;
  color: var(--white-70);
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.client-image {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.client-image img {
  mix-blend-mode: multiply;
  filter: contrast(0);
}

.client-details {
  text-align: left;
}

.client-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.2rem;
}

.client-position {
  color: var(--white-70);
  font-size: 0.9rem;
}




 /* contact */ /* contact */ /* contact */ /* contact */ /* contact */ /* contact */       
/* contact */ /* contact */ /* contact */ /* contact */ /* contact */ /* contact */ /* contact */


/* Contact Section - Responsive */
#contact {
  padding: 60px 5%;
  text-align: center;
  margin-bottom: 50px;
  min-height: 80vh;

}

#contact h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 30px;
  color: var(--white);
  position: relative;
}

#contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

#form-message {
  margin: 20px auto;
  padding: 15px;
  border-radius: 8px;
  max-width: 600px;
  display: none;
}

#form-message.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.5);
  color: var(--white);
}

#form-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: var(--white);
}

#contact-form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 162, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Submit Button Styles */
#submit-button {
  position: relative;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  max-width: 200px;
  margin-top: 10px;
  overflow: visible;
}

#submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
}

/* Button Text */
#button-text {
  display: block;
  transition: opacity 0.3s ease;
}

/* Animation Container - Hidden by default */
#animation-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: none;
}

/* Loading Animation */
#animation-container::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* When form is submitting */
#contact-form.submitting #button-text {
  opacity: 0;
}

#contact-form.submitting #animation-container {
  display: block;
}

/* Honeypot Field */
#honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #contact {
    padding: 40px 5%;
  }
  
  #contact-form {
    max-width: 100%;
  }
  
  #submit-button {
    max-width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  .form-group textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 30px 3%;
  }
  
  #contact h2 {
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
}



/* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer */
/* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer *//* Footer */



/* Footer */
footer {
  background-color: rgba(17, 17, 17, 0.3);
  padding: 60px 10% 30px;
  color: var(--white);
  backdrop-filter: blur(10px);
}

/* .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
} */
 
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 0;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
}


/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #0056b3;
}
.newsletter {
    margin-bottom: 15px ;
}
/* Newsletter Form */
.newsletter-form {
  display: flex;
  margin-top: 10px;
}
.newsletter-form input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}
.newsletter-form button {
  padding: 10px 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Legal Links */
.legal-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.legal-links a {
  color: #777;
  text-decoration: none;
}


.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links li a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links li a:hover::after,
.footer-links li a:focus::after {
  width: 100%;
}

.footer-social-media {
  display: flex;
  gap: 15px;
}

.footer-social-media a {
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer-social-media a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary);
}

.bottom-bar {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 245, 245, 0.849);
  color: var(--white-70);
  font-size: 0.9rem;
}
   

/* Case Study Styles *//* Case Study Styles *//* Case Study Styles *//* Case Study Styles *//* Case Study Styles */
/* Case Study Styles *//* Case Study Styles *//* Case Study Styles *//* Case Study Styles *//* Case Study Styles */




/* Case Study Styles */
.case-study-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--white);
}

.section {
  margin-bottom: 4rem;
  scroll-margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.image-container {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.02);
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.5rem 0;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(5px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.process-container {
  margin: 2.5rem 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-number {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
}

.step-content p {
  margin-bottom: 0;
  color: var(--white-70);
}

.review-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--white);
}

.reviewer-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--white-70);
}

.conclusion-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.conclusion-box h3 {
  color: var(--white);
  margin-top: 0;
}

.conclusion-box p {
  color: var(--white-90);
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}








/* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section */
/* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section *//* Blog Section */






/* Base Styles */
.blog-containerno3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;

}

.blog-headerno3 {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.blog-headerno3 h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.subtitleno3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Search Form */
.search-formno3 {
  max-width: 600px;
  margin: 0 auto;
}

.search-groupno3 {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-inputno3 {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-buttonno3 {
  background: #3498db;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-buttonno3:hover {
  background: #2980b9;
}

/* Posts Grid */
.posts-gridno3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.post-cardno3 {
  background: rgba(255, 255, 255, 0.247);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-cardno3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image-containerno3 {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-imageno3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-cardno3:hover .post-imageno3 {
  transform: scale(1.05);
}

.post-contentno3 {
  padding: 20px;
}

.post-dateno3 {
  display: block;
  font-size: 0.85rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 10px;
}

.post-titleno3 {
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.post-excerptno3 {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-metano3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-authorno3 {
  font-size: 0.9rem;
  color: #ffffff;
}

.read-moreno3 {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-moreno3:hover {
  color: #2980b9;
}

/* No Results */
.no-resultsno3 {
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px 0;
}

.no-resultsno3 h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.no-resultsno3 p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.buttonno3 {
  display: inline-block;
  padding: 10px 20px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buttonno3:hover {
  background: #2980b9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-headerno3 h1 {
      font-size: 2rem;
  }
  
  .subtitleno3 {
      font-size: 1rem;
  }
  
  .posts-gridno3 {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .post-image-containerno3 {
      height: 180px;
  }
}

@media (max-width: 480px) {
  .blog-containerno3 {
      padding: 15px;
  }
  
  .search-inputno3 {
      padding: 10px 15px;
  }
  
  .post-contentno3 {
      padding: 15px;
  }
  
  .post-titleno3 {
      font-size: 1.2rem;
  }
}


/* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles */
/* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles *//* Post Styles */


/* ======================
   POST VIEWER STYLES
   ====================== */

   .post-view04 {
    background: var(--dark-bg);
    padding: 2rem 0;
    min-height: 100vh;
  }
  
  .post-container04 {
    max-width: 80%;
    margin: 0 auto;
    padding: 2.5rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .post-container04::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }
  
  .post-header04 {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }
  
  .post-header04 h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .post-meta04 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white-70);
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  
  .post-meta04 span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .post-featured-image04 {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }
  
  .post-featured-image04:hover {
    transform: scale(1.01);
  }
  
  .post-content04 {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--white-90);
    position: relative;
    z-index: 1;
  }
  
  .post-content04 > *:first-child {
    margin-top: 0;
  }
  
  .post-content04 h2 {
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .post-content04 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
  }
  
  .post-content04 h3 {
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .post-content04 h4 {
    color: var(--white-90);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  .post-content04 p {
    margin-bottom: 1.75rem;
    color: var(--white-85);
  }
  
  .post-content04 a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px dotted var(--primary-light);
  }
  
  .post-content04 a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
  }
  
  .post-content04 ul,
  .post-content04 ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
  }
  
  .post-content04 li {
    margin-bottom: 0.75rem;
    position: relative;
  }
  
  .post-content04 ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  /* .post-content04 ol {
    counter-reset: item; 
  } 
  
  .post-content04 ol li {
    counter-increment: item; 
  }*/
  
  .post-content04 ol li::before {
    /* content: counter(item) "."; */
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
  }
  
  .post-content04 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .post-content04 img:hover {
    transform: scale(1.02);
  }
  
  .post-content04 blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: var(--white-80);
    font-style: italic;
  }
  
  .post-content04 code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--white);
  }
  
  .post-content04 pre {
    background: rgba(14, 19, 29, 0.7);
    color: #f8f8f2;
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .post-content04 pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  
  .post-content04 table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .post-content04 table th,
  .post-content04 table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .post-content04 table th {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
  }
  
  .post-content04 hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
  }
  
  .post-footer04 {
    margin-top: 3rem;
    text-align: center;
  }
  
  .back-to-blog04 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
  }
  
  .back-to-blog04:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
  }
  
  /* ======================
     RESPONSIVE ADJUSTMENTS
     ====================== */
  
  @media (max-width: 900px) {
    .post-container04 {
      max-width: 90%;
      padding: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .post-container04 {
      max-width: 95%;
      padding: 1.75rem;
      margin-top: 1.5rem;
      border-radius: 12px;
    }
    
    .post-header04 h1 {
      font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    
    .post-featured-image04 {
      max-height: 350px;
    }
    
    .post-content04 {
      font-size: 1.05rem;
      line-height: 1.8;
    }
  }
  
  @media (max-width: 480px) {
    .post-container04 {
      padding: 1.5rem;
      margin-top: 1rem;
      border-radius: 10px;
    }
    
    .post-meta04 {
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
      margin-left: 0.5rem;
    }
    
    .post-featured-image04 {
      max-height: 250px;
      border-radius: 8px;
    }
    
    .post-content04 h2 {
      font-size: 1.5rem;
    }
    
    .post-content04 h3 {
      font-size: 1.3rem;
    }
    
    .back-to-blog04 {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

/* Mobile Navigation */
@media (max-width: 768px) {
  header {
    padding: 20px 5%;
    margin-top: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
  }

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

  .nav-links li ul {
    position: static;
    background: transparent;
    padding: 10px 0 0 20px;
    display: none;
  }

  .nav-links li:hover ul {
    display: block;
  }
}
/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateY(20px);
  }
  81% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}





.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background:#f1f4f71a;
  color: #00a2ff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #021f30;
  /* color: #fa0101; */
  transform: translateY(-0.25rem);
}

.back-to-top__arrow {
  width: 2.5rem;
  height: 2.5rem;
  fill: #00a2ff;
  transition: transform 0.2s ease;
}

.back-to-top:hover .back-to-top__arrow {
  transform: translateY(-0.25rem);
}

.back-to-top__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.back-to-top__progress-track {
  fill: transparent;
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
  stroke-linecap: round;
}

.back-to-top__progress-indicator {
  fill: transparent;
  stroke: rgb(71, 115, 236);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .back-to-top__arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}



  /* ===== Individial Services Section ===== */
  .container1 {
    max-width: 1200px;
    margin-top: 0;
    margin: 6rem auto 0;
    padding: 2rem;
  }
  
  .services-section1 {
    padding: 2rem 0;
    text-align: center;
  }
  
  .section-description1 {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--white-70);
    position: relative;
    padding: 0 2rem;
  }
  
  .section-description1 i {
    color: var(--primary);
    opacity: 0.7;
    font-size: 1.5rem;
    position: absolute;
  }
  
  .section-description1 i:first-child {
    top: -1rem;
    left: 0;
  }
  
  .section-description1 i:last-child {
    bottom: -1rem;
    right: 0;
  }
  
  .services-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service-card1 {
    background: var(--glass);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    will-change: transform;
  }
  
  .service-card1:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.1);
    border-color: var(--primary);
  }
  
  .service-header1 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .service-icon1 {
    background: rgba(0, 162, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition);
  }
  
  .service-card1:hover .service-icon {
    background: var(--primary);
  }
  
  .service-icon1 i {
    font-size: 1.5rem;
    color: var(--white);
  }
  
  .service-title1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
  }
  
  .service-content1 p {
    font-size: 1rem;
    color: var(--white-70);
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .service-features1 {
    list-style: none;
    text-align: left;
  }
  
  .service-features1 li {
    font-size: 0.95rem;
    color: var(--white-70);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .service-features1 li i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }
  
  /* ===== Services Navigation ===== */
  .services-nav1 {
    padding: 3rem 0;
    /* margin-top: 3rem; */
  }
  
  .services-tabs1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  
  .services-tabs1 h3 {
    font-size: 1.3rem;
    color: var(--white);
  }
  
  .tab-buttons1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .tab-btn1 {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 200px;
  }
  
  .tab-btn1:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 162, 255, 0.3);
  }
  
  @media (max-width: 768px){
    
  .services-tabs1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  }
  



/* 
.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding: 0 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff30;
  z-index: 0;
  transform: translateY(-50%);
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: #40b3ff;
  z-index: 1;
  width: 0%;
  transform: translateY(-50%);
  transition: width 4s linear;
}

.step {
  position: relative;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 60px;
}

.step:hover {
  transform: translateY(-5px);
}

.circle {
  width: 40px;
  height: 40px;
  background: #ffffff70;
  color: #0f1d91;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: auto;
  transition: all 0.3s ease;
}

.circle:hover, .step.active .circle {
  background: #40b3ff;
  color: white;
  transform: scale(1.1);
}

.label {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.step.active .label {
  opacity: 1;
  font-weight: 600;
}

.content-box {
  max-width: 800px;
  margin: 40px auto 0;
  background: #ffffff44;
  color: #fdf7f7;
  padding: 30px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.content-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-box h2 {
  color: #40b3ff;
  margin-top: 0;
}

.content-box ul {
  padding-left: 20px;
}

.content-box li {
  margin-bottom: 8px;
}

/* Responsive styles 
@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .mobappro{
    display: flex;
  }
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }
  
  .timeline::before {
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    transform: none;
  }
  
  .progress-line {
    top: 0;
    left: 20px;
    width: 4px;
    height: 0%;
    transform: none;
  }
  
  .step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
  }
  
  .circle {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }
  
  .label {
    margin-top: 0;
    font-size: 1rem;
  }
  
  .content-box {
    margin: 20px;
    padding: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: flex-start;
    margin: top 80px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.3rem;
  }
  
  .circle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .label {
    font-size: 0.85rem;
  }
  
  .content-box {
    padding: 15px;
    margin-left: 0;
  }
  
  .content-box h2 {
    font-size: 1.2rem;
  }
  
  .content-box ul {
    padding-left: 15px;
  }
} */

.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #fdf4f4;
}

.workflow-container {
  position: relative;
  margin: 2rem 0;
}

.progress-bar {
  position: relative;
  max-width: 80%;
  margin: 0 auto 3rem;
  height: 5px;
  background: #e0e0e0;
  border-radius: 5px;
}

.progress {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #4299e1, #667eea);
  border-radius: 5px;
  transition: width 0.5s ease;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #14181a;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step.active {
  background: #4299e1;
  transform: scale(1.2);
}

.step.completed {
  background: #667eea;
}

.step-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.9rem;
  color: #fdf9f9;
  font-weight: 500;
}

.step-content {
  display: none;
  background: #f8fafc1f;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.step-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-content h3 {
  margin-bottom: 1rem;
  color: #f6f6f7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-content p {
  color: #d1e3f5;
  line-height: 1.6;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(66, 153, 225, 0.1);
  border-radius: 10px;
  margin-right: 1rem;
}

.step-details {
  display: flex;
  align-items: flex-start;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.control-btn {
  background: #4299e1;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #3182ce;
}

.control-btn:disabled {
  background: #5e5f61;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .steps {
    display: none;
  }
  
  .step-title {
    position: static;
    transform: none;
    margin-bottom: 0.5rem;
  }
  
  .step-icon {
    margin-bottom: 1rem;
  }
  
  .step-details {
    flex-direction: column;
  }
}
/* Consultation Section */
#consultation {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

.consultation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.consultation-subtitle {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.consultation-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.consultation-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.consultation-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.info-card i {
  font-size: 2rem;
  color: #4299e1;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin: 0.5rem 0;
  color: #2d3748;
}

.info-card p {
  color: #4a5568;
  margin: 0;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

#consult-date {
  /* Custom styling for date input */
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234299e1' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E") no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

#consult-time {
  /* Custom styling for select */
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234299e1' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Date input restrictions (weekends) */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .consultation-form,
  .consultation-info {
    min-width: 100%;
  }
}