/* ===== 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: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #1f2a37;
  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;
}

/* ===== LINKS / NAV UNDERLINE REMOVAL ===== */
a, a:visited, nav a, nav a:visited {
  text-decoration: none !important;
}
a:hover, nav a:hover {
  text-decoration: none !important;
}
/* Disable animated underline bar */
nav a::after, nav a:hover::after, nav a.active::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

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 removed */ {
  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) */
    }
}
body {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #222;
}

.product-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.product-card:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ===== THEME ===== */
:root {
  --brand: #0d6efd;
  --brand-dark: #084298;
  --panel: rgba(255,255,255,0.88);
  --shadow-3d: 0 12px 30px rgba(0,0,0,0.22), 0 6px 14px rgba(0,0,0,0.12);
}

/* Make sections readable over photo background */
.products, .about, .contact {
  background: var(--panel);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  margin: 80px 10%;
  padding: 60px 6%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Tighten home spacing since header is fixed over a photo */
.home {
  background: linear-gradient( to bottom, rgba(255,255,255,0.65), rgba(255,255,255,0.35) );
  border-radius: 20px;
  margin: 100px 10% 40px 10%;
  padding: 60px 8%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ===== PRODUCTS: 3D Cards ===== */
.product-container {
  perspective: 1200px;
  transform-style: preserve-3d;
  gap: 2.2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  transform: translateZ(20px);
}

.product-card h3, .product-card p, .product-card .btn {
  transform: translateZ(30px);
}

.product-card:hover {
  transform: rotateY(12deg) rotateX(6deg) translateY(-10px) translateZ(10px);
  box-shadow: var(--shadow-3d);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  margin-top: 12px;
  transition: background .3s ease, transform .2s ease;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* Header polish over photo */
header {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

/* Footer color unified */
footer {
  background: var(--brand);
}

/* Responsive tweaks for new panel sections */
@media (max-width: 900px) {
  .products, .about, .contact, .home {
    margin: 100px 4% 40px 4%;
    padding: 30px 20px;
    border-radius: 14px;
  }
}


/* ===== ROUND MAIN LOGO ===== */
.home-image img {
  width: 320px;
  max-width: 90%;
  border-radius: 50%;
  border: 6px solid #ffffffcc;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  object-fit: cover;
}
