:root {
        --primary-color: #002039;
        --secondary-color: #04db94;
        --dark-color: #002039;
        --light-color: #f5f7fa;
        --text-color: #4a5568;
      }

      body {
        font-family: "Inter", sans-serif;
        color: var(--text-color);
        overflow-x: hidden;
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        color: var(--dark-color);
      }

      .hero-section {
  background: linear-gradient(135deg, #7becc7 0%, var(--primary-color) 100%);
  color: white;
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section .text-gradient {
  background: linear-gradient(90deg, #04db94, #04b8db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.25rem;
  max-width: 600px;
}

.hero-image-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Button enhancements */
.btn-primary {
  background-color: #04a172;
  border-color: #04a172;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #03875e;
  border-color: #03875e;
  color: var(--dark-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(4, 161, 114, 0.3);
}

.btn-outline-light:hover {
  color: var(--primary-color) !important;
}

/* Animated shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-shapes div {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  left: -50px;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
}

      /* Navbar Styles */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 32, 57, 0.08);
  font-family: 'Outfit', sans-serif;
}

/* Scrolled State */
.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Logo/Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.navbar-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.5rem;
  margin-left: 0.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  height: 35px;
}

.navbar.scrolled .logo-text {
  font-size: 1.35rem;
}

/* Navigation Links */
.nav-item {
  margin: 0 0.25rem;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem !important;
  color: var(--dark-color) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.nav-text {
  transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(4, 219, 148, 0.1);
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  transform: scale(1.1);
}

/* Active Link Indicator */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

/* Get Started Button */
.btn-nav {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(4, 219, 148, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1.5rem 0;
    background-color: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 32, 57, 0.1);
  }
  
  .nav-item {
    margin: 0.25rem 0;
  }
  
  .nav-link {
    padding: 0.75rem 1.5rem !important;
  }
  
  .nav-link.active::after {
    left: 1.5rem;
    transform: none;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
  }
  
  .btn-nav {
    margin-left: 1.5rem !important;
    margin-top: 1rem;
    width: calc(100% - 3rem);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* Animation for Mobile Menu */
.navbar-collapse.collapsing,
.navbar-collapse.show {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
      .btn-primary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--dark-color);
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }

      .btn-primary:hover {
        background-color: transparent;
        border-color: white;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(4, 219, 148, 0.2);
      }

      .btn-outline-light {
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }

      .btn-outline-light:hover {
        background-color: white;
        color: var(--dark-color);
        transform: translateY(-3px);
      }

      .stats-section {
        padding: 80px 0;
        background-color: white;
        position: relative;
        z-index: 1;
        margin-top: -50px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      }

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

      .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.1);
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-family: "Outfit", sans-serif;
      }

      .stat-label {
        font-size: 1.1rem;
        color: var(--text-color);
        font-weight: 500;
      }

      .section-title {
        font-weight: 800;
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
        font-size: 2.5rem;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 50px;
        height: 4px;
        background-color: var(--secondary-color);
        border-radius: 2px;
      }

      .services-section {
        padding: 100px 0;
        background-color: var(--light-color);
      }

      .service-card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        margin-bottom: 30px;
        height: 100%;
        background-color: white;
        overflow: hidden;
      }

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

      .service-icon {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
      }

      .why-us-section {
        padding: 100px 0;
        background-color: white;
      }

      .feature-box {
        padding: 40px 30px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(4, 219, 148, 0.2);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
      }

      .process-section {
        padding: 100px 0;
        background-color: var(--light-color);
        position: relative;
        overflow: hidden;
      }

      .process-step {
        text-align: center;
        position: relative;
        padding: 40px 20px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: all 0.3s ease;
        z-index: 1;
      }

      .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .process-number {
        width: 70px;
        height: 70px;
        background-color: var(--secondary-color);
        color: var(--dark-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 auto 20px;
        font-family: "Outfit", sans-serif;
        border: 5px solid white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .process-line {
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--secondary-color);
        z-index: 0;
        opacity: 0.2;
      }

/* Enhanced Daynify Section Styles */
.daynify-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, #002240 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.daynify-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
}

.section-badge {
  display: inline-block;
  background: rgba(4, 219, 148, 0.15);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(90deg, #04db94, #04b8db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(4, 219, 148, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Dashboard Card Styles */
.dashboard-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  color: var(--dark-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: none;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary-color), #04b8db);
}

.card-header {
  margin-bottom: 25px;
}

.card-header h4 {
  font-weight: 700;
  color: #002240;
}

.metric-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.metric {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1;
}

.metric-label {
  font-size: 0.85rem;
  color: #6c757d;
}

.progress-item {
  margin-bottom: 20px;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
}

.progress-bar {
  border-radius: 4px;
}

.chart-container {
  height: 200px;
  margin-top: 30px;
}

/* Trust Badges */
.trust-badges {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .daynify-section {
    padding: 80px 0;
  }
  
  .dashboard-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .metric-display {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 15px;
  }
}

/* Projects Section Styles */
.projects-section {
  padding: 6rem 0;
  background-color: white;
  position: relative;
}

.bg-primary-soft {
  background-color: rgba(0, 32, 57, 0.1);
  color: var(--primary-color);
}

/* Filter Controls */
.projects-filter .nav-pills {
  flex-wrap: wrap;
}

.projects-filter .nav-link {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  margin: 0.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.projects-filter .nav-link:hover {
  color: var(--primary-color);
}

.projects-filter .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

/* Project Cards */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 32, 57, 0.05);
  transition: all 0.3s ease;
}

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

.project-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 32, 57, 0) 0%, rgba(0, 32, 57, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.project-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.project-card:hover .project-content {
  transform: translateY(0);
}

.project-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.project-tags .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .projects-section {
    padding: 4rem 0;
  }
  
  .project-image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .projects-filter .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .project-image {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .projects-filter .nav-pills {
    justify-content: flex-start;
  }
}

      /* Pricing Section Styles */
.pricing-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(4, 219, 148, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.max-w-600 {
  max-width: 600px;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 32, 57, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(0, 32, 57, 0.1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 32, 57, 0.1);
}

.pricing-card.popular {
  border: 1px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(4, 219, 148, 0.15);
}

.pricing-card.popular:hover {
  box-shadow: 0 15px 40px rgba(4, 219, 148, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--dark-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(4, 219, 148, 0.3);
  z-index: 2;
}

/* Pricing Header */
.pricing-header {
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #00305a);
  color: white;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}

.pricing-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 1.2rem;
  margin-left: 0.25rem;
}

.pricing-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Pricing Body */
.pricing-body {
  padding: 2.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 32, 57, 0.05);
}

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

.feature-icon {
  margin-right: 1rem;
  font-size: 1.25rem;
}

.feature-item.available .feature-icon {
  color: var(--secondary-color);
}

.feature-item.unavailable .feature-icon {
  color: #e2e8f0;
}

.feature-text {
  flex: 1;
}

.feature-item.unavailable .feature-text {
  color: #94a3b8;
  text-decoration: line-through;
}

/* Buttons */
.btn-outline-primary {
  border: 2px solid var(--secondary-color);
  color: var(--dark-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(4, 219, 148, 0.3);
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(4, 219, 148, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
  .pricing-section {
    padding: 4rem 0;
  }
  
  .pricing-header, .pricing-body {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(4, 219, 148, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.max-w-600 {
  max-width: 600px;
}

/* Contact Card */
.contact-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 32, 57, 0.05);
  overflow: hidden;
  height: 100%;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
}

/* Contact Info */
.contact-info {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(4, 219, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-icon span {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-details p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--secondary-color);
}

/* Social Links */
.contact-social h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 32, 57, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none ;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

/* Map */
.contact-map {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, transparent 20%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .contact-card::before {
    width: 100%;
    height: 5px;
  }
  
  .contact-map {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .contact-info-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-details h4 {
    font-size: 1rem;
  }
  
  .contact-details p, 
  .contact-details a {
    font-size: 0.9rem;
  }
}

      .contact-section {
        padding: 100px 0;
        background-color: var(--light-color);
      }

      .contact-form {
        background-color: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
      }

      .contact-form::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--secondary-color);
      }

      .form-control {
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(4, 219, 148, 0.2);
      }

      /* Footer Styles */
.site-footer {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: #002039;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}

.footer-main {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

/* Footer Brand */
.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-brand .material-icons {
  color: #04db94;
  font-size: 2rem;
  vertical-align: middle;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Footer Titles */
.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #04db94;
  border-radius: 3px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #04db94;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 20px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  color: #04db94;
  margin-right: 1rem;
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #04db94;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #04db94;
  color: #002039;
  transform: translateY(-3px);
}

/* Footer Bottom */
.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.copyright strong {
  color: white;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #04db94;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .footer-links a:hover::before {
    width: 100%;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

      /* Responsive Adjustments */
      @media (max-width: 1199.98px) {
        .hero-section::before {
          width: 40%;
          opacity: 0.1;
        }
      }

      @media (max-width: 991.98px) {
        .hero-section {
    padding: 120px 0 80px;
    text-align: center;
  }
  
  .hero-section .lead {
    margin-left: auto;
    margin-right: auto;
  }

        .hero-buttons {
          justify-content: center;
        }

        .btn-outline-light {
          margin-left: 0;
          margin-top: 15px;
        }

        .stat-item:not(:last-child)::after {
          display: none;
        }

        .process-line {
          display: none;
        }

        .process-step {
          margin-bottom: 30px;
        }

        .section-title {
          font-size: 2.2rem;
        }
      }

      @media (max-width: 767.98px) {
        

        .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }

        h1 {
          font-size: 2.5rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .stats-section {
          margin-top: -30px;
          padding: 60px 0;
        }

        .stat-item {
          margin-bottom: 30px;
        }

        .contact-form {
          padding: 30px;
        }
      }

      @media (max-width: 575.98px) {
        h1 {
          font-size: 2rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .btn-primary,
        .btn-outline-light {
          width: 100%;
          display: block;
        }

        .btn-outline-light {
          margin-left: 0;
          margin-top: 15px;
        }
      }