/* Instead of this */
.container {
  width: 1200px;
}

/* Use this */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    text-align: center;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px;
  }

  img {
    width: 100%;
    height: auto;
  }
}

body {
  font-size: 1rem;
  padding: 2%;
}



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background: #fff;
  border-bottom: 2px solid #eaeaea;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo img {
  height: 60px;
  margin-bottom: 1px;
}

.logo span {
  font-weight: bold;
  font-size: 0.5cm;
}

.logo .tagline {
  font-size: 0.7rem;
  color: #777;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  font-size: smaller;
  font-weight:bolder;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
  position: relative;
}

nav a:hover {
  color: #0d1b4c;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url('home_bg.png.jpeg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h3 {
  font-size: 0.5cm;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero h2 {
  font-size: 1cm;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 0.4cm;
  max-width: 600px;
  margin: auto;
}



.why-choose-us {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #f9fafc, #eaf2ff);
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 40px;
}

.choose-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

.choose-box {
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.choose-box h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: bolder;
}

.choose-box p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Color palette (Gold & Royal Blue theme) */
.gold { background-color: #D4AF37; }
.yellow { background-color: #f8c21a; }
.navy { background-color: #0A2647; }
.blue { background-color: #144272; }



.about-us {
  background: url('aboutus_bg.png.jpeg') no-repeat center center/cover; /* replace with your image path */
  padding: 110px 0;
  color: white;
  display: flex;
  justify-content:center;
  align-items:center;
  position:relative; 
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1100px;
  gap: 50px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  flex: 1;
  text-align: left;
}

.about-text-box {
  flex: 2;
  border: 2px solid white;
  padding: 30px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.about-text-box p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }
}



.services {
  background: url('services.bg.png.jpeg') no-repeat center center/cover; /* Replace with your background */
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
}

.services-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.service-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid white;
  padding: 40px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.service-column {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}

.service-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.service-column ul {
  list-style: none;
  padding: 0;
}

.service-column li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.divider {
  width: 1px;
  background: white;
  opacity: 0.3;
}

@media (max-width: 900px) {
  .service-box {
    flex-direction: column;
    gap: 30px;
  }
  .divider {
    display: none;
  }
  .service-column {
    text-align: center;
  }
}




.showpieces {
  background: linear-gradient(to bottom, #fefefe, #e8f2f7);
  text-align: center;
  padding: 100px 0;
}

.showpieces h2 {
  font-size: 2rem;
  color: #002b49;
  margin-bottom: 40px;
}

.swiper {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 50px;
}

.showpiece-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.showpiece-item img {
  width: 45%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.labels {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

.labels span {
  font-weight: 600;
  color: #00324d;
}

/* Swiper custom styling */
.swiper-button-next,
.swiper-button-prev {
  color: #00324d;
}

.swiper-pagination-bullet {
  background: #00324d;
}

@media (max-width: 768px) {
  .showpiece-item {
    flex-direction: column;
  }

  .showpiece-item img {
    width: 80%;
  }

  .labels {
    justify-content: space-evenly;
  }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  background: url('images/quote-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002b49;
  line-height: 1.4;
}

.contact-form {
  flex: 1;
  margin-left: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #f5f5f5;
  font-size: 0.95rem;
  outline: none;
}

.contact-form button {
  background: #3a7dbd;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #295d8f;
}


/* ===== FOOTER SECTION ===== */
.footer {
  background: #002b49;
  color: #fff;
  text-align: center;
  padding: 60px 0 40px;
}

.footer h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer hr {
  width: 60%;
  margin: 10px auto 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-left: 30px;
  gap: 40px;
}

.footer-left {
  text-align: left;
  line-height: 1.8;
  margin-right: 10px;
  max-width: 400px;
}

.footer-left i {
  color: #f5f5f5;
  margin-right: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #fbbf24;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .contact-form {
    margin-left: 0;
    margin-top: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
