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

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0px; 
  left: 0;
  width: 100%;
  padding: 16px 50px;
  background: #ffffff;
  color: #000000;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.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 MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #484343;
  transition: 0.3s;
  border-radius: 3px;
}

.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);
}


.contact-flex-section {
  margin-top: 500px; 
}

.sub-header-content {
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* For better visibility on images */
  padding-top: 250px;
}

.banner-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.banner-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.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;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
}


/* --- Contact Flex Section --- */
.contact-flex-section {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.contact-flex-container {
  display: flex;
  max-width: 2500px;
  width: 155vh;
  min-width: 1000px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  min-height: 500px;
}

.contact-left,
.contact-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.contact-left {
  background: #f1e9e9;
}

.contact-video {
  width: 95%;
  max-width: 370px;
  max-height: 460px;
  min-width: 240px;
  min-height: 190px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  display: block;
}

.contact-right {
  background: #fff;
  padding: 45px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 380px;
}

.contact-right h2 {
  color: #010101;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-form-styled {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-form-styled input, 
.contact-form-styled textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form-styled input:focus,
.contact-form-styled textarea:focus {
  outline: none;
  border-color: #0f3448;
  background: #fff;
}

.contact-form-styled textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-appointment {
  margin-top: 8px;
  padding: 12px 0;
  background: #0f3448;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-appointment:hover {
  background: #ff0000;
}


/* --- Reach Us Section --- */
.reachus-section {
  padding: 70px 0 40px 0;
  background: #fafbfc;
  text-align: center;
}

.reachus-title {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #222;
}

.reachus-subtitle {
  color: #546e7a;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.reachus-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  max-width: 1050px;
  margin: 0 auto;
}

.reachus-card {
  background: #fff;
  box-shadow: 0 6px 28px rgba(40,60,89,0.09);
  border-radius: 18px;
  padding: 36px 28px 26px 28px;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reachus-icon {
  width: 58px;
  height: 58px;
  background: #fae3e3;
  color: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.reachus-card h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
  color: #222;
}

.reachus-card p {
  color: #657488;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.reachus-label {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #263238;
}

.reachus-label span {
  font-weight: 600;
  color: #0288d1;
}

.reachus-btn {
  display: block;
  padding: 9px 0;
  width: 170px;
  margin: 0 auto 8px auto;
  border-radius: 4px;
  color: #fff;
  background: #25d366;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-size: 0.98rem;
  transition: background 0.24s;
}

.reachus-btn.reachus-wa:hover {
  background: #20b958;
}



/* --- Office Locations --- */
.office-locations {
  background: #f8fafc;
  padding: 60px 20px 50px 20px;
  text-align: center;
  margin-bottom: 100px;
}

.office-title {
  font-size: 2.2rem;
  margin-bottom: 6px;
  color: #212121;
}

.office-subtitle {
  color: #708090;
  margin-bottom: 40px;
  font-size: 1.06rem;
}

.office-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.office-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  min-width: 400px;
  max-width: 550px;
  flex: 1 1 450px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.office-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.office-title-group {
  display: flex;
  flex-direction: column;
}

.office-card h3 {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.office-country {
  font-size: 0.95rem;
  color: #000;
  margin-top: 2px;
  font-weight: 400;
}

.office-detail {
  margin-bottom: 18px;
  color: #4d5963;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.office-detail i {
  color: #ff0000;
  font-size: 1rem;
  margin-top: 3px;
  min-width: 18px;
}

.office-info {
  flex: 1;
  line-height: 1.6;
  color: #000;
}

.office-info span {
  font-size: 0.88rem;
  color: #999;
  font-weight: 400;
}

.office-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

.office-btn {
  padding: 10px 0;
  flex: 1;
  text-align: center;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  background: #ff0000;
  text-decoration: none;
  transition: background 0.22s;
  cursor: pointer;
}

.office-btn.whatsapp {
  background: #25d366;
}

.office-btn.call:hover {
  background: #b71c1c;
}

.office-btn.whatsapp:hover {
  background: #20b958;
}

.animate-from-right, .animate-from-left {
 opacity: 0;
transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

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

.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: #ffff;
  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: #000;
    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: #fff;
    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) {
  .contact-flex-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0 0 0;
    margin-top: 100px;
    width: 100vw;
    box-sizing: border-box;
  }
  .contact-flex-container {
    display: flex;
    flex-direction: column;  /* KEY: stacks children vertically */
    width: 100vw;
    min-width: 0 !important;
    max-width: 100vw !important;
    border-radius: 0;
    box-shadow: none;
    min-height: unset !important;
  }
  .contact-left, .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: unset !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    border-radius: 0;
    padding: 0;
  }
  .contact-left {
    padding: 16px 0 0 0;
    background: #f1e9e9;
    border-radius: 0;
  }
  @media (max-width: 767px) {
  .contact-flex-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0 0 0;
    margin-top: 500px;
    width: 100vw;
    box-sizing: border-box;
  }
  .contact-flex-container {
    display: flex;
    flex-direction: column;  /* KEY: stacks children vertically */
    width: 100vw;
    min-width: 0 !important;
    max-width: 100vw !important;
    border-radius: 0;
    box-shadow: none;
    min-height: unset !important;
  }
  .contact-left, .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: unset !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    border-radius: 0;
    padding: 0;
  }
  .contact-left {
    padding: 16px 0 0 0;
    background: #f1e9e9;
    border-radius: 0;
  }
  .contact-video {
    width: 93vw !important;
    max-width: 330px;
    min-width: 140px;
    max-height: 190px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
  .contact-right {
    align-items: center;
    padding: 27px 5vw;
    min-width: 0;
    width: 100vw !important;
  }
}

  .contact-right {
    align-items: center;
    padding: 27px 5vw;
    min-width: 0;
    width: 100vw !important;
  }
}

