
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    color-scheme: light;
    --bg: #eff1ff;
    --surface: #ffffff;
    --surface-soft: #f7fafd;
    --text: #000000;
    --muted: #52667a;
    --heading: #0f172a;
    --border: rgba(31, 41, 55, 0.08);

    /* Logo-matching palette (green + teal) */
    --primary: #29ca8e;         /* primary brand green */
    --primary-dark: #25b77e;    /* darker brand green */
    --primary-soft: rgba(41, 202, 142, 0.12);

    --accent: #0ea5e9;          /* link/hover teal-blue accent */
    --accent-soft: rgba(14, 165, 233, 0.12);

    --shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.06);
    --navbar-bg: rgba(255, 255, 255, 0.88);
    --navbar-text: #102a43;
  }

  body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    padding-top: 90px;
  }

  .skip-link {
    position: absolute;
    top: -40px;
    left: 12px;
    background: rgba(15, 23, 42, 0.92);
    color: #000000;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    z-index: 100;
  }

  .skip-link:focus {
    top: 12px;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-top: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(2.1rem, 3vw, 2.8rem);
  }

  h3 {
    font-size: 1.7rem;
  }

  p {
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 1.5rem;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
  }

  a {
    color: var(--primary-dark);
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.35s ease;
    transition: 0.35s ease;
  }

  a:hover, a:active, a:focus {
    color: var(--accent);
    outline: none;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(15, 23, 42, 0.45);
    border-radius: 999px;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 90px 0;
    scroll-margin-top: 90px;
  }

  .custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border: none;
    margin-bottom: 0;
    padding: 24px 0;
    background: var(--text);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
  }

  #contact,
  footer {
    background: var(--surface);
    text-align: center;
  }

  .dark-mode {
    color-scheme: dark;
    --bg: #0b1120;
    --surface: #1acf6b;
    --surface-soft:#f7fafd;
    --text: #000000;
    --muted: #000000;
    --heading: #000000;
    --border: rgba(255, 255, 255, 0.08);
    --primary: #000000;
    --primary-dark: #86efac;
    --primary-soft: rgba(34, 197, 94, 0.16);
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.16);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.25);
    --navbar-bg: rgba(15, 23, 42, 0.92);
    --navbar-text: #000000;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #0b1120;
      --surface: #111827;
      --surface-soft: #17223b;
      --text: #000000;
      --muted: #94a3b8;
      --heading: #000000;
      --border: rgba(255, 255, 255, 0.08);
      --navbar-bg: rgba(15, 23, 42, 0.92);
      --navbar-text: #f8fafc;
    }
  }

  .overlay {
background: var(--primary-dark);  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292E49, #536976);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #292E49, var(--primary-dark));
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

.online-form button {
    background: var(--primary);
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: var(--primary);
    border: 0;
    border-radius: 999px;
    color: #ffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 38px rgba(34, 197, 94, 0.18);
    transition: all 0.35s ease;
    min-height: 48px; /* Minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(34, 197, 94, 0.22);
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  }

  .preloader.fade-out {
    opacity: 0;
    visibility: hidden;
  }

  .preloader-content {
    text-align: center;
    animation: preloaderFadeIn 0.6s ease-out;
  }

  .preloader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #29ca8e;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: logoPulse 2s ease-in-out infinite;
  }

  .preloader-text {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .spinner {
    position: relative;
    width: 60px;
    height: 60px;
  }

  .spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid #e9ecef;
border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spinner 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(41, 202, 142, 0.1);
  }

  .spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 2px solid transparent;
border-top: 2px solid var(--primary-dark);
    border-radius: 50%;
    animation: spinner 0.8s linear infinite reverse;
  }

  @keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes preloaderFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes logoPulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.8;
    }
  }

  .custom-navbar .navbar-brand {
    color: var(--navbar-text);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .top-nav-collapse {
    background: var(--surface);
  }

  .custom-navbar .navbar-nav {
    margin-left: 5.5rem;
  }

  .custom-navbar .nav li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navbar-text);
    padding: 0 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: var(--accent);
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: var(--primary);
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: var(--text);
    border-color: transparent;
  }

  .custom-navbar .navbar-brand {
    padding: 6px;
    background: var(--surface);
    border-radius: 14px;
  }

  .custom-navbar .navbar-brand img {
    max-height: 42px;
    width: auto;
    display: block;
    background: transparent;
  }

  .dark-mode-toggle {
    margin-left: 1rem;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 254, 254, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
  }

  .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.05);
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: transparent;
    }

    .custom-navbar.top-nav-collapse {
      background: var(--surface);
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: var(--heading);
    }

    .top-nav-collapse .nav li a {
      color: var(--muted);
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HERO SECTION
  -----------------------------------------*/

  #home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
  }

  .hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }

  .hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 24, 54, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
  }

  .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
  }

  .hero-content {
    background: rgba(12, 28, 55, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 56px 42px;
    box-shadow: 0 26px 70px rgba(3, 12, 37, 0.35);
    max-width: 820px;
    margin: 0 auto;
    animation: slideInFromBottom 1.6s ease-out;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    line-height: 1.05;
  }

  .hero-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 38px;
    line-height: 1.75;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 16px;
    justify-items: center;
    margin-top: 16px;
  }

  .hero-trust-grid div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px 20px;
    min-width: 140px;
  }

  .hero-trust-grid strong {
    display: block;
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 6px;
  }

  .hero-trust-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-btn {
    padding: 16px 34px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 180px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.45s ease;
  }

  .feature-grid {
    margin-top: 35px;
  }

  .feature-card,
  .story-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(34, 197, 94, 0.12);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.06);
    padding: 28px 26px;
    margin-bottom: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .feature-card:hover,
  .story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.12);
  }

  .feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 18px;
  }

  .feature-card h3,
  .story-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--heading);
  }

  .feature-card p,
  .story-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0;
  }

  .feature-image,
  .story-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .feature-image img,
  .story-image img {
    width: 100%;
    display: block;
    border-radius: 28px;
    transition: transform 0.45s ease;
  }

  .feature-image:hover img,
  .story-image:hover img {
    transform: scale(1.02);
  }

  .story-grid {
    display: grid;
    gap: 22px;
  }

  @media (max-width: 768px) {
    .hero-trust-grid {
      grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
  }

  @media (max-width: 576px) {
    .hero-trust-grid {
      grid-template-columns: 1fr;
    }
  }

  .hero-btn:hover::before {
    left: 100%;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 14px 36px rgba(34, 197, 94, 0.24);
    border-color: transparent;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #13935a);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.32);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.44);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.12);
  }

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

  @keyframes slideInFromBottom {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-headline {
      font-size: 2.5rem;
    }
    .hero-subheading {
      font-size: 1.1rem;
    }
    .hero-content {
      padding: 40px 20px;
    }
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    .hero-btn {
      width: 200px;
    }
  }

  @media (max-width: 480px) {
    .hero-headline {
      font-size: 2rem;
    }
    .hero-subheading {
      font-size: 1rem;
    }
    .hero-btn {
      width: 180px;
      padding: 12px 24px;
      font-size: 1rem;
    }
  }

  /* Hide hero video on mobile for better performance */
  @media (max-width: 768px) {
    .hero-video {
      display: none;
    }
    .hero-overlay {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(14, 165, 233, 0.8));
    }
  }
  


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #feature {
    background: #ffffff;
  }

  #feature .nav-tabs {
    border-bottom: 0;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #999999;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #999999;
    border-bottom: 3px solid #29ca8e;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #29ca8e;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 50px;
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #000000;
  }

  .testimonial-image {
    background: url('../images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #0e0d0d;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .testimonial-stars {
    margin: 18px 0 14px;
    font-size: 1rem;
    color: #fbbf24;
  }

  .testimonial-stars i {
    margin-right: 4px;
  }

  .testimonial-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 0;
  }

  .testimonial-item h4 {
    color: #070707;
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .testimonial-item span {
    display: block;
    color: #a0aec0;
    font-size: 0.95rem;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #080808;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }

  .cta-section {
    background: linear-gradient(120deg, rgba(34, 197, 94, 0.1), rgba(14, 165, 233, 0.08));
    border-top: 1px solid rgba(34, 197, 94, 0.12);
    border-bottom: 1px solid rgba(14, 165, 233, 0.12);
    padding: 80px 0;
  }

  .cta-content small {
    display: inline-block;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 18px;
    line-height: 1.12;
  }

  .cta-content p {
    max-width: 520px;
    margin-bottom: 0;
    color: var(--text);
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #about .section-title,
  #pricing .section-title {
    text-align: center;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 0;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 20px 40px;
  }

  .pricing-title {
    padding-bottom: 5px;
  }

  .pricing-info {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 20px 0;
  }

  .pricing-info p {
    font-size: 16px;
  }

  .pricing-bottom {
    position: relative;
  }

  .pricing-bottom span {
    font-size: 20px;
  }

  .pricing-btn {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-block;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact-form {
    padding: 35px;
    background: var(--surface);
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  #contact-form .section-title {
    padding-bottom: 25px;
    text-align: left;
  }

  #contact-form .section-title p {
    max-width: 680px;
    color: var(--muted);
    margin-top: 12px;
  }

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

  #contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
  }

  #contact-form .form-control {
    width: 100%;
    background: var(--surface-soft);
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 14px;
    box-shadow: none;
    padding: 16px 18px;
    margin: 0;
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Minimum touch target */
  }

  #contact-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
  }

  #contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
  }

  #contact-form .field-error {
    display: block;
    margin-top: 8px;
    color: #e11d48;
    font-size: 0.9rem;
    min-height: 1.2em;
  }

  #contact-form .form-control.invalid {
    border-color: #e11d48;
  }

  #contact-form .form-status {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    display: none;
    font-weight: 600;
  }

  #contact-form .form-status.success {
    background: rgba(34, 197, 94, 0.12);
    color: var(--primary-dark);
  }

  #contact-form .form-status.error {
    background: rgba(225, 29, 72, 0.12);
    color: #b91c1c;
  }

  #contact-form .section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 15px 32px;
  }

  @media (max-width: 768px) {
    #contact-form {
      padding: 24px;
    }

    #contact-form .section-title {
      text-align: center;
    }

    #contact-form .form-group label {
      text-align: left;
    }

    .contact-fields .col-sm-6 {
      width: 100%;
    }

    .contact-fields .col-sm-6,
    .contact-fields .col-md-4,
    .contact-fields .col-md-12 {
      padding-right: 0;
      padding-left: 0;
    }
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background: var(--surface);
    color: var(--muted);
    padding: 80px 0 45px;
  }

  .footer-top {
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-widget {
    margin-bottom: 20px;
  }

  .footer-widget h4 {
    color: var(--heading);
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .footer-widget p,
  .footer-widget li,
  .footer-widget a {
    color: var(--muted);
  }

  .footer-widget a {
    text-decoration: none;
  }

  .footer-widget a:hover {
    color: var(--primary);
  }

  .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links li a {
    font-size: 0.95rem;
  }

  .footer-widget p {
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .footer-widget .social-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
  }

  .footer-widget .social-icon li {
    display: inline-block;
  }

  .footer-widget .social-icon li a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--text);
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .footer-widget .social-icon li a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .footer-newsletter p {
    margin-bottom: 12px;
  }

  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 14px 16px;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Minimum touch target */
  }

  .newsletter-form input::placeholder {
    color: rgba(31, 41, 55, 0.5);
  }

  .newsletter-form button {
    padding: 14px 20px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Minimum touch target */
    transition: background-color 0.3s ease;
  }

  .newsletter-form button:hover {
    background: var(--primary-dark);
  }

  .footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.08);
    padding-top: 20px;
  }

  .footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .footer-bottom a {
    color: var(--primary);
  }

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

  .footer-widget .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .footer-widget .contact-item i {
    font-size: 18px;
    color: var(--primary);
    margin-top: 2px;
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }

  @media (max-width: 992px) {
    .footer-top {
      display: flex;
      flex-wrap: wrap;
    }

    .footer-widget {
      flex: 1 1 45%;
      min-width: 220px;
    }
  }

  @media (max-width: 768px) {
    footer {
      padding: 60px 0 30px;
    }

    .footer-widget {
      flex: 1 1 100%;
    }

    .newsletter-form {
      flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .footer-widget h4 {
      font-size: 1rem;
    }

    .footer-widget .social-icon {
      gap: 8px;
    }

    .footer-widget .social-icon li a {
      width: 40px;
      height: 40px;
      font-size: 14px;
    }

    section {
      padding: 30px 0;
    }

    .testimonial-info {
      padding: 30px;
    }

    footer {
      padding: 30px 0 20px;
    }
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }



  /*---------------------------------------
     IMPACT COUNTER
  -----------------------------------------*/

  #impact {
    background: #f9f9f9;
    padding: 80px 0;
  }

  .counter-thumb {
    text-align: center;
    padding: 40px 20px;
  }

  .counter-icon {
    font-size: 48px;
    color: #536976;
    margin-bottom: 20px;
  }

  .counter-info h2 {
    font-size: 36px;
    color: #353535;
    margin: 0;
  }

  .counter-info p {
    font-size: 14px;
    color: #757575;
    margin: 10px 0 0 0;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }

    .hero-headline {
      font-size: 2.8rem;
    }

    .hero-subheading {
      font-size: 1.2rem;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -24em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    .hero-headline {
      font-size: 2.5rem;
    }

    .hero-subheading {
      font-size: 1.1rem;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .hero-btn {
      width: 250px;
      padding: 14px 28px;
      font-size: 1.1rem;
    }

    footer {
      padding-bottom: 40px;
    }

    .testimonial-info {
      padding: 40px 30px;
    }

    .counter-thumb {
      padding: 30px 15px;
    }

    .counter-icon {
      font-size: 42px;
    }

    .counter-info h2 {
      font-size: 32px;
    }
  }


  @media screen and (max-width: 767px) {

    section {
      padding: 50px 0;
      scroll-margin-top: 60px;
    }

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 8px 12px;
      font-size: 16px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
      font-size: 18px;
    }

    .custom-navbar .navbar-right {
      display: none;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 0;
      margin-top: 40px;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: auto;
      min-height: 300px;
    }

    .testimonial-info {
      padding: 30px 20px;
    }

    .hero-headline {
      font-size: 2.2rem;
      line-height: 1.2;
    }

    .hero-subheading {
      font-size: 1rem;
      line-height: 1.4;
    }

    .hero-content {
      padding: 30px 20px;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 12px;
    }

    .hero-btn {
      width: 280px;
      padding: 16px 32px;
      font-size: 1.1rem;
      min-height: 50px;
    }

    .pricing-thumb {
      padding: 25px 20px;
      margin-bottom: 20px;
    }

    .pricing-info p {
      font-size: 15px;
      margin-bottom: 8px;
    }

    .pricing-bottom span {
      font-size: 24px;
    }

    .pricing-btn {
      position: relative;
      top: 0;
      right: 0;
      width: 100%;
      margin-top: 15px;
      padding: 12px 24px;
      min-height: 48px;
    }

    .counter-thumb {
      padding: 25px 10px;
      margin-bottom: 20px;
    }

    .counter-icon {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .counter-info h2 {
      font-size: 28px;
    }

    .counter-info p {
      font-size: 13px;
    }

    .tab-pane-item h2 {
      font-size: 1.3rem;
    }

    .tab-pane-item p {
      font-size: 14px;
      line-height: 1.5;
    }

    .online-form input[type="email"],
    .online-form .form-control {
      width: 100%;
      margin-bottom: 15px;
      padding: 12px 16px;
      font-size: 16px; /* Prevents zoom on iOS */
      min-height: 48px;
    }

    .online-form .form-control {
      display: block;
      margin: 15px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
      width: 100%;
      padding: 12px 24px;
      min-height: 48px;
      font-size: 16px;
    }

    .newsletter-form {
      flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
      min-height: 48px;
      font-size: 16px;
    }

    .footer-widget {
      margin-bottom: 30px;
    }

    .footer-widget h4 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .social-icon li a {
      width: 48px;
      height: 48px;
      line-height: 48px;
      font-size: 18px;
      margin: 5px;
    }
  }


  @media screen and (max-width: 480px) {

    .online-form input[type="email"],
    .online-form .form-control {
      width: 100%;
    }

    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: auto;
      min-height: 250px;
    }

    .testimonial-info {
      padding: 25px 15px;
    }

    .hero-headline {
      font-size: 1.8rem;
    }

    .hero-subheading {
      font-size: 0.95rem;
    }

    .hero-btn {
      width: 260px;
      padding: 14px 28px;
      font-size: 1rem;
    }

    .pricing-thumb {
      padding: 20px 15px;
    }

    .pricing-info p {
      font-size: 14px;
    }

    .pricing-bottom span {
      font-size: 22px;
    }

    .counter-thumb {
      padding: 20px 5px;
    }

    .counter-icon {
      font-size: 32px;
    }

    .counter-info h2 {
      font-size: 24px;
    }

    .counter-info p {
      font-size: 12px;
    }

    .section-title h1 {
      font-size: 2rem;
    }

    .tab-pane-item h2 {
      font-size: 1.2rem;
    }

    .custom-navbar .navbar-brand {
      font-size: 16px;
    }

    .custom-navbar .nav li a {
      font-size: 15px;
      padding: 10px 8px;
    }

    .social-icon li a {
      width: 44px;
      height: 44px;
      line-height: 44px;
      font-size: 16px;
    }

    .newsletter-form input,
    .newsletter-form button {
      padding: 14px 16px;
    }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .hero-btn:hover,
    .section-btn:hover,
    .pricing-btn:hover {
      transform: none;
    }

    .social-icon li a:hover {
      transform: none;
    }
  }

  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .hero-btn,
    .section-btn,
    .pricing-btn {
      border: 2px solid;
    }

    .testimonial-item img {
      border-width: 4px;
    }
  }

  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }

    .hero-video {
      display: none;
    }

    .hero-overlay {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(14, 165, 233, 0.8));
    }
  }

  /* Print styles */
  @media print {
    .navbar,
    .hero-video,
    .preloader,
    .owl-carousel,
    footer {
      display: none !important;
    }

    .hero-overlay {
      background: white !important;
    }

    .hero-headline,
    .hero-subheading {
      color: black !important;
    }

    body {
      font-size: 12pt;
      line-height: 1.4;
    }

    .section-title h1 {
      page-break-after: avoid;
    }

    a[href]:after {
      content: " (" attr(href) ")";
      font-size: 0.8em;
    }
  }



  /*---------------------------------------
     ANIMATIONS & INTERACTIONS
  -----------------------------------------*/

  /* Base animation classes */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }

  .animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
  }

  .fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
  }

  .fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
  }

  .scale-in.animate {
    opacity: 1;
    transform: scale(1);
  }

  /* Staggered animations for cards */
  .stagger-item:nth-child(1) { transition-delay: 0.1s; }
  .stagger-item:nth-child(2) { transition-delay: 0.2s; }
  .stagger-item:nth-child(3) { transition-delay: 0.3s; }
  .stagger-item:nth-child(4) { transition-delay: 0.4s; }
  .stagger-item:nth-child(5) { transition-delay: 0.5s; }
  .stagger-item:nth-child(6) { transition-delay: 0.6s; }

  /* Enhanced hover interactions */

  /* Buttons */
  .section-btn,
  .pricing-btn,
  .hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .section-btn::before,
  .pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .section-btn:hover::before,
  .pricing-btn:hover::before {
    left: 100%;
  }

  .section-btn:hover,
  .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 202, 142, 0.3);
  }

  /* Cards hover effects */
  .team-thumb,
  .counter-thumb,
  .pricing-thumb {
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .team-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .counter-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(41, 202, 142, 0.2);
  }

  .counter-thumb:hover .counter-icon {
    transform: scale(1.1);
    color: #29ca8e;
  }

  .pricing-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .pricing-thumb:hover {
    transform: translateY(-5px);
    border-color: #29ca8e;
    box-shadow: 0 10px 30px rgba(41, 202, 142, 0.2);
  }

  .pricing-thumb:hover .pricing-title h2 {
    color: #29ca8e;
  }

  /* Tab hover effects */
  #feature .nav-tabs>li>a {
    transition: all 0.3s ease;
  }

  #feature .nav-tabs>li>a:hover {
    transform: translateY(-2px);
  }

  /* Form interactions */
  .form-control {
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
  }

  .form-control:focus {
    border-color: #29ca8e;
    box-shadow: 0 0 10px rgba(41, 202, 142, 0.2);
    transform: translateY(-2px);
  }

  /* Image hover effects */
  .team-thumb img,
  .testimonial-item img {
    transition: all 0.3s ease;
  }

  .team-thumb:hover img {
    transform: scale(1.05);
  }

  /* Navigation hover */
  .custom-navbar .nav li a {
    transition: all 0.3s ease;
  }

  .custom-navbar .nav li a:hover {
    transform: translateY(-2px);
  }

  /* Footer newsletter */
  .newsletter-form input,
  .newsletter-form button {
    transition: all 0.3s ease;
  }

  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 202, 142, 0.3);
  }

  /* Tab content animations */
  .tab-pane-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }

  .tab-pane-item.animate {
    opacity: 1;
    transform: translateY(0);
  }

  /* Counter animation styles */
  .counter-info h2 {
    transition: color 0.3s ease;
  }

  .counter-thumb:hover .counter-info h2 {
    color: #29ca8e;
  }



  /*---------------------------------------
     FLOATING WHATSAPP BUTTON
  -----------------------------------------*/

  .whatsapp-button-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA58);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: whatsapp-pulse 2s infinite;
  }

  .whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: whatsapp-ripple 1.5s ease-out infinite;
  }

  .whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    animation: none;
  }

  .whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(37, 211, 102, 0.95);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid rgba(37, 211, 102, 0.95);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }

  @keyframes whatsapp-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  @keyframes whatsapp-ripple {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .whatsapp-button-wrapper {
      bottom: 20px;
      right: 20px;
    }

    .whatsapp-button {
      width: 55px;
      height: 55px;
      font-size: 26px;
    }

    .whatsapp-tooltip {
      font-size: 12px;
      right: 70px;
    }
  }

  @media (max-width: 480px) {
    .whatsapp-button-wrapper {
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-button {
      width: 50px;
      height: 50px;
      font-size: 22px;
    }

    .whatsapp-tooltip {
      display: none;
    }
  }



  /*---------------------------------------
     SCROLL-TO-TOP BUTTON
  -----------------------------------------*/

  .scroll-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #202020, #353535);
    border: 2px solid #29ca8e;
    color: #29ca8e;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    padding: 0;
  }

  .scroll-to-top-btn.show {
    display: flex;
    animation: slideUp 0.4s ease-out;
  }

  .scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #29ca8e, #25b77e);
    color: #ffffff;
    border-color: #29ca8e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(41, 202, 142, 0.3);
  }

  .scroll-to-top-btn:active {
    transform: translateY(-1px);
  }

  .scroll-to-top-btn i {
    transition: transform 0.3s ease;
  }

  .scroll-to-top-btn:hover i {
    transform: translateY(-3px);
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .scroll-to-top-btn {
      bottom: 95px;
      right: 20px;
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  }

  @media (max-width: 480px) {
    .scroll-to-top-btn {
      bottom: 90px;
      right: 15px;
      width: 45px;
      height: 45px;
      font-size: 16px;
    }
  }



  /*---------------------------------------
     SERVICES SECTION
  -----------------------------------------*/

  #services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 202, 142, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 202, 142, 0.05), transparent);
    transition: left 0.6s;
  }

  .service-card:hover::before {
    left: 100%;
  }

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(41, 202, 142, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
  }

  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #29ca8e, #25b77e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 32px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(41, 202, 142, 0.3);
  }

  .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  .service-card:hover .service-content h3 {
    color: #29ca8e;
  }

  .service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    transition: color 0.3s ease;
  }

  .service-card:hover .service-content p {
    color: #050505;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    #services {
      padding: 100px 0;
    }

    .service-card {
      padding: 35px 25px;
      margin-bottom: 25px;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .service-content h3 {
      font-size: 20px;
    }

    .service-content p {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    #services {
      padding: 80px 0;
    }

    .service-card {
      padding: 30px 20px;
      margin-bottom: 20px;
    }

    .service-icon {
      width: 65px;
      height: 65px;
      font-size: 26px;
      margin-bottom: 18px;
    }

    .service-content h3 {
      font-size: 18px;
    }
  }

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

    .service-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .service-content h3 {
      font-size: 16px;
      margin-bottom: 12px;
    }

    .service-content p {
      font-size: 13px;
      line-height: 1.5;
    }

    .custom-navbar {
      padding: 12px 0;
    }

    .navbar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 12px;
    }

    .navbar-brand {
      font-size: 1rem;
    }

    .dark-mode-toggle {
      width: 38px;
      height: 38px;
      margin-left: 0;
    }

    .hero-content {
      padding: 32px 18px;
    }

    .hero-headline {
      font-size: 2rem;
    }

    .hero-subheading {
      font-size: 0.95rem;
    }

    .hero-buttons {
      gap: 12px;
    }

    .hero-btn,
    .section-btn,
    .pricing-btn {
      width: 100%;
      max-width: none;
    }

    .cta-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .cta-actions .section-btn {
      margin: 0;
    }

    .testimonial-info {
      padding: 25px 18px;
    }

    .pricing-bottom {
      text-align: center;
    }

    .pricing-btn {
      position: static;
      width: 100%;
      margin-top: 20px;
    }

    .hero-video {
      display: none;
    }

    .hero-container {
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .hero-trust-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 20px;
    }

    .hero-trust-grid div {
      min-width: auto;
      width: 100%;
    }

    .hero-btn {
      width: 100%;
      max-width: none;
    }

    .custom-navbar .navbar-collapse {
      background: var(--navbar-bg);
      padding: 12px 0;
      margin-top: 12px;
    }

    .pricing-info p {
      font-size: 14px;
    }

    #contact-form .form-control {
      width: 100%;
    }

    #contact-form input[type='submit'] {
      width: 100%;
      padding: 14px;
    }

    .whatsapp-button-wrapper {
      right: 12px;
      bottom: 12px;
    }

    .scroll-to-top-btn {
      right: 12px;
      bottom: 80px;
    }
  }

  @media (max-width: 767px) {
    .navbar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 12px;
      flex-wrap: wrap;
    }

    .navbar-toggle {
      margin-right: 0;
    }

    .dark-mode-toggle {
      order: 2;
      margin-left: auto;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      display: block;
      padding: 10px 12px;
    }

    .custom-navbar .navbar-right {
      margin-top: 12px;
    }

    .hero-content {
      padding: 36px 20px;
    }

    .hero-buttons {
      flex-direction: column;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    #feature .nav-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    #feature .nav-tabs>li {
      float: none;
    }

    #feature .nav-tabs>li>a {
      margin-right: 0;
      white-space: nowrap;
      min-width: 130px;
      text-align: center;
    }

    #testimonial .testimonial-image,
    #testimonial .testimonial-info {
      height: auto;
    }

    #pricing .col-md-4 {
      width: 100%;
      display: block;
    }

    #pricing .pricing-thumb {
      margin-bottom: 25px;
      padding: 30px 20px;
    }

    .counter-thumb {
      margin-bottom: 25px;
    }

    .section-title h1 {
      font-size: 2rem;
    }
  }

  @media only screen and (max-width: 992px) {
    .pricing-btn {
      position: static;
      width: 100%;
      margin-top: 20px;
    }

    .pricing-bottom {
      text-align: center;
    }

    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
    }
  }

.gallery{
display: flex;
gap: 20px;
flex-wrap:wrap;
padding: 20px;
}

.gallery{
width: 30px;
border-radius:10px;
transition: 0.3s;
}

.gallery img:hover{
transition: scale(0.5);
}
nav{
 background: black;
 padding: 15px;
}
nav a{
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-right: 20px;
  font-size: 18px;
}
nav a:hover{
  color: var(--accent);
}
