* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* HEADER */
.site-header {
  width: 100%;
  background: #0b1f4d;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* TOP HEADER */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px; /* reduced height */
  background: #000;
  gap: 20px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 390px; /* slightly smaller */
  height: 140px;
  display: block;
}

/* CONTACT INFO DESKTOP */
.contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-width: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}

.contact-item i {
  color: #ffd000;
  font-size: 16px;
}

/* DESKTOP NAV */
.desktop-nav {
  background: #11357e;
  padding: 12px 40px;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.desktop-nav ul li a {
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.desktop-nav ul li a:hover {
  color: #ffd000;
}

.desktop-nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffd000;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  background: #ffd000;
  border: none;
  color: #0b1f4d;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  max-width: 85%;
  height: 100vh;
  background: #0b1f4d;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  transition: right 0.35s ease;
  z-index: 2000;
  padding: 30px 20px;
}

.sidebar.active {
  right: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #ffd000;
  font-size: 28px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-bottom: 30px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 22px;
}

.sidebar-links li a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.sidebar-links li a:hover {
  color: #ffd000;
}

/* OVERLAY */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 16px; /* reduced vertical height */
    gap: 6px; /* this decreases the space between logo and menu button */
    position: relative;
  }

  .logo {
    width: 90px;
    margin-bottom: 0; /* remove extra space */
  }

  .contact-info {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: static;
    margin-top: 0; /* remove gap */
  }
}

/* DESKTOP TUNING */
@media (min-width: 769px) {
  .sidebar,
  .sidebar-overlay {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero {
    height: 48vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* VALUES */
.values-section {
  padding: 50px 20px;
  /*background: #f4f6fb;*/
  background: white;
}

.values-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.value-item {
  flex: 1 1 250px;
  max-width: 250px;
  text-align: center;
}

.value-item i {
  font-size: 42px;
  color: #ffd000;
  margin-bottom: 12px;
  display: block;
}

.value-item h2 {
  font-size: 22px;
  color: #0b1f4d;
  margin-bottom: 10px;
  font-weight: 700;
}
.value-item h1 {
  color: #0b1f4d;
}

.value-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .values-container {
    gap: 8px;
  }

  .value-item {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 45px 16px;
  }

  .values-container {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .value-item {
    width: 100%;
    max-width: 380px;
  }

  .value-item i {
    font-size: 38px;
  }

  .value-item h2 {
    font-size: 20px;
  }

  .value-item p {
    font-size: 14px;
  }
}

/* SERVICES */
.services-section {
  padding: 60px 20px;
  background: #f4f6fb;
}

.services-title {
  text-align: center;
  margin-bottom: 35px;
}

.services-title h1 {
  font-size: 34px;
  color: #0b1f4d;
  margin-bottom: 10px;
}

.services-title p {
  font-size: 15px;
  color: #555;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 10px;
  aspect-ratio: 1/1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-card img {
  width: 60%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 20px;
  color: #0b1f4d;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title h1 {
    font-size: 28px;
  }
}

/* CONTACT */
.contact-form {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-heading h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  color: #0b1f4d;
}

.form-heading p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #333;
}

.contact-email-text {
  text-align: center;
  margin-top: 15px;
  color: #555;
  word-break: break-word;
}

@media (max-width: 600px) {
  .contact-form {
    margin: 50px 16px;
    padding: 25px 18px;
  }
}

/* QUICK LINKS */
.quick-links-section {
  background: #0b1f4d;
  padding: 70px 20px;
  color: #fff;
}

.quick-links-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.quick-links-left {
  flex: 1;
  min-width: 0;
}

.quick-links-left h2 {
  font-size: 32px;
  color: #ffd000;
  margin-bottom: 25px;
  font-weight: 700;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 14px;
}

.quick-links-list li a {
  color: #fff;
  font-size: 17px;
  transition: 0.3s ease;
}

.quick-links-list li a:hover {
  color: #ffd000;
  padding-left: 6px;
}

.quick-links-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
  min-width: 0;
}

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: #ffd000;
  color: #0b1f4d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-text {
  min-width: 0;
}

.contact-text h3 {
  font-size: 17px;
  color: #0b1f4d;
  margin-bottom: 5px;
  line-height: 1.4;
  word-break: break-word;
}

.contact-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

@media (max-width: 900px) {
  .quick-links-container {
    gap: 25px;
  }

  .quick-links-left h2 {
    font-size: 28px;
  }

  .contact-text h3 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .quick-links-section {
    padding: 50px 16px;
  }

  .quick-links-container {
    flex-direction: column;
    gap: 30px;
  }

  .quick-links-left {
    width: 100%;
    text-align: left;
  }

  .quick-links-left h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links-list li {
    margin-bottom: 0;
  }

  .quick-links-list li a {
    font-size: 16px;
  }

  .quick-links-right {
    width: 100%;
    gap: 15px;
  }

  .contact-card {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 19px;
  }

  .contact-text h3 {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-text p {
    font-size: 13px;
  }
}

footer {
  width: 100%;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px 15px;
}


.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 50px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover{
    background: #20ba5a;
}