/* WhatsApp Floating Icon */
.whatsapp-float {
    text-decoration: none;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}








/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;


}

body {
  line-height: 1.6;
  color: #222;
  background: #fff;
}


/* ========== TOP BAR ========== */
/* ===== TOP BAR ===== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004aad;
  color: #fff;
  padding: 6px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.top-bar a:hover {
  color: #FFD700;
}

/* Social icons */
.right-social img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.right-social img:hover {
  transform: scale(1.2);
}




/* ✅ Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    display: none;
  }
  .top-bar {
  background: #004aad;
  color: #fff;
}


  .left-info {
    margin-bottom: 6px;
  }

  .top-bar a {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
  }
}


/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar .logo img {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin-left: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #004aad;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #333;
  height: 3px;
  width: 28px;
  margin: 4px 0;
  border-radius: 2px;
}

/* ========== CAROUSEL ========== */
.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease-in-out;
}

.slide.active {
  top: 0;
  opacity: 1;
}

.caption {
  text-align: center;
  /* background: rgba(0,0,0,0.5); */
  padding: 20px 30px;
  border-radius: 8px;
  color: #fff;
  animation: fadeInUp 1s;
}

.caption h2 {
  font-size: 32px;
  margin: 0 0 10px;
}
.caption h4{
    color: #004aad;
}
.caption h1{
    color: brown ;
}
.caption p {
  font-size: 18px;
  margin: 0;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Button */
.btn-sample {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #004aad, #0088ff);
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-sample:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.6);
  color:#FFD700;
}

.btn-sample::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
}

.btn-sample:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
  user-select: none;
}

.arrow:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dots .active {
  background: #004aad;
}

/* ========== INTRO SECTION ========== */
.about-intro {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-intro .heading-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.about-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0 15px;
  text-transform: uppercase;
}

.about-intro .line {
  flex: 1;
  height: 3px;
  background: #FFD700;
  max-width: 80px;
  border-radius: 3px;
}

.about-intro p {
  font-size: 18px;
  color: #555;
  margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  /* Topbar */
  .top-bar {
    font-size: 13px;
    text-align: center;
  }

  /* Navbar */
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 65px;
    left: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* Carousel smaller */
  .carousel { height: 400px; }
  .caption h2 { font-size: 24px; }
  .caption p { font-size: 14px; }
  .btn-sample { padding: 10px 25px; font-size: 16px; }
  .arrow { font-size: 30px; }
  .dots span { width: 10px; height: 10px; }
  
  /* Intro section */
  .about-intro h2 { font-size: 26px; }
  .about-intro p { font-size: 16px; }
  .about-intro .line { max-width: 60px; }
}

@media (max-width: 576px) {
  /* Topbar */
  .top-bar { flex-direction: column; padding: 6px 10px; }

  /* Navbar */
  .navbar .logo img { height: 40px; }

  /* Carousel */
  .carousel { height: 300px; }
  .caption h2 { font-size: 18px; }
  .caption p { font-size: 12px; }
  .btn-sample { padding: 8px 20px; font-size: 14px; }
  .arrow { font-size: 24px; }
  .dots span { width: 8px; height: 8px; }

  /* Intro */
  .about-intro { padding: 40px 15px; }
  .about-intro .heading-box { flex-direction: column; }
  .about-intro h2 { font-size: 20px; margin: 10px 0; }
  .about-intro .line { width: 50px; margin: 5px 0; }
  .about-intro p { font-size: 14px; }
}





/* ===== Product Section ===== */
.products {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.products .section-heading h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #004aad;
  position: relative;
}

.products .section-heading h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #FFD700;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Product Cards Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #222;
}

.product-card p {
  font-size: 16px;
  color: #555;
  padding: 0 15px;
  margin-bottom: 15px;
}

/* Hover Effect on Card */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: #FFD700;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Read More Button */
.btn-read {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 25px;
  background: linear-gradient(45deg, #004aad, #0088ff);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-read:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  color:#FFD700;
}

.btn-read::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.btn-read:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .product-container {
    gap: 20px;
  }

  .product-card {
    width: 45%;
  }
  .product-card img {
      height: 350px;
  }
}

@media (max-width: 576px) {
  .product-card {
    width: 100%;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card p {
    font-size: 14px;
  }
  .product-card img {
      height: 400px;
  }
}






/* ===== About Us Section ===== */
.about-us {
  padding: 80px 20px;
  background: #fff;
  overflow-x: hidden; /* ✅ Fix horizontal scroll issue */
  width: 100%;
  position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Image */
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Text */
.about-text {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

/* Stylish Heading */
.about-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.about-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #004aad;
  margin: 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.about-heading .line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFC107);
  max-width: 90px;
  border-radius: 5px;
}

/* Paragraph */
.about-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* Discover Button */
.btn-discover {
  display: inline-block;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #004aad, #00aaff);
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-discover:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,74,173,0.5);
}

.btn-discover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.35);
  transform: skewX(-25deg);
}

.btn-discover:hover::after {
  left: 130%;
  transition: left 0.7s ease;
}

/* ===== Animations (scroll reveal) ===== */
.about-image, .about-text {
  opacity: 0;
  transform: translateX(0);
  transition: all 1s ease;
}

.about-image.hidden {
  transform: translateX(-80px); /* ✅ safe offset (no overflow) */
}

.about-text.hidden {
  transform: translateX(80px);
}

.about-image.show, .about-text.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-container {
    gap: 40px;
  }
  .about-heading h2 {
    font-size: 30px;
  }
  .about-heading .line {
    max-width: 70px;
  }
  .about-text p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-heading {
    justify-content: center;
  }
  .about-heading h2 {
    font-size: 24px;
    margin: 10px 0;
  }
  .about-heading .line {
    width: 50px;
    margin: 5px 0;
  }
  .about-text p {
    font-size: 14px;
  }
  .btn-discover {
    padding: 10px 24px;
    font-size: 14px;
  }
}


/* Already responsive styles remain same */


/* ===== Contact Section ===== */
.contact {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #004aad;
  margin: 0 15px;
  text-transform: uppercase;
}

.contact-heading .line {
  flex: 1;
  height: 3px;
  background: #FFD700;
  max-width: 80px;
  border-radius: 3px;
}

/* Form Styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 8px rgba(0,74,173,0.2);
}

/* Gender radio buttons */
.gender {
  display: flex;
  gap: 15px;
  justify-content: center;
  font-size: 16px;
  color: #333;
}

.gender input {
  margin-right: 6px;
}

/* Submit Button */
.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #004aad, #0088ff);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,74,173,0.5);
  color:#FFD700
}

.btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.btn-submit:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-heading h2 {
    font-size: 26px;
  }
  .contact-heading .line {
    max-width: 60px;
  }
  .contact-form {
    padding: 20px;
  }
  .btn-submit {
    font-size: 16px;
    padding: 12px;
  }
}


/* ===== Footer ===== */
.footer {
  background-color: white;
  color: #111;
  padding: 60px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left: About */
.footer-about {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.6;
  color: #111;
}

/* Middle: Links */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  color: #111;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

/* Right: Contact */
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h3 {
  color: #111;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
  color: #111;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #FFD700;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #111;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-logo {
    margin: auto;
  }
}
