/**
* Template Name: Impact - v1.0.0
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #008374;
  --color-secondary: #f85a40;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #f85a40;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: #0aa39a;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 130px;
  background-color: var(--color-primary);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 130px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 150px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #f85a40;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #f85a40;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 131, 116, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

:root { --hcc-brand: #0aa39a; --hcc-dark: #088f87; }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.btn-hero-primary {
    background: white;
    color: #0aa39a;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #088f87;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: white;
    color: #0aa39a;
    border-color: white;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0aa39a;
    display: block;
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #0aa39a;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-box p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: #495057;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0aa39a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0aa39a;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #e9f5f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #0aa39a;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ai-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Portfolio */
.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.portfolio-img {
    height: 280px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: #2c3e50;
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #0aa39a;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    color: #6c757d;
    line-height: 1.7;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    color: #0aa39a;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #0aa39a;
}

.blog-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    text-align: center;
}

.cta-section h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary-light {
    background: #0aa39a;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #0aa39a;
}

.btn-primary-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section .lead { font-size: 1.1rem; }
    .btn-hero-secondary { margin-left: 0; margin-top: 15px; }
    .stats-bar { margin-top: 0; border-radius: 0; }
    .section-header h2 { font-size: 2rem; }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

.about-hero {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    padding: 80px 0;
}

.about-hero h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: #0aa39a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0aa39a;
    border-radius: 3px;
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -38px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #0aa39a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-light-rounded {
    background: white;
    color: #0aa39a;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-light-rounded:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #088f87;
}

.video-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-container video {
    width: 100%;
    display: block;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f0f9f8 0%, #e6f7f5 100%);
    border-left: 6px solid #0aa39a;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-hero {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.services-hero h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0aa39a;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0aa39a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: #088f87;
}

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    text-align: center;
}

.cta-section h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary-light {
    background: #0aa39a;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #0aa39a;
}

.btn-primary-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-card {
    text-align: center;
    padding: 30px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #0aa39a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.why-choose-section {
    padding: 80px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #0aa39a;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-hero h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}
/* Service Detail Page Styles */
.service-hero {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.service-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.ai-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.service-content {
    padding: 60px 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #495057;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: #0aa39a;
    font-size: 1.1rem;
}

.cta-card {
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    color: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.cta-card h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-cta {
    background: white;
    color: #0aa39a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.detail-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.detail-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.detail-content h3 {
    color: #0aa39a;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.detail-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.detail-content li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-badge {
    background: #e9f5f4;
    color: #0aa39a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
    border-left: 4px solid #0aa39a;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.related-services {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.related-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.related-icon i {
    font-size: 2rem;
    color: white;
}

.related-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.related-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.faq-section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}
/*--------------------------------------------------------------
# Portfolios Page
--------------------------------------------------------------*/
.portfolio-hero {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.portfolio-hero h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-bar {
  padding: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border-radius: 20px;

}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0aa39a;
  display: block;
}

.stat-label {
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #495057;
  padding: 10px 24px;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0aa39a;
  border-color: #0aa39a;
  color: white;
}

.portfolio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.ai-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10,163,154,0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.view-project-btn {
  background: white;
  color: #0aa39a;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.3s;
}

.portfolio-card:hover .view-project-btn {
  transform: translateY(0);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  color: #0aa39a;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.portfolio-content p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.portfolio-tech {
  display: flex;
  gap: 8px;
}

.tech-tag {
  background: #e9f5f4;
  color: #0aa39a;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-link {
  color: #0aa39a;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.portfolio-link:hover {
  color: #088f87;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: white;
  padding: 100px 0;
  margin-top: 80px;
  text-align: center;
}

.cta-section h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-primary-light {
  background: #0aa39a;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid #0aa39a;
}

.btn-primary-light:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .portfolio-hero h2 {
      font-size: 2.5rem;
  }
  
  .portfolio-image {
      height: 200px;
  }
}

/* Portfolio Detail Page Styles */
.portfolio-hero {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.portfolio-hero h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.portfolio-hero .category {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.portfolio-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  line-height: 1.6;
}

.ai-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.project-meta-bar {
  background: white;
  border-bottom: 1px solid #e9ecef;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meta-item {
  text-align: center;
  padding: 15px;
}

.meta-icon {
  width: 50px;
  height: 50px;
  background: #e9f5f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.meta-icon i {
  color: #0aa39a;
  font-size: 1.5rem;
}

.meta-label {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.meta-value {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.1rem;
}

.project-content {
  padding: 60px 0;
}

.content-main {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-main h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin: 40px 0 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 3px solid #0aa39a;
  display: inline-block;
}

.content-main h3 {
  color: #0aa39a;
  font-size: 1.4rem;
  margin: 30px 0 15px;
  font-weight: 600;
}

.content-main p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.content-main ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.content-main li {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.content-main li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0aa39a;
  font-weight: 700;
  font-size: 1.2rem;
}

.tech-stack-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
}

.tech-stack-section h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-badge {
  background: white;
  color: #0aa39a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #e9ecef;
  transition: all 0.3s;
}

.tech-badge:hover {
  border-color: #0aa39a;
  transform: translateY(-2px);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.result-card {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.result-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.sidebar-card h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.project-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-info-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-info-list li:last-child {
  border-bottom: none;
}

.info-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.info-value {
  color: #2c3e50;
  font-weight: 600;
  text-align: right;
}

.cta-sidebar {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.cta-sidebar h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.cta-sidebar p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.btn-cta-sidebar {
  background: white;
  color: #0aa39a;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid white;
}

.btn-cta-sidebar:hover {
  background: transparent;
  color: white;
}

.related-projects {
  background: #f8f9fa;
  padding: 80px 0;
  margin-top: 60px;
}

.related-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.related-image {
  height: 200px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 25px;
}

.related-category {
  color: #0aa39a;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.related-content h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.related-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.testimonial-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  position: relative;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: #0aa39a;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0aa39a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1rem;
}

.author-info span {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .portfolio-hero h1 {
      font-size: 2rem;
  }
  
  .content-main {
      padding: 25px;
  }
  
  .results-grid {
      grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# Blogs Page
--------------------------------------------------------------*/
.blog-hero {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.9;
}

.search-box {
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px;
  margin-top: 30px;
  display: flex;
  max-width: 500px;
}

.search-box input {
  background: transparent;
  border: none;
  color: white;
  padding: 12px 20px;
  flex: 1;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.7);
}

.search-box button {
  background: white;
  color: #0aa39a;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-box button:hover {
  transform: scale(1.05);
}

.category-filter {
  background: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #495057;
  padding: 10px 24px;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0aa39a;
  border-color: #0aa39a;
  color: white;
}

.featured-post {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  margin-bottom: 50px;
}

.featured-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-img {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-post:hover .featured-img img {
  transform: scale(1.08);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-content {
  padding: 35px;
}

.featured-content .category {
  color: #0aa39a;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.featured-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-content h2 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.featured-content h2 a:hover {
  color: #0aa39a;
}

.featured-content p {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.post-grid {
  margin-top: 30px;
}

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid #e9ecef;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.post-img {
  /* height: 220px; */
  overflow: hidden;
  position: relative;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-img img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(10,163,154,0.9);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.post-content h3 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.post-content h3 a:hover {
  color: #0aa39a;
}

.post-excerpt {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.read-more {
  color: #0aa39a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 10px;
  color: #088f87;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  border: 1px solid #e9ecef;
}

.sidebar-card h4 {
  color: #2c3e50;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.popular-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post-number {
  width: 35px;
  height: 35px;
  background: #e9f5f4;
  color: #0aa39a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.popular-post-content h6 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.popular-post-content h6 a {
  color: #2c3e50;
  text-decoration: none;
}

.popular-post-content h6 a:hover {
  color: #0aa39a;
}

.popular-post-date {
  color: #6c757d;
  font-size: 0.8rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: #f8f9fa;
  color: #495057;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-item:hover {
  background: #0aa39a;
  color: white;
}

.newsletter-box {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.newsletter-box h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  outline: none;
}

.newsletter-form button {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: #1a252f;
}

.pagination {
  justify-content: center;
  margin-top: 50px;
}

.page-link {
  color: #0aa39a;
  border: none;
  padding: 12px 20px;
  margin: 0 5px;
  border-radius: 50%;
  font-weight: 500;
}

.page-link:hover,
.page-item.active .page-link {
  background: #0aa39a;
  color: white;
}

/* ──────────────────────────────────────────────
Sidebar – sticky + internal scrollbar + NO JUMP
────────────────────────────────────────────── */

.sidebar {
transition: all 0.3s ease;
background: #fff;
border-radius: 12px;
padding: 0;                     /* remove if you want cards to touch edges */
}

/* Make the ROW respect starting alignment (prevents stretch + jump) */
@media (min-width: 992px) {
.blog .row.gy-5 {
  align-items: flex-start !important;   /* ← this is the main fix for jump */
}

.col-lg-4 {
  align-self: flex-start;               /* extra safety on column */
}

.sticky-lg-top {
  position: sticky;
  top: 80px;                            /* adjust to your navbar height + gap (try 70–100px) */
  z-index: 90;
  align-self: flex-start !important;    /* override any stretch */
  height: fit-content;                  /* don't force full height */
  /* max-height: calc(100vh - 100px);
  overflow-y: auto; */
  -webkit-overflow-scrolling: touch;
  padding: 15px 10px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Optional: smooth the tiny remaining transition */
.sticky-lg-top {
  transition: transform 0.15s ease, top 0.15s ease;
}

/* Scrollbar styling (keep if you like) */
.sticky-lg-top::-webkit-scrollbar {
  width: 6px;
}
.sticky-lg-top::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}
.sticky-lg-top::-webkit-scrollbar-thumb {
  background: #0aa39a;
  border-radius: 10px;
}
.sticky-lg-top::-webkit-scrollbar-thumb:hover {
  background: #088f87;
}
}

/* Mobile reset */
@media (max-width: 991.98px) {
.sticky-lg-top {
  position: relative !important;
  top: auto !important;
  align-self: auto !important;
  max-height: none;
  overflow-y: visible;
}
}

@media (max-width: 992px) {
  .blog-hero h1 { font-size: 2.5rem; }
  .featured-img { height: 300px; }
}

@media (max-width: 768px) {
  .blog-hero h1 { font-size: 2rem; }
  .featured-content h2 { font-size: 1.6rem; }
  .newsletter-form { flex-direction: column; }
}

/* Blog Detail Page Styles */
.blog-hero {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.blog-hero h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.article-wrapper {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.content-container {
  padding: 50px;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
}

.article-content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 40px 0 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 3px solid #0aa39a;
  display: inline-block;
}

.article-content h3 {
  font-size: 1.4rem;
  color: #0aa39a;
  margin: 30px 0 15px;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-content pre {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 25px 0;
  border-left: 4px solid #0aa39a;
}

.article-content code {
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #e83e8c;
}

.article-content blockquote {
  background: #f8f9fa;
  border-left: 5px solid #0aa39a;
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #495057;
  border-radius: 0 10px 10px 0;
}

.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tags-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.tag-badge {
  background: #e9f5f4;
  color: #0aa39a;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-badge:hover {
  background: #0aa39a;
  color: white;
  transform: translateY(-2px);
}

.author-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 35px;
  margin: 50px 0 30px;
  border-left: 5px solid #0aa39a;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0aa39a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.social-share {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e9ecef;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.share-btn:hover {
  background: #0aa39a;
  color: white;
  transform: translateY(-3px);
}

.share-btn.facebook:hover { background: #3b5998; }
.share-btn.twitter:hover { background: #1da1f2; }
.share-btn.linkedin:hover { background: #0077b5; }
.share-btn.whatsapp:hover { background: #25d366; }

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.sidebar-card h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-content h6 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.recent-post-content h6 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.recent-post-content h6 a:hover {
  color: #0aa39a;
}

.recent-post-date {
  color: #6c757d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-sidebar {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.cta-sidebar h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.cta-sidebar p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.btn-cta-sidebar {
  background: white;
  color: #0aa39a;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid white;
}

.btn-cta-sidebar:hover {
  background: transparent;
  color: white;
}

.related-section {
  background: #f8f9fa;
  padding: 80px 0;
  margin-top: 60px;
}

.related-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.related-image {
  height: 200px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 25px;
}

.related-category {
  color: #0aa39a;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.related-content h4 {
  color: #2c3e50;
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.related-content h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.related-content h4 a:hover {
  color: #0aa39a;
}

.related-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6c757d;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .blog-hero h1 { font-size: 2.2rem; }
  .content-container { padding: 35px; }
  .featured-image { height: 350px; }
}

@media (max-width: 768px) {
  .blog-hero h1 { font-size: 1.8rem; }
  .content-container { padding: 25px; }
  .featured-image { height: 250px; }
  .blog-meta { flex-direction: column; gap: 10px; }
}
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-hero {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.9;
}

.contact-stats {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #e9ecef;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0aa39a;
  display: block;
}

.stat-label {
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.info-icon i {
  font-size: 2rem;
  color: white;
}

.info-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-card p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #0aa39a;
  box-shadow: 0 0 0 0.2rem rgba(10,163,154,0.15);
}

.form-label {
  color: #495057;
  font-weight: 500;
  margin-bottom: 8px;
}

.btn-submit {
  background: linear-gradient(135deg, #0aa39a 0%, #088f87 100%);
  color: white;
  border: none;
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,163,154,0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner-border {
  width: 1.2rem;
  height: 1.2rem;
  border-width: 0.15em;
}

.alert {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.alert-success {
  background: #d1fae5;
  border: 1px solid #10b981;
  color: #065f46;
}

.alert-danger {
  background: #fee2e2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.service-select {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  width: 100%;
  font-size: 1rem;
  color: #495057;
  cursor: pointer;
}

.service-select:focus {
  border-color: #0aa39a;
  outline: none;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.budget-option {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.budget-option:hover,
.budget-option.active {
  background: #0aa39a;
  border-color: #0aa39a;
  color: white;
}

.map-section {
  margin-top: 80px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 20px;
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2rem; }
  .contact-form-wrapper { padding: 30px; }
  .info-card { margin-bottom: 20px; }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 140px;
  margin-top: -10px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
