/* ========== BASE STYLES ========== */
:root {
  --primary-color: #0b2e65;
  --secondary-color: #041d88;
  --dark-color: #212121;
  --light-color: #faf9f4;
  --text-color: #333;
  --text-light: #ffffff;
  --accent-color: #f8edd6;
  --section-padding: 5rem;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== UTILITY CLASSES ========== */
.cta-button, .learn-more {
  display: inline-block;
  padding: 15px 32px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover, .learn-more:hover {
  background-color: #0a265a;
  transform: translateY(-2px);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 72px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  color: var(--text-light);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.logo {
  width: 102.5px;
  height: 55px;
  object-fit: contain;
}

.company-name {
  color: var(--text-light);
  text-align: left;
  white-space: nowrap;
}

.company-name-main {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: block;
  line-height: 1.2;
}

.company-name-sub {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: block;
  line-height: 1.2;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  flex-shrink: 0;
}

.main-nav a {
  color: var(--text-light);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  padding: 8px 0;
}

.main-nav a.active {
  color: var(--secondary-color);
  font-weight: 900;
}

.main-nav a:hover {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li {
  padding: 8px 20px;
}

.main-nav .dropdown-menu li a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.main-nav .dropdown-menu li a:hover {
  background-color: #f2f2f2;
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 2px 0;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background: 
    linear-gradient(180deg, rgba(135, 134, 134, 0.5) 53.37%, rgba(33, 33, 33, 0.7) 100%),
    url('../assets/images/home banner.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 72px;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 10.1%, rgba(255, 255, 255, 0) 31.73%);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1103px;
  margin-top: 80px;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 40px;
}

/* Hero Animations */
.hero-content h1 {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  transition: transform 2.0s cubic-bezier(0.165, 0.84, 0.44, 1), 
              opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, 
              opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.hero-content h1.animate {
  opacity: 1;
  transform: scale(1);
}

.hero-content p.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CLIENT LOGOS SECTION ========== */
.client-logos-section {
  background-color: white;
  background-image: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                    url('../assets/images/company\ banner.png');
  padding: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.client-logos-container {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 20px 0;
  will-change: transform;
}

.client-logos-container img {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 25px;
  transition: transform 0.3s ease;
}

.client-logos-container img:hover {
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logos-container {
  animation: scroll 20s linear infinite;
}

.client-logos-section:hover .client-logos-container {
  animation-play-state: paused;
}

/* ========== BANNER SECTION ========== */
.banner {
  background: 
    linear-gradient(to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../assets/images/query\ background.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.banner-content {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.banner.animate .banner-content {
  opacity: 1;
  transform: scale(1);
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
  background-color: var(--text-light);
  padding: var(--section-padding) 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.founder-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.founder-content {
  max-width: 597px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.founder-section.animate .founder-content {
  opacity: 1;
  transform: translateX(0);
}

.founder-content h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 30px;
}

.founder-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
}

.founder-image {
  border-radius: 50%;
  width: 416px;
  height: 416px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.founder-section.animate .founder-image {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: var(--section-padding) 72px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.services-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: 411px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-section.animate .service-card {
  opacity: 1;
  transform: translateY(0);
}

.services-section.animate .service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.services-section.animate .service-card:nth-child(2) {
  transition-delay: 0.3s;
}
.services-section.animate .service-card:nth-child(3) {
  transition-delay: 0.5s;
}

.service-card:hover {
  transform: translateY(-10px) !important;
}

.service-card img {
  margin-bottom: 30px;
}

.service-card h3 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background-color: var(--text-light);
  padding: var(--section-padding) 72px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.testimonials.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonials h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 80px;
  text-align: center;
}

.testimonial-box {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.testimonials.animate .testimonial-box {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content {
  flex: 1;
  text-align: left;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.testimonials.animate .testimonial-content {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
}

.testimonial-content blockquote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-style: italic;
  padding-left: 60px;
}

.client-info {
  padding-left: 60px;
}

.client-name {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}

.client-position {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-image {
  flex: 1;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.testimonials.animate .testimonial-image {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius);
}

/* ========== CONSULTATION SECTION ========== */
.consultation-section {
  padding: var(--section-padding) 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f8f8;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  gap: 60px;
}

.consultation-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.consultation-image {
  flex: 1;
  max-width: 45%;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consultation-section.animate .consultation-image {
  opacity: 1;
  transform: translateX(0);
}

.consultation-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: contain;
}

.consultation-content {
  flex: 1;
  max-width: 55%;
  padding-left: 40px;
  text-align: left;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.consultation-section.animate .consultation-content {
  opacity: 1;
  transform: translateX(0);
}

.consultation-content h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
}

.consultation-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 30px;
}

/* ========== FOOTER ========== */
.footer {
  background-color: dimgray;
  color: var(--text-light);
  padding: 60px 72px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.footer.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  color: var(--text-light);
}

.footer-about {
  max-width: 418px;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer.animate .footer-about {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.footer-about img {
  margin-bottom: 24px;
}

.footer-about p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-light);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--text-light);
  border-radius: 50%;
  padding: 4px;
}

.footer-links {
  display: flex;
  gap: 80px;
  color: var(--text-light);
}

.footer-services, .footer-contact, .footer-navigation {
  max-width: 250px;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer.animate .footer-services {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.footer.animate .footer-contact {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.footer.animate .footer-navigation {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.footer-services h3, .footer-contact h3, .footer-navigation h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text-light);
}

.footer-services ul, .footer-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--text-light);
}

.footer-services li, .footer-navigation li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.footer-contact address, .footer-contact p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-light);
}

/* Footer Contact Icons */
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.contact-item i {
  color: var(--text-light);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item span {
  flex: 1;
}

.footer-contact a, 
.footer-services a, 
.footer-navigation a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover, 
.footer-services a:hover, 
.footer-navigation a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.5;
  color: var(--text-light);
}

.footer.animate .footer-copyright {
  opacity: 1;
  transition: opacity 0.8s ease-out 1s;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
  .header {
    padding: 20px 40px;
  }
  
  .main-nav ul {
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 20px;
  }
  
  .founder-section, .consultation-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .founder-image {
    order: -1;
  }
  
  .consultation-image, .consultation-content {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
  
  .testimonial-box {
    flex-direction: column;
    padding: 40px;
  }
  
  .testimonial-content {
    width: 100%;
  }
  
  .testimonial-image {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  
  .client-logos-container img {
    height: 45px;
  }
}

@media (max-width: 992px) {
  .client-logos-container img {
    height: 40px;
  }
  
  .banner {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }
  
  .logo-brand {
    gap: 10px;
  }
  
  .logo {
    width: 80px;
    height: 43px;
  }
  
  .company-name-main {
    font-size: 16px;
  }
  
  .company-name-sub {
    font-size: 14px;
  }
  
  /* Mobile navigation */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    z-index: 10;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 0 20px 80px;
  }
  
  .hero-content {
    margin-top: 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .founder-section, .services-section, .testimonials {
    padding: 60px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
  
  .client-logos-container img {
    height: 35px;
    margin: 0 20px;
  }
  
  .client-logos-container {
    animation-duration: 15s;
  }
  
  .banner {
    height: 160px;
  }
  
  .banner h2 {
    font-size: 28px;
  }
  
  .testimonials {
    padding: 60px 20px;
  }
  
  .testimonial-box {
    padding: 30px 20px;
  }
  
  .testimonial-content blockquote {
    padding-left: 40px;
    font-size: 18px;
  }
  
  .client-info {
    padding-left: 40px;
  }
  
  .testimonial-quote {
    width: 30px;
  }
  
  .consultation-section {
    padding: 80px 40px;
  }
  
  .consultation-image img {
    max-width: 400px;
  }
  
  .consultation-content h2 {
    font-size: 32px;
  }
  
  .consultation-content p {
    font-size: 18px;
  }
  
  .contact-item {
    gap: 10px;
  }
  
  .contact-item i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .client-logos-container img {
    height: 30px;
    margin: 0 15px;
  }
  
  .client-logos-container {
    animation-duration: 12s;
  }
  
  .banner {
    height: 140px;
  }
  
  .banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }
  
  .logo {
    width: 70px;
    height: 38px;
  }
  
  .company-name-main {
    font-size: 14px;
  }
  
  .company-name-sub {
    font-size: 12px;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 25px;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .cta-button, .learn-more {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  .testimonials h2, .consultation-content h2 {
    font-size: 32px;
  }
  
  .consultation-section {
    padding: 60px 20px;
  }
  
  .consultation-image img {
    max-width: 100%;
  }
}