
/* ===== Base Fonts & Reset ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


body {
  font-family: 'Public Sans', 'Poppins', sans-serif;
  background-color: #f9fbfd;
  color: #333;
}
.alert::after,
.alert::before {
    content: none !important;
}


  .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      /* position: fixed;  */
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    .navbar-brand img { transition: transform 0.3s ease; }
    .navbar-brand img:hover { transform: scale(1.1); }
    .navbar-nav .nav-link {
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .navbar-nav .nav-link:hover { color: #6f42c1; }
   .container-fluid {
      padding-top: 0px; 
      padding-bottom: 15px;
    } 
/* ===== Section Animation ===== */
.section {
  padding: 60px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-blue {
  background-color: #1da1f2;
  color: white;
}
  @keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.order-now-btn {
  animation: bounce 2s infinite;
  border: none;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.order-now-btn:hover {
  transform: scale(1.15);
}

/* ===== Trusted Cards ===== */
.trusted-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background: #fff;
}
.trusted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  height: 600px;
  /* background: url("{{ Image. }}") center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: rgba(0, 63, 128, 0.5);
}
.hero-section h1 {
  position: relative;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ===== Contact Info Cards ===== */
.contact-info {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info .icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4094e3, #1c6ed5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(28, 110, 213, 0.3);
}
.contact-info h3 {
  color: #1c6ed5;
  font-weight: 600;
}

/* ===== Contact Form ===== */
.contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.contact-form input,
.contact-form textarea {
  background: #f0f6fc;
  border: 1px solid #dce7f5;
  color: #333;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px rgba(64,148,227,0.5);
  border: 1px solid #4094e3;
}
.contact-form button {
  background: linear-gradient(135deg, #4094e3, #1c6ed5);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(64,148,227,0.5);
}

/* ===== Composition Section ===== */
.composition-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  text-align: center;
}
.composition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card-title {
  font-weight: 600;
  color: #1da1f2;
}
.card-text {
  font-size: 0.9em;
  color: #333;
}
.composition-glass {
  text-align: center;
  margin: 20px 0;
}
.composition-glass img {
  max-width: 220px;
  margin: auto;
}
@media (max-width: 768px) {
  .composition-glass img {
    max-width: 150px;
  }
}

/* ===== Footer ===== */
footer {
  background: #1b2735;
  color: #fff;
  padding: 20px 0;
}
footer h5 {
  color: #4094e3;
}
footer a {
  color: #ddd;
  text-decoration: none;
}
footer a:hover {
  color: #4094e3 !important;
}
footer .btn {
  background: #4094e3;
  border: none;
}

