* {
    margin: 0;
    padding: 0;
    overflow-x: none;
    box-sizing: border-box;
}






/* Preloader full screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
  text-align: center;
}

.loader-text {
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 500;
  color: #005f28; /* HOBUCO dark green */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}


/* Dot container */
.loader-dots {
    margin-left: 50px;
  display: flex;
  gap: 12px;
}

/* Dots */
.loader-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #005f28; /* HOBUCO dark green */
  animation: bounce 1s infinite ease-in-out alternate;
}

/* Each dot delays for randomness */
.loader-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #FFD700; /* yellow */
}
.loader-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-dots .dot:nth-child(4) {
  animation-delay: 0.6s;
  background-color: #FFD700;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* Fade-out class */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}






:root {
    /* Color Palette - Blue and Gray Theme */
    --primary-blue: #012c12;
    --primary-blue-dark: #01200d;
    --primary-blue-light: #015421;
    --secondary-blue: #E8F4FD;
    --accent-blue: #004a1c;
    
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    --white: #f8c200;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Layout */
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --topbar-height: 70px;
}



 html {
  scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background: #015421;
    font-family: 'Poppins', sans-serif;
}

.behind-nav {
    width: 100%;
    background: #01200d;
    height: 70px;
}

header {
    position: relative;
    margin-left: 8vw;
    margin-right: 8vw;
    background: #fff;
    border-left: 4px solid #f8c200;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 10001;
}

.nav-top {
    margin-left: 1vw;
    margin-right: 1vw;
    display: flex;
    flex-wrap: wrap;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.nav-top a {
    margin-left: 7px;
}

.nav-top-left {
    flex: 1 1 300px;
}

.nav-top-left a {
    color: #d1a400;
}

@media (max-width: 440px) {
    .nav-top-left {
        display: none;
    }
}

.nav-top-right {
    flex: 1 1 -1px;
    display: flex;
    flex-wrap: wrap;
}

.nav-top-right p {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
}

.nav-top-right p i {
    margin-right: 10px;
    margin-top: 4px;
}

nav hr {
    margin-left: 1vw;
    margin-right: 1vw;
    border: none;
    height: 1px;
    background: rgb(170, 169, 169);
}

.nav-bottom {
    display: flex;
    margin-left: 1vw;
    margin-right: 1vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

.nav-bottom-logo {
    padding: 8px;
    padding-left: 0px;
}

.nav-bottom-logo h1 {
    font-size: clamp(1.3rem, 2.3vw, 3rem);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 5vw;
}

.nav-links a {
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    color: #01200d;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-10px);
    color: #f8c200;
}

.nav-links .active {
    transform: translateY(-10px);
    color: #f8c200;
}

.nav-bottom-sociallinks {
    right: 2vw;
    display: flex;
    position: absolute;
    padding: 3px;
    align-items: center;
    justify-content: center;
}

.nav-bottom-sociallinks i {
    width: 32px;
    height: 32px;
    background: rgb(206, 206, 206);
    border-radius: 50%;
    margin-right: 10px;
    color: #000;
    text-align: center;
    padding-top: 8px;
    transition: 0.3s ease;
}

.nav-bottom-sociallinks i:hover {
    transform: translateY(-10px);
}

.social-links-nav {
    margin-right: 25px;
    margin-top: 5px;
}

.social-links-nav button {
    padding: 8px 23px;
    background: linear-gradient(135deg, #fed907, #ffe100);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
    box-shadow: 0 8px 25px rgba(248, 194, 0, 0.3);
    transition: 0.3s ease;
    animation: pulse2 1s infinite;
}

.social-links-nav button:hover {
    transform: translateX(-10px);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-top: 7px;
    margin-right: 10px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #01200d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media screen and (max-width: 1205px) { 
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        margin-left: 5vw;
        width: 70%;
        max-width: 80vw;
        height: auto;
        background: #eeeeee;
        backdrop-filter: blur(10px);
        padding: 4rem 2rem 2rem;
        transition: 0.3s ease;
        border-left: 4px solid #f8c200;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 599px) { 
    .nav-menu {
        padding: 6rem 2rem 2rem;
    }

    .nav-menu.active {
        top: 10%;
        z-index: -10;
    }
}

@media screen and (max-width: 430px) { 
    .menu-toggle {
        display: flex;
    }
        
    .nav-menu {
        position: fixed;
        top: -100%;
        margin-left: 5vw;
        width: 70%;
        max-width: 350px;
        height: auto;
        background: #eeeeee;
        backdrop-filter: blur(10px);
        padding: 4rem 2rem 2rem;
        transition: 0.3s ease;
        border-left: 4px solid #f8c200;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .nav-menu.active {
        top: 10%;
        z-index: -10;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.2rem;
    }

    .nav-links a {
        padding: 8px;
        margin-left: 0vw;
    }

    .nav-links .active {
        transform: translateX(0px);
        color: #f8c200;
    }

    .nav-links a:hover {
        transform: translateX(-10px);
        color: #f8c200;
    }

    header {
        z-index: 10001;
        border-bottom: 1px solid #01200d;
    }
    
    .nav-top-right .nbr {
        font-size: 0.8rem;
        margin-top: 7px;
    }

    .nav-top-right .nbr i {
        margin-top: 2px;
    }
}

@media screen and (max-width: 355px) {
    .social-links-nav {
        display: none;
    }
    
    .nav-top-right .nbr {
        font-size: 0.7rem;
        margin-top: 7px;
    }

    .nav-top-right .nbr i {
        margin-top: 2px;
    }
}

/* Outside nav menu - hidden by default */
.responsive-nav-menu {
    position: relative;
    top: -1%;
    left: 15vw;
    width: 70%;
    background: #eeeeee;
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    transition: transform 0.4s ease;
    opacity: 1;
    transform: translateY(-100%);
    visibility: visible;
    justify-content: center;
    align-items: center;
    border-left: 4px solid #f8c200;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.responsive-nav-menu.active {
    transform: translateY(-17%);
    opacity: 1;
    visibility: visible;
}

.responsive-nav-menu a {
    text-decoration: none;
    color: #01200d;
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 0;
}

.responsive-nav-menu a:hover {
    color: #f8c200;
    transform: translateX(5px);
    transition: 0.3s ease;
}

.responsive-nav-menu .active {
    color: #f8c200;
}

/* Page Hero Section */
.services-hero-section {
      max-width: 100%;
      margin: 0 auto;
      padding: 80px 40px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 80px;
      align-items: center;
      position: relative;
      background: linear-gradient(135deg, #01200d 0%, #015421 50%, #0b3a02 100%);
      min-height: 90vh;
      overflow: hidden;
    }

    .services-hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(248,194,0,0.1)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
      opacity: 0.3;
      z-index: 1;
    }

    .services-content-left {
      z-index: 10;
      position: relative;
    }

    .services-subtitle {
      font-size: 1.6rem;
      color: #f8c200;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 35px;
      position: relative;
    }

    .services-subtitle::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 11%;
      width: 60px;
      height: 3px;
      background: #f8c200;
      border-radius: 2px;
    }

    .services-main-heading {
      font-size: 2.2rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      max-width: 600px;
    }

    .services-main-heading span {
      color: #f8c200;
      position: relative;
    }

    .services-description {
      font-size: 1.15rem;
      color: #e0e0e0;
      line-height: 1.7;
      margin-bottom: 35px;
      max-width: 95%;
    }

    .service-stats {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      margin-bottom: 50px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: #f8c200;
      display: block;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #ffffff;
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .services-cta {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .btn {
      cursor: pointer;
      display: inline-block;
      padding: 15px 35px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s ease;
      text-align: center;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f8c200, #f5cd3d);
      color: #01200d;
      box-shadow: 0 8px 25px rgba(248, 194, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(248, 194, 0, 0.4);
    }

    .btn-outline {
      background: #fff;
      color: #01200d;
      padding: 12px 35px;
    }

    .btn-outline:hover {
      background: #f8c200;
      color: #01200d;
      transform: translateY(-3px);
    }

    .services-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      z-index: 10;
    }

    .service-box {
      background: white;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-icon {
      font-size: 2rem;
      color: #015421;
      margin-bottom: 15px;
    }

    .service-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #01200d;
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.5;
    }

    @media (max-width: 820px) {
      .services-hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 60px 20px;
      }
      .services-right {
        grid-template-columns: 1fr;
        justify-items: center;
      }
      .services-cta {
        flex-direction: column;
        align-items: center;
      }
      .services-subtitle {
      font-size: 1.6rem;
      margin-top: 30px;
    }

    .services-subtitle::after {
      bottom: -5px;
      left: 45%;
    }

    .service-box {
      background: white;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
      width: 350px;
    }
    }

    @media (max-width: 419px) {
      .services-hero-section {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding-top: 60px;
        padding-left: 10px;
      }
      .services-right {
        grid-template-columns: 1fr;
        justify-items: center;
      }
      .services-cta {
        flex-direction: column;
        align-items: center;
      }
      .services-subtitle {
      font-size: 1.6rem;
      margin-top: 30px;
    }

    .services-subtitle::after {
      bottom: -5px;
      left: 45%;
    }

    .service-box {
      background: white;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
      width: 280px;
    }






    .services-main-heading {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      max-width: 350px;
    }

    .services-main-heading span {
      color: #f8c200;
      position: relative;
    }

    .services-description {
      font-size: 1rem;
      color: #e0e0e0;
      line-height: 1.7;
      margin-bottom: 35px;
      max-width: 95%;
    }

    .service-stats {
      display: flex;
      gap: 20px;
      margin-top: 60px;
      margin-bottom: 50px;
      max-width: 350px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 1.2rem;
      font-weight: 800;
      color: #f8c200;
      display: block;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #ffffff;
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    }





/* Services Overview Section */
.services-overview {
    background-color: #fff;
    padding: 80px 0;
}

.services-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #01200d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f8c200;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Services Grid */
.main-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.main-service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #015421, #f8c200);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.main-service-card:hover::before {
    transform: translateX(0);
}

.main-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid #f8c200;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #015421 0%, #01200d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #f8c200;
}

.main-service-card h3 {
    font-size: 1.6rem;
    color: #01200d;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.main-service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.service-features li i {
    color: #f8c200;
    margin-right: 10px;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #015421;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #f8c200;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Additional Services Section */
.additional-services {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.additional-service-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f8c200;
}

.additional-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.additional-service-item h4 {
    color: #01200d;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.additional-service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background-color: #fff;
    padding: 80px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #f8c200;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #015421, #01200d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8c200;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    color: #01200d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(1, 84, 33, 0.9) 0%, rgba(1, 32, 13, 0.95) 100%), url('../../images/services.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f8c200;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #f8c200;
    color: #01200d;
    border: 2px solid #f8c200;
    animation: pulse2 1s infinite;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(248, 194, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #01200d;
    transform: translateY(-5px);
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 194, 0, 0.525);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(248, 194, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 194, 0, 0);
    }
}

/* Footer */
.footer {
    background-color: #01200d;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-about h3, .footer-links h3, .footer-services h3, .footer-newsletter h3 {
    color: #f8c200;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #f8c200;
    color: #01200d;
    transform: translateY(-5px);
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 10px;
}

.footer-links a, .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover, .footer-services a:hover {
    color: #f8c200;
    transform: translateX(5px);
}

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter button {
    background-color: #f8c200;
    color: #01200d;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #e0b000;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000000001;
    border: none;
    outline: none;
    background-color: #ffc800;
    color: #0d5700;
    cursor: pointer;
    padding: 9px 12px;
    border-radius: 50%;
    font-size: 25px;
    transition: transform 0.3s ease;
}

#scrollToTopBtn:hover {
    transform: translateY(-10px);
}






/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-6);
    left: var(--spacing-6);
    z-index: 1000;
    animation: bounceIn 1s ease-out 1s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateY(-50%);
}

.whatsapp-tooltip {
    position: absolute;
    left: 250px;
    top: 50%;
    transform: translateX(-100%) translateY(-50%) translateX(-10px);
    background-color: var(--gray-800);
    color: #fff;
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    opacity: 1;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-800);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}









/* Responsive Styles */
@media screen and (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .main-services {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-float {
        bottom: var(--spacing-4);
        right: var(--spacing-4);
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
}

@media screen and (max-width: 576px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .services-overview, .additional-services, .process-section, .cta-section {
        padding: 60px 0;
    }
    
    .main-service-card {
        padding: 30px 20px;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    #scrollToTopBtn {
        bottom: 20px;
        right: 10px;
    }
}








/* Print Styles */
@media print {
    .whatsapp-float {
        display: none;
    }

}