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

::selection {
  background: var(--secondary);
  color: var(--light);
}

html,
body {
  max-width: 100vw;
  width: 100%;
  overflow-x: clip;
  background-color: var(--background-color)
}


/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* ================= ROOT ELEMENTS ================= */
:root {
  --primary: #2f4156;
  --secondary: #567cbd;
  --background-color: #f5efeb;
  --heading-color: #090f15;
  --text-color: #262e36;
  --light: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --nav-padding: clamp(0.35rem, 0.8vw, 0.6rem);
  --nav-gap: clamp(0.75rem, 1.5vw, 1.2rem);
  --font-base: clamp(0.9rem, 1vw, 1rem);
  --font-brand: clamp(1.25rem, 2vw, 1.5rem);
}


/* ================= NAVBAR ================= */
header {
  .custom-navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }

  .custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
  }

  .navbar-brand img {
    height: 45px;
    transition: height 0.3s ease;
  }

  .custom-navbar.scrolled .navbar-brand img {
    height: 40px;
  }

  /* Nav Links */
  .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: var(--primary);
  }

  .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
  }

  /* Dropdown Styles */
  .dropdown-menu {
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
  }

  .dropdown-item {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    color: var(--heading-color);
    transition: all 0.2s ease;
  }

  .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding-left: 1.75rem;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Contact Button */
  .contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light) !important;
    padding: 0.6rem 1.75rem !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 63, 160, 0.3);
  }

  .contact-btn.active::after {
    display: none;
  }

  /* Custom Toggler */
  .custom-toggler {
    border: none;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    position: relative;
  }

  .custom-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .custom-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .navbar-collapse {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      padding: 1rem;
      margin-top: 1rem;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
      padding: 0.75rem 1rem;
    }

    .navbar-nav .nav-link.active::after {
      display: none;
    }

    .contact-btn {
      margin-top: 0.5rem;
      display: inline-block;
      text-align: center;
    }

    .dropdown-menu {
      box-shadow: none;
      border-left: 3px solid var(--primary);
      margin-left: 1rem;
      background: rgba(248, 249, 250, 0.95);
    }
  }
}


/* Footer style */
footer {
  .ultra-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
    padding: 16px 40px;
    font-size: 14px;
    color: var(--text-color);
  }

  .ultra-footer-line {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .ultra-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }

  .ultra-left img {
    height: 26px;
  }

  .ultra-center {
    opacity: 0.7;
    font-weight: 500;
  }

  .ultra-right {
    display: flex;
    gap: 22px;
  }

  .ultra-right a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
    position: relative;
  }

  .ultra-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background: var(--secondary);
    transition: 0.3s ease;
  }

  .ultra-right a:hover::after {
    width: 100%;
  }

  /* Mobile Premium Layout */
  @media(max-width:768px) {
    .ultra-footer-line {
      flex-direction: column;
      text-align: center;
      gap: 6px;
    }

    .ultra-right {
      justify-content: center;
      flex-wrap: wrap;
    }

    .ultra-left {
      justify-content: center;
    }
  }


}





/* //Home page section css */
.offshore-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  overflow: hidden;
  padding: 6rem 0;

  .offshore-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to left, rgba(47, 65, 86, 0.03), transparent);
    z-index: 0;
  }

  .background-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=85');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
  }

  .background-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--background-color) 0%, rgba(245, 239, 235, 0.8) 30%, transparent 60%, rgba(245, 239, 235, 0.3) 100%);
  }

  .geometric-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(86, 124, 189, 0.15);
    transform: rotate(45deg);
    z-index: 0;
  }

  .geometric-accent:nth-child(1) {
    top: -200px;
    right: -200px;
  }

  .geometric-accent:nth-child(2) {
    bottom: -150px;
    right: 100px;
    width: 300px;
    height: 300px;
    border-color: rgba(47, 65, 86, 0.1);
  }

  .offshore-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(3rem, 6vw, 10rem);
    width: 100%;
  }

  .content-wrapper {
    max-width: 680px;
    animation: slideInLeft 1s ease-out;
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-60px);
    }

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

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--light);
    border-left: 3px solid var(--secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: slideInLeft 1s ease-out 0.2s backwards;
  }

  .offshore-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: slideInLeft 1s ease-out 0.4s backwards;
  }

  #offshore-subtitle {
    display: block;
    position: relative;
  }

  #offshore-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), transparent);
    animation: expandWidth 1s ease-out 1.2s backwards;
  }

  @keyframes expandWidth {
    from {
      width: 0;
    }

    to {
      width: 80px;
    }
  }

  .offshore-desc {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    opacity: 0.85;
    animation: slideInLeft 1s ease-out 0.6s backwards;
  }

  .cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s backwards;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 4px 20px rgba(47, 65, 86, 0.2);
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .btn-primary:hover::before {
    transform: translateX(0);
  }

  .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(47, 65, 86, 0.3);
    transform: translateY(-2px);
  }

  .btn-primary::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.4s ease;
  }

  .btn-primary:hover::after {
    transform: translateX(5px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
  }

  .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .btn-secondary:hover {
    color: var(--light);
  }

  .btn-secondary:hover::before {
    width: 100%;
  }

  .stats-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(47, 65, 86, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    animation: slideInLeft 1s ease-out 1s backwards;
  }

  .stat-item {
    text-align: left;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
  }

  .stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
  }

  @media (max-width: 1200px) {
    .offshore-container {
      padding: 0 clamp(2rem, 5vw, 4rem);
    }

    .background-decoration {
      width: 60%;
      opacity: 0.1;
    }
  }

  @media (max-width: 1024px) {
    .offshore-section {
      min-height: 90vh;
      padding: 5rem 0;
    }

    .offshore-container {
      padding: 0 3rem;
    }

    .background-decoration {
      width: 100%;
      opacity: 0.06;
    }

    .geometric-accent {
      display: none;
    }

    .offshore-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .stats-section {
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .offshore-section {
      min-height: auto;
      padding: 4.5rem 0;
    }

    .offshore-section::before {
      width: 100%;
    }

    .background-decoration::after {
      background: linear-gradient(to right,
          rgba(255, 255, 255, 0.08),
          rgba(255, 255, 255, 0.04),
          rgba(255, 255, 255, 0.02),
          transparent) !important;

    }

    .offshore-container {
      padding: 0 2rem;
    }

    .content-wrapper {
      max-width: 100%;
    }

    .badge {
      font-size: 0.75rem;
      padding: 0.5rem 1.2rem;
      margin-bottom: 2rem;
    }

    .offshore-title {
      margin-bottom: 1.5rem;
    }

    #offshore-subtitle::after {
      width: 60px;
      bottom: -8px;
    }

    .offshore-desc {
      font-size: 1rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .cta-group {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
      justify-content: center;
      text-align: center;
      padding: 1rem 2rem;
      width: 100%;
    }

    .stats-section {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
    }

    .stat-number {
      font-size: 2rem;
    }

    .stat-label {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .offshore-section {
      padding: 3.5rem 0;
    }

    .offshore-container {
      padding: 0 1.5rem;
    }

    .badge {
      font-size: 0.5rem;
      padding: 0.45rem 1rem;
      margin-bottom: 1.5rem;
    }

    .offshore-title {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
      margin-bottom: 1.25rem;
    }

    #offshore-subtitle::after {
      width: 50px;
      height: 2px;
    }

    .offshore-desc {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
      padding: 0.9rem 1.5rem;
      font-size: 0.9rem;
    }

    .stats-section {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 8px;
    }

    .stat-number {
      font-size: 1.75rem;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.75rem;
    }
  }

  @media (max-width: 375px) {
    .offshore-section {
      padding: 3rem 0;
    }

    .offshore-container {
      padding: 0 1.25rem;
    }

    .offshore-title {
      font-size: 1.65rem;
    }

    .offshore-desc {
      font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
      padding: 0.85rem 1.25rem;
      font-size: 0.85rem;
    }
  }







}



/* //Marquee section */
.marquee-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.marquee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1.25rem 0;
  background: transparent;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--secondary), transparent);
}

.marquee-content {
  display: flex;
  gap: 4rem;
  animation: scroll 50s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

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

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.marquee-item:hover {
  transform: scale(1.05);
}

.marquee-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.marquee-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.marquee-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.marquee-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

.marquee-separator {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 0 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {

  .marquee-wrapper {
    padding: 1rem 0;
  }

  .marquee-content {
    gap: 2.5rem;
  }

  .marquee-item {
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  .marquee-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .marquee-title {
    font-size: 0.9rem;
  }

  .marquee-subtitle {
    font-size: 0.7rem;
  }

  .marquee-separator {
    height: 30px;
    margin: 0 0.5rem;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .marquee-subtitle {
    display: none;
  }

  .marquee-content {
    gap: 2rem;
  }
}






/* Home page section 2 */
/* Section */
.image-scroll-section {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image container */
.image-wrapper {
  width: 75%;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(80px);
  /* opacity: 0; */
  transition: all 0.8s ease-out;
}

/* Active state */
.image-wrapper.active {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Image */
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-scroll-section {
  padding-left: 20px;
  padding-right: 20px;
}

.image-wrapper {
  width: 100%;
  max-width: 1100px;
}


/* Home page section 3 */


.features-section {
  padding: 80px 5%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.feature-card.blue {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 36px;
  padding: 40px;
  color: var(--light);
  box-shadow: var(--shadow);
}

/* Icon box (same as image) */
.icon-box {
  background: var(--light);
  color: var(--primary);
  width: 90px;
  height: 90px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  margin-bottom: 28px;
}

/* Text */
.feature-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-description {
  font-size: var(--font-base);
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.blue {
    padding: 30px;
  }

  .icon-box {
    width: 75px;
    height: 75px;
    font-size: 40px;
  }
}








.sec3 {
  padding-left: 20px;
  padding-right: 20px;

  .section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

  .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }

  .intro-text {
    max-width: 900px;
    margin: 30px auto 0;
    font-size: var(--font-base);
    color: var(--text-color);
    text-align: center;
    line-height: 1.8;
    /* text-align: justify; */
    animation: fadeInUp 0.8s ease 0.2s forwards;
  }

  .intro-text strong {
    color: var(--primary);
    font-weight: 600;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .feature-card {
    background: var(--light);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 61, 50, 0.15);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: transform 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .feature-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
  }

  .feature-description {
    color: var(--text-color);
    font-size: var(--font-base);
    line-height: 1.7;
  }

  .cta-section {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
  }

  .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-base);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(15, 61, 50, 0.2);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 61, 50, 0.3);
  }

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

  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }

  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }

  .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
}


.sec4 {
  padding-left: 20px;
  padding-right: 20px;

  .edge-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  .section- {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
  }

  .badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(15, 61, 50, 0.2);
  }

  .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-header p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--text-color);
    /* max-width: 700px; */
    margin: 0 auto;
    line-height: 1.8;
  }

  /* Asymmetric Layout Grid */
  .edge-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 60px;
  }

  /* Large Feature Block - Cost Efficiency */
  .feature-large {
    grid-column: span 7;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    padding: 50px;
    color: var(--light);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease 0.2s forwards;
  }

  .feature-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .floating-icons {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
  }

  .floating-icon:nth-child(2) {
    animation-delay: 0.5s;
  }

  .floating-icon:nth-child(3) {
    animation-delay: 1s;
  }

  /* Medium Feature Block - Confidentiality */
  .feature-medium {
    grid-column: span 5;
    background: linear-gradient(135deg, #1a1a3e, var(--secondary));
    border-radius: 30px;
    padding: 40px;
    color: var(--light);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease 0.3s forwards;
  }

  .illustration-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
  }

  .illustration-box::before {
    content: '🔐';
    font-size: 80px;
    position: absolute;
  }

  /* Small Feature Block - Expertise */
  .feature-small {
    grid-column: span 5;
    background: var(--light);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease 0.4s forwards;
  }

  .chat-bubbles {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .chat-bubble {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 15px 20px;
    border-radius: 20px 20px 20px 5px;
    font-size: 0.85rem;
    color: var(--dark);
    border-left: 3px solid var(--primary);
    position: relative;
    animation: popIn 0.5s ease backwards;
  }

  .chat-bubble:nth-child(2) {
    animation-delay: 0.6s;
  }

  .chat-bubble:nth-child(3) {
    animation-delay: 0.8s;
  }

  .avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 10px;
    vertical-align: middle;
  }

  /* Wide Feature Block - Scalability */
  .feature-wide {
    grid-column: span 7;
    background: var(--light);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease 0.5s forwards;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .stat-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
  }

  .stat-chart {
    width: 100%;
    height: 80px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 33%, var(--secondary) 33%, var(--secondary) 66%, #4a5568 66%);
    border-radius: 10px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
  }

  .stat-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
  }

  .feature-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .feature-description {
    font-size: var(--font-base);
    line-height: 1.8;
    opacity: 0.95;
  }

  .feature-small .feature-title,
  .feature-wide .feature-title {
    color: var(--primary);
  }



  /* Responsive */
  @media (max-width: 1024px) {
    .edge-layout {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .feature-large,
    .feature-medium,
    .feature-small,
    .feature-wide {
      grid-column: span 1;
    }

    .floating-icons {
      right: 20px;
      top: 120px;
      transform: none;
      flex-direction: row;
    }
  }

  @media (max-width: 768px) {
    body {
      padding: 50px 15px;
    }

    .feature-large,
    .feature-medium,
    .feature-small,
    .feature-wide {
      padding: 30px;
      min-height: auto;
    }

    .stats-grid {
      grid-template-columns: 1fr;
    }
  }
}

@media (max-width: 576px) {

  .image-scroll-section,
  .sec3,
  .sec4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sec4 .floating-icons {
    display: none;
  }

}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

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

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

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

@keyframes float {

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

  50% {
    transform: translateY(-15px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }

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





.vmv-section {
  /* background: var(--background-color); */
  padding: 80px 20px;
}

.vmv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.vmv-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
  max-width: 360px;
  text-align: center;
  transition: 0.3s ease;
}

.vmv-card:hover {
  transform: translateY(-8px);
}

.vmv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.vmv-card h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
}

.vmv-card p {
  color: var(--text-color);
  font-size: var(--font-base);
  line-height: 1.6;
}



.sec5 {
  .services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: visible;
    /* sticky માટે */
    max-width: 100%;
  }

  .services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: clip;
  }

  .services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 100%;
  }

  /* Left Side - Sticky Description */
  .services-left {
    position: sticky;
    top: 150px;
    padding-right: 40px;
    align-self: flex-start;
  }

  .services-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    border-radius: 50px;
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(15, 61, 50, 0.2);
  }

  .services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .services-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .services-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
  }

  .stat-item {
    flex: 1;
  }

  .stat-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
  }

  /* Right Side - Scrolling Services */
  .services-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before {
    transform: scaleY(1);
  }

  .service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(15, 61, 50, 0.15);
  }

  .service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }

  .service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .service-name {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    color: var(--primary);
    font-weight: 700;
    flex: 1;
  }

  .service-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 70px;
  }

  /* Decorative Elements */
  .services-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .services-decoration-1 {
    top: 10%;
    left: -150px;
  }

  .services-decoration-2 {
    bottom: 10%;
    right: -150px;
    background: radial-gradient(circle, rgba(15, 61, 50, 0.05) 0%, transparent 70%);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .services-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .services-left {
      position: relative;
      top: 0;
      padding-right: 0;
      margin-bottom: 20px;
    }

    .services-stats {
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 60px 0;
    }

    .service-card {
      padding: 25px 20px;
    }

    .service-text {
      padding-left: 0;
      margin-top: 10px;
    }

    .services-stats {
      flex-direction: column;
      gap: 15px;
    }
  }
}



.sec6 {
  .partner-section {
    padding: clamp(4rem, 10vw, 10rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(to bottom, #fafafa 0%, var(--light) 100%);
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .subtitle {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .main-heading {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--primary);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
  }

  .main-heading strong {
    font-weight: 700;
    color: var(--heading-color);
  }

  .description {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
  }

  .brands-text {
    font-size: var(--font-base);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 500;
  }

  .brand-line {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--secondary) 20%,
        var(--primary) 50%,
        var(--secondary) 80%,
        transparent 100%);
    margin: clamp(3rem, 5vw, 4rem) auto;
    max-width: 600px;
  }

  .cta-wrapper {
    margin-top: clamp(3rem, 5vw, 4rem);
  }

  .cta-button {
    display: inline-block;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--light);
    background: var(--primary);
    padding: clamp(1rem, 1.2vw, 1.3rem) clamp(2.5rem, 3vw, 3.5rem);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.4s ease;
    z-index: -1;
  }

  .cta-button:hover::before {
    left: 0;
  }

  .cta-button:hover {
    transform: translateY(-2px);
  }

  .trust-line {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    font-size: var(--font-base);
    color: var(--text-color);
    font-style: italic;
  }

  @media (max-width: 768px) {
    .main-heading {
      letter-spacing: 0;
    }
  }
}


.sec7 {
  .contact-section {
    padding: clamp(5rem, 12vw, 12rem) clamp(1.5rem, 5vw, 3rem);
    background: var(--primary);
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary), transparent);
    opacity: 0.1;
    pointer-events: none;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }

  .heading-group {
    max-width: 800px;
  }

  .section-label {
    font-size: var(--font-base);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
  }

  .main-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--light);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .description-text {
    font-size: clamp(1.1rem, 1.35vw, 1.3rem);
    color: var(--light);
    line-height: 1.8;
    font-weight: 300;
  }

  .cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .primary-cta {
    display: inline-block;
    padding: clamp(1.1rem, 1.3vw, 1.4rem) clamp(2.8rem, 3.5vw, 4rem);
    background: var(--light);
    color: var(--primary);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
  }

  .primary-cta::after {
    content: '→';
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .primary-cta:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .primary-cta:hover::after {
    transform: translateX(5px);
  }

  .secondary-cta {
    display: inline-block;
    padding: clamp(1.1rem, 1.3vw, 1.4rem) clamp(2.8rem, 3.5vw, 4rem);
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .secondary-cta:hover {
    border-color: var(--light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

  .contact-details {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    margin-top: clamp(3rem, 5vw, 4rem);
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-item {
    text-align: center;
  }

  .contact-icon {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--secondary);
    margin-bottom: 0.8rem;
  }

  .contact-label {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .contact-value {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    color: var(--light);
    font-weight: 400;
  }

  .contact-value a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-value a:hover {
    color: var(--secondary);
  }

  @media (max-width: 768px) {
    .cta-group {
      flex-direction: column;
      width: 100%;
    }

    .primary-cta,
    .secondary-cta {
      width: 100%;
      text-align: center;
    }

    .contact-details {
      flex-direction: column;
      gap: 2rem;
    }
  }
}




.uk-services-section {
  padding: 4rem 0;
  background-color: var(--background-color);

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    color: var(--heading-color);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .section-title p {
    color: var(--text-color);
    font-size: var(--font-base);
    max-width: 600px;
    margin: 0 auto;
  }

  .service-card {
    background: var(--light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

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

  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  }

  .service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--light);
    fill: none;
    stroke-width: 2;
  }

  .service-title {
    color: var(--heading-color);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-description {
    color: var(--text-color);
    font-size: var(--font-base);
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-description {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 3rem 0;
    }

    .service-card {
      padding: 2rem 1.5rem;
      margin-bottom: 1.5rem;
    }

    .service-description {
      opacity: 1;
      max-height: none;
      margin-top: 1rem;
    }
  }
}




.us-services-section {
  padding: 5rem 2rem;
  background-color: var(--background-color);

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

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: var(--font-base);
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }

  /* Zigzag Layout */
  .services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .service-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
  }

  .service-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-height: 350px;
    aspect-ratio: 4 / 3;
  }


  .service-image-container img,
  .service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .service-row:hover .service-image {
    transform: scale(1.1);
  }

  /* Mobile fix */
  @media (max-width: 768px) {
    .service-image-container {
      aspect-ratio: 1 / 1;
    }
  }


  .service-content {
    flex: 1;
    padding: 2rem;
  }

  .service-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

  .service-row:hover .service-number {
    transform: rotate(360deg) scale(1.1);
  }

  .service-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .service-content p {
    font-size: var(--font-base);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(47, 65, 86, 0.2);
  }

  .service-btn:hover {
    background-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(86, 124, 189, 0.3);
  }

  .service-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--light);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
  }

  .service-btn:hover svg {
    transform: translateX(5px);
  }

  .service-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--light);
    fill: none;
    stroke-width: 3;
  }

  .feature-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
  }

  /* Decorative Line */
  .service-row::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent, var(--secondary), transparent);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
  }

  .service-row:last-child::after {
    display: none;
  }

  @media (max-width: 968px) {

    .service-row,
    .service-row:nth-child(even) {
      flex-direction: column;
    }

    .service-image-container {
      min-height: 350px;
      width: 100%;

    }

    .service-content {
      padding: 1rem;
    }

    .service-row::after {
      display: none;
    }

    .services-wrapper {
      gap: 3rem;
    }
  }

  @media (max-width: 576px) {
    .services-section {
      padding: 3rem 1rem;
    }

    .service-image-container {
      min-height: 280px;
    }

    .service-features {
      gap: 1rem;
    }
  }

}