/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f4f8;
  color: #2c3e50;
  scroll-behavior: smooth;
}

/* ===== Theme Colors ===== */
:root {
  --primary: #1e3c72;
  --secondary: #2a5298;
  --accent: #00c9a7;
  --light: #ffffff;
  --muted: #7f8c8d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: #f8f9fa;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #1791D0, #100851);
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-right span {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.topbar-right span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Make it responsive */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .topbar-right {
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .topbar {
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar-right span {
    padding: 2px 8px;
  }
}

/* Header */
.header {
  background: var(--light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
}

.brand-text strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.brand-text span {
  font-size: 14px;
  color: var(--muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* Tablet and below */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 75px; /* after header */
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .nav a {
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* When menu is open */
  .nav.active {
    max-height: 400px;
  }
}

/* Small mobile optimization */
@media (max-width: 500px) {
  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }
}

/* Hero Section */
/* ===============================
 /* ================================
   HERO SECTION BASE
================================ */

.hero {
  background: linear-gradient(135deg, #1791D0, #100851);
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ================================
   LEFT SIDE (Logo + Circles)
================================ */

.hero-left {
  position: relative;
  flex: 1 1 480px;
  min-height: 480px;
}

.hero-logo {
  width: 180px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.circle img {
  width: 80%;
}

/* Circle Sizes + Placement */
.big-circle {
  width: 340px;
  height: 340px;
  top: 80px;
  left: 80px;
  animation-delay: 0s;
}

.small-circle {
  width: 220px;
  height: 220px;
  bottom: 50px;
  left: 20px;
  animation-delay: 1.5s;
}

.mini-circle {
  width: 160px;
  height: 160px;
  bottom: 70px;
  left: 300px;
  animation-delay: 3s;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* ================================
   RIGHT SIDE CONTENT
================================ */

.hero-right {
  flex: 1 1 450px;
  padding-left: 20px;
}

.hero-right h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
}

.hero-right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-actions a {
  padding: 12px 25px;
  margin-right: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: #fff;
  color: #0a3d91;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.contact-box {
  margin-top: 30px;
  font-size: 18px;
}

/* ================================
      RESPONSIVE DESIGN
================================ */

/* 1024px (Laptop) */
@media (max-width: 1024px) {
  .hero-right h2 {
    font-size: 40px;
  }

  .big-circle {
    width: 300px;
    height: 300px;
  }
}

/* 900px */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-right {
    padding-left: 0;
    margin-top: 40px;
  }

  .hero-left {
    width: 100%;
    min-height: 420px;
  }

  .hero-logo {
    margin: auto;
    display: block;
    margin-bottom: 20px;
  }

  /* Center big circle */
  .big-circle {
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
  }

  .small-circle {
    bottom: 50px;
    left: 10%;
  }

  .mini-circle {
    left: 70%;
    bottom: 60px;
  }
}

/* Mobile 600px */
@media (max-width: 600px) {
  .hero {
    padding: 60px 0;
  }

  .hero-right h2 {
    font-size: 32px;
  }

  .hero-right p {
    font-size: 16px;
  }

  .big-circle {
    width: 240px;
    height: 240px;
  }

  .small-circle {
    width: 150px;
    height: 150px;
  }

  .mini-circle {
    width: 120px;
    height: 120px;
  }
}

/* Small Mobile 420px */
@media (max-width: 420px) {
  .big-circle {
    width: 200px;
    height: 200px;
    top: 40px;
  }

  .small-circle {
    left: 5%;
    bottom: 40px;
  }

  .mini-circle {
    left: 65%;
    bottom: 40px;
  }

  .hero-right h2 {
    font-size: 28px;
  }
}


/* --- Grid Layout --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

/* --- Category Card --- */
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* --- Image --- */
.card-image {
  width: 100%;
  height: 220px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .card-image img {
  transform: scale(1.08);
}

/* --- Overlay / Text Area --- */
.card-overlay {
  background: linear-gradient(135deg, #1791D0, #100851);
  color: white;
  padding: 20px;
  text-align: center;
  transition: background 0.3s ease;
}

.category-card:hover .card-overlay {
  background: linear-gradient(135deg #1791D0, #100851);
}

.card-overlay h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .card-image {
    height: 180px;
  }
  .card-overlay h3 {
    font-size: 16px;
  }
  .card-overlay p {
    font-size: 13px;
  }
}


.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-head p {
  color: #666;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f9f9f9;
  padding: 10px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #100851;
  color: white;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 20px;
}

.card-body {
  padding: 16px;
  flex-grow: 1;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-body .muted {
  color: #777;
  font-size: 14px;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.specs span {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
}

/* Buttons Section */
.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #100851;
  color: white;
}

.btn-primary:hover {
  background:#100851;
}

.btn-ghost {
  border: 1px solid #100851;
  color: #100851;
}

.btn-ghost:hover {
  background:#100851;
  color: white;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .card-body h3 {
    font-size: 16px;
  }
  .card-actions {
    flex-direction: column;
  }
}
/* ============================
        ABOUT SECTION
============================= */

.about {
  padding: 100px 0;
  background: #f8f9fc;
}

.about-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.about-left {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
}

.about-img-box {
  width: 90%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.about-img-box img {
  width: 100%;
  display: block;
}

/* RIGHT */
.about-right {
  flex: 1 1 480px;
  padding-left: 30px;
}

.about-right h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0a3d91;
  margin-bottom: 15px;
}

.about-right p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

/* Features */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 16px;
  flex: 1 1 250px;
}

.feature-box i {
  font-size: 24px;
  color: #0a3d91;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0a3d91;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  opacity: 0.8;
}

/* Responsive */
@media(max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    padding-left: 0;
    margin-top: 40px;
  }

  .feature-box {
    justify-content: center;
  }
}

@media(max-width: 600px) {
  .about-right h2 {
    font-size: 34px;
  }

  .about-right p {
    font-size: 16px;
  }
}
  

/* ===== Sections ===== */
.section {
  padding: 60px 0;
}
.section-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--primary);
}
.section-head p {
  color: var(--muted);
  margin-bottom: 40px;
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 30px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ===== Cards ===== */
.card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.card img {
  width: 100%;
  display: block;
}
.card-body {
  padding: 15px;
}
.card-body h3 {
  margin: 0 0 10px;
  color: var(--primary);
}
.card-body p.muted {
  font-size: 14px;
  color: var(--muted);
}
.specs span {
  display: inline-block;
  background: #e0f7f3;
  color: #100851;
  padding: 3px 8px;
  margin: 3px 5px 0 0;
  border-radius: 4px;
  font-size: 12px;
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--light);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== Trust Section ===== */
.trust {
  background: var(--primary);
  color: var(--light);
  padding: 40px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust-item img {
  width: 50px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.trust-item img:hover {
  transform: scale(1.2);
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(135deg,  #1791D0 0%, #100851 100%);
  color: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative floating shapes (optional) */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.contact-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.contact-section::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
}

/* Section Heading */
.section-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: white;
}

.section-head h2 span {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-head p {
  color: #e0f7f3;
  font-size: 16px;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form {
  background: white;
  color: #333;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
}

.form-row label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #100851;
  box-shadow: 0 0 0 3px rgba(0, 183, 153, 0.2);
  outline: none;
}

/* Button */
.btn-primary {
  background: #100851;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #100851;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contact Info */
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.info-block {
  margin-bottom: 20px;
}

.info-block strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.info-block .muted {
  color: #c8fff2;
  font-size: 14px;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg,  #1791D0 0%, #100851 100%);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}
.footer::before {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -80px;
}
.footer::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -100px;
}

/* Footer Layout */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 25px;
}

/* Left Side */
.footer-left strong.footer-logo {
  font-size: 26px;
  letter-spacing: 1px;
  display: block;
  font-weight: 800;
}

.footer-left .muted {
  color: #d9fff5;
  font-size: 15px;
  margin-top: 4px;
}

/* Right Side (Links) */
.footer-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.footer-right a:hover {
  color: #e0fff9;
}

.footer-right a:hover::after {
  width: 100%;
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #d0fff2;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: #ffffff20;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ffffff40;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-left strong.footer-logo {
    font-size: 22px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;  /* ✅ Right side */
  left:auto;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}
.whatsapp-float span {
  display: none !important;
}
