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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fcff;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 10%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d6efd;
  transition: 0.3s;
}
.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
  position: relative;
  transition: 0.3s;
}
nav a:hover,
nav a.active {
  color: #0d6efd;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: 0.3s;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #0d6efd;
}

/* ===== HOME ===== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 4rem;
}

.home-content h1 {
  font-size: 4rem;
  font-weight: 700;
}
.home-content h3 {
  font-size: 2rem;
  color: #0d6efd;
  margin: 10px 0;
}
.home-content p {
  margin: 15px 0;
  font-size: 1.4rem;
  color: #444;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border-radius: 8px;
  margin-top: 10px;
  transition: 0.3s;
}
.btn:hover {
  background: #084298;
}

.home-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.social-icons {
  margin-top: 15px;
}
.social-icons a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #0d6efd;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #084298;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0px;
  color: #0d6efd;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 10%;
  background: #fff;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #f9fcff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 15px;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 10%;
  background: #f9fcff;
  text-align: center;
  font-size: 1.4rem;
  color: #444;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
  font-size: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .home {
    flex-direction: column-reverse;
    text-align: center;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 10%;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
.iframe-container {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically (if container has height) */
    }
}