:root {
  --primary-color: #0066b3;
  --secondary-color: #f2f1ed;
  --text-color: #8f8f8f;
  --accent-color: #00a9e0;
  --white-color: #ffffff;
  --divider-color: #dfe1de;
  --dark-divider-color: #ffffff33;
  --error-color: rgb(230, 87, 87);
  --default-font: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--default-font);
 
  color: var(--text-color);
  line-height: 1.6;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

#loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--divider-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: loading 1s linear infinite;
  margin: 0 auto;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-color);
  text-decoration: none;
}

.logo span {
  color: var(--accent-color);
}

.navbar-nav {
  margin: 0 auto;
}

.nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #11c5ff !important;
}

/* .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
} */

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.quote-btn {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: #0090c0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Offcanvas Menu Styling */
.offcanvas {
  background: linear-gradient(135deg, var(--primary-color) 0%, #00527a 100%);
  width: 300px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.offcanvas-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00527a 100%);
}

.offcanvas-title {
  margin: 0;
  padding: 0;
}

.offcanvas-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

.offcanvas-body {
  padding: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00527a 100%);
}

.offcanvas-nav {
  flex-direction: column;
  gap: 0;
}

.offcanvas-nav .nav-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-nav .nav-link {
  color: var(--white-color) !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color) !important;
  border-left-color: var(--accent-color);
  padding-left: 25px !important;
}

.quote-btn-mobile {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 15px 20px !important;
}

.quote-btn-mobile:hover {
  background-color: #0090c0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-close-white {
  filter: brightness(1.5);
}

.navbar-menu-desktop {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}

.navbar-menu-desktop .navbar-nav {
  margin: 0;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-align: center;
}

.slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 102, 179, 0.7), rgba(0, 102, 179, 0.8));
  z-index: 2;
} */

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 40%));
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  /* margin-bottom: 20px; */
  color: var(--white-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.slide-content h2 {
  font-size: 2.5rem;
  /* margin-bottom: 20px; */
  color: var(--white-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white-color);
  font-weight: 300;
}

/* Custom Tab Navigation */
.tab-navigation {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.tab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-item {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  border: none;
  padding: 15px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
  text-align: center;
}

.tab-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: white !important;
}

.tab-item.active {
  background-color: var(--accent-color);
  color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tab-item .tab-number {
  display: block;
  font-size: 0.9rem;
  opacity: 1;
  margin-bottom: 5px;
}

.tab-item .tab-title {
  display: block;
  font-size: 1rem;
  color: #3fcfff;
  font-weight: 600;
}

.tab-item.active .tab-title {
  color: white !important;
}
/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white-color);
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Pagination Dots */
.swiper-pagination {
  bottom: 120px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/* CTA Button */
.cta-button {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 20px;
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--white-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1.3rem;
  }

  .tab-item {
    min-width: 180px;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.2rem;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .tabs-wrapper {
    gap: 5px;
  }

  .tab-item {
    min-width: 150px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .tab-navigation {
    bottom: 20px;
  }

  .swiper-pagination {
    bottom: 100px !important;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .tabs-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .tab-item {
    width: 100%;
    max-width: 300px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* About Us */
.about-img {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Achievements */
/* Achievements Section with Background Image */
.achievements {
  position: relative;
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.achievements-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.achievements-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.achievements-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.achievements .container {
  position: relative;
  z-index: 2;
}

/* Update existing achievement items for better visibility */
.achievement-item {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  /* border-top: 4px solid var(--accent-color); */
  backdrop-filter: blur(5px);
}

.achievement-item:hover .achievement-icon {
  color: white;
}
.achievement-item:hover p {
  color: white;
}

.achievement-item:hover h3 {
  color: rgb(5, 226, 255);
}
.achievement-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.achievement-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.achievement-item p {
  color: var(--text-color);
  font-weight: 500;
}

/* Update section title for better contrast */
.achievements .section-title h2 {
  color: var(--white-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.achievements .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .achievements {
    padding: 60px 0;
  }

  .achievement-item {
    padding: 25px 15px;
  }

  .achievement-icon {
    font-size: 2.5rem;
  }

  .achievement-item h3 {
    font-size: 2rem;
  }
}

/* FAQ */
.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px;
  color: var(--primary-color);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(0, 169, 224, 0.1);
  color: var(--primary-color);
}

.faq-accordion .accordion-button:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 169, 224, 0.25);
}

/* Contact */
.contact-info {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 40px 30px;
  border-radius: 8px;
  height: 100%;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--accent-color);
}

/* Footer */
footer {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80")
      center/cover no-repeat;
  color: var(--white-color);
  padding: 80px 0 30px;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 102, 179, 0.85);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-links h5 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white-color);
}

.footer-links h5:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: var(--secondary-color);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #00a9e0;
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 2px solid var(--white-color); */
}

#backToTop:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Call & WhatsApp Buttons */
#callButton,
#whatsappButton {
  position: fixed;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--white-color);
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#callButton {
  background-color: var(--primary-color);
  bottom: 100px;
}

#whatsappButton {
  background-color: #25d366;
  bottom: 70px;
}

#callButton:hover,
#whatsappButton:hover {
  transform: translateY(-3px) scale(1);
}

/* COMMON STYLES */
#backToTop,
#callButton,
#whatsappButton {
  position: fixed;
  right: 20px;
  z-index: 999;
  transition:
    bottom 0.4s ease,
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* DEFAULT POSITIONS */
#whatsappButton {
  bottom: 30px;
}

#callButton {
  bottom: 90px;
}

/* BACK TO TOP – hidden initially */
#backToTop {
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
}

/* SCROLLED STATE */
body.scrolled #backToTop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.scrolled #whatsappButton {
  bottom: 90px;
}

body.scrolled #callButton {
  bottom: 150px;
}

/* Modal Styles */
.modal-header {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-close.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 169, 224, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #005a99;
  border-color: #005a99;
}

/* Custom Button */
.btn-custom {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #0090c0;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .navbar-nav {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
  }

  .nav-link {
    margin: 5px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  #callButton,
  #whatsappButton {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    right: 20px;
  }

  #callButton {
    bottom: 170px;
  }

  #whatsappButton {
    bottom: 110px;
  }

  #backToTop {
    bottom: 50px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 1.8rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .quote-btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--divider-color);
  margin: 30px 0;
}

.banner-section {
  margin-top: -80px;
}

.achievement-item {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* background layer */
.achievement-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);

  /* START hidden on the LEFT */
  transform: translateX(-101%);
  transition: transform 0.7s ease;
  z-index: 0;
}

/* ON HOVER → SLIDE IN */
.achievement-item:hover::before {
  transform: translateX(0);
}

/* content above background */
.achievement-item * {
  position: relative;
  z-index: 1;
}

/* your existing hover effect */
.achievement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Who We Are Section */
.who-we-are-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    rgba(242, 241, 237, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.who-we-are-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 102, 179, 0.05) 0%,
    rgba(0, 169, 224, 0.05) 100%
  );
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 0;
}

.who-we-are-section .container {
  position: relative;
  z-index: 1;
}

/* Content Styles */
.who-we-are-content {
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 40px;
  position: sticky;
  top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* height: 100%; */
}

.who-we-are-content h3 {
  color: var(--primary-color);
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.who-we-are-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.content-block {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(0, 102, 179, 0.1);
  transition: all 0.3s ease;
}

.content-block:hover {
  border-left-color: var(--accent-color);
  padding-left: 25px;
}

.content-block h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.content-block p {
  color: var(--text-color);
  line-height: 1.7;
}

.content-block .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}

/* Highlights Section */
.who-we-are-highlights {
  height: 100%;
}

/* Stats Card */
.stats-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 179, 0.2);
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Mission Card */
.mission-card {
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 179, 0.05) 0%,
    rgba(0, 169, 224, 0.05) 100%
  );
  border-radius: 0 0 0 100%;
}

.mission-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.mission-card h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

/* Approach Card */
.approach-card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.approach-card h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.approach-card p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

/* Expertise Card */
.expertise-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  color: var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.expertise-card h5 {
  color: var(--white-color);
  font-weight: 600;
}

.expertise-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.expertise-features .feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.expertise-features .feature-item span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Technology Stack */
.technology-stack {
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.technology-stack h5 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.technology-stack h5::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.tech-item {
  padding: 20px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: rgba(0, 102, 179, 0.03);
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 102, 179, 0.15);
  background-color: rgba(0, 102, 179, 0.08);
}

.tech-icon {
  color: var(--primary-color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .who-we-are-content {
    padding: 30px;
  }

  .who-we-are-content h3 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .mission-card h4 {
    font-size: 1.2rem;
  }

  .technology-stack {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .who-we-are-section {
    padding: 60px 0;
  }

  .who-we-are-content {
    padding: 25px;
  }

  .who-we-are-content h3 {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .mission-card,
  .approach-card,
  .expertise-card {
    padding: 20px;
  }

  .technology-stack {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .who-we-are-section {
    padding: 50px 0;
  }

  .who-we-are-content {
    padding: 20px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .mission-card h4 {
    font-size: 1.1rem;
  }

  .tech-item {
    padding: 15px 10px;
  }

  .tech-icon i {
    font-size: 2.5rem;
  }
}

.my-services {
  width: 100%;
  /* max-width: 1400px; */
  background: linear-gradient(135deg, #0f1c3f 0%, #1a3a6a 100%);
  color: #fff;
  /* min-height: 100vh; */
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.my-services .header {
  text-align: center;
  margin-bottom: 0px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.my-services .header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.my-services .header p {
  font-size: 1.1rem;
  color: #b3d0ff;
  line-height: 1.6;
}

.my-services .slider-container {
  width: 100%;
  /* padding: 30px 80px 80px; */
  position: relative;
  overflow: hidden;
}

.my-services .swiper {
  width: 100%;
  padding: 20px 80px 60px;
}

/* Card container */
.my-services .flip-card {
  width: 100%;
  height: 350px;
  perspective: 1500px;
  cursor: pointer;
}

.my-services .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.my-services .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and back sides */
.my-services .flip-card-front,
.my-services .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

/* Front side - Image with overlay */
.my-services .flip-card-front {
  background-color: #1a3a6a;
}

.my-services .card-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.my-services .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 25, 47, 0.9) 70%
  );
  z-index: 2;
}

/* Flip button on front */
.my-services .flip-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.my-services .flip-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.my-services .flip-button i {
  font-size: 1.2rem;
  color: #00c1ff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Front side content */
.my-services .front-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  text-align: left;
  z-index: 3;
}

.my-services .service-number {
  font-size: 0.9rem;
  color: #4dabf7;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.my-services .front-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  line-height: 1.3;
}

.my-services .front-description {
  font-size: 0.95rem;
  color: #b3d0ff;
  line-height: 1.5;
  opacity: 0.9;
}

/* Back side */
.my-services .flip-card-back {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Back side header */
.my-services .back-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
  flex-shrink: 0;
}

.my-services .back-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-align: left;
  flex: 1;
}

.my-services .close-button {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  z-index: 100;
  position: relative;
}

.my-services .close-button:hover {
  background: rgba(255, 255, 255, 0.923);
  transform: rotate(90deg);
}

.my-services .close-button i {
  font-size: 1.2rem;
  color: rgb(255, 0, 0);
}

/* Back side content - FIXED: VERTICAL SCROLL ONLY */
.my-services .back-content-wrapper {
  flex: 1;
  min-height: 0;
  position: relative;
  width: 100%;
}

.my-services .back-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto; /* VERTICAL SCROLL ONLY */
  overflow-x: hidden; /* HIDE HORIZONTAL SCROLL */
  padding-right: 10px;
  width: 100%;
}

/* Ensure content doesn't cause horizontal overflow */
.my-services .back-content > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Custom scrollbar styling - VERTICAL ONLY */
.my-services .back-content::-webkit-scrollbar {
  width: 6px;
}

.my-services .back-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.my-services .back-content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #4dabf7, #2d8bdb);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.my-services .back-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #69db7c, #4dabf7);
}

/* Hide horizontal scrollbar */
.my-services .back-content::-webkit-scrollbar-horizontal {
  display: none;
}

/* Firefox scrollbar - VERTICAL ONLY */
.my-services .back-content {
  scrollbar-width: thin;
  scrollbar-color: #4dabf7 rgba(255, 255, 255, 0.05);
}

.my-services .back-description {
  font-size: 16px;
  color: #e6f0ff;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 100%;
  word-wrap: break-word;
}

.my-services .features {
  margin-bottom: 25px;
  max-width: 100%;
}

.my-services .features h4 {
  font-size: 1.1rem;
  color: #4dabf7;
  margin-bottom: 15px;
  font-weight: 600;
  max-width: 100%;
}

.my-services .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 12px;
  padding-left: 0;
  margin-bottom: 25px;
  max-width: 100%;
}

.my-services .feature-list li {
  font-size: 0.95rem;
  color: #b3d0ff;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  max-width: 100%;
  word-wrap: break-word;
}

.my-services .feature-list li i {
  color: #69db7c;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.my-services .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
}

.my-services .service-tag {
  background: rgba(77, 171, 247, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #b3d0ff;
  border: 1px solid rgba(77, 171, 247, 0.3);
  transition: all 0.3s ease;
  max-width: 100%;
}

/* Navigation buttons outside the slider */
.my-services .swiper-button-next,
.my-services .swiper-button-prev {
  color: #4dabf7;
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0;
}

.my-services .swiper-button-next:after,
.my-services .swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}

.my-services .swiper-button-next:hover,
.my-services .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.2);
  /* transform: translateY(-50%) scale(1.1); */
}

.my-services .swiper-button-prev {
  left: 25px;
}

.my-services .swiper-button-next {
  right: 25px;
}

/* Pagination */
.my-services .swiper-pagination {
  bottom: 20px !important;
}

.my-services .swiper-pagination-bullet {
  background-color: #b3d0ff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.my-services .swiper-pagination-bullet-active {
  background-color: #4dabf7;
  opacity: 1;
}

/* Instructions */
.my-services .instructions {
  margin-top: 30px;
  text-align: center;
  color: #b3d0ff;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 1400px) {
  .my-services .slider-container {
    padding: 30px 60px 80px;
  }
}

@media (max-width: 1200px) {
  .my-services .swiper {
    height: 400px;
  }

  .my-services .flip-card {
    height: 320px;
  }

  .my-services .front-title {
    font-size: 1.4rem;
  }

  .my-services .back-title {
    font-size: 1.6rem;
  }

  .my-services .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .my-services .slider-container {
    padding: 30px 50px 80px;
  }

  .my-services .swiper {
    height: 380px;
  }

  .my-services .flip-card {
    height: 300px;
  }

  .my-services .front-content {
    padding: 20px;
  }

  .my-services .flip-card-back {
    padding: 20px;
  }

  .my-services .swiper-button-next,
  .my-services .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .my-services .header h1 {
    font-size: 2.2rem;
  }

  .my-services .slider-container {
    padding: 30px 40px 80px;
  }

  /* .my-services .swiper {
    height: 350px;
  } */

  .my-services .flip-card {
    height: 280px;
  }

  .my-services .front-title {
    font-size: 1.3rem;
  }

  .my-services .back-title {
    font-size: 1.4rem;
  }

  .my-services .back-description {
    font-size: 1rem;
  }

  .my-services .swiper-button-next,
  .my-services .swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .my-services .swiper-button-prev {
    left: -10px;
  }

  .my-services .swiper-button-next {
    right: -10px;
  }

  .my-services .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
 

  .my-services .header h1 {
    font-size: 1.8rem;
  }

  .my-services .slider-container {
    padding: 20px 30px 70px;
  }

  /* .my-services .swiper {
    height: 320px;
  } */

  /* .my-services .flip-card {
    height: 260px;
  } */

  .my-services .front-content {
    padding: 15px;
  }

  .my-services .flip-card-back {
    padding: 15px;
  }

  .my-services .front-title {
    font-size: 1.1rem;
  }

  .my-services .front-description {
    font-size: 0.85rem;
  }

  .my-services .back-title {
    font-size: 1.2rem;
  }

  .my-services .back-description {
    font-size: 0.9rem;
  }

  .my-services .swiper-button-next,
  .my-services .swiper-button-prev {
    display: none;
  }

  .my-services .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .my-services .slider-container {
    padding: 15px 20px 60px;
  }

  /* .my-services .swiper {
    height: 300px;
  } */

  /* .my-services .flip-card {
    height: 240px;
  } */

  .my-services .flip-button {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }

  .my-services .close-button {
    width: 35px;
    height: 35px;
  }

  .my-services .back-title {
    font-size: 1.1rem;
  }

  .my-services .back-description {
    font-size: 0.85rem;
  }
}

/* Parent class for scoping all styles */
.how-we-work-section {
  --sap-blue: #0063af;
  --sap-light-blue: #e1f0fa;
  --sap-dark-blue: #003d79;
  --sap-gray: #f5f7fa;
  padding: 80px 0;
  background-color: #fff;
}

/* .how-we-work-section .section-title {
  color: var(--sap-dark-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.how-we-work-section .section-title:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--sap-blue);
  bottom: -10px;
  left: 0;
} */

.how-we-work-section .section-subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.how-we-work-section .tab-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.how-we-work-section .tab-item {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  margin-bottom: 10px;
  background-color: white;
  border: none;
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.how-we-work-section .tab-item:hover {
  background-color: var(--sap-light-blue);
  transform: translateX(5px);
}

.how-we-work-section .tab-item.active {
  background-color: var(--sap-light-blue);
  border-left: 5px solid var(--sap-blue);
  transform: translateX(5px);
}

.how-we-work-section .tab-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--sap-blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  border: 2px solid var(--sap-blue);
  flex-shrink: 0;
}

.how-we-work-section .tab-item.active .tab-number {
  background-color: var(--sap-blue);
  color: white;
}

.how-we-work-section .tab-title {
  font-weight: 600;
  color: var(--sap-dark-blue);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.how-we-work-section .tab-item.active .tab-title {
  color: var(--sap-blue) !important;
}

.how-we-work-section .content-container {
  /* padding: 30px; */
  /* background-color: var(--sap-gray); */
  border-radius: 10px;

  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  position: relative;
  /* min-height: 500px; */
}

.tab-all-content {
  /* background-color: var(--sap-gray); */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  padding: 20px;
}

.disease-slider-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;

  transition: var(--transition);
  display: block;
  text-decoration: none;
  height: 100%;
  border: 2px solid transparent;
}

.how-we-work-section .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.how-we-work-section .tab-content.active {
  display: block;
  opacity: 1;
  display: flex;
  padding: 20px;
  flex-direction: row;
  align-items: center;
}

.how-we-work-section .content-image {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0px;
  margin-right: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.how-we-work-section .content-title {
  color: var(--sap-dark-blue);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.how-we-work-section .content-text {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.how-we-work-section .content-icon {
  font-size: 1.5rem;
  color: var(--sap-blue);
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .how-we-work-section .tab-container {
    margin-bottom: 40px;
  }

  .how-we-work-section .content-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .how-we-work-section {
    padding: 50px 0;
  }

  .how-we-work-section .content-container {
    padding: 20px;
    min-height: 450px;
  }
}

/* ===============================
   CONNECT WITH ME – SECTION
================================ */

/* Background Image */
.connect-with-me__bg {
  position: fixed;
  inset: 0;
  background: url("/images/logo.png") center / cover no-repeat;
  z-index: 1;
}

/* Container */
.connect-with-me__container {
  position: relative;
  z-index: 3;
}

/* Content */
.connect-with-me__label {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.9;
}

.connect-with-me__title {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
  color: #00a9e0;
}

.connect-with-me__title span {
  color: var(--accent-color);
}

.connect-with-me__desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* Button */
.connect-with-me__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--accent-color);
  color: #00a9e0;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.connect-with-me__btn:hover {
  background: #00caa7;
  transform: translateY(-3px);
}

/* Steps */
.connect-with-me__steps-row {
  margin-top: 30px;
}

.connect-with-me__step {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 16px;
  height: 100%;
}

.connect-with-me__step h4 {
  font-size: 18px;
  color: var(--accent-color);
  margin-bottom: 6px;
  color: white;
}

.connect-with-me__step h5 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00a9e0;
}

.connect-with-me__step p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===============================
   MOBILE FIX (IMPORTANT)
================================ */
@media (max-width: 576px) {
  .connect-with-me__bg,
  .connect-with-me__overlay {
    position: absolute;
  }

  .connect-with-me__container {
    padding: 70px 15px;
  }

  .connect-with-me__title {
    font-size: 30px;
  }

  .connect-with-me__steps-row {
    margin-top: 50px;
  }
}

/* ===============================
   SECTION SCOPE (CRITICAL)
================================ */

/* Background – SECTION ONLY */
.connect-with-me__bg {
  position: absolute; /* NOT fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/con-bg.jpg") center / cover no-repeat;
  z-index: 1;
  transform: translateZ(0); /* smooth scroll */
}

.connect-with-me__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 62%));
  z-index: 2;
}

/* ===============================
   CONNECT WITH ME – BASE
================================ */
.connect-with-me {
  position: relative;
  /* min-height: 100vh; */
  overflow: hidden;
  color: #fff;
}

/* Background (parallax target) */
.connect-with-me__bg {
  position: absolute;
  /* inset: -5%; */
  background: url("images/con-bg.jpg") center / cover no-repeat;
  z-index: 1;
  transition: transform 0.1s linear;
}

/* Overlay */
.connect-with-me__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Container */
.connect-with-me__container {
  position: relative;
  z-index: 3;
}

/* Text */
.connect-with-me__label {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.connect-with-me__title {
  font-size: 46px;
  line-height: 1.2;
  margin-top: 15px;
}

.connect-with-me__title span {
  color: #19c4ff;
}

.connect-with-me__desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===============================
   GLASS CARDS
================================ */
.connect-with-me__card {
  height: 100%;
  padding: 24px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  transition: all 0.35s ease;
}

/* Hover = STRONG glass */
.connect-with-me__card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.connect-with-me__card h5 {
  color: #19c4ff;
  margin-bottom: 6px;
}

.connect-with-me__card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.connect-with-me__card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 576px) {
  .connect-with-me__title {
    font-size: 30px;
  }
}

/* ===============================
   FAQ SECTION BASE
================================ */
.my-faq-section {
  padding: 90px 0;
  background: #f7f6f2;
}

/* FAQ LIST */
.my-faq-section__faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM CARD */
.my-faq-section__item {
  background: #f7f6f2;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.my-faq-section__item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* QUESTION */
.my-faq-section__question {
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  color: #0057b8;
  cursor: pointer;
}

/* ICON */
.my-faq-section__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #0057b8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* ANSWER */
.my-faq-section__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

/* ACTIVE */
.my-faq-section__item.active {
  transform: translateY(-2px);
}

.my-faq-section__item.active .my-faq-section__answer {
  max-height: 260px;
  padding: 0 22px 22px;
}

.my-faq-section__item.active .my-faq-section__icon {
  background: #0057b8;
  color: #fff;
}

/* IMAGE */
.my-faq-section__image img {
  width: 100%;

  border-radius: 18px;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .my-faq-section {
    padding: 60px 0;
  }

  .my-faq-section__image {
    margin-top: 40px;
    text-align: center;
  }

  .my-faq-section__image img {
    margin: 0 auto;
  }
}

/* ===============================
   CTA SECTION – TRUE FIXED BG
================================ */
.my-cta-section {
  position: relative;
  min-height: 70vh;

  /* THIS creates the Amaravathi effect */
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
}

/* Overlay */
.my-cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.my-cta-section__container {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  color: #fff;
}

/* Text styles */
.my-cta-section__label {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.9;
}

.my-cta-section__title {
  font-size: 42px;
  margin: 16px 0;
}

.my-cta-section__title span {
  color: #19c4ff;
}

.my-cta-section__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.my-cta-section__btn {
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.my-cta-section__btn.primary {
  background: #19c4ff;
  color: #002233;
}

.my-cta-section__btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.my-cta-section__btn:hover {
  transform: translateY(-3px);
}

/* ===============================
   MOBILE FIX (MANDATORY)
================================ */
@media (max-width: 768px) {
  .my-cta-section {
    background-attachment: scroll; /* iOS fix */
  }

  .my-cta-section__title {
    font-size: 28px;
  }
}

/* ===============================
   TESTIMONIALS SECTION
================================ */
.my-testimonials {
  padding: 90px 0 30px;
  background: #f7f8fa;
}

.my-testimonials__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
}

.my-testimonials__title {
  font-size: 40px;
  margin: 12px 0;
}

.my-testimonials__title span {
  color: #19c4ff;
}

.my-testimonials__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Swiper */
.my-testimonials__swiper {
  padding-bottom: 50px;
}

/* Card */
.my-testimonials__card {
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.my-testimonials__card:hover {
  transform: translateY(-6px);
}

/* Text */
.my-testimonials__text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

/* User */
.my-testimonials__user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.my-testimonials__user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.my-testimonials__user h5 {
  margin: 0;
  font-size: 16px;
}

.my-testimonials__user span {
  font-size: 13px;
  color: #777;
}

/* Pagination */
.my-testimonials__pagination .swiper-pagination-bullet {
  background: #19c4ff;
  opacity: 0.4;
}

.my-testimonials__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .my-testimonials__title {
    font-size: 28px;
  }
}

/* ===============================
   CONTACT SECTION
================================ */
.my-contact-section {
  padding: 90px 0;
  background: #f7f6f2;
}

/* FORM BOX */
.my-contact-section__form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.my-contact-section__form-box h3 {
  color: #0057b8;
  margin-bottom: 10px;
}

.my-contact-section__form-box p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORM ELEMENTS */
.my-contact-section__form-box label {
  font-size: 14px;
  color: #0057b8;
  margin-bottom: 6px;
  display: block;
}

.my-contact-section__form-box input,
.my-contact-section__form-box textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 5px;
  margin-bottom: 25px;
  font-size: 14px;
  outline: none;
}

.my-contact-section__form-box input:focus,
.my-contact-section__form-box textarea:focus {
  border-color: #00a9e0;
}

/* SUBMIT BUTTON */
.my-contact-section__form-box button {
  background: #00a9e0;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.my-contact-section__form-box button:hover {
  background: #00b894;
  transform: translateY(-2px);
}

/* INFO COLUMN */
.my-contact-section__info {
  padding-left: 30px;
}

.my-contact-section__info-item {
  display: flex;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid #e2e2e2;
}

.my-contact-section__info-item i {
  width: 46px;
  height: 46px;
  background: #00a9e0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.my-contact-section__info-item h4 {
  margin-bottom: 5px;
  color: #0057b8;
}

.my-contact-section__info-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.my-contact-section__info-item a {
  color: #00a2ff;
  font-weight: 600;
  text-decoration: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .my-contact-section__info {
    padding-left: 0;
    margin-top: 40px;
  }

  .my-contact-section__form-box {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .my-contact-section {
    padding: 60px 0;
  }

  .my-contact-section__form-box {
    padding: 25px;
  }
}
/* ===============================
   CONTACT MAP SECTION
================================ */
.my-contact-map {
  margin-top: 80px;
}

/* Map wrapper */
.my-contact-map__wrapper {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

/* Iframe */
.my-contact-map__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .my-contact-map {
    margin-top: 50px;
  }

  .my-contact-map__wrapper {
    height: 320px;
  }
}

/* ===============================
   OUR CLIENTS SECTION
================================ */
.my-clients-section {
  padding: 80px 0;
  background: #ffffff;
}

.my-clients-section__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
}

.my-clients-section__title {
  font-size: 36px;
  margin-top: 10px;
}

.my-clients-section__title span {
  color: #19c4ff;
}

/* Swiper */
.my-clients-section__swiper {
  margin-top: 40px;
}

/* Slide */
.my-clients-section__icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;

  font-size: 42px;
  color: #ffffff;

  transition: all 0.3s ease;
}

.my-clients-section__icon img {
  height: 100px;
  width: 100%;
  object-fit: contain;
}

.my-clients-section__icon:hover {
  color: #19c4ff;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .my-clients-section__title {
    font-size: 26px;
  }

  .my-clients-section__icon {
    height: 90px;
    font-size: 34px;
  }
}

/* ==============================
   FIX 3D HIT & SCROLL ISSUE
============================== */

/* Smooth Text Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to text elements */
[data-aos] h1,
[data-aos] h2,
[data-aos] h3,
[data-aos] h4,
[data-aos] h5,
[data-aos] h6,
[data-aos] p,
[data-aos] span,
[data-aos] img {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

[data-aos="fade-up"] h1,
[data-aos="fade-up"] h2,
[data-aos="fade-up"] h3,
[data-aos="fade-up"] h4,
[data-aos="fade-up"] h5,
[data-aos="fade-up"] h6,
[data-aos="fade-up"] p,
[data-aos="fade-up"] span {
  animation-name: fadeInUp;
}

[data-aos="fade-left"] h1,
[data-aos="fade-left"] h2,
[data-aos="fade-left"] h3,
[data-aos="fade-left"] h4,
[data-aos="fade-left"] h5,
[data-aos="fade-left"] h6,
[data-aos="fade-left"] p,
[data-aos="fade-left"] span {
  animation-name: fadeInLeft;
}

[data-aos="fade-right"] h1,
[data-aos="fade-right"] h2,
[data-aos="fade-right"] h3,
[data-aos="fade-right"] h4,
[data-aos="fade-right"] h5,
[data-aos="fade-right"] h6,
[data-aos="fade-right"] p,
[data-aos="fade-right"] span {
  animation-name: fadeInRight;
}

[data-aos="fade-up"] img,
[data-aos="fade-left"] img,
[data-aos="fade-right"] img {
  animation-name: fadeInScale;
}

/* Staggered animation delays for multiple elements */
[data-aos] h1:nth-child(1),
[data-aos] h2:nth-child(1),
[data-aos] h3:nth-child(1),
[data-aos] h4:nth-child(1),
[data-aos] h5:nth-child(1),
[data-aos] h6:nth-child(1) {
  animation-delay: 0.1s;
}

[data-aos] h1:nth-child(2),
[data-aos] h2:nth-child(2),
[data-aos] h3:nth-child(2),
[data-aos] h4:nth-child(2),
[data-aos] h5:nth-child(2),
[data-aos] h6:nth-child(2) {
  animation-delay: 0.2s;
}

[data-aos] p:nth-child(1),
[data-aos] span:nth-child(1) {
  animation-delay: 0.3s;
}

[data-aos] p:nth-child(2),
[data-aos] span:nth-child(2) {
  animation-delay: 0.4s;
}

[data-aos] img:nth-child(1) {
  animation-delay: 0.2s;
}

[data-aos] img:nth-child(2) {
  animation-delay: 0.3s;
}

/* Disable pointer events on front when flipped */
.my-services .flip-card.flipped .flip-card-front {
  pointer-events: none;
}

/* Enable pointer events on back when flipped */
.my-services .flip-card.flipped .flip-card-back {
  pointer-events: auto;
}

/* Default states */
.my-services .flip-card-front {
  pointer-events: auto;
}

.my-services .flip-card-back {
  pointer-events: none;
}

/* Ensure back content can scroll */
.my-services .flip-card-back,
.my-services .back-content,
.my-services .back-content-wrapper {
  pointer-events: auto;
  overflow-y: auto;
  touch-action: pan-y;
}

/* IMPORTANT: allow scroll inside transformed element */
.my-services .flip-card-inner {
  will-change: transform;
}

.modal-header h5 {
  color: white;
}

a {
  text-decoration: none;
}

/* Global Smooth Transitions for All Text and Images */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
img {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hover Effects for Images */
img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1) saturate(1.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Smooth transitions for all elements on scroll */
[data-aos] * {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered delays for better animation flow */
[data-aos-delay="100"] {
  animation-delay: 0.1s;
}

[data-aos-delay="200"] {
  animation-delay: 0.2s;
}

[data-aos-delay="300"] {
  animation-delay: 0.3s;
}

[data-aos-delay="400"] {
  animation-delay: 0.4s;
}

[data-aos-delay="500"] {
  animation-delay: 0.5s;
}

[data-aos-delay="600"] {
  animation-delay: 0.6s;
}

.section-title h2 {
  text-transform: uppercase !important;
  font-size: 32px;
}

h2 {
  text-transform: uppercase;
  font-size: 32px !important;
}
.section-title h3 {
  text-transform: uppercase !important;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.how-we-work-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.how-we-work-section .container {
  position: relative;
  z-index: 2;
}

.footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact .contact-list i {
  color: #00a9e0;
  font-size: 14px;
  margin-top: 4px;
  min-width: 18px;
}

.footer-contact .contact-list a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact .contact-list span {
  color: #cccccc;
}

.my-products {
  background: var(--secondary-color);
}

.my-products-card {
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.my-products-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* .my-products-img img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
} */

.my-products-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    min-height: 145px;
    max-height: 146px;
    object-fit: cover;
}

.my-products-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Default: show 2 lines only */
.my-products-desc {
  font-size: 14px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Desktop hover expand */
@media (min-width: 992px) {
  .my-products-card:hover .my-products-desc {
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .my-products-btn {
    display: none;
  }
}

/* Mobile & Tab */
@media (max-width: 991px) {
  .my-products-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
  }

  .my-products-card.active .my-products-desc {
    -webkit-line-clamp: unset;
  }
}

.my-products-card {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.my-products-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.my-products-desc {
  position: relative;
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  max-height: 45px; /* approx 2 lines */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

@media (min-width: 992px) {
  .my-products-card:hover .my-products-desc {
    max-height: 500px; /* large enough to show full text */
  }

  .my-products-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .my-products-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
  }

  .my-products-card.active .my-products-desc {
    max-height: 500px;
  }
}

.my-products-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* Hidden full description layer */
.my-products-full {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 200px;
  background: var(--white-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  overflow-y: auto;
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}



@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}