* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
}
a{
  text-decoration: none;
  color: white;
  font-size: 18px;
}

body {
  background: #ffffff;
  color: #222;
}
/* NAVBAR FIXED */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background: #ffffff;
  z-index: 99999; /* ensures always above slider */
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  height: fit-content;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f4b400;
  height: fit-content;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  right: 10%;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.company {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

/* RIGHT LINKS */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #164378;
  text-decoration: none;
  font-weight: 900;
  font-size: 25px;
}
.nav-links a:hover {
  color: #e80c0c;
  text-decoration: none;
  font-weight: 900;
}

/* HAMBURGER */
/* ===== NEW MENU BUTTON ===== */

.hamburger {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #e80c0c;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  left: 2%;
  font-family: sans-serif;
  padding: 20px 25px 20px 25px;
}
.hamburger:hover{
  background: #e63946;
}

.hamburger p {
  color: white;
  font-weight: 300;
  font-size: 15px;
}

/* 2 lines */
.spanDiv {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spanDiv span:nth-child(1) {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}
.spanDiv span:nth-child(2) {
  width: 15px;
  height: 2.5px;
  background: rgb(0, 0, 0);
  border-radius: 3px;
  transition: 0.3s;
  position: relative;
  left: 10px;
}
.spanDiv span:nth-child(3) {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* click animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #e80c0c;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  transition: 0.4s;
  z-index: 99998;
}

.side-menu.show {
  right: 0;
}

.side-menu a {
  color: white;
  padding: 18px 30px;
  text-decoration: none;
}
.side-menu a:hover {
  color: white;
  background-color: black;
  padding: 18px 30px;
  text-decoration: none;
}

/* MOBILE */

@media (max-width: 1368px) {
  .nav-links {
    display: none;
  }

  .logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }

  .company {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    white-space: nowrap;
  }

  .company {
    font-size: 10px;
  }
  .nav-left {
    display: flex;
    align-items: center;
    gap: 0px;
    background-color: #e80c0c;
    height: 60px;
    position: relative;
    right: 20px;
    padding: 10px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    border-radius: 100px;
    background: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: sans-serif;
  }
  .hamburger:hover{
    background: none;
  }

  .hamburger p {
    display: none;
  }
    @media (max-width: 425px) {
    .hamburger .spanDiv{
      position: relative;
      margin-left: 50%;
    }
  }

  @media (max-width: 420px) {
    .hamburger .spanDiv{
      position: relative;
      margin-left: 50%;
    }
  }
    @media (max-width: 325px) {
    .hamburger .spanDiv{
      position: relative;
      margin-left: 10%;
    }
    .spanDiv span:nth-child(1){
      width: 1px;
    }
  }

  /* 2 lines */
  .spanDiv {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    right: 100%;
  }

  .spanDiv span:nth-child(1) {
    width: 26px;
    height: 2px;
    background: rgb(0, 0, 0);
    border-radius: 3px;
    transition: 0.3s;
  }
  .spanDiv span:nth-child(2) {
    width: 15px;
    height: 2.5px;
    background: rgb(0, 0, 0);
    border-radius: 3px;
    transition: 0.3s;
    position: relative;
    left: 10px;
  }
  .spanDiv span:nth-child(3) {
    width: 26px;
    height: 2px;
    background: rgb(0, 0, 0);
    border-radius: 3px;
    transition: 0.3s;
  }

  /* click animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 450px) {
  .spanDiv {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    right: 150%;
  }
}
@media (max-width: 768px){
  .co{
    height: 70vh;
  }
}
/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #0a192f;
}

/* TRACK */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

/* SINGLE SLIDE */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  padding: 120px;
}

.office-info {
  opacity: 0;
  transition: opacity 0.3s;
}

.office-info.show {
  animation: blinkShow 0.9s ease forwards;
}

@keyframes blinkShow {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slideinfo {
  min-width: 100%;
  height: 100%;
  position: relative;
  padding: 120px;
  display: flex;
  flex-direction: row;
  background-color: #000000;
  opacity: 0.99;
}
.slide img:hover {
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 608px) {
  .slideinfo {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 20px;
  }
  .slideinfo img {
    min-width: 100%;
    height: 80vh;
    position: relative;
    right: 1%;
    object-fit: contain;
  }
  .slideinfo p {
    min-width: none;
  }
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slideinfo {
  gap: 20px;
}
.slideinfo img {
  width: 50vw;
  height: 50vh;
  position: relative;
  right: 1%;
  object-fit: fill;
}
.slideinfo p {
  line-height: 33px;
  font-size: 20px;
  color: #fff;
  text-indent: 20px;
  width: 100%;
}

/* LOCATION TEXT */
.caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 28px;
  font-size: 22px;
  font-weight: 600;
  color: rgb(0, 0, 0);

  background: rgba(0, 0, 0, 0.35);
  background-color: #f4b400;
  backdrop-filter: blur(8px);
  border-radius: 40px;
  letter-spacing: 1px;

  animation: fadeUp 1s ease;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .caption {
    font-size: 18px;
    bottom: 25px;
  }
}

.location {
  padding: 80px 20px;
  text-align: center;
  /* font-family: Poppins, sans-serif; */
  background-color: rgb(255, 238, 238);
}

.location h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  color: #777;
  margin-bottom: 50px;
}

/* GRID */
.card-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* TEXT CONTENT */
.content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content p {
  font-size: 15px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* BUTTON */
.content a {
  background: #e63946;
  color: white;
  padding: 10px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.content a:hover {
  background: #c1121f;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 600px) {
  .card {
    height: 300px;
  }
}
@media (max-width: 450px) {
  .slide {
    padding: 0px;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* SECTION BASE */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto; /* centers whole section */
  padding: 0 20px;
}
.light .Ccontainer {
  margin: 30px;
}

/* LIGHT + DARK THEMES */
.light {
  background: #f7f7f7;
}

.dark {
  background: #0a192f;
  color: #fff;
}

/* TITLE */
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
  justify-content: center;
  gap: 25px;
}

/* SERVICE BOX */
.box {
  background: #f4b400;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* IMAGE GRID */
.grid-3 img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.grid-3 img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 26px;
  }
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 0px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact .container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  /* background: rgba(255,255,255,0.08); */
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  /* border:1px solid rgba(255,255,255,0.15); */
  transition: 0.4s;
}

#contact .container:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

#contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 1px;
}

#contact p {
  font-size: 18px;
  line-height: 1.8;
  color: #f1f1f1;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 15px;
  font-size: 15px;
}

.footer-bottom {
  max-width: 800px;
  margin: auto;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.8;
}

.footer-bottom strong {
  color: #fff;
  letter-spacing: 0.5px;
}

.my-contact {
  color: #00d9ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.my-contact:hover {
  color: #00ffae;
  text-shadow: 0 0 10px rgba(0, 255, 174, 0.7);
}

/* ===== ICON STYLE ===== */
.fa-phone {
  color: #00ffae;
  margin-right: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  #contact {
    padding: 60px 15px;
  }

  #contact h2 {
    font-size: 26px;
  }

  #contact p {
    font-size: 16px;
  }

  footer {
    font-size: 14px;
  }
}
