:root {
    --primary-color: #2e4b71;
    --secondary-color: #e6dfd1;
    --text-dark: #2e4b71;
    --text-light: #2e4b71;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    overflow-x: hidden;
  }
  
  .header {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
  }
  
  .logo img {
    height: 50px;
  }
  
  .logo-text h1 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .logo-text p {
    font-size: 0.9rem;
    font-weight: 300;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: 0.3s;
  }
  
  .nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: 0.3s;
  }
  
  .nav-links a:hover:after {
    width: 100%;
  }
  
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    background-image: url('../assets/themis.png');
    background-size: cover;
    background-position: center;
    position: relative;
    
  }
  
  .hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.566);
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
     transition: transform 0.1s ease-out;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    
    
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
  }
  
  .btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #1c3757;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .services {
    padding: 5rem 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .about {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .about-img {
    flex: 1;
    position: relative;
    height: 500px;
  }
  
  .about-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
  }
  
  .about-img:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary-color);
    border-radius: 8px;
    z-index: 1;
  }
  
  .about-content {
    flex: 1;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .about-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
  }
  
  .about-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .contact {
    padding: 5rem 0;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .contact-info h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
  
  .contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  textarea.form-control {
    height: 150px;
    resize: none;
  }
  
  .footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
  }
  
  .fadeIn {
    animation: fadeIn 1s forwards;
  }
  
  .balance-icon {
    display: inline-block;
    position: relative;
  }
  
  .balance-animation {
    animation: balance 3s infinite alternate;
    transform-origin: center top;
  }
  
  @keyframes balance {
    0% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(5deg);
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    
    .about-container {
      flex-direction: column;
    }
    
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
      font-size: 2.2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
  }
  /* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  position: relative;
}

.mobile-menu-toggle .hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-toggle .hamburger-icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: white;
  left: 0;
  transition: 0.3s;
}

.mobile-menu-toggle .hamburger-icon span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle .hamburger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle .hamburger-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 150;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.90;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-content a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s, text-shadow 0.3s;
}

.mobile-nav-content a:hover {
  transform: scale(1.1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.mobile-nav-content a:hover {
  opacity: 0.7;
}

body.no-scroll {
  overflow: hidden;
}



@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}
#scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;
  text-align: center;
  padding: 10px;
  background: var(--secondary-color);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

#scroll-indicator .scroll-text {
  display: block;
  margin-bottom: 5px;
}

#scroll-indicator .scroll-icon {
  animation: bounce 3.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}