html {
  scroll-behavior: smooth;
}
html, body {
    width: 1280px !important;
    min-width: 1280px !important;
    overflow-x: auto !important;
}

/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}


/* === Social Media Icons on Hero Page === */
.social-hero-icons {
  position: fixed;
  top: 12%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 10px;
  border-radius: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-hero-icons a {
  color: #0056b3;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-hero-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Hide icons when scrolling down (slide right) */
.social-hero-icons.hide {
  right: -100px;
  opacity: 0;
}
/* ===== Social Media Icons - Homepage Only ===== */
.social-icons-homepage {
  position: fixed;
  top: 100px; /* right below navbar */
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-icons-homepage a {
  color: #0056b3;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons-homepage a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Slide right when hidden */
.social-icons-homepage.hide {
  right: -80px;
  opacity: 0;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white; /* or your chosen color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s ease-in-out; /* Smooth transition */
}

/* When user scrolls down */
.navbar.hide {
  transform: translateY(-100%); /* Moves navbar up smoothly */
}

/* ===== Navigation Bar Styling ===== */
.navbar {
  position: fixed;
  top: -20;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 50, 0.1);
  z-index: 1000;
  transition: top 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

/* When hidden */
.navbar.hide {
  top: -100px;
  opacity: 0;
}

/* Logo */
.navbar .logo img {
  height: 55px;
  width: auto;
}

/* Navigation Links */
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #002060;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-bottom: 4px;

}

.navbar .nav-links a:hover {
  color: #007bff;

}


/* ===== Navigation Bar ===== */
.navbar {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: top 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 150px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #002060;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* ===== Dropdown Menu ===== */
.dropdown .dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 999;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #002060;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-content a {
    padding-left: 40px;
  }
}


section,
.products-section,
.product-details {
  padding-top: 90px;
}
/* ===== Hero Section (Desktop-Only) ===== */

html, body {
  width: 1280px !important;
  min-width: 1280px !important;
  overflow-x: auto !important;
}

/* Hero */
.hero {
  background: url('images/founder-banner.jpg') center/cover no-repeat;
  height: auto;
  position: relative;
  background-attachment: fixed;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;

  /* Prevent mobile shrinking */
  min-width: 1280px !important;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.hero-overlay h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin: 10px 0;
}

.hero-overlay p {
  max-width: 600px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Disable all mobile responsive behavior */
@media (max-width: 1279px) {
  .hero,
  .hero-overlay {
    width: 1280px !important;
    min-width: 1280px !important;
  }
}
/* ===== Founder Section ===== */
#founder {
  padding: 80px 10%;
  background: #f8faff;
}
.founder-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}
.founder-image {
  flex: 1 1 35%;
}
.founder-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.founder-details {
  flex: 1 1 60%;
}
.founder-details h2 {
  font-size: 2rem;
  color: #003366;
}
.founder-details h3 {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 15px;
}
.founder-details p {
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

/* ===== Highlight Sections ===== */
.highlight-section h4 {
  margin-top: 25px;
  color: #004aad;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.highlight-section ul {
  margin: 10px 0 20px 20px;
}
.highlight-section ul li {
  margin-bottom: 6px;
  list-style-type: square;
}

/* ===== Quote ===== */
.quote {
  background: #eaf3ff;
  border-left: 5px solid #004aad;
  padding: 18px 25px;
  font-style: italic;
  color: #003366;
  margin: 30px 0;
}

/* ===== Vision Section ===== */
.vision {
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
  margin: 60px auto;
}
.vision h2 {
  color: #003366;
  margin-bottom: 15px;
}
.vision p {
  color: #444;
  margin-bottom: 10px;
  line-height: 1.8;
font-size: 0.6rem;
}



/* ===== Buttons ===== */
.linkedin-btn {
  background: #0077b5;
  color: white;
  padding: 10px 18px;
  display: inline-block;
  border-radius: 5px;
  margin-right: 10px;
  text-decoration: none;
}

.linkedin-btn:hover {
  background: #005a87;
}

.back-btn {
  background: #004aad;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}
.back-btn:hover {
  background: #0066ff;
}

/* ===== Footer ===== */
footer {
  background-color: #003580;
  color: white;
  padding-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10% 40px;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-left h3, .footer-right h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-left: 4px solid #00c2ff;
  padding-left: 10px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin: 10px 0;
}

.quick-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.quick-links a i {
  margin-right: 10px;
  color: #00c2ff;
}

.quick-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-right p {
  font-size: 0.95rem;
  color: #d6d6d6;
  line-height: 1.7;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  background-color: #003580;
  padding: 15px;
  font-size: 0.6rem;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.2);
}



/* ================================
   Floating Enquiry Button
================================ */
.floating-enquiry-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007BFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.floating-enquiry-btn:hover {
  transform: scale(1.1);
}

.floating-enquiry-btn img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.floating-enquiry-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
/* ================================
   Enquiry Slide Form
================================ */
/* ================================
   Enquiry Slide Form (MOVES WITH PAGE)
================================ */
.enquiry-form-container {
  position: fixed;        /* moves with scroll */
  bottom: 20px;              /* stays above bottom */
  right: -500px;             /* hidden by default */
  width: 500px;              /* proper desktop width */
  max-width: 75%;            /* responsive but same size feel */
  height: auto;              /* auto height */
  max-height: 80vh;          /* prevents large white bottom */
  background: #ffffff;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 9998;
  padding: 25px;
  overflow-y: auto;          /* form scrolls inside */
}

.enquiry-form-container.active {
  right: 0;                  /* Slide in */
}

.enquiry-form h2 {
  margin-bottom: 15px;
  color: #007BFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.enquiry-form label {
  font-weight: 600;
  margin: 10px 0 5px;
  display: block;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}

.enquiry-form textarea {
  resize: none;
}

.submit-btn {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 16px;
}

.submit-btn:hover {
  background: #0056c1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #007BFF;
}

/* ================================
   Mobile Responsive
================================ */
@media (max-width: 480px) {
  .floating-enquiry-btn {
    width: 50px;
    height: 50px;
  }

  .floating-enquiry-btn img {
    width: 24px;
  }

  .enquiry-form-container {
    width: 90%;
  