/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.landing-media {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  max-height: 400px; /* limit height so it fits nicely */
  object-fit: contain; /* keeps entire image/video visible */
  display: block;
}


body {
  background-color: white;
  color: white;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.navbar {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}
.logo p {
  color: #000000;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.toggle-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  padding: 70px 20px;
  transition: 0.3s ease;
  z-index: 999;
}

.sidebar.active {
  right: 0;
}

.sidebar a {
  display: block;
  margin: 20px 0;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.herosection{
  background: #06192c;
  width: 100%;
}


.landing {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 95vh;
  padding: 50px 20px;
  position: relative;

}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #00bfff;
  border-radius: 14px;
  position: relative;
  margin: 0 auto;
}

.scroll-indicator .scroll-wheel {
  width: 8px;
  height: 8px;
  background: #00bfff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

.scroll-indicator p {
  font-size: 14px;
  color: #00bfff;
  margin-top: 8px;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    bottom: 0;
  }
  to {
    opacity: 1;
    bottom: 20px;
  }
}

.landing-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.landing-content h1 span {
  color: #4cc8ff;
}

.landing-content p {
  margin-top: 20px;
  max-width: 500px;
  color: #ccc;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.buttons a {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.buttons a:first-child {
  background: #4cc8ff;
  color: #000;
}

.buttons a:last-child {
  border: 2px solid #4cc8ff;
  color: #4cc8ff;
}

.right-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-visual-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.ai-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid rgba(102, 204, 255, 0.3);
  background-color: #0d1b2a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.icon-core {
  width: 160px;
  height: 160px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(102, 204, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.top-right {
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
}

.bottom-left {
  bottom: 40px;
  left: 0;
  width: 48px;
  height: 48px;
}

.mid-left {
  top: 80px;
  left: 40px;
  width: 32px;
  height: 32px;
}

.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 1s;
}
.delay-3 {
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-section {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.section-subtitle.about {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
  color: #555;
  position: relative;
}

.section-subtitle::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00bfff;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 300px;
  height: 300px;
  background: linear-gradient(to bottom right, #1e3a8a, #00bfff);
  border-radius: 10px;
  padding: 20px;
}

.about-text {
  max-width: 600px;
  text-align: start;
}

.about-text h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}
.about-icon {
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(128, 128, 128, 0.143);
  color: #00bfff;
}
.about-icontext {
  display: flex;
  gap: 6px;
  align-items: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-box {
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 250px;
}

.feature-box .icon {
  font-size: 24px;
  color: #00bfff;
}

.feature-box h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  text-align: start;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: #e0e0e0;
  color: #333;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 20px;
}

.services-section {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: "Poppins", sans-serif;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: #00bfff solid 8px;
  transition: 0.3s ease;

  width: calc((100% - 60px) / 3); /* 3 boxes with 2 gaps = 30px * 2 = 60px */
  max-width: 100%; /* Prevents overflow */
  text-align: left;
}

.service-icon i {
  font-size: 30px;
}

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

.service-box h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}


.service-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.service-box ul {
  list-style: none;
  padding-left: 0;
}

.service-box ul li {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
}

.service-icon {
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(128, 128, 128, 0.143);
  color: #00bfff;
}

.placeholder {
  border: 2px dashed #ccc;
  background: transparent;
  text-align: center;
  color: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder .plus {
  font-size: 36px;
  color: #bbb;
  margin-bottom: 10px;
}

.contact-container {
  background: fffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact-section {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
}



.contact-box {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: start;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Left Side - Info */
.contact-info {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: white;
  padding: 40px;
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

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

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(128, 128, 128, 0.305);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #00bfff;
}

.contact-info small {
  font-size: 0.75rem;
  color: #ccc;
}

.contact-info p {
  margin: 3px 0 0;
  font-size: 0.95rem;
  color: white;
}

.social-icons {
  margin-top: 30px;
}

.social-icons span {
  display: block;
  margin-bottom: 10px;
}

.social-icons .icons a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  height: 40px;
  width: 40px;
  margin-right: 10px;
  font-size: 1rem;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons .icons a:hover {
  background-color: #00bfff;
  color: #0d1b2a;
}

/* Right Side - Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: white;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #111;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  outline: none;
}

.contact-form button {
  background-color: #0d1b2a;
  color: white;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00bfff;
  color: #0d1b2a;
}

.footer {
  background-color: #0d1b2a;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}
.footer-logo p {
  color: #ffffff;
  font-weight: bold;
}

.footer-subtext {
  margin-top: 5px;
  font-size: 14px;
  color: gray;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  background-color: #1e2d3d;
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.3s;
}

.footer-social a:hover {
  background-color: #00bfff;
  color: #0d1b2a;
}
.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #c2c2c2;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c2c2c2;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
.social {
  display: flex;
  gap: 8px;
}
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(128, 128, 128, 0.309);
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.social-icon a {
  text-decoration: none;
  color: white;
}
.container {
  background: fffff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.nav-tabs .nav-link {
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 12px;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
}
.nav-tabs li {
  list-style: none;
}

.nav-tabs .nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-tabs .nav-link.active {
  background-color: #111;
  color: #fff;
}
/* Previous styles remain the same */

/* Results Section */
.results-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.result-metric {
  background-color: #e6f3ff; /* Light blue background */
  border-radius: 8px;
  padding: 15px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #1e90ff; /* Blue color for the value */
  margin-bottom: 5px;
}

.metric-label {
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}

/* Technology Badge Styling */
.tech-badge {
  display: inline-block;
  background-color: #dbeafe; /* bg-blue-100 */
  color: #1e40af; /* text-blue-800 */
  font-size: 12px; /* text-xs */
  font-weight: 500; /* font-medium */
  padding: 2px 8px; /* px-2.5 py-0.5 */
  border-radius: 12px; /* rounded-sm */
  margin-right: 8px; /* me-2 */
  margin-bottom: 4px;
}

.dark .tech-badge {
  background-color: #1e3a8a; /* dark:bg-blue-900 */
  color: #93c5fd; /* dark:text-blue-300 */
}

/* Rest of the previous styles remain unchanged */
.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-height: 580px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #00bfff transparent;
}


.portfolio-container::-webkit-scrollbar {
  width: 6px;
}

.portfolio-container::-webkit-scrollbar-thumb {
  background-color: #00bfff;
  border-radius: 10px;
}

.portfolio-item {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 220px;
  box-sizing: border-box;
}

.portfolio-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 280px;
  transition: transform 0.3s ease;
  position: relative;
}

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

.card-body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.icon {
  font-size: 42px;
  color: white;
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transform: translateY(-15%);
}

.portfolio-card:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hover-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

.hover-overlay .btn {
  background-color: #0d6efd;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.hover-overlay .btn:hover {
  background-color: #004aad;
}

.card-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: #fff;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.card-subtitle{
  font-size: 14px;
  font-weight: 400;
  color: #302e2e;
  margin-bottom: 6px;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Gradient Backgrounds */
.gradient-1 { background: linear-gradient(135deg, #1e3c72, #2a5298); }
.gradient-2 { background: linear-gradient(135deg, #7b4397, #dc2430); }
.gradient-3 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.gradient-4 { background: linear-gradient(135deg, #1d2671, #c33764); }
.gradient-5 { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.gradient-6 { background: linear-gradient(135deg, #614385, #516395); }
.gradient-7 { background: linear-gradient(135deg, #ff4b1f, #1fddff); }
.gradient-8 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.gradient-9 { background: linear-gradient(135deg, #43cea2, #185a9d); }

/* Modal Styles */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 37, 37, 0.7);
  transition: all .4s;
  z-index: 1000;
}

.modal__content {
  max-height: 600px;
  overflow-y: scroll;
  background: #fff;
  padding: 2em;
  max-width: 700px;
  width: 90%;
  position: relative;
  border-radius: 8px;
}

.modal__content h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
}
.modal__content h4 {
  color: #000;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.modal__content p {
  color: #000;
  font-size: 14px;
 
  margin-bottom: 20px;
}



.modal__content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.modal__content li {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.modal__footer {
  text-align: right;
  margin-top: 20px;
}
.modelclose{
  display: flex;
  justify-content: space-between;
}
.close-btn{
  height: 100%;
  padding: 4px 10px;
  font-size: 20px;
  font-weight: 200;
  background: rgba(128, 128, 128, 0.241);
  border: none;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Nav Tabs */
.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.nav-link {
  background: #f1f1f1;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.nav-link.active, .nav-link:hover {
  background: #0d6efd;
  color: white;
}


.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 15px !important;
  background: #b1bcc0;
  color: black;
  border-radius: 10px;
  padding: 15px 15px;
}
.blog-content{
  font-size: 15px;
    color: black;
}


@media (max-width: 992px) {
  .portfolio-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .portfolio-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
.footer-top ,.footer-bottom{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
}
@media (max-width: 768px) {
.dots {
  width: 93% !important;
}
  .services-section {
  padding: 30px 10px;
}
.ai-visual-container {
  position: relative;
  width: 100%;
}
  .contact-container {
  padding: 40px 0px;
}
  .section-title {
    font-size: 22px;
    font-weight: 600;
  }
  
  .section-subtitle {
    font-size: 12px;
  }
  .modal__content {
    max-height: 500px;
    overflow: scroll;
}
  .about-section{
    padding: 43px 20px;
  }
  .nav-tabs {
    gap: 0px !important;
    padding: 2px;
  }
  .container {
    padding: 20px 10px !important;
  }
  .about-content{
    gap: 30px;
  }
  .nav-link {
    padding: 8px !important;
  }

  .contact-info,.contact-form{
    padding: 20px;
  }
  .contact-info h3{
    font-size: 20px;
  }
  .contact-section{
    padding: 15px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-left,
  .footer-social,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column !important;
    font-size: 12px;
    text-align: center;
    gap: 10px;
  }

  .footer-left {
    flex: 1;
  }

  .footer-social {
    margin-top: 0;
  }

  .navbar {
    width: 95%;
    margin: 0 auto;
  }
  .nav-links {
    display: none;
  }

  .toggle-btn {
    display: block;
  }

  .landing {
    padding: 10px 20px;
    grid-template-columns: 1fr;
    text-align: start;
  }

  .landing-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .service-box {
    width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 600px) {
  .service-box {
    width: 100%;
  }
}


#testimonial{
    background: #f8f9fb;
    padding: 30px 0;
}
.testim {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  color: gray;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.arrow:hover {
  color: #ea830e;
}

.left { left: 10px; }
.right { right: 10px; }

.dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #848181;
  margin: 0 6px;
  cursor: pointer;
}

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

.cont {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 20px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
  padding-bottom: 70px;
}

.slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.slide h2 {
  color: #000;
  margin-top: 10px;
  font-size: 1.3rem;
}

.slide p {
  color: #333;
  font-size: 1rem;
  padding: 0 15px;
  word-break: break-word;
}

.img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

.stars {
  color: #ea830e;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .testim {
    padding: 30px 10px;
  }
  .arrow {
    font-size: 1.5rem;
    padding: 5px;
  }
  .slide h2 {
    font-size: 1.1rem;
  }
  .slide p {
    font-size: 0.95rem;
    padding: 0 10px;
    text-align: center;
  }
  .img img {
    width: 80px;
    height: 80px;
  }
}
