* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #222;
    background: #fff;
}



/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 50px;
  background: #ffffff;
  color: #000000;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.45rem;
  font-weight: bold;
  color: #000000;
  gap: 0px;
}
.logo-img {
  height: 60px;
  width: auto;
  margin-right: 5px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}
.nav-links li {
  margin-left: 18px;
}
.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.22s;
}
.nav-links a:hover,
.nav-links .active {
  color: #ff3535;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1200;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #aba7a7;
  border-radius: 3px;
}

/* Hamburger Animation */
.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(7px, -7px);
}





.sub-header {
  position: relative;
  height: 70vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.banner-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slider img.active {
  opacity: 1;
}


.about-page {
  background-color: #fff;
  padding: 60px 0;
}

.about-container {
  display: flex;
  align-items: stretch;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-image {
  flex: 1.2 1 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-content {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  color: #153c6b;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 0;
  text-align: left;
}




/* ===== OUR STORY SECTION - BIGGER IMAGE ===== */
.our-story-section {
  background: #f9fafc;
  padding: 64px 0;
}

.our-story-container {
  display: flex;
  align-items: stretch;
  gap: 50px; /* Increased gap */
  max-width: 1200px; /* Increased container width */
  margin: 0 auto;
  padding: 0 24px;
}

.our-story-photo {
  flex: 1.3 1 450px; /* More space for image */
  max-width: 550px; /* Bigger max width */
  min-height: 400px; /* Taller minimum height */
  display: flex;
  margin-right: 100px;
  align-items: stretch;
  justify-content: center;
}

.our-story-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.our-story-content {
  flex: 2 1 500px;
}

.our-story-content h2 {
  color: #153c6b;
  font-size: 2rem;
  margin-bottom: 18px;
}

.our-story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #233245;
}

.our-story-content ul {
  margin-bottom: 20px;
  padding-left: 18px;
}

.our-story-content ul li {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #265cad;
}

.mission-vision-section {
  background: #fafbfc;
  padding: 64px 0;
}

.mission-vision-container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 38px;
  padding: 0 24px;
}

.mission-vision-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.mission-vision-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(20,40,60,0.10);
}

.mission-vision-content {
  flex: 2 1 600px;
}

.mission-vision-content h2 {
  font-size: 2rem;
  color: #23292d;
  margin-bottom: 22px;
  letter-spacing: .5px;
  text-align: left;
}

.mv-cards {
  display: flex;
  gap: 22px;
}

.mv-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(80,90,110,0.09);
  flex: 1 1 250px;
  min-width: 220px;
}

.mv-card h3 {
  font-size: 1.25rem;
  color: #181b25;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 1.07rem;
  color: #384156;
  line-height: 1.65;
  margin: 0;
}

/* world map section */
.world-map-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.world-map-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
}

.world-map-img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(50,70,120,0.08);
}

.locations-wrapper {
  margin-top: 48px;
  margin-bottom: 52px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.world-map-heading {
  font-size: 2rem;
  color: #12315a;
  font-weight: 700;
  margin-bottom: 26px;
  text-align: center;
}

/* Country Labels */
.country-label {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 1.12rem;
  font-weight: 600;
  color: #222;
  background: rgba(255,255,255,0.90);
  border-radius: 18px;
  padding: 5px 14px 5px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  z-index: 2;
}

.country-label.india {
  top: 43%;
  left: 66.3%;
  color: #b349eb;
}

.country-label.oman {
  top: 38.8%;
  left: 61.3%;
  color: #eabf34;
}

.country-label .fa-map-marker-alt {
  margin-right: 7px;
  font-size: 1.18rem;
}
/* Initial state (hidden and shifted) */
.animate-from-right, .animate-from-left {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}

.animate-from-right {
  transform: translateX(80px);
}
.animate-from-left {
  transform: translateX(-80px);
}

/* When in viewport, show and slide in */
.in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b958;
    transform: scale(1.1);
}



/* ===== FOOTER TOP SECTION ===== */
.footer-top {
  background: #ff0000;
  padding: 40px 0 70px;
  position: relative;
  color: #fff;
  overflow: visible;
}

.footer-top-content {
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-text {
  max-width: 400px;
}

.footer-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-text p {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.9;
}

.footer-call {
  background: #fff;
  color: #ff4b2b;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.footer-call i {
  font-size: 1.2rem;
}

/* Footer Top Image Overlay */
.footer-image {
  position: absolute;
  right: 40%;
  bottom: -5px;
  z-index: 4;
}

.footer-image img {
  width: 220px;
  max-width: 100%;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.footer-image img:hover {
  transform: scale(1.05);
}


/* ===== FOOTER MAIN ===== */
.footer-main {
  background: #ffffff;
  color: #000000;
  padding: 60px 0;
}

/* Grid for 4 equal columns */
.footer-container {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
  align-items: start;
}

/* Footer Logo Section */
.footer-logo-section img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo-section p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff4b2b;
}

/* Footer Columns */
.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 2px solid #ff4b2b;
  display: inline-block;
  padding-bottom: 5px;
}
.footer-column img{
  height: 200px;   /* or your preferred size */
  width: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer-column h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f0c14b;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li i {
  font-size: 0.8rem;
  color: #ff4b2b;
}

.footer-column a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ff4b2b;
}

/* Footer Bottom */
.footer-bottom {
  background: #003a45;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}
.copyright {
  background-color: #000000;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  margin-top: 20px;
}

.copyright-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer-image {
    display: none;
  }}
@media (max-width: 767px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 98%;
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .company-break {
    display: block;
  }
}
@media (min-width: 768px) {
  .company-break {
    display: inline;
  }
}
@media (max-width: 767px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    padding: 12px 10px;
    position: fixed;
    width: 100vw;
    z-index: 1101;
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    gap: 2px;
    max-width: 68vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: static;
    cursor: pointer;
    z-index: 1201;
  }
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: #000;
    box-shadow: -8px 0 30px rgba(0,0,0,0.17);
    padding: 60px 0 0 0;
    display: none;
    z-index: 1200;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 32px;
    padding-left: 32px;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.4rem;
    border-radius: 12px;
    display: block;
    padding: 18px 0 8px 0;
    background: transparent;
    transition: background 0.18s;
    text-align: left;
    width: 100%;
  }
  .nav-links a:hover,
  .nav-links li.active a {
    background: #ff0000;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    background: #ffffff;
    padding: 12px 10px;
    z-index: 1101;
  }
  .logo { max-width: 68vw; }
  .hamburger { display: flex; z-index: 1201; }
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: #000;
    box-shadow: -8px 0 30px rgba(0,0,0,0.17);
    padding: 60px 0 0 0;
    display: none;
    z-index: 1200; /* Ensure above navbar */
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.4rem;
    padding: 18px 0 8px 32px;
    display: block;
    width: 100%;
}}
@media (max-width: 767px) {
  .our-story-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px !important;
    padding: 0 3vw !important;
    max-width: 100vw;
    margin: 0;
  }
  .our-story-photo {
    margin-right: 0;
    width: 100%;
    min-height: unset;
    justify-content: center;
    align-items: center;
    max-width: 420px;
  }
  .our-story-photo img {
    width: 97vw;
    max-width: 340px;
    height: auto;
    border-radius: 11px;
  }
  .our-story-content {
    flex: unset;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .our-story-content h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    text-align: center;
  }
  .our-story-content p {
    font-size: 1rem;
    line-height: 1.58;
    text-align: center;
    margin-bottom: 14px;
  }
  .our-story-content ul {
    text-align: left;
    width: 96vw;
    max-width: 340px;
    margin: 0 auto 12px auto;
    padding-left: 17px;
  }
}
@media (max-width: 767px) {
  .mission-vision-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 100vw;
    padding: 0 4vw;
  }
  .mission-vision-image {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .mission-vision-image img {
    width: 93vw;
    max-width: 340px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(20,40,60,0.09);
  }
  .mission-vision-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .mission-vision-content h2 {
    font-size: 1.18rem;
    margin-bottom: 15px;
    text-align: center;
  }
  .mv-cards {
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }
  .mv-card {
    min-width: 0;
    width: 98vw;
    max-width: 350px;
    margin: 0 auto;
    padding: 18px 8px;
  }
  .mv-card h3 {
    font-size: 1rem;
  }
  .mv-card p {
    font-size: 0.98rem;
  }
}
@media (max-width: 767px) {
  .locations-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 16px;

  .country-label {
  font-size: 0.5rem; /* Reduce from 1.12rem or current size */
  /* Optionally adjust padding too */
  padding: 4px 10px 4px 6px;
}

  }
}
