@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');


/* #region body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif; */
    font-family: 'Nunito', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    font-family: Arial, Helvetica, sans-serif
}
/*#endregion body*/



 /* #region header */
  /* ================= MOBILE HEADER & SLIDER ================= */
  .hamburger, .mobile-nav-overlay, .mobile-nav-full-bg, .mobile-nav-slider, .slider-content, .get-started.mobile { display: none; } /* Hide by default, only show on mobile */

  @media (max-width: 800px) {
    .hamburger { display: flex !important; }
    .mobile-nav-full-bg { display: block !important; }
    .mobile-nav-slider { display: flex !important; }
    .slider-content { display: flex !important; }
    .get-started.mobile { display: block !important; background: #09f999 !important; color: #000 !important; }
    .mobile-nav-overlay { display: block !important; }
  
    header {
      padding: 14px 18px;
      justify-content: space-between;
    }
    .logo {
      z-index: 1202;
    }
    .nav-group {
      display: none !important; /* Hide desktop nav on mobile */
    }
    .hamburger {
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 38px;
      height: 38px;
      cursor: pointer;
      z-index: 1202;
      background: none;
      border: none;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 4px;
      background: #09f999;
      border-radius: 2px;
      transition: all 0.3s;
    }
    /* Full-screen black overlay, slides in from right */
    .mobile-nav-full-bg {
      position: fixed;
      top: 0; right: -100vw;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 1201;
      transition: right 0.45s cubic-bezier(0.77,0,0.175,1);
      pointer-events: none;
    }
    .mobile-nav-full-bg.open {
      right: 0;
      transition: right 0.45s cubic-bezier(0.77,0,0.175,1);
      pointer-events: all;
    }
    .mobile-nav-full-bg.closing {
      right: -100vw;
      transition: right 0.45s cubic-bezier(0.77,0,0.175,1);
      pointer-events: none;
    }
    /* Slider: slides in from left, on top of overlay */
    .mobile-nav-slider {
      position: fixed;
      top: 0;
      left: -85vw;
      width: 80vw;
      max-width: 320px;
      height: 100vh;
      background: #fff;
      z-index: 1202;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      transition: left 0.45s cubic-bezier(0.77,0,0.175,1);
      box-shadow: 0 0 24px rgba(0,0,0,0.10);
      overflow: visible;
    }
    .mobile-nav-slider.open {
      left: 0;
      transition: left 0.45s cubic-bezier(0.77,0,0.175,1);
    }
    .mobile-nav-slider.closing {
      left: -85vw;
      transition: left 0.45s cubic-bezier(0.77,0,0.175,1);
    }
    .slider-content {
      position: relative;
      z-index: 2;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: 100%;
      padding: 32px 24px 24px 24px;
      opacity: 1;
      transform: none;
      transition: none;
    }
    .mobile-nav-slider nav ul {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 32px 0 0 0;
      list-style: none;
      width: 100%;
    }
    .mobile-nav-slider nav ul li a {
      color: #000;
      font-size: 1.2em;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav-slider nav ul li a:hover {
      color: #09f999;
    }
    /* Green Get Started button inside slider */
    .mobile-nav-slider .get-started.mobile {
      margin-top: 36px;
      width: 100%;
      background: #09f999 !important;
      color: #000 !important;
      border: none;
      padding: 12px 0;
      border-radius: 6px;
      font-weight: 700;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(9,249,153,0.10);
      z-index: 3;
      position: relative;
      display: block !important;
    }
    .mobile-nav-slider .get-started.mobile:hover {
      background: #A7D4FC !important;
      color: #000 !important;
    }
    .close-slider {
      background: none;
      border: none;
      color: #09f999;
      font-size: 1.1em;
      font-weight: 700;
      margin-bottom: 8px;
      cursor: pointer;
      align-self: flex-start;
      transition: color 0.2s;
      outline: none;
      z-index: 3;
      position: relative;
    }
    .close-slider:hover {
      color: #A7D4FC;
    }
    /* Overlay for mobile nav (for click-to-close) */
    .mobile-nav-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100vw; height: 100vh;
      background: transparent;
      z-index: 1200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .mobile-nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
  }
  
  .get-started-mobile {
    background-color: #09f999;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0 0 -10px;
  }
  /* =============== END MOBILE HEADER & SLIDER =============== */
  
  
  
  
   header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      }
  
      .logo {
      opacity: 0;
      animation: fadeIn 0.5s forwards;
      }
  
      .logo img {
      height: 40px; /* Adjust based on your logo */
      }
  
      .nav-group {
      display: flex;
      align-items: center;
      gap: 50px;
      margin-right: 50px;
      }
  
      nav ul {
      display: flex;
      list-style: none;
      }
  
      nav ul li {
      margin: 0 15px;
      opacity: 0;
      transform: translateX(-20px);
      }
  
      nav ul li a {
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      transition: color 0.3s;
      }
  
      nav ul li a:hover {
      color: #09f999;
      }
  
      .get-started {
      background-color: #09f999;
      color: black;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      opacity: 0;
      /* Remove translateX(-20px) to prevent shifting on hover */
      }
  
      .get-started:hover {
      background: #000 !important;
      color: #09f999 !important;
      transform: scale(1.05);
      }
  
      @keyframes fadeIn {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }




/*#endregion header*/



/* #region hero section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    padding: 0 20px;
    position: relative;
    overflow: hidden;

  }

  .hero-content-wrapper {
    position: absolute; /* Occupy the full space of the hero section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add flex properties to center content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Set the background image here */
    background: url('hero-8.jpeg') no-repeat center center / cover;
    z-index: 2; /* Ensures it sits above the section itself, but its content will be above its ::before */
}


@keyframes imageEntranceFadeGrow {
  from {
      opacity: 0;
      transform: scale(1.2); /* Starts slightly zoomed in */
  }
  to {
      opacity: 1;
      transform: scale(1); /* Ends at normal size, fully visible */
  }
}

/* Apply the animation to .hero-content-wrapper */
.hero-content-wrapper {
  /* ... existing styles like position, display, background, z-index ... */

  /* --- ADD THIS LINE FOR IMAGE ENTRANCE ANIMATION --- */
  animation: imageEntranceFadeGrow 1s ease-out forwards; /* 1s duration, ease-out timing, stays at final state */
}

/* Gradient Overlay for .hero-content-wrapper */
.hero-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #c3fee6, white 50%, white 100%); /* Your original gradient */
    opacity: 0; /* Initially hidden */
    transition: opacity 1.5s ease-in-out; /* Animation for gradient fade-in */
    z-index: -1; /* Above the image, but below the actual content */
}

/* Class to show the gradient overlay */
.hero-content-wrapper.show-overlay::before {
    opacity: 0.75; /* Adjust this value (0 to 1) for desired gradient transparency */
}




    /* HC1 - Main Heading Fix */
    .hero-heading h1 {
    margin-top: 40px;
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateY(50px);
   
    }
    .hero-heading .highlight {
        /*display: block;*/
        color: #09f999;
        text-shadow:
        /* close, dark edge for immediate contrast */
        0 1px 2px rgba(0, 0, 0, 0.55),
    
        /* mid-distance softer shadow */
        0 6px 8px rgba(0, 0, 0, 0.35),
    
        /* far, very soft fade */
        0 12px 16px rgba(0, 0, 0, 0.15);
    }
    .hero-heading .services-text {
        color: #000;
        display: block;
    }
    
    /* HC2 - Description Fix */    
        .hero-description {
            max-width: 600px;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }
        .hero-description span {
            display: block;
            opacity: 0;
            transform: translateX(-100px);
            
            /* animation-delay: 1.6s; */
        }
        .hero-description span:nth-child(1) { animation-delay: 0.2s; }
        .hero-description span:nth-child(2) { animation-delay: 0.4s; }
        .hero-description span:nth-child(3) { animation-delay: 0.6s; }
        .hero-description span:nth-child(4) { animation-delay: 0.8s; }
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


    /* HC3 - Typing Text */
    .typing-container-independent {
        min-height: 2.2em;
        min-width: 350px; /* Adjust to longest sentence */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 10px;
        /* Remove color and font here, let JS inject styled HTML */
    }

    .typing-container-independent .highlight {
        color: #09f999;
        font-family: 'poppins', Arial, sans-serif;
        font-weight: 550;
    }
    .typing-container-independent .cta {
        color: #FF4D4D;
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.1em;
        letter-spacing: 0.05em;
    }

    .typing-container-independent.cursor::after {
        content: '|';
        margin-left: 2px;
        animation: blink 0.7s infinite;
    }
    .typing-container-independent.cursor:not(.cta)::after {
        color: #06b060; /* Green cursor for questions */
    }
    .typing-container-independent.cursor.cta::after {
        color: #CC0000; /* Red cursor for CTA */
    }
    .typing-container-independent.blink {
        animation: textBlink 0.9s 5; /* 3 blinks, 900ms each */
    }
    @keyframes blink {
        50% { opacity: 0; }
    }
    @keyframes textBlink {
        0%, 66% { opacity: 1; } /* Visible ~600ms */
        67%, 100% { opacity: 0; } /* Hidden ~300ms */
    }
    @media (max-width: 600px) {
        .typing-container-independent {
            font-size: 1em;
            padding-left: 10px; /* Mobile offset */
        }
    }
    
    /* HC4 - Buttons Fix */
    .hero-buttons {
        display: flex;
        gap: 25px;
        margin-bottom: 50px;
    }
    .hero-btn {
        padding: 12px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        transform: scale(0);
        
        border: none;
        margin-top: 0 auto 0 auto;
    }
    .hero-btn:nth-child(1) {
        background: linear-gradient(145deg, #09f999, #07d885);
        color: #000;
        box-shadow: 0 4px 15px rgba(9, 249, 153, 0.3);
    
    }
    .hero-btn:nth-child(2) {
        background: transparent;
        color: #000000;
        border: 2px solid #000000;
        box-shadow: 0 4px 15px rgba(9, 249, 153, 0.2);
        animation-delay: 2.0s;
    }
    .hero-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20px;
        height: 200%;
        background: rgba(255, 255, 255, 0.15);
        transform: rotate(25deg);
        animation: reflect 3s infinite;
    }
    
    /* HC5 - Scroll Down Fix */
    .scroll-down {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
  
  }
  .scroll-text {
      margin-bottom: 5px;
      margin-left: 25px;
      color: #333;
      font-size: 1.2rem;
  }
  .scroll-indicator {
      position: relative;
      height: 50px;
  }
  .scroll-bar {
      position: absolute;
      left: 50%;
      width: 2px;
      height: 10px;
      background: #333;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      margin-left: 14.7px;
      margin-top: 18px;
  }
  .scroll-arrow {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 20px;
      height: 20px;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      
  }
  .scroll-arrow::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-bottom: 2px solid #333;
      border-right: 2px solid #333;
      transform: rotate(45deg);
      margin-top: -4px;
  }
  
  
  .scroll-arrow1 {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 20px;
      height: 20px;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      
  }
  .scroll-arrow1::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-bottom: 2px solid #333;
      border-right: 2px solid #333;
      transform: rotate(45deg);
      margin-top: -10px;
  }

  
    /* Animations */
    @keyframes slideUpFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideRightFadeIn {
        to { opacity: 1; transform: translateX(0); }
        
    }
    @keyframes growShrink {
        0% { transform: scale(0); }
        70% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    @keyframes reflect {
        0% { left: -60%; }
        100% { left: 140%; }
    }
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-20px); }
        60% { transform: translateY(-10px); }
    }
    @keyframes fadeIn {
        to { opacity: 1; }
    }

@media (max-width: 600px) {

  .hero-buttons {
      margin-bottom: 100px !important;
  }
  .hero {
    padding-top: 110px;
    min-height: 100vh;
    justify-content: flex-start;
    padding-bottom: 30px;
  }
  .hero-heading h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    word-break: break-word;
    margin-bottom: 10px;
  }
  .hero-heading .highlight,
  .hero-heading .services-text {
    font-size: 1.1em;
    display: inline;
  }
  .hero-description {
    font-size: 0.92em;
    max-width: 100vw;
    margin: 0 auto 10px auto;
    padding: 0 auto 0 auto;
    line-height: 1.35;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .hero-description span {
    font-size: 0.98em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 2px;
    padding: 0 0;
    word-break: normal;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
  .typing-container-independent {
    min-width: unset;
    max-width: 98vw;
    width: 100%;
    font-size: 0.98em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 2vw;
    margin: 0 auto 10px auto;
  }
  .typing-container-independent .highlight {
    font-size: 1em;
  }
  .typing-container-independent .cta {
    font-size: 1em;
    letter-spacing: 0.01em;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: stretch;
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .hero-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1em;
    border-radius: 7px;
    margin: 0 auto;
    min-width: 0;
    max-width: 98vw;
  }
}
/*#endregion Hero Section */



/* #region about section */
#meet {
  scroll-margin-top: 50px;
}


.about-section {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  transition: none;
  margin-top: 60px;
}

/*.about-image {
  width: 180px;
  height: 250px;
  object-fit: cover;
  border: 4px solid #09f999;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: gray;
  background: #f9f9f9;
  box-shadow: 0 8px 24px rgba(9,249,153,0.10), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
}
*/

.about-image {
  width: 180px;
  height: 250px;
  border: 4px solid #09f999;
  border-radius: 24px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 8px 24px rgba(9,249,153,0.10),
              0 2px 8px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills frame correctly */
  object-position: center;
  display: block;
}




.about-image.animated {
  animation: aboutImageIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-image:hover {
  box-shadow: 0 12px 32px rgba(9,249,153,0.18), 0 4px 16px rgba(0,0,0,0.12);
  transform: scale(1.03);
}

@keyframes aboutImageIn {
  0% { opacity: 0; transform: translateX(-60px) scale(0.95); }
  80% { opacity: 1; transform: translateX(10px) scale(1.03); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.about-animate-in .section-title {
  animation: aboutFadeUp 0.7s 0.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}
.about-animate-in .about-intro {
  animation: aboutFadeUp 0.7s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}
.about-animate-in .about-text {
  animation: aboutFadeUp 0.7s 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.about-intro {
  font-size: 18px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about-text {
  padding: 0 0 0 0;
  max-width: 600px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto 0 auto;
  text-align: justify;
}


/* Scroll animation (optional class added dynamically with JS) */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop layout */
@media (min-width: 768px) {
  .section-title {
    font-size: 40px !important; 
  }  

  .about-content {
    flex-direction: row;
    max-width: 800px;
    margin: 0 auto 0 auto;
    gap: 40px;
  }
  .about-image {
    flex: 1;
    max-width: 220px;
    height: 320px;
  }
  .about-text {
    flex: 2;
    text-align: left;
    max-width: 600px;
    font-size: 17px;
  }
}


:root {
  --primary-color: #09f999; 
} 



/* --- About Section Targeted Entrance Animations & Gap Fix --- */
/* Entrance animation keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Initial state for animation */
.section-title, .section-title .highlight, .about-intro, .about-image, .about-text > p {
  opacity: 0;
}

/* Animated state (add .about-animate-in to .about-section) */
.about-animate-in .section-title {
  animation: fadeUp 0.7s 0.05s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-animate-in .section-title .highlight {
  animation: fadeInScale 0.7s 0.18s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-animate-in .about-intro {
  animation: fadeUp 0.7s 0.25s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-animate-in .about-image {
  animation: fadeInLeft 0.8s 0.35s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-animate-in .about-text > p {
  animation: fadeUp 0.7s 0.45s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Desktop layout improvements: reduce gap between image and text */
@media (min-width: 768px) {
  .about-content {
    gap: 24px !important;
  }
  .about-image {
    margin-right: 0;
  }
  .about-text {
    margin-left: 0;
  }
}

.section-title {
  text-align: center !important;
  font-size: 32px;
  margin-bottom: 20px;
  /* restore center alignment */
}
.section-title .highlight {
  color: #09f999 !important;
  font-weight: bold;
  animation: pulseHighlight 2s ease infinite;
}
@keyframes pulseHighlight {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Restore card animation (do not override .card or .credentials styles in about-animate-in) */
.about-animate-in .card,
.about-animate-in .credentials.card-section {
  animation: unset !important;
  opacity: unset !important;
  transform: unset !important;
}
/* Professional Credentials */
.credentials-section {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.credentials-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.credentials-container {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}

.credentials-card {
  height: 210px;
  width: 100%;
  width: 300px;
  background: #fff;
  border-top: 5px solid #09f999;
  border-radius: 12px 12px 12px 12px;
  /* box-shadow: 0 6px 12px rgba(0,0,0,0.05); */
  box-shadow: 0 8px 32px rgba(9, 249, 153, 0.18), 0 4px 16px rgba(0,0,0,0.12);
  padding: 16px;
  text-align: center;
  transform: scaleY(0);
  transform-origin: center;
  opacity: 0;
}

.card-icon {
  font-size: 36px;
  color: #09f999;
  margin-bottom: 12px;
  opacity: 0;
  transform: rotateX(-90deg);
}

.card-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  opacity: 0;
  transform: rotateX(-90deg);
}

.card-description {
  font-size: 18px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  word-spacing: 0.10em;
  /* letter-spacing: 0.05em; */
}

/* Desktop layout */
@media (min-width: 768px) {
  .credentials-container {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
  .credentials-card {
    height: 220px;
    width: 350px;
    max-width: 100%;
  }
  .card-heading {
    font-size: 22px;
    font-weight: bold;
  }
  .card-description {
    word-spacing: 0.05em;
    font-size: 16px;
  }
}



/* Animations */
@keyframes unroll {
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes fadeRotate {
  to {
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes descriptionUnroll {
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* #endregion about section */



/* #region services section */
#services {
  scroll-margin-top: 50px;
}
.services-section {
  padding: 40px 15px; /* Compact padding for mobile */
  text-align: center;
  max-width: 100%; /* Full width on mobile */
}
.services-title {
  color: #111; /* Black for title part */
  display: block;
  opacity: 0;
  font-size: 32px;

}
.services-highlight {
  color: #09f999; /* Green for highlight part */
  display: inline-block;
  opacity: 0;
}
/* Title: Fade in from left. Change to slide-up or right by editing animation-name. */
.services-title.animated {
  animation: servicesTitleFadeIn 0.8s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes servicesTitleFadeIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Highlight: Fade in from right. Change to bounce or scale by editing animation-name. */
.services-highlight.animated {
  animation: servicesHighlightFadeIn 0.8s 0.35s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes servicesHighlightFadeIn {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.services-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

/* Service grid for mobile (single column) */
.services-grid {
  display: flex;
  flex-direction: column; /* Stack cards vertically */
  gap: 20px; /* Space between cards */
}


/* Individual service card styles */
.service-card {
  background: #FFFFFF;
  border: 2px solid #09F999; /* Green border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  opacity: 0; /* Start invisible for animation */
  transform: scale(0.9); /* Start slightly smaller */
  height: 320px;  
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s ease, translate 0.3s ease; /* Animation for entrance and hover */
  /* Change '0.5s' for entrance animation duration, '0.3s' for hover */
}

/* Card animation trigger */
.service-card.visible {
  opacity: 1;
  transform: scale(1); /* Reset scale */
}

/* Card hover effect: lift up and add shadow */
.service-card:hover {
  transform: translateY(-10px); /* Lift up 10px */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow */
  /* Change '-10px' to adjust lift height, '0.2' for shadow opacity */
}

/* Card icon styles */
.service-card i {
  font-size: 32px;
  color: #09F999; /* Icon color set using 'color' property */
  margin-bottom: 15px;
  /* Change '32px' for icon size, '15px' for spacing */
}

/* Card title styles */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  /* Change '20px' for font size, '10px' for spacing */
}

/* Card description styles */
.service-card p {
  padding: 15px 15px 15px 15px;
  text-align: justify;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  /* Change '14px' for font size, '1.5' for line height */
}

/* Button container styles */
.service-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on mobile */
  align-items: center;
  gap: 15px; /* Space between elements */
  margin-top: 20px;
}

/* Microcopy styles */
.service-buttons p {
  font-size: 16px;
  color: #000000;
  opacity: 0; /* Start invisible for animation */
  transform: translateY(20px); /* Start 20px below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth fade and slide */
  /* Change '0.6s' for animation duration */
}

/* Microcopy animation trigger */
.service-buttons p.visible {
  opacity: 1;
  transform: translateY(0); /* Reset position */
}

/* Base button styles */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  width: 100%;
  max-width: 280px; /* Limit button width */
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; /* Smooth hover effects */
  opacity: 0; /* Start invisible for animation */
  transform: translateY(20px); /* Start 20px below */
  /* Change '0.2s' for hover duration, '280px' for max width */
}

/* Button animation trigger */
.btn.visible {
  opacity: 1;
  transform: translateY(0); /* Reset position */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background 0.2s ease, color 0.2s ease; /* Entrance + hover */
  /* Change '0.6s' for entrance animation duration */
}

/* Button hover effect: grow and color change */
.btn:hover {
  background: #000 !important;
  color: #09f999 !important;
  transform: scale(1.05);
}

/* Listed services button styles */
.listed-btn {
  background: #09F999; /* Green background */
  color: #000000; /* Black text */
  border: 2px solid #000000; /* Black border */
  white-space: nowrap;
}

/* Listed button hover */
.listed-btn:hover {
  background: #00CC80; /* Darker green */
  color: #000000;
  /* Change '#00CC80' for hover color */
}

/* Custom solution button styles */
.custom-btn {
  background: #FFFFFF; /* White background */
  color: #09F999; /* Green text */
  border: 2px solid #09F999; /* Green border */
}

/* Custom button hover */
.custom-btn:hover {
  background: #000 !important;
  color: #09f999 !important;
  transform: scale(1.05);
}

/* Button icon styles */
.btn i {
  margin-right: 8px;
  font-size: 16px;
  /* Change '8px' for icon spacing, '16px' for icon size */
}

/* Desktop styles */
@media (min-width: 768px) {
  .services-section {
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }

  .services-section h2 {
    font-size: 40px;
  }

  .services-subtitle {
    padding: 0 120px 0 120px;
    font-size: 22px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
  }

  /* 3x2 grid for desktop */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
  }

/* Target the 5th card */
.services-grid .service-card:nth-child(5) {
  grid-column: 1 / -1;   /* make it span the full row */
  justify-self: center;  /* center it horizontally */
  width: calc((100% - 30px) / 2);    /* optional: limit width so it doesn’t stretch full row */
}

  /* Larger card padding */
  .service-card {
    padding: 30px 30px 30px 30px;
    min-height: 320px;
    max-height: 320px;
    border-radius: 12px; 
  }

  /* Larger card icon */
  .service-card i {
    font-size: 40px;
    margin-bottom: 20px;
    /* Change '40px' for icon size, '20px' for spacing */
  }

  /* Larger card title */
  .service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    /* Change '24px' for font size, '15px' for spacing */
  }

  /* Larger card description */
  .service-card p {
    font-size: 18px;
  }

  /* Horizontal button layout */
  .service-buttons {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    gap: 20px; 
    margin-top: 30px;
  }

  /* Larger microcopy */
  .service-buttons p {
    font-size: 18px;
    width: auto;
  }

  /* Larger buttons */
  .btn {
    padding: 14px 30px;
    font-size: 16px;
    max-width: 300px;
}
}

/* #endregion services section */



/* #region process section */
.process-title {
  margin: 60px 0 20px 0;
  color: #111; /* Black for title part */
  display: block;
  opacity: 0;
  font-size: 40px;
  text-align: center;
  width: 100%;
}
.process-highlight {
  color: #09f999; /* Green for highlight part */
  display: inline-block;
  opacity: 0;
}

/* Title: Slide up. Change to fade or slide from left/right by editing animation-name. */
.process-title.animated {
  animation: processTitleSlideUp 0.8s forwards;
}
@keyframes processTitleSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Highlight: Slide down. Change to scale or fade by editing animation-name. */
.process-highlight.animated {
  animation: processHighlightSlideDown 0.8s 0.35s forwards;
}
@keyframes processHighlightSlideDown {
  from { opacity: 0; transform: translateY(-40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-container {
  width: 100%;
  max-width: 400px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  margin-left: auto;
  margin-right: auto;
  border: none;
}

@media (max-width: 600px) {
  .mobile-container {
    max-width: 95vh;
    border-radius: 10px;
    height: 85vh;
  
  }
}

@media (max-width: 480px) {
  .mobile-container {
    max-width: 94vw;
    border-radius: 30px;
    height: 85vh;
  }
}

@media (min-width: 768px) {
  .mobile-container {
    max-width: 700px;
    height: 70vh;
  }
}

.top-bar {
  background: #09f999;
  color: black;
  padding: 10px 15px 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: none;
  box-shadow: none;
}

/* New chat-bg wrapper for the chat area */
.chat-bg {
  background: #000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 400px; /* adjust as needed */
  padding-bottom: 1px; /* to ensure radius is visible */
}

.top-bar .name {
  font-weight: bold;
  font-size: 16px;
}

.status {
  font-size: 12px;
  font-weight: normal;
  color: #333;
}

.chat {
  flex: 1 1 auto;
  height: 100%;         /* Always fill the container */
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: black;
  padding: 15px;
}

.bubble {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  opacity: 0;
  /* Remove scale transform to prevent layout shift */
  /* transform: scale(0.95); */
  transition: opacity 0.5s ease;
}
.bubble.visible {
  opacity: 1;
  /* transform: scale(1); */
}

.left {
  align-self: flex-start;
  background: #f1f1f1;
  color: #000;
  border-bottom-left-radius: 0;
}

.right {
  align-self: flex-end;
  background: #09f999;
  color: #000;
  border-bottom-right-radius: 0;
}

.typing-bubble {
  display: none;
  align-items: center;
  gap: 5px;
  width: 60px;
  height: 40px;
  min-height: 40px;
  border-radius: 15px;
  padding: 5px 10px;
}

.typing-bubble.left {
  align-self: flex-start;
  background: #f1f1f1;
}

.typing-bubble.right {
  align-self: flex-end;
  background: #09f999;
}

.dot {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

.whatsapp-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #25D366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn.bounce {
  display: flex;
  animation: bounce 1s infinite;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}


/* #endregion process section */



/* #region why choose me section */
.why-title {
  margin: 60px 0 20px 0;
  color: #111; 
  display: block;
  opacity: 0;
  font-size: 40px;
}
.why-highlight {
  color: #09f999; /* Green for highlight part */
  display: inline-block;
  opacity: 0;
}

/* Title: Fade in. Change to slide in from left/right by editing animation-name. */
.why-title.animated {
  animation: whyTitleFadeIn 0.8s forwards;
}
@keyframes whyTitleFadeIn {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}
/* Highlight: Pop in. Change to bounce or scale by editing animation-name. */
.why-highlight.animated {
  animation: whyHighlightPopIn 0.8s 0.35s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes whyHighlightPopIn {
  0%   { opacity: 0; transform: scale(0.7) rotate(-8deg); }
  80%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}


#whyChoose {
  margin-top: 100px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 0 20px;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch; 
}
.reason, .reason-inner, .content-inner {
  min-height: 180px; 
  max-height: 180px;
  height: 100%;
  box-sizing: border-box;
}

.reason {
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 100%;
  max-width: 100%;
}
.reason.visible {
  opacity: 1;
}
.reason-inner {
  height: 100%;
  /* Remove scale transforms entirely */
}

.green-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #09f999;
  z-index: 2;
  border-radius: 20px;
  transition: width 0.8s ease;
}

.green-overlay.shrink {
  width: 6px;
  border-radius: 20px 0 0 20px;
}

.content-inner {
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 20px;
  padding: 20px 20px 20px 0;
  overflow: hidden;
}

.reason.visible .green-overlay.shrink ~ .content-inner {
  padding-left: 20px;
}

.content-inner h3 {
  font-size: 23px;
  color: #111;
  margin-bottom: 8px;
}

.content-inner p {
  font-size: 18px;
  color: #111;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .why-title {
    margin: 60px 0 20px 0;
    font-size: 40px;
  }
  .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .reason {
    flex: 1 1 calc(30% - 20px);
    max-width: calc(30% - 20px);
  }
}

/* #endregion why choose me section */



/* #region resources section */
@media (max-width: 600px) {
  .resources-container {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px !important;
  }
  
  .resources-highlight {
  margin-left: -30px;
  }

.resources-container h2 {
  font-size: 32px;
  line-height: 30px;
  margin: 40px 20px 30px 20px !important;
  }
  .resources-container p {
    font-size: 14px;
    margin-bottom: 12px !important;
    text-align: center;
  }
  .resource-block {
    padding: 12px;
    margin-bottom: 18px;
  }
  .resource-block h3 {
    font-size: 18px;
  }
  .resources-container .resource-block p {
    text-align: left;
  }
  .resource-block p,
  .resource-block ul li {
    font-size: 14px;
  }
  .resource-block p {
  text-align: left;
  }
}

.resources-title {
  color: #111; /* Black for title part */
  display: block;
  opacity: 0;

}
.resources-highlight {
  color: #09f999; /* Green for highlight part */
  display: inline-block;
  opacity: 0;
}

/* Title: Slide in from right. Change to fade or slide up by editing animation-name. */
.resources-title.animated {
  animation: resourcesTitleSlideIn 0.8s forwards;
}
@keyframes resourcesTitleSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Highlight: Scale in. Change to fade or bounce by editing animation-name. */
.resources-highlight.animated {
  animation: resourcesHighlightScaleIn 0.8s 0.35s forwards;
}
@keyframes resourcesHighlightScaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}


@media (min-width: 768px) {
.resources-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* margin-top: 100px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.resources-container .resources-title,
  .resources-container .resources-description {
  grid-column: 1 / -1;
  padding: 0 120px 0 120px;
}
.resource-block:last-child:nth-child(odd) {
  grid-column: 1 / -1;      
  justify-self: center;
  width: calc((55%) )
}
}
.resources-container {
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  gap: 40px;
}

.resources-container h2 {
  font-size: 40px;
  color: #000;
  text-align: center;
  margin-bottom: -20px;
}

.resources-container p {
  font-size: 22px;
  color: #000;
  margin: 0 20px 0 0;
  text-align: center;
}

.resource-block {
  border-left: 5px solid #09f999;
  background: #fff;
  border-top:  1px solid #ddd;
  border-bottom:  1px solid #ddd;
  border-right: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.resource-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.resource-block h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.resource-block p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.resources-container .resource-block p {
  margin-bottom: 10px;
  color: #000;
  font-size: 18px;
  text-align: left;
}

.resource-block ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.resource-block ul li {
  margin-bottom: 6px;
  color: #000;
  font-size: 18px;
}

.message-bar-wrapper {
display: flex;
align-items: center;
gap: 10px;
margin-top: 15px;
flex-wrap: wrap;
}

.message-bar {
flex: 1;
display: flex;
align-items: center;
border: 1px solid #333;
border-radius: 50px;
padding: 12px 12px;
background: #fafafa;
position: relative;
min-width: 250px;
}

.message-bar input {
border: none;
flex: 1;
font-size: 16px;
outline: none;
background: transparent;
}

.message-bar input::placeholder {
  font-style: italic;
  animation: typing 3s steps(30, end) infinite;
}
/* Adjust typing speed here: (3s = slower, 1s = faster) */
@keyframes typing {
  0% { content: "T"; }
  100% { content: "Type your question"; }
}

.send-icon {
width: 45px;
height: 45px;
background-color: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
}
.send-icon svg {
fill: #000;
width: 24px;
height: 24px;
padding: 0 0 0 3px;
}

/* --- WhatsApp note style (resources section) --- */
.whatsapp-note {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 600px) {
  .whatsapp-note {
    text-align: left;
    padding: 0 !important;
    margin: 2px 0 0 20px !important;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}

.download-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #09f999;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}


/* #endregion resources section */



/* #region contact section */
.contact-title {
  margin-top: 100px;  
  color: #111;
  display: inline-block;
  opacity: 0;
  margin: 100px 0 20px 0;
  text-align: center;
  width: 100%;
  font-size: 40px;
}
.contact-title.animated {
  animation: contactTitleFlipIn 0.8s forwards;
}
@keyframes contactTitleFlipIn {
  from { opacity: 0; transform: rotateY(70deg) scale(0.9); }
  to   { opacity: 1; transform: rotateY(0) scale(1); }
}
/* Highlight: Pop in with color. Change to bounce or scale by editing animation-name. */
.contact-highlight {
  color: #09f999;
  display: inline-block;
  opacity: 0;
}
.contact-highlight.animated {
  animation: contactHighlightPopIn 0.8s 0.35s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes contactHighlightPopIn {
  0%   { opacity: 0; transform: scale(0.7) rotate(-8deg); }
  80%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
/* Center the contact section heading */
.contact-section, .contact-wrapper {
  text-align: center;
}

.contact-wrapper {
  max-width: 1000px;
  margin: auto;
  border: 2px solid #09f999;
  border-radius: 12px;
  padding: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.info-box {
  flex: 1 1 300px;
  background: #fff;
  border-top: 5px solid #09f999;
  border-radius: 12px;
  padding: 24px;
  margin-left: 10px;
  box-shadow: 0 8px 32px rgba(9, 249, 153, 0.13), 0 4px 16px rgba(0,0,0,0.10);
}

.contact-top h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-top p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.info-item {
  margin-top: 10px;
  background-color: #fff;
    padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #09f999;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;   
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.info-icon {
  font-size: 20px;
  color: #000;
}

.info-text a {
  color: #000;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}

.form-box {
  flex: 1 1 300px;
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box input,
.form-box textarea {
  padding: 12px;
  margin-bottom: 20px; 
  border: 1.5px solid #09f999;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

.form-box textarea {
  resize: vertical;
  min-height: 100px;
}

.form-box button {
  margin-top: 20px;
  padding: 12px;
  background-color: #09f999;
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-box button:hover {
  background: #000 !important;
  color: #09f999 !important;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-title{
    margin: 60px 0 20px 0;
  }
  .contact-wrapper {
    padding: 14px;
    margin: 10px 20px 10px 20px ;
  }
  .contact-container {
    flex-direction: column;
  }

  .info-box {
    margin-left: 0;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    
  }
}

/* Contact section entrance animations */
.info-box, .form-box {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), transform 0.7s cubic-bezier(0.77,0,0.175,1);
}
.info-box.visible {
  opacity: 1;
  transform: translateX(0);
  animation: infoBoxSlideIn 0.8s cubic-bezier(0.77,0,0.175,1) forwards;
}
.form-box.visible {
  opacity: 1;
  transform: translateX(0);
  animation: formBoxSlideIn 0.8s 0.25s cubic-bezier(0.77,0,0.175,1) forwards;
}
@keyframes infoBoxSlideIn {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes formBoxSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}



/* #endregion contact section */



/* #region footer section */
  footer {
    background-color: #ffffff;
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid #eee;
    font-family: sans-serif;
  }

  .footer-links {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
  }

  .footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #09f999;
  }

  .footer-links span.separator {
    margin: 0 5px;
    color: #aaa;
  }


  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #000;
    color: #09f999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
  }

  .social-icons a:hover {
    background-color: #09f999;
    color: #000;
    transform: scale(1.05);
  }

  @media (max-width: 500px) {
    .footer-links {
      font-size: 13px;
    }

    .social-icons a {
      width: 34px;
      height: 34px;
    }
  }


/* #endregion footer section */



/* Resource Modal Styles */

.resource-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  animation: modalFadeInBg 0.3s;
}
.resource-modal.open {
  display: flex;
  animation: modalFadeInBg 0.3s;
}

@keyframes modalFadeInBg {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.45); }
}
.resource-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(9,249,153,0.18), 0 4px 16px rgba(0,0,0,0.12);
  padding: 32px 24px 24px 24px;
  max-width: 700px;
  width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.35s cubic-bezier(0.77,0,0.175,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(60px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #09f999;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5em;
  line-height: 1; /* Set line-height to 1 for precise vertical centering */
  display: flex; /* Ensure flex for centering */
  align-items: center; /* Center vertically with flex */
  justify-content: center; /* Center horizontally with flex */
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(9,249,153,0.10);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.close-modal:hover {
  background: #A7D4FC;
  color: #000;
}
.resource-modal-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
  text-align: left;
}
.resource-modal-content p {
  font-size: 1.08em;
  margin-bottom: 16px;
  color: #333;
  text-align: left;
}

.modal-list {
  list-style: disc inside;
  margin-bottom: 18px;
  padding-left: 0;
}
.modal-list li {
  margin-bottom: 14px;
  font-size: 1em;
}
.modal-point {
  font-weight: bold;
  color: #000000;
  font-size: 1.08em;
}
.modal-desc {
  font-weight: normal;
  color: #222;
  font-size: 0.98em;
  margin-left: 0;
  display: block;
  margin-top: 2px;
}
.resource-modal .message-bar-wrapper {
  margin-top: 18px;
}
.read-more-btn {
  background: #09f999;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(9,249,153,0.10);
  display: inline-block;
  max-width: 150px;
}
.read-more-btn:hover {
  background: #000 !important;
  color: #09f999 !important;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .resource-modal-content {
    max-width: 98vw;
    padding: 18px 6vw 18px 6vw;
  }
  .close-modal {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
  }
}





