* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
  background: #f1f1f1;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #1f2a6d;
}

.consult-btn {
  background: #1f2a6d;
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: bold;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 223px;
  position: absolute;
  top: 23px;
  left: -10px;
  z-index: 3;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2a6d;
  font-weight: bold;
  font-size: 21px;
  z-index: 4;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  align-items: center;
}

/* HERO */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 80, 0.75);
}

.hero-content {
  position: relative;
  max-width: 700px;
  text-align: center;
  color: #fff;
  margin-top: -160px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 35px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.btn-outline {
  border: 2px solid #fff;
  color: #1f2a6d;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
}
.btn-aoutline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* PRODUCTS IMAGE */
.hero-products {
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-products img {
  max-width: 85%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    z-index: 99;
  }
  .logo img {
    height: 124px;
    position: absolute;
    top: -16px;
    /* left: -10px;
   */
    z-index: 101;
  }
  .top-bar {
    display: none;
  }
  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-products img {
    max-width: 95%;
  }
}
.services {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2a6d;
}

.section-subtitle {
  text-align: center;
  font-size: 26px;
  color: #1f2a6d;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #fff;
  text-align: center;
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  /* border: 1px solid #1f2a6d; */
  border-radius: 15px;
}

.service-card img {
  width: 65%;
  height: 65%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #1f2a6d;
}

.service-card h3 {
  font-size: 20px;
  margin: 20px 15px 10px;
  font-weight: 600;
  color: #1f2a6d;
}

.service-card p {
  font-size: 14px;
  color: #1f2a6d;
  line-height: 1.6;
  padding: 0 20px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Tablet  */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile  */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }

  .service-card img {
    height: 200px;
  }
}

.offer-section {
  position: relative;
  padding: 90px 20px 140px;
  background: radial-gradient(circle at top, #1c2030, #0a0d14);
  color: #fff;
}

/* V SHAPE BOTTOM */
.offer-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

.offer-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.offer-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-subtext {
  text-align: center;
  font-size: 14px;
  color: #d0d0d0;
  max-width: 850px;
  margin: 0 auto 60px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.offer-card {
  position: relative;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid #1f2a6d;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: #1f2a6d;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  font-size: 22px;
}

.offer-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.offer-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 18px;
}

.offer-card a {
  font-size: 13px;
  font-weight: 600;
  color: #e63946;
  text-decoration: none;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.25);
}

/* Tablet */
@media (max-width: 1200px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .offer-heading {
    font-size: 30px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-section::after {
    height: 80px;
  }
}
/* 
.review-section {
  padding: 100px 20px;
  background: #fff;
}

.review-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.review-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.review-subtitle {
  font-size: 16px;
  color: #000;
  margin-bottom: 60px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.review-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-stars {
  color:  #1f2a6d;
  font-size: 20px;
  margin-bottom: 25px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin-bottom: 35px;
}

.review-user {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.review-user h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
} */

/* Tablet */
@media (max-width: 900px) {
  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 40px 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .review-title {
    font-size: 30px;
  }

  .review-text {
    font-size: 15px;
  }
}

.site-footer {
  position: relative;
  background: #0b0e13;
  color: #ccc;
  padding: 80px 20px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Lines background */
/* .lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  z-index: 0;
}

.lines .line {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
} */

/* Main layout */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Columns */
.footer-column h3 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-column span,
.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
}

.footer-column a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #1f2a6d;
}

/* Logo */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 10px;
}

/* Contact list */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 20px;
  background: #151a22;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter-form button {
  background: #1f2a6d;
  border: none;
  padding: 0 18px;
  color: #fff;
  cursor: pointer;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #151a22;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #1f2a6d;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 320px;
    margin: 20px auto 0;
  }
}

.about-section {
  padding: 80px 20px;
  background: #f8f9fc;
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}

.tagline {
  font-size: 16px;
  color: #555;
  letter-spacing: 0.5px;
}

.tagline span {
  color: #1f2a6d;
  font-weight: 600;
}

/* Intro */
.about-intro {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.about-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Blocks */
.about-block {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-block h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #111;
}

.about-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.about-block a {
  color: #1f2a6d;
  text-decoration: none;
  font-weight: 500;
}

.about-block a:hover {
  text-decoration: underline;
}

/* Quality list */
.quality-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.quality-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

/* CTA */
.cta-text {
  margin-top: 20px;
  font-weight: 500;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 32px;
  }

  .about-block,
  .about-intro {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 26px;
  }

  .tagline {
    font-size: 14px;
  }
}

.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9ff, #ffffff);
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 38px;
  color: #111;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
  font-size: 15px;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #333;
}

.contact-info a {
  color: #1f2a6d;
  text-decoration: none;
  font-weight: 500;
}

/* Form */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f2a6d;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #1f2a6d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #e60045;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 28px;
  }

  .contact-info,
  .contact-form-box {
    padding: 25px;
  }
}
.whatsapp-float-landscape {
  position: fixed;
  right: 0px;
  bottom: 70px;
  width: 150px; /* landscape width */
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float-landscape img {
  width: 100%;
  height: 40px;
  display: block;
  border-radius: 12px; /* optional – remove if you want sharp corners */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); */
  border: 2px solid #00e676;
}

/* Hover effect */
.whatsapp-float-landscape:hover {
  transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 768px) {
  .whatsapp-float-landscape {
    width: 180px;
    right: 15px;
    bottom: 66px;
    /* display: none; */
  }
}
.contact-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-form select:focus {
  border-color: #000;
}

/* Mobile */
@media (max-width: 480px) {
  .whatsapp-float-landscape {
    width: 150px;
    right: 10px;
    bottom: 66px;
    /* display: none; */
  }
}
/* Floating Button */
.ai-btn {
  position: fixed;
  bottom: 10px;
  right: 2px;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  cursor: pointer;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25); */
  z-index: 9999;
}

/* Chat Box */
.ai-chatbox {
  width: 350px;
  height: 500px;
  background: #fff;
  position: fixed;
  bottom: 20px;
  right: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

/* Header */
.ai-header {
  background: #f7f7f7;
  padding: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.ai-status-dot {
  width: 10px;
  height: 10px;
  background: #00c853;
  border-radius: 50%;
  display: inline-block;
}

.ai-close {
  position: absolute;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
}

/* Logo Box */
.ai-logo-box {
  text-align: center;
  padding: 20px 10px;
}

.ai-logo {
  width: 150px;
  margin-bottom: 10px;
}

.ai-small {
  margin-top: 5px;
  color: #888;
  font-size: 14px;
}

/* Chat Messages */
.ai-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Input Area */
.ai-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.ai-input-area input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.ai-input-area button {
  background: #0066ff;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.ai-btn img {
  width: 100%;
  height: 50px;
  /* border-radius: 50%; */
  /* border: 2px solid white; */
}
/* LOCATION SECTION */
.location-section {
  padding: 80px 20px;
  /* background: #fdf6e3; */
  text-align: center;
}

.location-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* LEFT IMAGE */
.location-image {
  border: 2px solid #1f2a6d;
  height: 400px; /* MEDIUM SIZE */
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* RIGHT MAP */
.map-box {
  border: 2px solid #1f2a6d;
}
.map-box iframe {
  width: 100%;
  height: 390px; /* SAME HEIGHT AS IMAGE */
  border: 2px solid #d4af37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .location-image,
  .map-box iframe {
    height: 220px;
  }
}
/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 90px 20px;
  /* background: #fffaf0; */
  text-align: center;
}

.testimonials-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  border: 2px solid #1f2a6d;
  padding: 20px;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 30%;
  height: 64px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* CONTENT */
.testimonial-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.stars {
  color: #d4af37;
  font-size: 16px;
  margin: 10px 0;
}

.testimonial-content h4 {
  color: #800000;
  font-size: 15px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.product-showcase {
  padding: 80px 20px;
  background: #f8f9fb;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.section-header p {
  color: #666;
  font-size: 25px;
}

/* Grid */
.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Product Card */
.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.08);
}

/* Title Overlay */
.product-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* Center last image */
.product-item.single {
  grid-column: span 2;
  max-width: 580px;
  margin: auto;
}

/* Tablet */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-item.single {
    grid-column: span 1;
    max-width: 100%;
  }

  .product-item img {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 28px;
  }

  .product-title {
    font-size: 18px;
  }
}
