* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #333;
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar .logo {
  font-size: 42px;
  font-weight: 700;
  color: #004A87;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 60px;
  width: auto;
}

.navbar nav {
  display: flex;
  gap: 50px;
}

.navbar a {
  text-decoration: none;
  color: #004A87;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.navbar a:hover {
  color: #00BCD4;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #004A87;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

.mobile-menu.active {
  display: flex;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-menu a {
  padding: 16px 30px;
  text-decoration: none;
  color: #004A87;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 74, 135, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(0, 188, 212, 0.1);
  color: #00BCD4;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #004A87 0%, #00BCD4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.hero.half-height {
  min-height: 55vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero.half-height .hero-wrapper {
  align-items: center;
}

.hero.hero-minimal {
  min-height: 35vh;
  padding-top: 100px;
  padding-bottom: 50px;
}

.hero.hero-minimal .hero-wrapper {
  justify-content: center;
}

.hero.hero-minimal .hero-content {
  text-align: center;
  max-width: 700px;
}

.hero.hero-minimal h1 {
  font-size: 52px;
}

.hero.hero-minimal p {
  font-size: 18px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  max-width: 100%;
  width: 100%;
  padding: 60px 80px;
  position: relative;
  z-index: 2;
  height: auto;
}

.hero-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-content .cta-button {
  padding: 16px 48px;
  background: #ffffff;
  color: #004A87;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: fit-content;
  min-width: 160px;
  text-align: center;
  opacity: 0.9;
}

.hero-content .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.08);
}

.cta-button {
  display: inline-block;
  padding: 16px 50px;
  background: #ffffff;
  color: #004A87;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  touch-action: manipulation;
}

.cta-button {
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  background: #f5f5f5;
}

.cta-button:active {
  transform: translateY(-1px);
}

/* SECTIONS */
.section {
  padding: 120px 50px;
  position: relative;
}

.section h2 {
  font-size: 56px;
  color: #004A87;
  margin-bottom: 50px;
  line-height: 1.2;
  font-weight: 700;
}

.blue {
  background: linear-gradient(135deg, rgba(0, 74, 135, 0.5) 0%, rgba(0, 188, 212, 0.15) 100%), #5BA3D0;
  color: white;
}

.blue h2 {
  color: white;
}

.light-blue {
  background: #f0f7ff;
}

.light-blue h2 {
  color: #004A87;
}

/* CONTAINER */
.container {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.text {
  flex: 1;
  min-width: 320px;
}

.text h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}

.text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
}

.blue .text p {
  color: rgba(255, 255, 255, 0.95);
}

.image {
  flex: 1;
  min-width: 320px;
  overflow: hidden;
  border-radius: 16px;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.8s ease;
}

/* CARDS - 2x2 GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.card {
  padding: 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 400;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #004A87 0%, #003366 100%);
  color: white;
  text-align: center;
  padding: 100px 50px;
}

.stats h2 {
  color: white;
  margin-bottom: 70px;
  font-size: 52px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.stat-item {
  padding: 30px;
}

.stat-item span {
  display: block;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00BCD4;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* SPECIALIZED FOCUS */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.focus-item {
  padding: 50px;
  background: white;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.focus-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,74,135,0.3) 0%, rgba(255,255,255,0.95) 60%);
  z-index: 1;
}

.focus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.focus-item h3 {
  font-size: 20px;
  color: #004A87;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.focus-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* FULL IMAGE */
.full-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 100px 0;
}

.full-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

/* APPROACH SECTION */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.approach-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.approach-number {
  font-size: 56px;
  font-weight: 700;
  color: #00BCD4;
  min-width: 80px;
}

.approach-content h3 {
  font-size: 22px;
  color: #004A87;
  margin-bottom: 15px;
  font-weight: 600;
}

.approach-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.testimonial {
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #00BCD4;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

.testimonial-author {
  font-weight: 600;
  color: #004A87;
  font-size: 15px;
}

/* PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
  align-items: center;
  padding: 40px;
  background: white;
  border-radius: 12px;
}

.partner-logo {
  text-align: center;
  font-size: 20px;
  color: #666;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  color: #00BCD4;
  transform: scale(1.05);
}

/* CONTACT */
.contact {
  background: #004A87;
  color: white;
}

.contact h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 15px;
}

.contact > p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 50px;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-info-item {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, textarea, select {
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}

select option {
  background: #004A87;
  color: white;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER */
.footer {
  background: #003366;
  color: white;
  padding: 60px 50px;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo img {
  height: 35px;
  width: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00BCD4;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
}

/* FLOATING CALL BUTTON */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(91, 163, 208, 0.8);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(91, 163, 208, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.floating-call-btn:hover {
  background: rgba(91, 163, 208, 0.95);
  box-shadow: 0 6px 20px rgba(91, 163, 208, 0.5);
  transform: scale(1.1);
}

.floating-call-btn:active {
  transform: scale(0.95);
}

.floating-call-btn svg {
  transform: rotate(265deg);
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
}

.floating-call-btn:hover svg {
  transform: rotate(20deg) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 20px 30px;
  }

  .navbar .logo {
    font-size: 42px;
  }

  .navbar .logo img {
    height: 50px;
  }

  .section {
    padding: 100px 30px;
  }

  .cta-button {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex !important;
  }

  .navbar {
    padding: 18px 20px;
  }

  .navbar .logo {
    font-size: 26px;
  }

  .navbar .logo img {
    height: 45px;
  }

  .navbar nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .hero-content {
    flex: 1 1 100%;
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-content .cta-button {
    display: block !important;
    width: auto !important;
    margin: 0 auto !important;
    padding: 16px 48px !important;
  }

  .hero-image {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .hero-image img {
    max-width: 100%;
    max-height: 380px;
  }

  .section {
    padding: 120px 20px;
  }

  .section h2 {
    font-size: 40px;
    margin-bottom: 35px;
  }

  .container {
    gap: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .job-card-body {
    padding: 20px;
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .hero-wrapper {
    padding: 30px 15px;
    gap: 30px;
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .section h2 {
    font-size: 32px;
  }

  .section {
    padding: 100px 15px;
    width: 100%;
  }

  .navbar {
    padding: 15px 15px;
    width: 100%;
  }

  .navbar .logo {
    font-size: 26px;
  }

  .navbar .logo img {
    height: 40px;
  }

  .stat-item span {
    font-size: 36px;
  }

  .approach-number {
    font-size: 40px;
  }

  .approach-content h3 {
    font-size: 18px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-item {
    gap: 20px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info, .contact-form {
    width: 100%;
  }

  .cards {
    gap: 15px;
    width: 100%;
  }

  .card {
    padding: 20px;
    width: 100%;
  }

  .focus-item {
    min-height: 280px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .numbers {
    gap: 20px;
  }

  .testimonial {
    padding: 25px;
  }

  .approach-number {
    min-width: 60px;
    font-size: 32px;
  }

  .footer-links {
    gap: 20px;
    font-size: 12px;
  }

  .hero {
    padding-top: 70px;
  }
}