    
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}


.hamburger span {
  width: 24px;
  height: 3px;
  background: #1f3c88;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* ===== GLOBAL ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f8;
  color: #18468D;
}

/* ===== HEADER ===== */
.site-header {
  height: 90px; 
  width: 100%;
  background-color: #DCE1EB;
    position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 100px;         
  width: auto;
  display: block;
   transition: transform 0.3s ease;
   margin-top:-15px;
}


.logo img:hover {
  transform: scale(1.05);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;

  flex-wrap: nowrap; 
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #18468D;
  font-weight: bold;
  font-size: 20px;
  display: block;
}
/* dropdown asos */
.nav-item {
  position: relative;
}
.dropdown {
  position: relative;
}
/* hiring button */
.dropdown-toggle {
  background: none;
  border: none;
  color: #18468D;
  font: inherit;
  cursor: pointer;
  
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  margin-left: 24px;

  transition: color 0.25s ease;
}

.dropdown-toggle:hover {
  color: #ef4444;
}

/* menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: #ffffff;
  min-width: 160px;
  margin-top: 10px;
  padding: 8px 0;

  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* dropdown ichidagi linklar */
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #0f172a;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
  color: #ef4444;
}
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav a {
    position: relative;
  color: #18468D;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: color 0.25s ease;
}
.nav a:hover {
  color: #ef4444;
}

/* pastki chiziq */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ef4444;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}
/* ===== MAIN ===== */
.page {
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: #ffffff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-bottom: 80px; /* header balandligi ayirildi */
  padding-top: 90px;

   background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 500px;
  overflow: hidden;


  margin-bottom: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);
  animation: heroZoom 18s ease-in-out infinite;

  z-index: 1;
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
.hero-overlay {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.hero-content {
  max-width: 600px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 600px;
    animation-delay: 0.1s;
}

.hero h1 {
  font-size: 42px;
  color: #18468D;
  margin-bottom: 10px;
}

.hero h3 {
  font-size: 18px;
  color: #18468D;
  margin-bottom: 12px;
}

.hero p {
  max-width: 600px;
  color: #18468D;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  width: fit-content;
  background-color: #e53935;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #c62828;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STATS ===== */
.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  margin-left: 10px;
  margin-right: 10px;
  
}

.stat-card {
  flex: 1;
  background-color: #f4f6f8;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
    align-items: flex-start;

  transition: all 0.3s ease;
}

.stat-card h2 {
  color: #18468D;
  margin-bottom: 6px;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
/* ===== WHAT WE DO ===== */
.what-we-do h2 {
  text-align: center;
  color: #18468D;
  margin-bottom: 10px;
  
}

.subtitle {
  text-align: center;
  color: #18468D;
  
  margin-bottom: 40px;
}

.service-card {

  background: #f4f6f8;
  border-radius: 12px;
  padding: 30px;
  margin: 10px;
  gap: 20px;
  align-items: flex-start;

  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.service-icon {
  width: 48px;
  height: 48Px;
  background: #e9f0fb;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon i {
  color: #1f4fd8; /* asosiy ko‘k rang */
  font-size: 22px; 
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: #1f4fd8;
}

.service-card:hover .service-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.service-card h3 {
  color: #234a84;
  margin-bottom: 8px;
   transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #1f4fd8;
}
@keyframes iconRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-10deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.service-card:hover .service-icon i {
  animation: iconRotate 0.5s ease-in-out;
}
.section-divider {
  max-width: 1440px;
  height: 2px;
  background-color: #DCE1EB;

  margin: 60px 0;
}
.section-divider-in {
  max-width: 1440px;
  height: 2px;
  background-color: #DCE1EB;

  margin-bottom: 10px;
}
/* ===== WHO WE ARE ===== */

.who-we-are {
  
  background: #FFF;
  padding: 40px 0;
  transition: all 0.3s ease;
}
.who-we-are:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transform: translateY(-4px);
}
.who-wrapper {
  padding-left: 15px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 12px;
  background-color: #f4f6f8;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  transition: all 0.3s ease;
  gap: 48px;
  align-items: center;
}


.who-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.section-label {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #18468D;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.who-text h2 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #18468D;
}

.who-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #18468D;
  max-width: 520px;
}
.who-buttons {
  
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  padding: 12px 26px;
  height: 44px;
  min-width: 120px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.btn-primary {
  background: #ef4444;
  color: #ffffff;
  border: 2px solid transparent;
    
}

.btn-primary:hover {
  background: #dc2626;
 transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.btn-outline {
   background-color: #ef4444;
  color: #ffffff; 
  border: 2px solid #dc2626;
  
}

.btn-outline:hover {
 
    background-color: #dc2626;
  
  color: #fff;
  transform: translateY(-2px);
}
.who-image {
  overflow: hidden;
  border-radius: 16px;
}
.who-image img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
    transition: transform 0.4s ease;
}
.who-image:hover img {
  transform: scale(1.05);
}
/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background: #DCE1EB;
  padding-top: 40px;
  
 
}
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
 margin-top: -40px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 30px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #1f3c88;
  font-size: 14px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1f3c88;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #1f3c88;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #e63946;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: 22px;
  transition: transform 0.25s ease;
}

.footer-socials img:hover {
  transform: translateY(-3px) scale(1.1);
}
.footer-socials a {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3c88;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #e63946;
  color: #ffffff;
  transform: translateY(-3px);
}

/* bottom line */
.footer-bottom {
  border-top: 3px solid #cfd6e4;
  text-align: center;
  padding: 16px 10px;
  font-size: 13px;
  color: #1f3c88;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  width: 100%;
  height: 460px;
  background-image: url("../images/about-hero.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;

  display: flex;
  align-items: center;     /* vertikal markaz */
  justify-content: center; /* gorizontal markaz */

  text-align: center;
  padding: 40px;
}



.about-hero-content {
  max-width: 700px;
}

.about-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #1b377e;
  margin-bottom: 14px;
}

.about-hero h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1b377e;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 20px;
  font-weight: 700;
  color: #1b377e;
  line-height: 1.6;
}
/* ===== WHO WE ARE ===== */
.who-we-are {
   background: #DCE1EB;
  padding: 60px 0;
}
.who-we-are-wrapper {
  margin-left: 10px;
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.who-card {
  background: #fff;
  border-radius: 16px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.who-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.who-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.who-text {
  font-size: 18px;
  line-height: 1.6;
  color: #18468D;
}
.who-image img {
  width: 100%;
  height: 250px;
  transition-delay:0.15s ;
  border-radius: 16px;
  object-fit: cover;
   transition: transform 0.4s ease;
}
.who-image img:hover {
  transform: scale(1.03);
}
.principles {
  margin-top: -60px;
  background: #fff;
  padding: 60px 0;
  margin-bottom: -60px;
}

.principles-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #18468D;
  margin-bottom: 30px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #DCE1EB;
}
.principle-card {
  background: #ffffff;
  border-radius: 16px;
  margin: 15px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.principle-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #18468D;
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #18468D;
}
.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0e7ff;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.principle-card:hover .principle-icon {
  background: red;
  color: #ffffff;
  transform: scale(1.1);
}
.why-choose {
  background: #DCE1EB;
  padding-top: 80px;
  
}

.section-title {
  background: #DCE1EB;
  font-size: 32px;
  font-weight: 700;
  color: #18468D;
  padding-left: 20px;
  padding-bottom: 30px;
}

.section-subtitle {
  background: #DCE1EB;
  color: #18468D;
   font-size: 20px;
  padding-left: 15px;
  padding-bottom: 40px;
}

.why-grid {
  background: #DCE1EB;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  margin: 15px;
  color: #18468D;
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e0e7ff;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-icon {
  background: red;
  color: #ffffff;
}

.why-card h3 {
  
  font-size: 18px;
  color: #18468D;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #18468D;
  line-height: 1.6;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0s; }
.why-card:nth-child(3) { transition-delay: 0s; }

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

/* chapdan chiqish */
.reveal-left {
  transform: translateX(10px);
}

/* o‘ngdan chiqish */
.reveal-right {
  transform: translateX(0px);
}

/* aktiv bo‘lganda */
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* cta section */
.cta-section{
  text-align: center;
  padding: 80px 20px;
  background: #DCE1EB;
  max-width: 1440px;

  
}

/* text */
.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #18468D;
  text-align: center;
  margin-bottom: 15px;
}

.cta-section p {
  color: #18468D;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: center;
}

/* buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center ;
  gap: 15px;
}

/* umumiy button */
.btn {
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* qizil */
.btn-primary {
  background: #e53935;
  color: #fff;
}

.btn-primary:hover {
  background: #c62828;
  transform: translateY(-2px);
}

/* ikkinchi */
.btn-secondary {
  background: #ff4d4d;
  color: #fff;
}

.btn-secondary:hover {
  background: #e53935;
  transform: translateY(-2px);
}
/* =========================
   HIRING DRIVERS HERO
========================= */
.hiring-hero {
  
  height: 560px;
  background-image: url("./images/hiring.png"); /* rasm path */
  background-size: cover;
  background-position: center;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;


   max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 20px;
 
}

.sms-agreement {
  margin: 16px 0 20px;
  font-size: 14px;
  color: #333;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 3px;
  cursor: pointer;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}



/* =========================
   FORM SECTION
========================= */
.hiring-form-section {
  background: #f1f3f7;
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
}

.hiring-form-section h2 {
  font-size: 28px;
  color: #0d3b78;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #5f6b7a;
  margin-bottom: 30px;
}

/* =========================
   FORM
========================= */
.hiring-form {
  max-width: 420px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiring-form input,
.hiring-form select {
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: #fff;
  font-size: 14px;
}

.hiring-form input:focus,
.hiring-form select:focus {
  outline: 2px solid #0d3b78;
}

.hiring-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #e53935;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiring-form button:hover {
  background: #c62828;
  transform: translateY(-2px);
}

/* =========================
   Contact-form
========================= */
.contact-hero {
  background: #fff;
  padding: 60px 0;
  

}

.contact-hero-inner {
  
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  
}
  

.contact-hero h1 {
  padding-left: 40px;

  font-size: 36px;
  color: #1e3a8a;
}

.contact-hero p {
  max-width: 420px;
  color: #475569;
  padding-right: 10px;
}

contact-section {
  
  background:#DCE1EB;
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  align-items: center;
  background-color: #DCE1EB;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

/* FORM */
.form-group {
  
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 10px;
}

.form-group label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1e3a8a;
  transition: color  0.3s ease;
}

.form-group input,
.form-group textarea {
  padding: 16px 18px;
  border-radius: 12px;
  border: none;
  background: #f3f4f6;
  font-size: 15px;
  transition: all 0.3s ease;
}
.form-group input:hover,
.form-group textarea:hover {
  background: #eef2ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: #2563eb;
}
.form-group:focus-within label {
  color: #2563eb;
}
button {
  background: #ef4444;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}
.contact-form {
  background:#DCE1EB;
  margin-right: 10px;
  padding: 15px;
  border-radius: 16px;
   
}

.contact-form .row {
  display: flex;
  background-color: #DCE1EB;
  border-radius: 10px;
  padding-left: 5px;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.contact-form textarea {
  margin-top: 20px;
  height: 280px;
  resize: none;
}

.contact-form button {
  margin-top: 16px;
  background: #e53935;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;

}


.info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  margin-right: 50px;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.info-box *{
  pointer-events: none;
}
.info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.info-box:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.info-box:hover .info-icon {
  background: #2563eb;
  transform: scale(1.1);
}

.info-box:hover .info-icon i {
  color: #ffffff;
}
.info-box p {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  transition: all 0.3s ease;
}

.social-icons a i {
  color: #1e3a8a;
  font-size: 18px;
}

.info-icon i {
  font-size: 22px;
  color: #2563eb;
  transition: all 0.35s ease;
}
.info-box i {
  font-size: 22px;
  color: #1e40af;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 14px;
  color: #1e3a8a;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;

}

.socials img {
  width: 22px;
  transition: transform 0.25s ease;
}

.socials img:hover {
  transform: translateY(-3px) scale(1.1);
}
.socials a {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 16px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #e63946;
  color: #ffffff;
  transform: translateY(-3px);
}
/* ================= FORM FEEDBACK ================= */

.success-message {
  margin-top: 16px;
  color: #2e7d32;
  font-weight: 600;
  display: none;
}

input.error,
textarea.error {
  border: 2px solid #e53935;
  background: #fff5f5;
}

input,
textarea {
  transition: border 0.3s ease, background 0.3s ease;
}
input.error {
  border: 2px solid #e53935;
  background: #fff5f5;
}



@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    height: auto;
    padding: 12px 16px;
    gap: 10px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #e9edf3;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    opacity: 0;
    display: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    padding: 20px 0;
    border-radius: 12px;

    opacity: 1;
    top: 64px;
    width: 100%;;
    transform: translateY(0);
    
  }

  .hamburger {
    display: flex;
  }

   .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .who-we-are {
    flex-direction: column;
  }

  .who-we-are img {
    width: 100%;
    margin-top: 20px;
  }
    .stats {
    flex-direction: column;
    gap: 16px;
  }

  .card {
    width: 100%;
  }
 .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    margin-top: 0;
  }

  .info-box {
    margin-right: 0;
  }

  .contact-info {
    margin-left: 0;
  }

  html, body {
    overflow-x: hidden;
  }
   .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

   .footer-socials {
    flex-direction: column;
    align-items: center; 
    gap: 10px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }

  .contact-info {
    width: 100%;
  }


  .form-row {
    flex-direction: column;
    gap: 14px;
  }

  /* LABEL + INPUT */
  .contact-form label {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 16px;
    padding: 14px 16px;
  }

  /* MESSAGE */
  .contact-form textarea {
    min-height: 140px;
  }

  /* BUTTON */
  .contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
    .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-box {
    text-align: center;
  }
      .social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
  }
    .contact-header {
    text-align: center;
  }

  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 15px;
  }
    .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  
  .contact-form .row {
    flex-direction: column;
    gap: 16px;
  }

 
  .contact-form .form-group {
    width: 100%;
  }

  
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }

  
  .contact-info {
    width: 100%;
    margin-left: 30px;
  }

}