
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  
}
.container {
  width: 100%;
  margin: 0 auto;
}


.logo-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: transparent; 
  font-family: 'Arial', sans-serif;  
  padding: 20px;
} 

.logo-container {
  position: relative; 
  text-align: center;
  padding: 20px; 
  max-width: 200px; 
  margin: 0 auto; 
  background: linear-gradient(135deg, #6dd5ed, #dde8ea);
  border-radius: 30px; 
}

.shape {
  position: absolute; 
  width: 160px; 
  height: 160px; 
  background: rgba(255, 255, 255, 0.6); 
  border-radius: 50%; 
  clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 40%); 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 1; 
}

.logo-text {
  position: relative; 
  z-index: 2; 
}

.suite {
  font-size: 40px;
  font-weight: bold;
  color: #FFD700; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); 
}

.tech-solutions {
  font-size: 20px; 
  color: #e74c3c; 
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); 
}

.graphic-element {
  width: 60px; 
  height: 6px; 
  background: linear-gradient(90deg, #3498db, #2ecc71, #f1c40f); 
  margin: 10px auto; 
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}




/* Header */
header {
  background-color: #6096B4; 
  color: #FFFFFF; 
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

header.scrolled {
  background-color: #6096B4; 
  color: #EEE9DA;
}

/* Nav CSS */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-left: 250px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul ul {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #6096B4; 
  padding: 0;
  margin: 0;
  border-radius: 0 0 5px 5px;
  animation: fadeIn 0.3s ease-in-out;
}

nav ul ul ul {
  left: 200px;
  top: 0;
  border-radius: 0 5px 5px 0;
  background: #6096B4; 
}

nav ul li {
  position: relative;
}

nav ul li:hover > ul {
  display: block;
}

nav ul ul li {
  width: 200px;
}

nav ul ul li a {
  padding: 10px;
  color: #FFFFFF;
  background: #6096B4; 
}

nav ul ul li a:hover {
  background: #93BFCF; 
  color: #333; 
}

nav ul li a {
  color: #FFFFFF; 
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #000000; 
  background: #6096B4; 
}

nav ul li .dropdown {
  display: none;
  position: absolute;
  background-color: #FFFFFF; 
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

nav ul li .dropdown li {
  padding: 0;
}

nav ul li .dropdown li a {
  padding: 10px;
  color: #333; 
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #EEE9DA; 
}

nav ul li .dropdown li:last-child a {
  border-bottom: none;
}

nav ul li:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

nav ul li .dropdown li a:hover {
  color: #BDCDD6; 
  background-color: #6096B4; 
}

nav ul li .dropdown li a i {
  margin-right: 8px;
  color: #333; 
  transition: color 0.3s ease;
}

nav ul li .dropdown li a:hover i {
  color: #BDCDD6; 
}

.dropdown-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
}

.submenu-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .submenu-content {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Phone Contact Section */
.phone-right_1 {
  display: flex;
  justify-content: flex-end; 
  align-items: center; 
  padding: 10px 20px; 
  margin-left: 40px;
}

.phone-right-item_1 {
  display: flex;
  align-items: center; 
  background-color: #EEE9DA;
  border-radius: 25px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  padding: 8px 15px; 
  font-family: Arial, sans-serif; 
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s; 
  white-space: nowrap; 
}

.phone-right-item_1:hover {
  background-color: #BDCDD6; 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.phone-right-item_1 i {
  font-size: 20px; 
  color: #6096B4; 
  margin-right: 10px; 
}

.phone-right-item_1 h3 {
  font-size: 14px; 
  color: #333; 
  margin: 0; 
  margin-right: 10px; 
}

.phone-right-item_1 p {
  margin: 0; 
  font-size: 14px; 
  white-space: nowrap; 
}

.phone-right-item_1 a {
  color: #6096B4; 
  text-decoration: none;
  font-weight: bold; 
  transition: color 0.3s; 
}

.phone-right-item_1 a:hover {
  color: #0056b3; 
}



.nav-button {
  display: inline-block; 
  padding: 10px 20px; 
  background-color: #f44d61; 
  color: #fff; 
  border-radius: 25px; 
  font-family: Arial, sans-serif; 
  font-weight: bold; 
  text-decoration: none; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.nav-button:hover {
  background-color: #e9909a; 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); 
}



/* Banner Section */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #fff;
  padding: 20px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1;
  padding-right: 20px;
  color: #333;
}

.text-content h1 {
  font-size: 2.5em;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-content p {
  font-size: 1.2em;
  color: #666;
  margin-top: 10px;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
} 

.banner-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f0f0f0; 
}

.carousel-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}


.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.carousel-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-dots .active {
  background-color: #333;
}

.banner-carousel:hover .carousel-wrapper {
  animation-play-state: paused;
}





/* BANNER DEMO button */
.demo-button {
  background: linear-gradient(45deg, #183cdf 0%, #82ace8 100%);
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 2px;
}

.demo-button:hover {
  background: linear-gradient(45deg, #3377e5 0%, #0a327d 100%);
  transform: scale(1.05);
}


/* banner Responsive Design */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: center;
  }

  .text-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .text-content h1 {
    font-size: 2em;
  }

  .image-content img {
    width: 100%;
    max-width: none;
  }
}

/* ABOUT */


.about {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(45deg, #3498db, #2c3e50);
  background-size: 400% 400%; 
  animation: animated-background 15s ease infinite; 
  color: #fff;
}


.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}


@keyframes animated-background {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}


.about h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #F39C12; 
  animation: fadeIn 0.8s ease-out; 
}


.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #E74C3C; 
  margin: 20px auto;
}

.about h2:hover {
  color: #F1C40F; 
  cursor: pointer;
  transform: translateY(-5px);
  transition: transform 0.3s ease, color 0.3s ease;
}


.about .description {
  font-size: 1.3rem;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out; 
}


.about .cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #1ABC9C; 
  text-decoration: none;
  border-radius: 25px; 
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  animation: fadeIn 1.2s ease-out; 
}

.about .cta-button:hover {
  background-color: #16A085; 
  transform: translateY(-2px);
}


.about .highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.4s ease-out; 
}


.about .highlight-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
  padding: 20px;
  border-radius: 15px; 
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  overflow: hidden; 
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  animation: fadeIn 1.6s ease-out; 
}

.about .highlight-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.about .highlight-item p {
  font-size: 1.2rem;
  color: #F39C12; 
  margin: 0;
  font-weight: 500;
}

.about .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.about .highlight-item img:hover {
  transform: scale(1.2);
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .about h2 {
      font-size: 2rem;
  }

  .about .description {
      font-size: 1rem;
  }

  .about .highlights {
      flex-direction: column;
      gap: 20px;
  }

  .about .highlight-item {
      width: 80%;
  }
}

/* SERVICES  */
.services {
  padding: 60px 20px;
  background: #f2f2f2; 
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
}

.service-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #3498db; 
}

.overlay p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #e0e0e0; 
}

.learn-more {
  font-size: 1rem;
  color: #ffffff;
  background: #3498db; 
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #2980b9; 
}

.service-info {
  padding: 20px;
}

.service-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}


/* FEATURES */
.features {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(45deg, #3498db, #2c3e50, #6096B4); 
  background-size: 400% 400%;
  animation: animated-background 15s ease infinite;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.intro {
  margin-bottom: 40px;
}

.intro h1 {
  font-size: 36px;
  color: #3498db; 
}

.intro p {
  font-size: 18px;
  color: #95a5a6; 
  margin-top: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

.features h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #3498db; 
  margin: 20px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-content h3 {
  font-size: 24px;
  margin: 0;
  color: #6096B4; 
}

.feature-content p {
  margin: 10px 0 0;
  color: #e0e0e0; 
}

.feature-detail {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #6096B4; 
  color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  padding: 30px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}

.feature-detail h3 {
  font-size: 28px;
  margin: 0;
  color: #6096B4; 
}

.feature-detail p {
  font-size: 16px;
  color: #95a5a6; 
}

.close-btn {
  background: #6096B4; 
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #2980b9; 
}

/* Animated Background */
@keyframes animated-background {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* testimonials */

.testimonials {
  padding: 50px 20px;
  text-align: center;
  background-color: #f4f4f4;
} 

.testimonials h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #3498db; 
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #ffffff; 
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card .author {
  margin-top: 1rem;
  font-weight: bold;
  color: #6096B4; 
}

.testimonial-card .rating {
  color: gold; 
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* FOOTER */
.footer {
  background-color: #6096B4; 
  color: #ffffff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 0 20px;
  min-width: 200px;
}

.footer-section.logo h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff; 
}

.footer-section.logo p {
  font-size: 1rem;
  color: #ffffff; 
}

.footer-section.links h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff; 
}

.footer-section.links ul {
  list-style: none;
  padding: 0;
}

.footer-section.links ul li {
  margin-bottom: 8px;
}

.footer-section.links ul li a {
  color: #ffffff; 
  text-decoration: none;
}

.footer-section.links ul li a:hover {
  text-decoration: underline;
}

.footer-section.social h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff; 
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #ffffff; 
  background-color: #333; 
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons .social-icon.facebook:hover {
  background-color: #3b5998; 
}

.social-icons .social-icon.twitter:hover {
  background-color: #1da1f2; 
}

.social-icons .social-icon.linkedin:hover {
  background-color: #0077b5;
}

.social-icons .social-icon.instagram:hover {
  background-color: #e4405f; 
}

.footer-section.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1;
  font-size: 1rem;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff; 
  color: #3498db; 
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.newsletter button:hover {
  background-color: #6096B4; 
  color: #ffffff; 
}



.home-icon {
  position: fixed;
  bottom: 20px;
  right: 20px; 
  font-size: 24px;
  color: #000;
  background: #fff; 
  border-radius: 50%; 
  padding: 10px; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); 
  text-decoration: none;
}

.home-icon:hover {
  color: #007bff; /* Color change on hover */
}
.footer-bottom {
  background-color: #2980b9;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
  margin: 0;
  color: #ffffff;
}


/* .home-icon, .whatsapp-icon {
  position: relative; 
  font-size: 24px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  padding: 15px; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
} */
/* 
.home-icon {
  background: #fff; 
  color: #000; 
}

.home-icon:hover {
  color: #007bff; 
  background: #e9ecef; 
} */

/* .whatsapp-icon {
  background: #25D366; 
  color: #fff; 
}

.whatsapp-icon:hover {
  background: #128C7E; 
  color: #fff; 
} */


/* Pop-up styles */
.container-popup {
  display: none; 
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000; 
}

.popup-content {
  background-color: #fefefe; 
  padding: 30px;
  border-radius: 8px; 
  width: 90%;
  max-width: 450px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
  transition: transform 0.4s ease, opacity 0.4s ease; 
  transform: scale(0.9); 
  opacity: 0;
}

.popup-content.show {
  opacity: 1; 
  transform: scale(1); 
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  color: #333; 
  background-color: #eee; 
  border: none;
  border-radius: 50%;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: #ddd; 
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin: 12px 0 6px;
  color: #333; 
  font-weight: bold;
}

form input, form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
  border-color: #6096B4; 
  outline: none; 
}

form button {
  padding: 12px;
  background-color: #6096B4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px; 
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}

.icon-container {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  display: flex;
  flex-direction: column; 
  gap: 10px; 
  z-index: 1000;
}




/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .service-cards,
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: calc(50% - 20px);
  }
  @media (max-width: 768px) {
    .text-content h1 {
      font-size: 2em;
    }

    .text-content h1 span {
      font-size: 0.7em;
    }

    .banner-content {
      flex-direction: column;
      align-items: center;
    }

    .text-content {
      padding-right: 0;
      text-align: center;
    }

    .image-content {
      margin-top: 20px;
    }
  }
}

/* .jelly-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(172, 220, 233, 0.6); 
  border-radius: 50%;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); 
  top: 30%; 
  left: 40%; 
  transform: translate(-50%, -50%); 
  animation: jelly-1 5s infinite ease-in-out;
} */

/* @keyframes jelly-1 {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
} */

/* 

.jelly-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.6); 
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  top: 40%; 
  left: 60%; 
  transform: translate(-50%, -50%); 
  animation: jelly-2 6s infinite ease-in-out;
} */

/* @keyframes jelly-2 {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
  100% { transform: translate(-50%, -50%) scale(1); }
} */
