/* =========================
   Global
========================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Libre Bodoni", serif;
  margin: 0;
  padding: 0;
}

/* =========================
   Header Section
========================= */
.header {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Header-1 (Top Bar) */
.header-1 {
  background: linear-gradient(to bottom, #10131F, #1D2233);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo {
  width: 40px;
}
.logo1 {
  width: 80px;
}

/* Navigation Bar */
.nav-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
}
.nav-bar a {
  text-decoration: none;
  color: #C8B78E;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease;
}
.nav-bar a:hover {
  color: #F5EBD6;
  transform: scale(1.2);
}

/* Country */
.country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 550;
  font-size: 15px;
  color: #F5EBD6;
}
.country .flag {
  width: 24px;
  border-radius: 2px;
}

/* Hamburger (default hidden) */
.hamburger {
  display: none;
  font-size: 28px;
  color: #F5EBD6;
  cursor: pointer;
  z-index: 1001;
}

/* Close button inside nav */
.close-btn {
  display: none;
}

/* =========================
   Header-2 (Bottom Bar)
========================= */
.header-2 {
  background: linear-gradient(to bottom, #10131F, #1D2233);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  color: white;
}

/* Social Icons */
.social {
  padding-left: 15px;
}
.social a {
  color: #c8b78e;
  font-size: 16px;
  margin-right: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.social a:hover {
  color: #fff;
  transform: scale(1.5);
}
.social a i { transition: transform 0.2s ease; } .social a:hover i { transform: scale(1.5); }

/* Contact Info */
.contact-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: #C8B78E 1px solid;
  background-color: #C8B78E;
  color:  #1D2233;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.contact-line:hover {
  background-color: #10131F;
  color: #C8B78E;
  border: #C8B78E 1px solid;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mobile Social (inside hamburger menu) */
.mobile-social {
  display: none;
}

/* =========================
   Responsive Breakpoints
========================= */

/* ---- Mobile (<=768px) ---- */
@media (max-width: 768px) {
  .header-1 {
    padding: 12px 20px;
  }

  /* Center logos */
  .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hamburger visible */
  .hamburger {
    display: block;
  }

  /* Fullscreen nav overlay */
  .nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #10131F, #1D2233);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }
  .nav-bar.show {
    transform: translateX(0);
  }
  .nav-bar a {
    font-size: 22px;
  }
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #F5EBD6;
    cursor: pointer;
  }

  /* Social hidden in header-2 */
  .header-2 .social {
    display: none;
  }
  /* Social visible in mobile menu */
  .nav-bar .mobile-social {
    margin-top: 40px;
    display: flex;
    gap: 20px;
  }
  .nav-bar .mobile-social a {
    font-size: 20px;
    color: #c8b78e;
  }
  .nav-bar .mobile-social a:hover {
    color: #fff;
    transform: scale(1.3);
  }

  /* Center contact buttons */
  .header-2 {
    justify-content: center;
  }
}

/* ---- Tablet (769px – 1024px) ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-1 {
    padding: 12px 30px;
  }

  .nav-bar {
    gap: 30px;
  }
  .nav-bar a {
    font-size: 15px;
  }

  .contact-info {
    gap: 10px;
  }
  .contact-line {
    padding: 6px 16px;
    font-size: 14px;
  }
}

/* ---- Desktop (>=1025px) ---- */
@media (min-width: 1025px) {
  .nav-bar {
    gap: 50px;
  }
  .nav-bar a {
    font-size: 16px;
  }
  .contact-line {
    font-size: 16px;
  }
}


/* =========================
   Main Section
========================= */

/*Hero Section*/
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background: linear-gradient(to bottom, #F5EBD6, #fffef8);
  flex-wrap: wrap;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  color: #10131F;
  margin-bottom: 30px;
}

.hero-text .brand {
  color: #1D2233;
}

.hero-text p {
  font-size: 20px;
  color: #1D2233;
  margin-top: 20px;
  line-height: 1.6;
}

.cta-button {
  margin-top: 30px;
  display: inline-block;
  background-color: #10131F;
  color: #C8B78E;
  text-decoration: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #C8B78E;
  color:  #1D2233;
  transform: scale(1.15);
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Pushes image to the extreme right */
  align-items: center;
}

.hero-images img.man {
  width: 700px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px){
    .hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}
    .hero-section{
        padding: 10px 20px;
    }
    .hero-images img{
        max-width: 300px;
    }
    .cta-button{
        margin-top: 0px;
        margin-bottom: 50px;
    }
}

/*Capabilities*/
#capabilities {
    padding: 10px 50px;
    background: linear-gradient(to bottom, #fffef8, #F5EBD6);
    text-align: center;
    z-index: 0;
}

#capabilities h2 {
    font-size: 2.2rem;
    color: #10131F;
    margin-top: 0px;
    margin-bottom: 40px;
    /* text-decoration: underline; */
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.card {
    background-color: #fffef8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.card h3 {
    font-size: 1.5rem;
    color: #3c4353;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.card:hover {
    transform: translateY(-20px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 400px) {
    .card{
        width: 90%;
    }
    .clients{
        width: 50%;
    }
}

/* Why Us Section */
#why-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to bottom, #F5EBD6, #fffef8);
    gap: 20px;
}

.why-us-content {
    max-width: 50%;
}

.why-us-content h2 {
    font-size: 2.2rem;
    color: #1D2233;
    margin-bottom: 20px;
    /* text-decoration: underline; */
}

.why-us-content p {
    font-size: 1.3rem;
    color: #10131F;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-us-content ul {
    list-style: disc;
    /* margin-left: 20px; */
    color: #10131F;
    margin-bottom: 20px;
}

.why-us-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1D2233;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #10131F;
}

.why-us-image img {
    margin-left: 20px;
    width: 600px;
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
}
/* Mobile view (≤600px) */
@media (max-width: 600px) {
    #why-us {
        flex-direction: column; /* stack image and content */
        text-align: center;
        padding: 20px;
    }

    .why-us-image img {
        margin: 0 auto 20px auto; /* center image with spacing */
        width: 100%;
        max-width: 350px; /* keep image from being too large */
    }

    .why-us-content {
        max-width: 100%;
    }

    .why-us-content h2 {
        font-size: 1.8rem;
    }

    .why-us-content p {
        font-size: 1rem;
        text-align: left;
    }

    .why-us-content ul {
        text-align: left; /* keep bullet points aligned */
        padding-left: 20px;
    }

    .why-us-content ul li {
        font-size: 1rem;
    }
}

/* Tablet view (601px–900px) */
@media (min-width: 601px) and (max-width: 900px) {
    #why-us {
        flex-direction: row; /* still side by side */
        gap: 15px;
    }

    .why-us-image img {
        width: 400px; /* smaller image for tablets */
        margin-left: 0;
    }

    .why-us-content {
        max-width: 55%;
    }

    .why-us-content h2 {
        font-size: 2rem;
    }

    .why-us-content p {
        font-size: 1.1rem;
    }

    .why-us-content ul li {
        font-size: 1rem;
    }
}

/*Clients*/
#clients{
    padding: 50px;
    background: linear-gradient(to bottom, #fffef8, #F5EBD6);
    text-align: center;
}
#clients h2 {
    font-size: 2.2rem;
    color: #10131F;
    margin-bottom: 40px;
    /* text-decoration: underline; */
}

.client-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.client {
    background-color: #fffef8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    align-items: center;
}
.client:hover {
    transform: translateY(-20px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
    background-color: #1D2233;
    color: #F5EBD6;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D6C6A3;
}

.footer-section p, 
.footer-section ul {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.8;
    color: #c8b78e;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #c8b78e;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-section ul li a:hover {
  color: #fff;
  transform: scale(1.5);
}

.footer-social a {
    color: #c8b78e;
    font-size: 1.2rem;
    margin-right: 15px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
      color: #fff;
  transform: scale(1.5);
}
.footer-social a i { transition: transform 0.2s ease; } .footer-social a:hover i { transform: scale(1.5); }


.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    font-size: 1.1rem;
    border-top: 1px solid #444;
    margin-top: 20px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Optional: centers images horizontally */
    gap: 10px; /* Optional: spacing between images */
}
.footer-ts{
    padding-top: 10px;
}
@media (max-width: 600px) {
    .footer{
        padding: 10px;
    }
    .footer-container{
        display: flex;
        margin: 50px;
        text-align: center;
        justify-content: center;
    }
    .footer-section p,.footer-section ul{
        font-size: 0.8rem;
    }
    .footer-bottom p{
        font-size: 0.9rem;
    }
}
@media (min-width: 601px) and (max-width: 900px){
    .footer-logo{
        display: none;
    }
}