/* ===== Global Reset (Fixes White Space Issue) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;   /* Prevent horizontal scroll */
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Navbar ===== */
header {
  position: fixed;
  height: 10%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1f2a38;
  padding: 15px 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #4CAF50;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 80px; /* prevents content hiding under fixed navbar */
  overflow: hidden;
}

/* Hero Image */
.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  display: block; /* removes bottom image gap */
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

/* Hero Content */
.hero-content {
  position: relative;
  color: #ffffff;
  max-width: 750px;
  z-index: 2;
  margin-top: 120px;
}

.sub-heading {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1f2a38;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    text-align: center;
    margin-top: 150px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .sub-heading {
    font-size: 12px;
  }
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== Section Styling ===== */
.trust-section {
  padding: 80px 0;
  background: #f5f6f7;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 750px;
  margin: auto;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ===== Cards Wrapper ===== */
.card-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  background: #e9ecef;
  padding: 40px;
  border-radius: 6px;
}

/* ===== Card Styling ===== */
.card {
  background: #ffffff;
  padding: 30px;
  flex: 1;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 20px;
  color: #4CAF50;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .card-wrapper {
    flex-direction: column;
    padding: 25px;
  }

  .section-header h2 {
    font-size: 22px;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Content Row ===== */
.content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

/* Reverse Layout */
.content-row.reverse {
  flex-direction: row-reverse;
}

/* Image Box */
/* .image-box {
  flex: 1;
} */

.image-box {
  flex: 1;
  height: 350px;              /* Same fixed height */
  overflow: hidden;           /* Prevent overflow */
  border-radius: 8px;
}

/* .image-box img {
  width: 100%;
  border-radius: 8px;
  display: block;
} */

.image-box img {
  width: 100%;
  height: 100%;               /* Fill full box */
  object-fit: cover;          /* Crop properly */
  display: block;
}

/* Text Box */
.text-box {
  flex: 1;
}

.text-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.text-box p {
  margin-bottom: 10px;
  color: #555;
}

.text-box ul {
  margin-bottom: 20px;
  padding-left: 18px;
}

.text-box ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #5ec57e;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #4bb56c;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .content-row {
    flex-direction: column;
    gap: 30px;
  }

  .content-row.reverse {
    flex-direction: column;
  }

  .text-box {
    text-align: center;
  }

  .text-box ul {
    text-align: left;
    display: inline-block;
  }
}
.tailored-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 50, 0.85);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Content Layout */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ===== Left Images ===== */
.image-wrapper {
  position: relative;
  flex: 1;
}

.main-image {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.floating-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ===== Right Text ===== */
.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 15px;
  color: #dcdcdc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-btn {
  text-decoration: none;
  color: #5ec57e;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  color: #4bb56c;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .floating-image {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .text-content h2 {
    font-size: 24px;
  }
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Section ===== */
.products-section {
  padding: 80px 0;
  position: relative;
}

/* Top Right Button */
.top-btn {
  text-align: right;
  margin-bottom: 40px;
}

.btn {
  background: #5ec57e;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}
.top-btn {
display: flex;
align-items: center;
justify-content: center;
}
.btn:hover {
  background: #4bb56c;
}

/* ===== Grid Layout ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Product Card ===== */
.product-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05); 
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* .product-card img {
  width: 100%;
  display: block;
} */

.product-card img {
  width: 100%;
  height: 260px;        /* Fixed same height for all */
  object-fit: contain;  /* Keeps full image visible */
 background: #f7f7f7;  /* Optional clean background */
  padding: 20px;      /* Optional spacing around product */
  background-color: #ffffff;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #666;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .top-btn {
    text-align: center;
  }
}

/* Section */
.blog-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.sub-title {
  color: #777;
  font-size: 14px;
  margin-bottom: 8px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.blog-card {
  text-align: left;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.category {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.blog-card h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

/* See all */
.see-all {
  display: inline-block;
  margin-top: 40px;
  color: #2ecc71;
  font-weight: 600;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
  }

  .blog-card img {
    height: 200px;
  }
}


/* Section */
.consultation-section {
  background: #3c3f45;
  padding: 80px 20px;
}

/* Container */
.consultation-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Content */
.consultation-text {
  color: #fff;
  max-width: 500px;
}

.consultation-text .icon {
  width: 42px;
  height: 42px;
  background: #5fd38a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.consultation-text h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.consultation-text p {
  color: #cfcfcf;
  font-size: 15px;
}

/* Form Card */
.consultation-form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  width: 360px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.consultation-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin: 12px 0 6px;
}

.consultation-form input,
.consultation-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.consultation-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #66d28a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.consultation-form button:hover {
  background: #56c37a;
}

/* Tablet */
@media (max-width: 900px) {
  .consultation-container {
    flex-direction: column;
    text-align: center;
  }

  .consultation-text {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .consultation-text h2 {
    font-size: 24px;
  }

  .consultation-form {
    width: 100%;
  }
}
.footer {
  background: #f2f4f7;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Paragraph */
.footer-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Headings */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #222;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4CAF50;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #4CAF50;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #777;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }
}
