:root {
  --navy: #002366;
  --accent: #ff7a1a;
  --muted: #f4f6f8;
  --card-deep: #002366;
  --soft: #e9f0f6;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #1b2640;
  margin: 0 !important;
  padding: 0;
  background: #fff
}

/* Topbar */
.topbar {
  background: var(--navy);
  font-weight: 500;
  font-size: 0.95rem
}

/* Header */
.logo {
  height: 56px;
  width: auto
}

.whatsapp-icon {
  position: fixed;
  /* makes it stay on screen */
  bottom: 20px;
  /* distance from bottom */
  right: 20px;
  /* distance from right */
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}


/* Hero */
.hero {
  background: url('image/img home.jpg') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
}






/* Footer */
footer {
  background: var(--navy);
  color: #fff
}

/* Mobile menu links */
.mobile-menu li {
  border-bottom: 1px solid #eee
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600
}

/* Responsive adjustments */
@media(min-width:768px) {
  .hero-title {
    font-size: 3rem
  }
}

footer {
  padding: 50px 0;
  background: #002366;
  text-align: center;
}

footer a {
  color: #d3d4db;
  text-decoration: none;
  font-size: 1rem;
}

footer a:hover {
  color: #fff;
}

/* Top Navigation */
.footer-nav a {
  margin: 10px 15px;
  display: inline-block;
}



/* Big left image */
.big-img {

  object-fit: cover;
  border-radius: 0;
  max-width: 100%;
  height: auto;

}

/* Right column layout */
.right-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* fill same height as left image */
  gap: 10px;
}

/* Small images row */
.small-images-row {
  display: flex;
  gap: 10px;
  flex: 1;
  /* takes half of right column */
}

.small-images-row img {
  flex: 1;
  /* each small image takes 50% width */
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* contact.css */

/* Left Card Style */
.contact-info-card {
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

/* Form Card */
.contact-form-card {
  border-radius: 10px;
  background: #ffffff;
}

/* Status Message */
#status {
  font-size: 14px;
  font-weight: 600;
}

#status.success {
  color: #2e7d32;
}

#status.error {
  color: #d32f2f;
}


/* Text container */
.text-container {
  flex: 1;
  /* bottom half of right column */
  background-color: #F5F5F5;
  border-radius: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-container h3 {
  font-family: 'Gotham', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
  /* responsive */
  line-height: 1.2;
  text-align: center;
}

.text-container {
  flex: 1;
  /* fills remaining height */
  background-color: #F5F5F5;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroabout {
  background:  url('image/img about.jpg') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: white;
}

.heroservices {
  background: url('image/img services.jpg') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: white;
}

.herocontact {
  background:  url('image/img contact.jpg') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: white;
}

h2.section-title.text-orange {
  color: #ff7a1a !important;
  /* Fruit orange */
}

/* Make the two small images stay side-by-side */
.small-images-row {
  display: flex;
  gap: 10px;
  /* Space between images */
}

.small-images-row img {
  width: 50%;
  /* Always half width */
  height: auto;
  object-fit: cover;

}



/* Optional: fix spacing on smaller devices */
@media(max-width: 576px) {
  .text-container {
    height: auto;
    padding: 20px;
  }
}

.img-right-edge {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}


.title {
  font-family: 'Gotham', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 6vw, 64px);
  /* Responsive font */
  line-height: 1.2;
  color: #ffffff;
}

.title span {
  font-weight: 700;
  /* bold for accents */
}

.title-accent {
  color: #FF6600;
}

.responsive-fs {
  font-size: 0.9rem !important;
  /* fs-5 equivalent */
}

/* Medium screens and up (md, lg, xl) */
@media (min-width: 768px) {
  .responsive-fs {
    font-size: 2.5rem !important;
    /* fs-1 equivalent */
  }
}



