 body {
      margin: 0;
      min-height: 200vh;
      background: black;
      overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
      padding-top: 0;
    }

    .gradient {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    /* HAMBURGER MENU */
    .hamburger-rotate {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 0.5em;
      background: #111;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 0 #072b73;
      z-index: 1001;
    }

    .hamburger-rotate::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, #00A499, #00A499, #00A499);
      animation: rotateBorder 3s linear infinite;
      transform-origin: center;
      z-index: 0;
    }

    .hamburger-rotate::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      right: 3px;
      bottom: 3px;
      background: #111;
      border-radius: 0.4em;
      z-index: 1;
    }

    .hamburger-icon {
      position: relative;
      z-index: 3;
      width: 20px;
      height: 18px;
      margin: 16px auto 0;
    }

    .hamburger-icon span {
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      border-radius: 2px;
      transition: 0.4s ease;
      box-shadow: 0 0 4px #fff;
    }

    .hamburger-icon span:nth-child(1) { top: 0; }
    .hamburger-icon span:nth-child(2) { top: 8px; }
    .hamburger-icon span:nth-child(3) { top: 16px; }

    .hamburger-rotate.active .hamburger-icon span:nth-child(1) {
      transform: rotate(45deg);
      top: 5px;
    }
    .hamburger-rotate.active .hamburger-icon span:nth-child(2) {
      opacity: 0;
    }
    .hamburger-rotate.active .hamburger-icon span:nth-child(3) {
      transform: rotate(-45deg);
      top: 5px;
    }

    @keyframes rotateBorder {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* MENU PANEL */
    .menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 50px;
      transform: translateX(100%);
      transition: transform 0.6s ease;
      z-index: 1000;
      line-height: 12vh;
    }

    .menu-panel.active { transform: translateX(0); }
  @font-face {
      font-family: 'Antique';
      src: url("assets/fonts/Antique Olive Bold.ttf");
    }

 .menu-links {
    display: flex;
    flex-direction: column;
    font-family: 'Antique', sans-serif;
    height: auto;
    width: 40vw;
    margin-right: 35px;
    margin-top: 40px;
    font-size: 60px; /* Increased font size */
}


    .menu-links a {
      text-decoration: none;
      color: #00afaf; /* Green color */
    }

    .menu-links h4 {
      display: inline-block;
      position: relative;
      cursor: pointer;
      transition: color 0.3s ease;
      margin: 15px 0;
    font-size: 60px; /* or adjust as needed */


    }
    .menu-links h4:hover { color: #0077cc; }
    .menu-links .cross-line {
      position: absolute;
      height: 2px;
      width: 0;
      background: #00afaf;
      bottom: 0;
      left: 0;
      transition: width 0.4s ease;
    }
    .menu-links h4:hover .cross-line { width: 70%; }

    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .menu-overlay.active { opacity: 1; visibility: visible; }

    @media (max-width: 768px) {
      .menu-panel { flex-direction: column; padding: 20px; }
      .menu-logo img { height: 100px; }
      .menu-links { width: 100%; font-size: 6vw; margin-right: 0; margin-top: 20px; }
    }

    /* GET IN TOUCH BUTTON */
    .get-in-touch-btn {
      position: absolute;
      top: 20px;
      right: 85px;
      z-index: 1002;
      display: inline-block;
      width: 220px;
      height: 60px;
      text-align: center;
      font-size: 1.125rem;
      color: #00A499;
      background: transparent;
      text-decoration: none;
      font-weight: 700;
      border: 2px solid #00A499;
      border-radius: 50px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .button-inner {
      position: relative;
      display: flex;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
    }

    .button-inner-static,
    .button-inner-hover {
      position: absolute;
      width: 100%;
      text-align: center;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .button-inner-static { opacity: 1; }
    .button-inner-hover { opacity: 0; transform: translateY(50%); }

    .get-in-touch-btn:hover .button-inner-static { opacity: 0; transform: translateY(-50%); }
    .get-in-touch-btn:hover .button-inner-hover { opacity: 1; transform: translateY(0); }

    .get-in-touch-btn::before,
    .get-in-touch-btn::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #00A499;
      transition: all 0.4s ease;
    }
    .get-in-touch-btn::before { top: 0; left: 0; }
    .get-in-touch-btn::after { bottom: 0; right: 0; }
    .get-in-touch-btn span::before,
    .get-in-touch-btn span::after {
      content: "";
      position: absolute;
      width: 2px;
      height: 0%;
      background: #00A499;
      transition: all 0.4s ease;
    }
    .get-in-touch-btn span::before { top: 0; right: 0; }
    .get-in-touch-btn span::after { bottom: 0; left: 0; }
    .get-in-touch-btn:hover::before,
    .get-in-touch-btn:hover::after { width: 100%; }
    .get-in-touch-btn:hover span::before,
    .get-in-touch-btn:hover span::after { height: 100%; }
    .get-in-touch-btn:hover { color: #fff; background: #00A499; }

    /* LOGO */
    .logo {
      position: absolute;
      top: 25px;
      left: 25px;
      z-index: 1002;
      display: flex;
      gap: 4px;
      font-size: 2.75rem;
      font-family: 'trajan pro', sans-serif;
      font-weight: 700;
      text-transform: lowercase;
      color: #00A499;
      margin-top: -.5rem;
      letter-spacing: -.05em;
    }
    .logo-txt { display: inline-block; transition: transform 0.3s ease, color 0.3s ease; }
    .logo-txt:hover { transform: scale(1.2); color: #ffffff; }
    .logo-img { height: 80px; margin-left: 10px; vertical-align: middle; }

    /* FLAG MENU */
    .flag-menu {
      position: absolute;
      top: 30px;
      right: 320px;
      z-index: 2000;
    }
    .flag-dropdown {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid #00A499;
      border-radius: 12px;
      padding: 6px 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #00A499;
    }
    .flag-list {
      display: none;
      position: absolute;
      right: 0;
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
      border: 1px solid #00A499;
      border-radius: 12px;
      margin-top: 5px;
      list-style: none;
      padding: 0;
      width: 140px;
      color: #fff;
    }
    .flag-list li {
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.2s, border-left 0.2s;
      border-radius: 8px;
    }
    .flag-list li:hover {
      background: rgba(255,255,255,0.15);
      border-left: 3px solid #00A499;
    }

    /* CONTENT */

[data-router-view="about-us"] {
  padding: 100px 20px; /* Adjust padding as needed */
  background-color:transparent;
  color:#fff;

}

  [data-scroll-container] {
      overflow: hidden;
    }

.about-header {
  max-width: 1200px;
  margin-left: 50px;
  margin-right: auto;
}


.wrap-o {
  position: relative;
}

.wrap-i.relative {
  position: relative;
}

.md\:grid {
  display: grid;
}

.md\:grid-cols-10 {
  grid-template-columns: repeat(10, 1fr);
}

.lg\:grid-cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

.md\:gap-32 {
  gap: 8rem; /* 128px gap */
}

.z-10 {
  position: relative;
  z-index: 10;
}

.md\:col-span-6 {
  grid-column: span 6 / span 6;
}

.md\:col-start-3 {
  grid-column-start: 2;
}

.lg\:col-span-6 {
  grid-column: span 6 / span 6;
}

.lg\:col-start-4 {
  grid-column-start: 4;
}

.text-center {
  text-align: center;
}

.title-lg {
  font-size: 3rem;
  font-weight: 700;  line-height: 1.8;
  color: #fff;
 margin-left: 30px;  position: relative;
  top: -40px;
}

.p-md p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ffff;
  margin-left: -10px;
  text-align: center;
}

.p-md span {
  font-weight: bold;
}

.text-turquoise-light {
  color: #40E0D0;
}

.text-purple-light {
  color: #A020F0;
}

.text-yellow-light {
  color: #FFD700;
}

/* Animations if needed - optional example */
[data-animate-letters] span {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

[data-animate]:hover {
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .md\:grid,
  .lg\:grid-cols-12 {
    grid-template-columns: 1fr;
  }

  .md\:col-span-6,
  .md\:col-start-3,
  .lg\:col-span-6,
  .lg\:col-start-4 {
    grid-column: auto;
  }

  .title-lg {
    font-size: 2rem;
  }

  .p-md p {
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) {
  .md\:grid,
  .lg\:grid-cols-12 {
    grid-template-columns: 1fr;
  }

  .md\:col-span-6,
  .md\:col-start-3,
  .lg\:col-span-6,
  .lg\:col-start-4 {
    grid-column: auto;
  }

  .title-lg {
    font-size: 2.2rem;
    margin-left: 0;
    top: -20px;
    text-align: center;
  }

  .p-md p {
    font-size: 1rem;
    margin-left: 0;
  }

  .title-image {
    max-width: 70%;
    transform: translateY(-10px);
    border-radius: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .title-lg {
    font-size: 1.8rem;
    top: 0;
    margin-left: 0;
  }

  .p-md p {
    font-size: 0.9rem;
    margin-left: 0;
  }

  .title-image {
    max-width: 90%;
    border-radius: 20px;
    transform: translateY(10px);
  }

  [data-router-view="about-us"] {
    padding: 50px 15px;
  }
}
.content-block-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* Rounded corners if you want */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
 
}

.about-image:hover {
  transform: scale(1.05); /* Optional hover zoom effect */
}
.title-image {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 30px;

  margin-top: 20px;

  transform: translateY(-30px); /* move image more UP */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Mobile Version */
@media (max-width: 768px) {
  .title-image {
    max-width: 90%;   /* Bigger image on mobile */
    border-radius: 20px; /* Slightly smaller radius */
    transform: translateY(10px); /* Less movement */
  }}
.title-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}.table-box {
  max-width: 1000px;
  margin: 80px auto;
  background: transparent;
  border-radius: 16px;
  padding: 40px;
  

  /* Entrance state */
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.table-box.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.table-row:last-child {
  border-bottom: none;
}

.table-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #40E0D0;

}

.table-content {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .table-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .table-heading {
    font-size: 1.75rem;
  }
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        header {
            text-align: center;
            margin-bottom: 50px;
            width: 100%;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00c9ff, #92fe9d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .content-wrapper {
            display: flex;
            width: 100%;
            gap: 40px;
        }

        .timeline {
            flex: 1;
            position: relative;
            padding: 30px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 20px;
            width: 4px;
            background: linear-gradient(to bottom, #00A499,#00A499);
            border-radius: 10px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 90px;
            padding-left: 60px;
            opacity: 0.5;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .timeline-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 8px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #00c9ff;
            border: 4px solid #2c5364;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(0, 201, 255, 0.3);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timeline-date {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #00c9ff;
        }

        .timeline-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .timeline-desc {
            line-height: 1.6;
            opacity: 0.9;
            color:#00A499;
        }

        .image-container {
            flex: 1;
            position: sticky;
            top: 50px;
            align-self: flex-start;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: right;
            margin-top: 50px;
        }

        .main-image {
            width: 380px;
            height: 280px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease;
            position: absolute;
        }

        .main-image.active {
            opacity: 1;
            transform: scale(1);
        }

        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }

        .scroll-indicator span {
            font-size: 0.9rem;
        }

        @media (max-width: 900px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .image-container {
                width: 100%;
                margin-top: 20px;
                height: 400px;
            }
            
            .main-image {
                width: 320px;
                height: 240px;
            }
        }

footer {
    width: 100vw;              /* Make it full width */
    position: relative;
    background-color: #00A499;
    color: #fff;
    padding: 40px 0 20px;      /* Top: 40px, Bottom: 20px */
          /* To contain parallax elements */
}

/* SVG Top Curve */
.footer-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Reduced from 120px */
    transform: translateY(-100%);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 10% 20px; /* Reduced bottom padding from 40px to 20px */
}

.footer-bottom {
    text-align: center;
padding: 15px 0;
    border-top: 1px solid #00A499;
    font-size: 14px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 10% 40px;
}

.footer-column {
    flex: 1;
    margin: 5px;
    min-width: 220px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #072b73;
    font-family: 'Montserrat', sans-serif; /* Headings */
    font-weight: 700; /* Bold */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.contact-form-2 input,
.contact-form-2 textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-form-2 button {
    width: 50%;                /* Full width like inputs */
    padding: 12px 15px;         /* Balanced padding */
    background: #072b73;        /* Dark blue background */
    border: none;
    color: #fff;
    font-size: 16px;            /* Slightly larger text */
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form-2 button:hover {
    background: #0948b3;        /* Hover effect */
    transform: translateY(-2px); /* Small lift effect */
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #00A499;
    font-size: 14px;
}.stamp-inline {
  max-width: 100%;
  height: auto;
}

.stamp-image{
    width: 150px;
    height:auto;

}
      .container {
            max-width: 1200px;
            width: 100%;
        }
        
        header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #00c9ff, #00A499);
            border-radius: 2px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.6;
            color: #a0a0a0;
        }
        
        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        
        .testimonial-card {
            background: rgba(25, 30, 36, 0.8);
            border-radius: 15px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }
        
        .testimonial-card.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 201, 255, 0.2);
        }
        
        .card-header {
            background: linear-gradient(to right, #00A499, #007a70);
            color: white;
            padding: 25px;
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2.5rem;
            opacity: 0.2;
            color: #00c9ff;
        }
        
        .rating {
            margin: 15px 0;
            color: #FFD700;
            font-size: 1.2rem;
        }
        
        .card-content {
            padding: 25px;
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.7;
            color: #d0d0d0;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid #00c9ff;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #00c9ff;
            margin-right: 15px;
            box-shadow: 0 0 15px rgba(0, 201, 255, 0.3);
        }
        
        .client-details {
            display: flex;
            flex-direction: column;
        }
        
        .client-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #00c9ff;
        }
        
        .client-title {
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        
        .company {
            margin-top: 5px;
            color: #00A499;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #444;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .dot.active {
            background: #00c9ff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(0, 201, 255, 0.5);
        }
        
        .view-more {
            margin-top: 50px;
            text-align: center;
        }
        
        .btn {
            background: linear-gradient(to right, #00A499, #007a70);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 164, 153, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 164, 153, 0.6);
        }
        
        .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: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .decoration {
            position: absolute;
            z-index: -1;
        }
        
        .decoration-1 {
            top: 15%;
            left: 5%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
        }
        
        .decoration-2 {
            bottom: 10%;
            right: 5%;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 164, 153, 0.1) 0%, transparent 70%);
        }
        
        @media (max-width: 768px) {
            .testimonials-container {
                flex-direction: column;
                align-items: center;
            }
            
            .testimonial-card {
                width: 100%;
                max-width: 400px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .decoration {
                display: none;
            }
        }
      
/* =========================
   Base Menu Panel (hidden by default)
   ========================= */

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 768px) {
  /* General */
 
  
  /* Sections */
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-header {
    margin-left: 0;
  }

  .title-lg {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .p-md p {
    font-size: 0.9rem;
    text-align: center;
  }

  .content-block-image {
    margin: 20px auto;
    max-width: 90%;
  }

  /* Table / Grids */
  .table-row {
    display: block;
    text-align: center;
  }

  .table-heading {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .table-content {
    font-size: 1rem;
  }

  /* Timeline / Sticky sections */
  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    position: relative;
    margin: 20px auto;
    height: auto;
    text-align: center;
  }

  .main-image {
    width: 100%;
    max-width: 280px;
  }

  /* Testimonials */
  .testimonials-container {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 340px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-column {
    margin: 15px 0;
  }

  .contact-form button {
    width: 100%;
  }
}
@media (max-width: 768px) {

  body {
    font-size: 14px;
    overflow-x: hidden;
    padding: 0; /* ✅ REMOVE SIDE PADDING */
  }

.logo {
  top: 15px;
  left: 8px;     /* moved slightly left */
  font-size: 1.8rem;
}

.logo-img {
  height: 50px;
  left: 12px;    /* moved slightly left */
}


  .hamburger-rotate {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .hamburger-icon {
    width: 18px;
    height: 16px;
    margin: 12px auto 0;
  }

  /* ✅ MOBILE MENU – FULLY HIDDEN BY DEFAULT */
  .menu-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    text-align: center;
    line-height: 8vh;
    z-index: 1000;
  }

  /* ✅ ONLY OPEN WHEN ACTIVE */
  .menu-panel.active {
    transform: translateX(0);
  }

  .menu-links {
    width: 100%;
    font-size: 8vw;
    margin-top: 20px;
    line-height: 2.5rem;
  }

  .menu-links h4 {
    font-size: 8vw;
    margin: 15px 0;
  }

  .flag-menu {
    top: 20px;
    right: 90px;
  }

  .flag-dropdown {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
    .get-in-touch-btn {
    display: none !important;
  }
  
}