 :root {
      --vinpro-dark: #0a2e38;
      --vinpro-teal: #1a8f9f;
      --vinpro-cyan: #2ad2e3;
      --vinpro-mint: #3df7c8;
      --text-light: #e0f7fc;
      --text-lighter: #f5feff;
      --section-spacing: 8rem;
    }
    .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); }
    }

    /* 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;
    }

    /* Responsive adjustments */
    @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;
      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: #00afaf;
    }

    .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;

}
/* Sections */
   .about-section {
  padding: 80px 20px;
  background: transparent;
  color:#fff;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: left;
  color: #00A499;
  font-weight: 600;
  margin-top: 80px;
}
.about-title{ font-size: 2.2rem;
font-weight: 600;
  margin-top: 80px;
}
.content-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1; font-family: 'Inter', sans-serif;  /* or 'Lato', sans-serif */
  font-size: 1 rem;
  line-height: 2.5;
  color: #fff;
}

.image-wrapper {
  flex: 1;
}

.image-wrapper img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Stats grid */
 .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      margin-top: 5rem;
    }

    .stat-card {
      background: rgba(10, 26, 33, 0.3);
      border: 1px solid rgba(26, 143, 159, 0.3);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
      animation-delay: calc(var(--order) * 0.1s);
      backdrop-filter: blur(8px);
    }

    .stat-card:hover {
      transform: translateY(-10px);
      background: rgba(26, 143, 159, 0.15);
      border-color:#00A499;
      box-shadow: 0 1rem 2rem rgba(0,0,0,0.3);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #00A499;
      font-family: 'Inter', sans-serif;
    }

    .stat-label {
      color:#fff;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }



/* Responsive */
@media (max-width: 992px) {
  .content-block {
    flex-direction: column;
    text-align: center;
  }
  .content-block.reverse {
    flex-direction: column;
  }
}


    /* CTA */
    .cta-section {
      padding: 8rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      background-image: radial-gradient(var(--vinpro-cyan) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: -1;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
    }

    .cta-button {
      display: inline-block;
      padding: 1.2rem 3rem;
      background: transparent;
      color: var(--vinpro-mint);
      border: 2px solid var(--vinpro-mint);
      border-radius: 3rem;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      margin-top: 2.5rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(4px);
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(61, 247, 200, 0.2), transparent);
      transition: 0.6s;
    }

    .cta-button:hover {
      background: var(--vinpro-mint);
      color: #07141a;
      transform: translateY(-5px);
      box-shadow: 0 1rem 2rem rgba(61, 247, 200, 0.3);
    }

    .cta-button:hover::before {
      left: 100%;
    }

    /* Story Section */
    .story-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 30px;
      gap: 40px;
      background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
      border-radius: 16px;
      max-width: 1000px;





      
      margin: 40px auto;
      box-shadow: 0 6px 20px rgba(0,0,0,0.5);
      overflow: hidden;
      position: relative;
    }

    .story-text {
      flex: 1;
      min-height: 200px;
      position: relative;
    }

    .story-card {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .story-card.active {
      opacity: 1;
    }

    .story-text h2 {
      font-size: 22px;
      color: var(--vinpro-mint);
      margin-bottom: 12px;
    }

    .story-text p {
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.9;
    }

    .story-visual {
      flex: 1;
      min-height: 220px;
      position: relative;
    }

    .story-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .story-image.active {
      opacity: 1;
    }

      .timeline-section {
      padding: 8rem 0;
      background: transparent;
    }

    .timeline-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

  
  .timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
  }



        .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;
            }
        }

 .section-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #ffffff;
      position: relative;
      display: inline-block;
      font-weight: 600;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
      width: 100%;
      text-align: center;
      margin-top: 3px;
    }
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeUp {
      from { 
        opacity: 0;
        transform: translateY(40px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
 .testimonial-section {
     
      background-color: transparent;
      text-align: center;
    }

    .testimonial-section .section-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #fff;
    }

   /* Keep testimonial content stacking vertically */
.testimonial-items {
  background: transparent;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column; /* stack content vertically */
  align-items: center;
  text-align: center;
  min-height: 350px;
}
.testimonial-text{
color: #f5feff;
}
.testimonial-title{
color: #00A499;
}
/* Swiper horizontal slides */
.swiper {
  width: 100%;
  padding: 50px 0;
}

.swiper-wrapper {
  display: flex; /* horizontal row */
  gap: 30px; /* space between slides */
}

.swiper-slide {
  flex: 0 0 auto; /* don’t shrink, keep width */
  width: 300px; /* adjust width of each slide */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive widths */
@media(max-width: 1024px){
  .swiper-slide { width: 45%; }
}

@media(max-width: 768px){
  .swiper-slide { width: 80%; }
}
 .stars {
    display: inline-flex;
    flex-direction: row;
    font-size: 2rem;
    cursor: pointer;
  }

  .star {
    color: #ccc; /* Default gray */
    transition: color 0.3s;
    margin-right: 5px;
  }

  .star.selected,
  .star:hover,
  .star:hover ~ .star {
    color: #00A499; /* Dark blue */
  }
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-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;
}
@media (max-width: 768px) {

  body {
    font-size: 14px;
    overflow-x: hidden;
    padding: 0; /* ✅ REMOVE SIDE PADDING */
  }

  .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: 100px;
  }

  .flag-dropdown {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
  .get-in-touch-btn {
    display: none !important;
  }
}
