body {
  background: #ffffff;
  color: #f8f9fa;
  font-family: 'Lato', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary: #022d38;
  --secondary: #1e6ad8;
}





/* ===== SIMPLE NAVBAR ===== */
.simple-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px; /* you can tweak this if you want more/less edge space */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: #022d38;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  transition: padding 0.3s ease, background 0.3s ease;
}

.navbar-container {
  width: 100%;
  /* ❌ remove this:
     max-width: 1400px;
  */
  display: flex;
  justify-content: space-between; /* puts logo hard left, EL hard right */
  align-items: center;
}

/* Logo */
.navbar-logo img {
  height: 38px;
  transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Shrink navbar on scroll (optional) */
.simple-navbar.scrolled {
  padding: 6px 16px;
}

/* ===== Language Switch Button ===== */
.lang-btn {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn span {
  font-size: 0.9rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.lang-btn:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

.lang-btn:hover span {
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
  .simple-navbar {
    padding: 10px 12px;
  }

  .navbar-logo img {
    height: 32px;
  }

  .lang-btn {
    font-size: 0.85rem;
    /* you had: padding-bottom: 8px 20px; which is invalid */
    /* if you want padding, use: */
    /* padding: 4px 0; */
  }
}











/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 110vh;
  background-color: #ffffff; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 80px 0;
  box-sizing: border-box;
}



/* ===== HERO CONTAINER ===== */
.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 10px;
}

/* ===== TEXT ===== */
.hero-text {
  flex: 1;
}

.hero-heading {
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.05;
  color: #022d38;
  text-transform: none;
  position: relative;
  z-index: 2;
  max-width: 100%;
  letter-spacing: 5px;
}

.hero-heading.secondary-font {
  font-family: "Playfair Display", serif;
  font-size: 3vw;
  font-weight: 400;
  margin-top: 15px;
}

/* ===== VIDEO CIRCLE ===== */
.hero-video {
  flex-shrink: 0;
  position: relative;
}

.video-circle {
  width: 500px;   /* increased from 312px */
  height: 500px;  /* increased from 312px */
  border-radius: 50%;
  overflow: hidden;
  margin-left: -40px; /* adjust position relative to text */
}

.video-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.1);
}

/* ===== BUTTONS & SUBHEADING ===== */
.hero-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.hero-subheading {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #022d38;
  text-align: center;
  flex: 1;
}

.hero-btn {
  color: #022d38;
  text-decoration: none;
  border-bottom: 1px solid #022d38;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.hero-btn span {
  font-family: "Montserrat", "Arial", sans-serif; /* force text font */
  font-style: normal;
  font-weight: 500;
  font-variant-emoji: text; /* Safari 17+ respects this */
}

.hero-btn.left span {
  font-size: 1rem;
  margin-left: 6px;
}

.hero-btn:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-section {
    padding: 100px 30px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-heading {
    font-size: 9vw;
    max-width: 100%;
  }

  .video-circle {
    width: 260px;  
    height: 260px;
    margin-top: 30px;
    margin-left: 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
  }

  .hero-subheading {
    order: -1;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}












/* ===== VALUES SECTION ===== */
.values-section {
  background: url("images/blue_down.png") no-repeat center center; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Optional overlay for readability */
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0); /* adjust if you want slight fade over image */
  z-index: 0;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1400px;
}

.value-box {
  background-color: rgb(255, 255, 255);
  padding: 50px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box .icon {
  margin-bottom: 20px;
}

.value-box .icon img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.value-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #022d38;
  margin-bottom: 15px;
}

.value-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #022d38;
}

/* Hover effect */
.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE STYLES ===== */

/* --- Large tablets / small laptops --- */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .value-box {
    padding: 45px 25px;
  }

  .value-box .icon img {
    width: 70px;
  }
}

/* --- Tablets --- */
@media (max-width: 900px) {
  .values-section {
    padding: 60px 40px;
  }

  .value-box h3 {
    font-size: 1.3rem;
  }

  .value-box p {
    font-size: 0.95rem;
  }
}

/* --- Phones --- */
@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .value-box {
    padding: 35px 20px;
  }

  .value-box .icon img {
    width: 60px;
  }

  .value-box h3 {
    font-size: 1.2rem;
  }

  .value-box p {
    font-size: 0.9rem;
  }
}

/* --- Extra small phones (e.g. iPhone SE) --- */
@media (max-width: 480px) {
  .values-section {
    padding: 50px 20px;
  }

  .value-box {
    padding: 30px 18px;
  }

  .value-box .icon img {
    width: 55px;
  }

  .value-box h3 {
    font-size: 1.1rem;
  }

  .value-box p {
    font-size: 0.88rem;
  }
}



/* ===== SERVICES SECTION (original style) ===== */

:root {
  --services-bg: url('images/service_image_background.png'); /* Background for all cards */
}

/* Section wrapper */
.services-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #022d38;
}

/* Headline */
.services-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-headline h2 {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
}

.services-headline .headline-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Grid: 6 columns on big screens */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 2000px;
  min-height: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Assign index (1–6) for slice positioning */
.services-grid .service-item:nth-child(1) { --i: 1; }
services-grid .service-item:nth-child(2) { --i: 2; }
.services-grid .service-item:nth-child(3) { --i: 3; }
.services-grid .service-item:nth-child(4) { --i: 4; }
.services-grid .service-item:nth-child(5) { --i: 5; }
.services-grid .service-item:nth-child(6) { --i: 6; }

/* Card base style */
.service-item {
  position: relative;
  padding: 30px 20px;
  background: #ffffff;
  color: #022d38;
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: color 0.35s ease, background 0.35s ease;
}

/* Big number */
.service-number {
  font-size: 90px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  color: #022d38;
  opacity: 0.9;
  margin-bottom: 200px;
}

/* Title */
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: inherit;
}

/* Description */
.service-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #022d38;
}

/* Swipe indicator (hidden on desktop) */
.service-swipe-indicator {
  display: none;
}

.swipe-arrow {
  font-size: 18px;
  opacity: 0.7;
}

/* ===== IMAGE SLICES ===== */
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--services-bg);
  background-repeat: no-repeat;
  background-size: 600% 100%; /* 6 slices */
  background-position: calc((var(--i) - 1) * (100% / 5)) 50%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.6s ease;
  pointer-events: none;
}

/* Ensure text is above background */
.service-item > * {
  position: relative;
  z-index: 2;
}

/* Hover OR active: show image + invert colors */
.service-item:hover,
.service-item.active {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.service-item:hover::before,
.service-item.active::before {
  opacity: 1;
  transform: scale(1);
}

.service-item:hover .service-desc,
.service-item.active .service-desc {
  color: rgba(255, 255, 255, 0.95);
}

.service-item:hover .service-number,
.service-item.active .service-number {
  color: rgba(255, 255, 255, 0.12);
  opacity: 0.18;
}

/* ===== RESPONSIVE: tablet ===== */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-number {
    font-size: 60px;
    margin-bottom: 120px;
  }
}

/* ===== PHONE: HORIZONTAL SWIPE CAROUSEL ===== */

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-headline h2 {
    font-size: 48px;
  }

  /* Swipe scrolling */
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .service-item {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: default;
  }

  .service-item::before {
    opacity: 1;
    transform: scale(1);
  }

  .service-desc {
    color: rgba(255, 255, 255, 0.95);
  }

  /* 🔹 Numbers fully visible on phone */
  .service-number {
    font-size: 48px;
    margin-bottom: 80px;
    color: #ffffff;
    opacity: 1;
  }

  /* Disable hover change for phone */
  .service-item:hover,
  .service-item.active {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
  }

  .service-item:hover::before,
  .service-item.active::before {
    opacity: 1;
    transform: scale(1);
  }

  /* Show swipe indicator only on phone */
  .service-swipe-indicator {
    display: block;
    margin-top: 15px;
  }

  .swipe-arrow {
    font-size: 18px;
    opacity: 0.7;
  }
}

/* ===== Small phone ===== */

@media (max-width: 480px) {
  .services-headline h2 {
    font-size: 36px;
  }

  .service-number {
    font-size: 40px;
    margin-bottom: 60px;
  }
}















/* ======= Why Us Section ======= */
.why-us-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/blue_up.png") no-repeat center center; /* change image here */
  background-size: cover;
}

/* Box in front of the background */
.content-box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  background: rgb(255, 255, 255); /* adjust color & transparency here */
  padding: 60px 50px;
  flex-wrap: wrap;
}

/* Left: Headline */
.why-us-left {
  flex: 1 1 45%;
}

.why-us-title {
  font-size: 3rem;
  font-weight: 700;
  color: #022d38; /* headline white */
  line-height: 1.2;
}

.animated-word {
  font-family: "Playfair Display", serif; /* different font */
  color: #1e6ad8; /* digital highlight */
  transition: opacity 0.4s ease;
}

/* Right: Paragraph */
.why-us-right {
  flex: 1 1 45%;
  color: #022d38;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .why-us-left,
  .why-us-right {
    flex: 1 1 100%;
  }

  .why-us-title {
    font-size: 2.2rem;
  }

/* ===== Responsive: Services Headline ONLY ===== */
@media (max-width: 1200px) {
  .services-headline h2 {
    font-size: 64px;
  }
  .services-headline .headline-icon {
    width: 32px;
    height: 32px;
  }
  .services-headline {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .services-headline h2 {
    font-size: 48px;
  }
  .services-headline .headline-icon {
    width: 26px;
    height: 26px;
  }
  .services-headline {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .services-headline {
    flex-direction: row; /* keep horizontal alignment */
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .services-headline h2 {
    font-size: 36px;
  }

  .services-headline .headline-icon {
    width: 22px;
    height: 22px;
  }
}
}













/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 80px;
  overflow: hidden;
}

/* Main container */
.contact-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1300px;
}

/* Left: Circular Video */
.contact-video {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Right: Form */
.contact-form {
  background: #022d38;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  padding: 40px;
  width: 100%;
  max-width: 550px;
  color: #022d38;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  color: #022d38;
  background-color: #fff;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
  margin-bottom: 20px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ffffff;
}

.form-checkbox a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffffff;
  color: #022d38;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 60px 30px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-video {
    width: 250px;
    height: 250px;
  }

  .contact-form .form-group {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}










/* Footer */
.footer {
  background-color: #ffffff;
  color: #022d38;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  flex: 1 1 150px;
}

.footer-logo {
  height: 100px;
}

.footer-center {
  flex: 1 1 300px;
  text-align: center;
}

.footer-center p {
  margin: 5px 0;
}

.footer-center .company-name {
  font-weight: 700;
  color: #022d38;
}

.footer-center .tax-info {
  color: #022d38;
}

.footer-right {
  flex: 1 1 200px;
  text-align: right;
}

.footer-right .social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.footer-right .social-icons img {
  height: 24px;
  width: 24px;
}

.footer-right .footer-links {
  margin-top: 10px;
}

.footer-right .footer-links a {
  color: #022d38;
  text-decoration: none;
  border-bottom: 1px solid #022d38;
  padding-bottom: 5px;
  margin-left: 10px;
  font-size: 0.9rem;
}

.footer-right .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    align-items: center;
    flex: unset;
  }

  .footer-right {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-right .social-icons,
  .footer-right .footer-links {
    justify-content: center;
    gap: 10px;
  }
}


/* === CUSTOM TEXT SELECTION COLOR === */
::selection {
  background: rgba(192, 192, 192, 0.5);
  color: #000000;
}

::-moz-selection {
  background: rgba(192, 192, 192, 0.5);
  color: #000000;
}


