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

*::selection {
  color: #3ecf8e;
}

body {
  font-family: Arial, sans-serif;
}

.portfolio-container {
  background-color: black;
}

/* nav-bar */
nav {
  height: 3rem;
  width: 100vw;
  height: 100px;
  background-color: #131418;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  position: fixed;
  z-index: 10;
  color: #f2f5f7;
}

/*Styling logo*/
.logo {
  padding: 1vh 1vw;
  text-align: center;
  display: flex;
  align-items: center;
}

.logo i {
  color: #63e6be;
  /* Green color for the logo icon */
  margin-right: 0.5rem;
}

.logo span {
  color: #63e6be;
  /* Green color for the logo text */
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  width: 88vw;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  margin-left: auto;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 0.7vw;
  color: inherit;
}

.nav-links li a:hover {
  color: #63e6be;
  /* Green color on hover */
}

.nav-links li {
  position: relative;
}

/*Styling Buttons*/
.hire-button {
  background-color: transparent;
  border: 1.5px solid #63e6be;
  /* Green border for button */
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
  color: #f2f5f7;
}

.hire-button:hover {
  color: #131418;
  background-color: #63e6be;
  /* Green background on hover */
  border: 1.5px solid #63e6be;
  transition: all ease-in-out 350ms;
}

.resume-button {
  color: #131418;
  background-color: #63e6be;
  /* Green background for button */
  border: 1.5px solid #63e6be;
  /* Green border for button */
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.resume-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #63e6be;
  /* Green border on hover */
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

.login-menu {
  display: none;
}

/*Styling for small screens*/
@media screen and (max-width: 800px) {
  nav {
    background-color: #000;
    /* Black background for small screens */
  }

  .logo i,
  .logo span {
    color: #63e6be;
    /* White color for logo on small screens */
  }

  /* .login-menu {
    display: block;
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-55%, -50%);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .login-menu a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    background-color: #63e6be;
    border-radius: 5px;
    transition: 0.3s;
  }

  .login-menu a:hover {
    background-color: #1e7e74;
  } */

  .nav-links {
    background: #000;
    /* Black background for the nav links container */
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li a {
    color: #fff;
    /* White color for links on small screens */
  }

  .nav-links li a:hover {
    color: #63e6be;
    /* Green color on hover for links */
  }

  .hire-button {
    border: 1.5px solid #fff;
    /* White border for button on small screens */
    color: #fff;
    /* White text color for button on small screens */
  }

  .hire-button:hover {
    color: #000;
    /* Black text color for button on hover */
    background-color: #63e6be;
    border: 1.5px solid #fff;
  }

  .resume-button {
    color: #fff;
    /* White text color for button on small screens */
    background-color: #63e6be;
    border: 1.5px solid #63e6be;
  }

  .resume-button:hover {
    color: #fff;
    background-color: transparent;
    border: 1.5px solid #fff;
    /* White border on hover */
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .hamburger div {
    background: #fff;
    /* White color for hamburger lines on small screens */
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }

  li.fade {
    opacity: 1;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Bio Image */
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 10% 0;
  color: aliceblue;
  /* Set color for text */
}

.home-content {
  max-width: 600px;
  color: aliceblue;
  /* Ensure text color remains consistent */
}

.home-content h1 {
  font-size: 56px;
  /* Maintain desktop font size */
  font-weight: 700;
  margin: -3px 0;
  opacity: 1;
}

.home-content h3 {
  font-size: 32px;
  /* Maintain desktop font size */
  font-weight: 700;
  color: aliceblue;
  /* Set color */
  opacity: 1;
}

.home-content h3 span {
  color: #3ecf8e;
  /* Specific color for span */
}

.home-content p {
  font-size: 20px;
  /* Maintain desktop font size */
  margin-top: 2%;
  opacity: 1;
  color: aliceblue;
  /* Ensure paragraph color */
}

.home-social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  list-style: none;
  margin-top: 3%;
}

.home-social li {
  padding: 10%;
}

.Image {
  width: 180px;
  /* Adjust the size of your logo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in-out;
  transform: scale(1.1);
  /* Scale logo slightly on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness (Mobile/Tablets) */
@media (max-width: 768px) {
  .home {
    flex-direction: column;
    /* Stack content vertically, image first */
    /* Adjust height */
    padding: 50px 5% 0;
    /* Adjust padding */
  }

  .Image {
    order: -1;
    /* Move image to the top */
    padding-left: 0;
    text-align: center;
    /* Center the image */
    margin-bottom: 20px;
    /* Add some space below the image */
  }

  .Image img {
    max-width: 90%;
    /* Reduce image size on smaller screens */
    height: auto;
  }

  .home-content {
    position: relative;
    top: 100px;
    text-align: center;
    /* Center text for smaller screens */
    padding: 0 5%;
    /* Add padding */
  }

  .home-social ul {
    margin-top: 20px;
    justify-content: center;
  }

  .home-social li {
    padding: 0 10px;
    /* Reduce padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .home {
    flex-direction: column;
    /* Stack content vertically, image first */
    /* Adjust height */
    padding: 50px 5% 0;
    /* Adjust padding */
  }

  .home-content h1 {
    top: 10px;
    font-size: 32px;
    /* Adjust font size for very small screens */
    color: aliceblue;
    /* Ensure color */
  }

  .home-content h3 {
    top: 100px;
    font-size: 24px;
    /* Adjust font size for very small screens */
    color: aliceblue;
    /* Ensure color */
  }

  .home-content p {
    font-size: 16px;
    /* Adjust font size for very small screens */
    color: aliceblue;
    /* Ensure color */
  }

  .home-social ul {
    flex-direction: row;
    /* Maintain row layout */
    flex-wrap: wrap;
    /* Wrap if necessary */
    padding: 0;
  }

  .home-social li {
    padding: 5px;
    /* Further reduce padding */
  }

  .Image img {
    max-width: 100%;
    /* Ensure full width on very small screens */
  }
}

/* skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2%;
  justify-content: center;
  /* Center items horizontally */
  gap: 2%;
  /* Adjust gap for better spacing */
  text-align: center;
  /* Center text within the skills section */
}

.skills-title,
.experience-tittle,
.project-tittle {
  width: 100%;
  /* Full width of the container */
  margin-bottom: 20px;
  /* Space between title and content */
  font-size: 2em;
  /* Adjust font size as needed */
  font-weight: bold;
  /* Make the title stand out */
  color: #fff;
}

.skill-content {
  width: 100%;
  /* Full width of the container */
  margin-bottom: 20px;
  /* Space between title and content */
  font-size: 30px;
  font-weight: 400;
}

.skills>div {
  background-color: #0f0f0f;
  width: 23%;
  /* Adjust width for better fit */
  height: auto;
  /* Use auto for dynamic height */
  margin: 10px;
  text-align: center;
  gap: 10px;
  animation: slideTop 0.5s ease-out;
  /* Add animation */
  padding: 10px;
  /* Add padding for better spacing */
  box-sizing: border-box;
  /* Include padding and border in element's total width and height */
}

.webTools,
.programming,
.dataBase,
.DevTools {
  height: auto;
  /* Use auto for dynamic height */
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 #006c1480;
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px;
  /* Add padding for better spacing */
}

.webTools ul,
.programming ul,
.dataBase ul,
.DevTools ul {
  display: flex;
  list-style: none;
  padding: 0;
  /* Reset default padding */
  margin: 0;
  /* Reset default margin */
  justify-content: center;
  /* Center items horizontally */
  flex-wrap: wrap;
  /* Wrap items to next line */
}

.webTools li,
.programming li,
.dataBase li,
.DevTools li {
  padding: 5%;
  /* Consistent padding for all lists */
}

/* Experince */
.experience,
.education {
  display: flex;
  flex-direction: column;
  background-image: url(https://i.postimg.cc/VNJkp3Xx/TimeLine.png);
  margin: 5%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-repeat: no-repeat;
  color: #fff;
}

.experience1,
.experience2,
.experience3,
.education1,
.education2,
.education3 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 40%;
  padding: 2%;
  background: rgba(43, 54, 28, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.experience1,
.experience3,
.education1,
.education3 {
  margin-left: 15%;
  color: #fff;
}

.date,
.education-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5%;
  font-size: small;
  font-weight: bolder;
}

.icon-org,
.education-icon-org {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.view {
  display: flex;
  padding: 2%;
  align-self: self-start;
}

.view a {
  color: #3ecf8e;
  text-decoration: none;
}

.start {
  align-self: flex-start;
  color: #000;
}

.end {
  align-self: flex-end;
}

.date {
  margin-right: 20px;
}

.experienceInfo {
  flex: 1;
  color: #fff;
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 768px) {

  .experience1,
  .experience2,
  .experience3 {
    width: 90%;
    /* Increase width for tablets */
    margin-left: 0;
    /* Remove left margin */
    margin-right: 0;
    /* Remove right margin */
  }

  .experience1,
  .experience3 {
    margin-left: 0;
    /* Ensure no left margin */
  }

  .date {
    display: flex;
    align-items: center;
    /* Center align elements */
  }

  .view {
    flex-direction: column;
    /* Stack view link and icon vertically */
    align-items: center;
    /* Center align items */
  }
}

@media (max-width: 480px) {

  .experience1,
  .experience2,
  .experience3 {
    width: 100%;
    /* Full width for small screens */
  }

  .date {
    font-size: smaller;
    /* Reduce font size */
  }

  .experienceInfo {
    font-size: smaller;
    /* Reduce font size */
  }
}

/* Project */
.project {
  display: flex;
  flex-wrap: wrap;
  margin: 5%;
  padding-block: 5%;
  justify-content: space-around;
}

.project-container {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 38px;
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
  padding: 2%;
  margin-block: 2%;
}

.wrapper {
  width: 100%;
}

.banner-image {
  background-image: url(https://i.postimg.cc/5NmyC5xR/supabase.png);
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.255);
}

.banner-image1 {
  background-image: url(https://i.postimg.cc/kG3Gxf6k/project1.png);
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.255);
}

.button-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  margin: 0 10px;
}

.outline {
  background: transparent;
  color: rgb(62, 207, 142, 0.9);
  border: 1px solid rgb(62, 207, 142, 0.9);
  transition: all 0.3s ease;
}

.outline:hover {
  transform: scale(1.125);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  background: rgb(62, 207, 142, 0.9);
}

.fill {
  background: rgb(62, 207, 142, 0.9);
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
  transition: all 0.3s ease;
}

.fill:hover {
  background: none;
  transform: scale(1.125);
  border-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgb(62, 207, 142, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
  transition: all 0.3s ease;
}

/* Existing CSS */

@media (max-width: 992px) {
  .project {
    justify-content: center;
  }

  .project-container {
    max-width: 45%;
    margin: 2.5%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin: 0 5px;
  }

  .banner-image,
  .banner-image1 {
    height: 180px;
  }
}

/* For smartphones */
@media (max-width: 600px) {
  .project {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .project-container {
    max-width: 90%;
    margin: 5% 0;
    padding: 5%;
  }

  .banner-image,
  .banner-image1 {
    height: 150px;
  }

  h2 {
    font-size: 1.5rem;
    margin: 15px 0;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.7rem;
    margin: 0 5px;
  }

  /* Update Button Wrapper */
  .button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
  }

  .btn {
    margin: 5px 0;
    width: 48%;
    /* Allows space for both buttons with space between */
  }
}

/* animation */
@keyframes slideTop {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
  .skills>div {
    width: 30%;
    /* Adjust width for medium screens */
  }
}

@media (max-width: 992px) {
  .skills>div {
    width: 45%;
    /* Adjust width for smaller screens */
  }
}

@media (max-width: 768px) {
  .skills>div {
    width: 90%;
    /* Adjust width for mobile screens */
  }
}

/* Animations */
@keyframes slideTop {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideBottom {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@font-face {
  font-family: "AmsterdamFour";
  src: url("kk.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

.name {
  font-family: "AmsterdamFour", Arial, sans-serif;
}

/* Animations */
@keyframes slideTop {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideBottom {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@font-face {
  font-family: "AmsterdamFour";
  src: url("kk.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

.name {
  font-family: "AmsterdamFour", Arial, sans-serif;
}

/* certification */
.Certification {
  margin: 10%;
  height: 100%;
}

.slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Slides */
.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  height: 600px;
  /* Fixed height for images */

  border-radius: 10px;
  display: block;
}

/* Text overlay */
.text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Indicator dots */
.dot-container {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

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

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

/* Responsive design adjustments */
@media screen and (max-width: 768px) {
  .slide img {
    height: 400px;
    /* Adjust height for smaller screens */
  }

  .text {
    font-size: 16px;
    bottom: 10px;
    left: 10px;
    padding: 8px;
  }

  .prev,
  .next {
    padding: 12px;
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .slide img {
    height: 300px;
    /* Further adjust height for very small screens */
  }

  .text {
    font-size: 14px;
    bottom: 5px;
    left: 5px;
    padding: 6px;
  }

  .prev,
  .next {
    padding: 10px;
    font-size: 18px;
  }

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

/* contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

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

.card {
  background: rgba(62,
      207,
      142,
      0.1);
  /* Light transparent version of #3ECF8E */
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(62, 207, 142, 0.3);
  padding: 30px;
  width: 100%;
  max-width: 600px;
  color: #fff;
}

.card h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

p {
  margin-bottom: 20px;
  color: #ccc;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #3ecf8e;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #34b17e;
}

/* Responsive design */
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 8px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 8px;
  }
}

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

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

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 6px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 6px;
  }
}

.copyRights {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* Ensure full width */
  background: linear-gradient(135deg, #63e6be, #1e7e74);
  color: #fff;
  padding: 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 768px) {
  .copyRights {
    padding: 15px;
    /* Adjust padding for smaller screens */
    margin-top: 30px;
    /* Reduce margin on top */
    border-radius: 8px;
    /* Slightly smaller border radius */
    font-size: 14px;
    /* Adjust font size for better readability */
  }
}

@media (max-width: 480px) {
  .copyRights {
    padding: 10px;
    /* Reduce padding further for very small screens */
    margin-top: 20px;
    /* Minimal margin for very small screens */
    font-size: 12px;
    /* Smaller font size for compact layout */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for small screens */
  }
}

/* Keep the other styles intact */
.copy {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.design {
  font-size: 1rem;
  font-style: italic;
  color: #f0f0f0;
}

.design span {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hover effect for the "Design by" part */
.design:hover {
  color: #63e6be;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

body {
  margin: 0;
  font-family: "Euclid Circular A", "Poppins";
  color: #ddfdfd;
  background: #050808;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 50px;
  padding: 0 80px;
  text-align: center;
  height: 100vh;
  background: #050808;
}

@media (width >=420px) {
  .banner>img {
    width: 40vw;
  }
}

@media (width >=648px) {
  .banner {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}

.waves>use {
  animation: move-forever 2s -2s linear infinite;
}

.waves>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 6s;
}

.waves>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30vw;
  max-height: 200px;
}

.home-image {
  flex: 1;
  text-align: right;
  /* Align image to the left */
  z-index: 1;
  /* Ensure it's above the wave */
  padding-bottom: 100px;
}

/* Container Styles */
.container {
  font-family: "Arial", sans-serif;
  line-height: 1.8;
  color: #000000;
  padding: 20px;
  padding-top: 150px;
  margin: 20px auto;
  max-width: 1400px;
  background-color: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Paragraph Styles */
.container p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ffffff;
  text-align: justify;
}

/* Heading Styles */
.container h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #074f87;
  text-transform: uppercase;
  border-left: 4px solid #63e6be;
  padding-left: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .container h2 {
    font-size: 1.3rem;
  }

  .container p {
    font-size: 0.9rem;
  }

  .footer {
    font-size: 0.8rem;
  }
}

.home1 {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 10% 0;
  color: aliceblue;
}

/* Left Container - Text */
.left-container {
  flex: 1;
  padding-right: 20px;
}

.left-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #63e6be;
  /* Accent color for heading */
  text-transform: uppercase;
  border-left: 5px solid #63e6be;
  padding-left: 15px;
  margin-top: 30px;
}

.left-container p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

/* Right Container - Image/Background */
.right-container {
  flex: 1;
  background-image: url("assets/freepik__upload__59706-removebg-preview.png");
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  height: 400px;
  /* Fixed height for balance */
  /* Subtle glow effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-container:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .home1 {
    flex-direction: column;
    text-align: center;
  }

  .left-container {
    padding-right: 0;
  }

  .right-container {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
}

.container2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
}

.container2 p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.container2 h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #63e6be;
  /* Accent color for heading */
  text-transform: uppercase;
  border-left: 5px solid #63e6be;
  padding-left: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

section {
  padding: 60px 0;
  min-height: 100vh;
}

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.contact-info-icon {
  margin-bottom: 15px;
}

.contact-info-item {
  background: #071c34;
  padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
  color: #63e6be;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}

.contact-page-form.contact-form input {
  margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
  height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}

.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}

.contact-info-text p {
  margin-bottom: 0px;
}

.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-text span {
  color: #999999;
  font-size: 16px;
  font-weight: 13px;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34;
}

.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}

/* Style for Logo */
/* Logo Container */
.highlighted-logo-container {
  position: relative;
  /* Needed to position the orbiting ball */
  width: 300px;
  /* Adjust container width to include space for orbit */
  height: 300px;
  /* Adjust container height to include space for orbit */
  display: inline-block;
}

.highlighted-logo {
  width: 20vw;
  /* Responsive size relative to viewport width */
  height: 20vw;
  /* Keep it circular with equal width and height */
  max-width: 250px;
  /* Prevent it from growing too large */
  max-height: 250px;
  border-radius: 50%;
  /* Circular shape */
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
  /* Glow effect */
  filter: brightness(1.2);
  /* Slight brightness */
  position: absolute;
  top: 50%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
  /* Perfect centering */
}

/* Hover Effect for Interactivity */
.highlighted-logo:hover {
  filter: brightness(1.5);
  /* Brighten the logo on hover */
  box-shadow: 0 0 40px rgba(0, 255, 255, 1);
  /* Enhance glow effect */
  transform: translate(-50%, -50%) scale(1.1);
  /* Enlarge slightly */
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 1024px) {
  .highlighted-logo {
    width: 25vw;
    /* Slightly larger size for tablets and medium screens */
    height: 25vw;
    right: 200px;
    max-width: 200px;
    /* Adjust maximum size */
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .highlighted-logo {
    width: 30vw;
    /* Larger size for smaller screens */
    height: 30vw;
    max-width: 180px;
    /* Further reduce max size */
    max-height: 180px;
  }
}

@media (max-width: 480px) {
  .highlighted-logo {
    width: 40vw;
    /* Increase size for mobile screens */
    height: 40vw;
    max-width: 150px;
    /* Reduce maximum size for smallest screens */
    max-height: 150px;
    right: 200px;
  }
}

.loader {
  position: absolute;
  top: 48%;
  /* Center vertically */
  left: 75%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
  width: 20vw;
  /* Use viewport width for responsiveness */
  height: 20vw;
  /* Keep it square with viewport width */
  max-width: 250px;
  /* Prevent it from getting too large */
  max-height: 250px;
  box-sizing: border-box;
}

.loader .face {
  position: absolute;
}

.loader .face.face1 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  animation: ani1 3s linear infinite;
}

.loader .face.face2 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  animation: ani2 3s linear infinite;
}

.loader .face .circle {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  width: 50%;
  height: 2px;
  transform-origin: left;
}

.loader .face.face1 .circle {
  transform: rotate(-45deg);
}

.loader .face.face2 .circle {
  transform: rotate(-45deg);
}

.loader .face .circle:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  top: -4px;
  right: -6px;
}

.loader .face.face1 .circle:before {
  box-shadow: 0 0 20px #ff0, 0 0 40px #ff0, 0 0 60px #ff0, 0 0 80px #ff0,
    0 0 100px #ff0, 0 0 0 5px rgba(255, 255, 0, 0.1);
}

.loader .face.face2 .circle:before {
  box-shadow: 0 0 20px #03a9f4, 0 0 40px #03a9f4, 0 0 60px #03a9f4,
    0 0 80px #03a9f4, 0 0 100px #03a9f4, 0 0 0 5px rgba(3, 169, 244, 0.1);
}

@keyframes ani1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes ani2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  .loader {
    top: 590px;
    left: 390px;
    width: 200px;
    /* Adjust size for mobile */
    height: 200px;
    max-width: 250px;
    /* Ensure max size */
    max-height: 250px;
  }

  .loader .face .circle:before {
    width: 8px;
    /* Smaller ball size */
    height: 8px;
  }
}

@media (max-width: 480px) {
  .loader {
    top: 550px;
    left: 215px;
    width: 40vw;
    /* Adjust size for mobile */
    height: 40vw;
    max-width: 300px;
    /* Ensure max size */
    max-height: 300px;
  }

  .loader .face .circle:before {
    width: 6px;
    /* Smaller ball size */
    height: 6px;
  }
}



@media (max-width: 412px) {
  .loader {
    top: 580px;
    left: 210px;
    width: 40vw;
    /* Adjust size for mobile */
    height: 40vw;
    max-width: 300px;
    /* Ensure max size */
    max-height: 300px;
  }

  .loader .face .circle:before {
    width: 6px;
    /* Smaller ball size */
    height: 6px;
  }
}

@media (max-width: 360px) {
  .loader {
    top: 500px;
    left: 180px;
    width: 40vw;
    /* Adjust size for mobile */
    height: 40vw;
    max-width: 300px;
    /* Ensure max size */
    max-height: 300px;
  }

  .loader .face .circle:before {
    width: 6px;
    /* Smaller ball size */
    height: 6px;
  }
}


.container3 {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
}

.container3 p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.container3 h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-left: 660px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.copyRights1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* Ensure full width */
  background: linear-gradient(135deg, #63e6be, #1e7e74);
  color: #fff;
  padding: 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 768px) {
  .copyRights1 {
    padding: 15px;
    /* Adjust padding for smaller screens */
    margin-top: 30px;
    /* Reduce margin on top */
    border-radius: 8px;
    /* Slightly smaller border radius */
    font-size: 14px;
    margin-top: 300px;
    /* Adjust font size for better readability */
  }
}

@media (max-width: 480px) {
  .copyRights1 {
    padding: 10px;
    /* Reduce padding further for very small screens */
    margin-top: 20px;
    /* Minimal margin for very small screens */
    font-size: 12px;
    /* Smaller font size for compact layout */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    margin-top: 300px;
    /* Subtle shadow for small screens */
  }
}



button {
  padding: 32px 64px;
  margin-top: 40px;
  margin-left: 33%;
  font-size: 32px;
  letter-spacing: 12px;
  position: relative;
  border: none;
  background: transparent;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  overflow: hidden;
  transition: .5s;
}

button:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .05);
}

button:hover {
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

span:nth-child(1) {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(45, 45, 250), rgba(255, 18, 54));
  position: absolute;
  top: 0;
  left: 0;
  animation: animate1 2s linear infinite;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

span:nth-child(2) {
  width: 2px;
  height: 100%;
  background: linear-gradient(to right, rgba(45, 45, 250), rgba(255, 18, 54));
  position: absolute;
  top: 0;
  right: 0;
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

span:nth-child(3) {
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgb(45, 45, 250), rgb(255, 18, 54));
  position: absolute;
  bottom: 0;
  left: 0;
  animation: animate3 2s linear infinite;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

span:nth-child(4) {
  width: 2px;
  height: 100%;
  background: linear-gradient(to left, rgb(45, 45, 250), rgba(255, 18, 54));
  position: absolute;
  top: 0;
  left: 0;
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@media (max-width: 768px) {
  button {
    padding: 12px 24px;
    /* Smaller padding */
    font-size: 18px;
    /* Smaller font size */
    letter-spacing: 2px;
    /* Reduce letter spacing */
  }
}

@media (max-width: 480px) {
  button {
    padding: 8px 16px;
    /* Minimal padding for small screens */
    font-size: 16px;
    /* Adjust font size */
    letter-spacing: 1px;
    /* Smaller letter spacing */
    margin-left: 26%;
  }
}

@media (max-width: 412px) {
  button {
    padding: 8px 16px;
    /* Minimal padding for small screens */
    font-size: 16px;
    /* Adjust font size */
    letter-spacing: 1px;
    /* Smaller letter spacing */
    margin-left: 26%;
  }
}

@media (max-width: 360px) {
  button {
    padding: 8px 16px;
    /* Minimal padding for small screens */
    font-size: 16px;
    /* Adjust font size */
    letter-spacing: 1px;
    /* Smaller letter spacing */
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

/* Popup content */
.popup-content {
  position: relative;
  background: white;
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
  text-align: center;
}

.popup-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* Show popup */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}


.container {
  max-width: 80%;
  margin: auto;
  min-height: 803px;
}

.accordian-button {
  padding: 0;
  margin-top: 0;
  margin-left: 0;
}

.accordion {
  background-color: #007bff;
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 5px;
  margin-bottom: 10px;
}

.accordion:hover {
  background-color: #0056b3;
}

.panel {
  padding: 10px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 10px;
}

.stockist {
  background: #ffffff;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stockist .info {
  flex: 1;
}

.stockist h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.stockist p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.call {
  background: green;
}

.map {
  background: #ff5722;
}


.gallery {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: auto;

  .galleryItem {
    flex: 1 1 auto;
    margin: 0.3em;
    border: 1px solid black;
    position: relative;
    width: 12em;
    height: 13em;
    overflow: hidden;

    @media (min-width: 40em) {
      width: 10em;
      height: 10em;
    }

    @media (min-width: 80em) {
      width: 17em;
      height: 17em;
    }

    &:hover img {
      transform: scale(1.2);
    }
  }

  a {
    display: block;
    width: 100%;
    height: 100%;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: .2s;
  }

  figcaption {
    background-color: rgba(#000, .4);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em;
  }
}

.lightBoxOverlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(#000, .7);

  .closeButton {
    position: absolute;
    top: 0.5em;
    right: 0.5em;

    color: #000;
    background-color: #fff;
    font-size: 1.5em;
    border-radius: 1em;
    padding: 0.44em 0.66em;
    height: 2em;
    width: 2em;

    cursor: pointer;
    transition: .2s;

    &:hover {
      color: #fff;
      background-color: #000;
    }

    @media (min-width: 80em) {
      font-size: 2em;

      top: 1em;
      right: 1em;

      height: 2em;
      width: 2em;
    }
  }

  .container {
    margin: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1em;

    @media (min-width: 40em) {
      padding: 3em;
    }

    @media (min-width: 80em) {
      padding: 5em;
    }
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }

  figcaption {
    margin-top: 1em;
    padding: 0.5em 1em;
    color: #fff;
    background: rgba(0, 0, 0, .7);
    border-radius: 5em;
  }
}

.content {
  padding-top: 130px;
  width: 100%;
  margin: auto;

  @media (min-width: 40em) {
    width: 40em;
  }

  @media (min-width: 80em) {
    width: 80em;
  }
}

.container4 {
  padding-top: 150px;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container4 img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

/*  Testimonial Styles*/

.testimonial-section {
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
}

.testimonial-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-desc {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* Testimonial container */
.testimonial-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Scrolling animation */
.testimonial-slider {
  display: flex;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

/* Animation keyframes */
@keyframes scroll-left {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* Individual Testimonial Card */
.testimonial-section {
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
}

.testimonial-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-desc {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* Updated Testimonial container with margin */
.testimonial-container {
  width: 80%; /* Reduced width to 80% for left & right margins */
  margin: auto; /* Center align the container */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Scrolling animation */
.testimonial-slider {
  display: flex;
  gap: 20px;
  animation: scroll-left 40s linear infinite; /* Increased duration from 20s to 30s */
}

/* Animation keyframes */
@keyframes scroll-left {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* Individual Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  min-width: 250px;
  text-align: center;
}

.testimonial-text {
  font-size: 16px;
  /* font-style: italic; */
  margin-bottom: 15px;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: bold;
}

.testimonial-role {
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-container {
      width: 90%; /* Increase width slightly for smaller screens */
  }
}
/* End testimonial styles*/