 .gradient {
      position: fixed; /* FIXED instead of absolute */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1; /* keep behind content */
    }

    body {
      margin: 0;
      min-height: 200vh; /* just for testing scrolling */
      background: black;
       overflow-x: hidden;
     
      font-family: 'Poppins', sans-serif;
      padding-top: 0;
    }
     .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); }
    }
html, body {
  overflow-x: hidden !important;
}

    /* Menu Panel Styles */
    
   /* 1. Import Google Fonts */

    /* Menu Panel Styles */
    .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);
    }

    .menu-logo {
      flex: 0 0 auto;
    }

    .menu-logo img {
      height: 150px;
      width: 100%;
      display: block;
    }
.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;
    font-weight: 800; /* or adjust as needed */


    }

    .menu-links h4:hover {
      color: #0077cc; /* Blue color on hover */
    }

    .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%;
    }

    /* Overlay for when menu is open */
    .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;
    }

  
    /* Get in Touch Button */
    .get-in-touch-btn {
      position: absolute;
      top: 20px;
      right: 85px;
      z-index: 1002;
      display: inline-block;
      width: 220px;
      height: 60px;
      box-sizing: border-box;
      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 Styles */
    .logo {
      position: absolute;
      top: 25px;
      left: 25px;
      z-index: 1002;
      display: flex;
      gap: 4px;
      font-size: 2.75rem;
      font-weight: bold;
      color: #00A499;
    
  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;
    }
  /* Flag Menu Styles */
    .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;
    }.logo-img {
  position: absolute;
    height: 80px;
    margin-left: 10px;
    vertical-align: middle;
}
logo-img {
  height: 80px; /* adjust as needed */
  margin-left: 10px; /* spacing from text */
  vertical-align: middle;

}/* Tablet */


 .hero {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('assets/images/dubaihome.jpg') center/cover no-repeat;
      display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
      color: #f2f2f2; padding: 180px 80px 0 80px;
    }
    .hero h1 { font-size: 3rem; max-width: 700px; line-height: 1.3; color: #fff; }
    .hero p { font-size: 1.2rem; margin-top: 20px; max-width: 600px; color: #ccc; }
    .hero button { margin-top: 40px; background: #00a499; color: #0f0f0f; border: none; padding: 14px 30px; font-size: 1rem; border-radius: 30px; cursor: pointer; transition: background 0.3s; }
    .hero button:hover { background: #008f7a; }
/* MOBILE VERSION */
@media (max-width: 768px) {

    .hero {
        height: auto; /* allow flexible height */
        padding: 120px 20px 60px 20px; /* tighter padding */
        align-items: flex-start; /* keep left alignment */
        background-position: center;
    }

    .hero h1 {
        font-size: 8vw;        /* responsive heading */
        line-height: 1.2;
        max-width: 100%;
    }

    .hero p {
        font-size: 4vw;        /* readable paragraph */
        margin-top: 15px;
        max-width: 100%;
        color: #dcdcdc;
    }

    .hero button {
        margin-top: 25px;
        padding: 12px 26px;
        font-size: 4vw;         /* adaptive button size */
        border-radius: 30px;
    }
}

    /* Section 2 */
.s-2 {
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  padding: 100px 60px;
  gap: 60px;
  background: transparent;
  text-align: center;        /* center text */
}

.s-2 .content {
  flex: 1 1 400px;           /* grow/shrink with min width */
  max-width: 600px;
}

.s-2 h2 {
  font-size: 2.4rem;
  color: #00a499;
  margin-bottom: 20px;
  text-align: left;
}

.s-2 p {
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 600px;
  text-align: justify;
}

.s-2 img {
  flex: 1 1 400px;           /* allow image to shrink on smaller screens */
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,170,153,0.3);
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .s-2 {
    flex-direction: column;  /* stack content and image */
    padding: 80px 40px;
  }

  .s-2 .content,
  .s-2 img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .s-2 {
    padding: 60px 20px;
  }

  .s-2 h2 {
    font-size: 2rem;
  }

  .s-2 p {
    font-size: 0.95rem;
  }

  .s-2 img {
    height: auto;           /* let image adjust height */
  }
}
/* Section 3 (Process) */
    .s-3 { position: relative; background: transparent; padding: 120px 60px; text-align: center; overflow: hidden; }
    .s-3 h2 { font-size: 2.4rem; color: #00a499; margin-bottom: 80px; }
    .process-wrapper { position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 50px; max-width: 1100px; margin: 0 auto; }
    .curve-line { position: absolute; top: 80px; left: 0; width: 100%; height: 200px; z-index: 0; }
    .process-card { position: relative; background: #222; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); padding: 30px 25px; width: 230px; z-index: 1; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .process-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }
    .process-card h3 { color: #00a499; margin-bottom: 12px; font-size: 1.3rem; }
    .process-card p { color: #ccc; font-size: 0.95rem; line-height: 1.6; }
/* Section 4 Simplified */
/* S4 SECTION */
/* S4 SECTION */
.s-4 {
  padding: 100px 60px;
  background: transparent;
  font-family: "Inter", sans-serif;
}

/* WRAPPER */
.s4-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE */
.s4-images {
  flex: 1;
  min-width: 180px;
}

.s4-images img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 170, 153, 0.4);
  transition: transform 0.4s ease;
}

.s4-images img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* CONTENT */
.s4-content {
  flex: 1;
  min-width: 300px;
}

.s4-content h2 {
  color: #00a499;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.s4-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* LIST OF ITEMS */
.s4-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.s4-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.s4-icon {
  width: 40px;
  height: 40px;
  background: #00a499;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px; /* aligns icon with first line of text */
  position: relative;
}

.s4-icon::before {
  content: "\2713"; /* checkmark icon */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.s4-text h3 {
  color: #00a499;
  font-size: 1.3rem;
  margin: 0 0 5px 0;
}

.s4-text p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* MOBILE & TABLET FIXES */
@media (max-width: 768px) {
  .s-4 {
    padding: 60px 20px; /* Reduce padding for mobile */
  }

  .s4-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .s4-images {
    width: 100%;
    max-width: 450px;  /* Keeps image clean size */
  }

  .s4-content {
    width: 100%;
    max-width: 600px;
  }

  .s4-content h2 {
    text-align: center;
    font-size: 2rem;
  }

  .s4-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;  /* Proper alignment for item text */
    width: 100%;
  }

  .s4-icon {
    margin-top: 0;
  }
}

/* SMALL MOBILE FIX */
@media (max-width: 480px) {
  .s-4 {
    padding: 50px 15px;
  }

  .s4-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }

  .s4-text p {
    font-size: 0.95rem;
  }
}


  footer {
    position: relative;
    background-color: #00A499;
    color: #fff;
    padding: 40px 0 20px; /* Reduced from 100px top padding to 40px and bottom from 40px to 20px */
}

/* 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: 10px; /* Reduced from 20px */
    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;
}

.services-block-three {
  position: relative;
  border: 1.5px solid #0FFFD2; /* main border */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background:transparent;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Neon corner effect similar to link design */
.services-block-three::before,
.services-block-three::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 18%;
  border-color: #0FFFD2;
  border-style: solid;
  transition: all 0.4s ease;
}

.services-block-three::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px; /* top-left corner */
}

.services-block-three::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0; /* bottom-right corner */
}

.services-block-three:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,210,0.4);
}

/* Image */
.services-block-three img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.services-block-three:hover img {
  transform: scale(1.05);
}

/* Title and text */
.services-block-three h4 {
  font-size: 1.25rem;
  color: #0FFFD2;
  margin-bottom: 10px;
}

.services-block-three p {
  font-size: 0.95rem;
  color: #C7D3D2;
  margin-bottom: 15px;
  text-align: justify;
  justify-items: center;
}

/* Button */
.view-services-btn-alt {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0FFFD2;
  background: transparent;
  border: 2px solid #0FFFD2;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.view-services-btn-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 210, 0.15);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

.view-services-btn-alt:hover {
  color: #050507;
  background: #0FFFD2;
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.6);
}

.view-services-btn-alt:hover::after {
  left: 100%;
}
/* Ensure parent allows left alignment */
/* Ensure parent container aligns content left */
.btn-wrapper {
  text-align: left; /* left-align inline/inline-block elements */
}

/* Button styling */
.primary-btn {
  display: inline-block;   /* keeps it inline but allows padding, hover, etc. */
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: #0FFFD2;
  background: transparent;
  border: 2px solid #0FFFD2;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Hover effect */
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 210, 0.15);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

.primary-btn:hover {
  color: #050507;
  background: #0FFFD2;
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.6);
}

.primary-btn:hover::after {
  left: 100%;
}

.btn-center-wrapper {
  margin-left: 500px;
  justify-content: center; 
  margin-top: 100px;/* center horizontally */

}

.btn-glow {
  padding: 15px 45px;
  font-size: 1rem;
  font-weight: 600;
  color: #0FFFD2;
  background: transparent;
  border: 2px solid #0FFFD2;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}


.btn-glow:hover {
 color: #050507;
  background: #0FFFD2;
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.6);
}
@media (max-width: 768px) {

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 0 20px;
  }
  .sel-wrk,
  .any-class-with-margin-left {
    margin-left: 0 !important;
  }
}


  .logo {
    top: 15px;
    left: 15px;
    font-size: 1.8rem;
  }

  .logo-img {
    height: 50px;
  }

  .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;
  }
}


