/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ✅ Topbar: logo + contact center + social icons */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
}

.logo img {
  height: 100px;
}

@media (max-width: 768px) {
  .logo img {
    height: 70px;
  }
}

/* ✅ Center contact block */
.contact-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contact-center a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-center a:hover {
  color: #007bff;
}

.contact-center i {
  margin-right: 5px;
}

/* 📱 Stack phone & email vertically on small screens */
@media (max-width: 768px) {
  .contact-center {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ✅ Right social icons */
.social-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  margin-left: 12px;
  color: #333;
  font-size: 28px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* ✅ Main nav bar below topbar */
.main-nav {
  background: #000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #007bff;
  font-weight: 600;
}

/* ✅ Example hero section */
.hero {
  padding: 60px 20px;
  text-align: center;
}

/* 📱 Nav bar stacks on mobile */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    padding: 10px 0;
  }
  .main-nav li {
    margin: 8px 0;
  }
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-contact,
.footer-links,
.footer-products,
.footer-location {
  flex: 1;
  min-width: 220px;
  margin: 10px;
}

.footer h2 {
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-links ul,
.footer-products ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-products li {
  margin: 8px 0;
}

.footer-links a,
.footer-products a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.2s;
}

.footer-links a:hover,
.footer-products a:hover {
  color: #007bff;
  transform: scale(1.1);
}

.footer-location iframe {
  width: 100%;
  border: 0;
}

.footer i {
  margin-right: 8px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.2s;
}

.footer a:hover,
.footer a:active {
  color: #007bff;
  transform: scale(1.1);
}

.footer-social {
  margin: 20px 0;
}

.footer-social i {
  font-size: 24px;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social i:hover {
  transform: scale(1.2);
  color: #007bff;
}

.footer p:last-child {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}


.premier{
    color: #007bff;
}
.floating-phone {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #007bff;   /* Blue background */
  color: #fff;                 /* Icon color */
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;          /* Circle shape */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;               /* Always on top */
  transition: transform 0.3s, background-color 0.3s;
}

.floating-phone:hover {
  background-color: #0056b3;   /* Darker blue on hover */
  transform: scale(1.1);       /* Slight expand */
}
/* Contact Page */
.contact-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  color: #333;
}

.contact-page h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 15px;
  color: #000;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #007bff;
}

.contact-form button {
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #0056b3;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-boxes,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.info-box i {
  font-size: 24px;
  color: #007bff;
  transition: color 0.3s;
}

.info-box h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.info-box p {
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s;
}

.info-box:hover {
  background: #000;
}

.info-box:hover i,
.info-box:hover h3,
.info-box:hover p {
  color: #fff;
}
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
}

.slide-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.learn-more {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  border-radius: 50px; /* makes edges smooth */
}

.learn-more:hover {
  background: #007bff;
  color: #fff;
}


.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden; /* needed for ripple */
  outline: none;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: #007bff;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* ✅ New real ripple element */
.slider-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none; /* let click pass through */
}

/* ✅ Ripple animation */
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


.slide {
  pointer-events: none;
}
.slide.active {
  pointer-events: auto;
}
/* ✅ Hero slider text styling */
.hero-slider .slide-content h1 {
  font-size: 3rem;       /* Bigger heading */
  font-weight: 800;      /* Extra bold */
  color: #fff;           /* Make sure it's visible */
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Adds depth if needed */
  margin-bottom: 20px;
}

.hero-slider .slide-content p {
  font-size: 1.25rem;    /* Bigger paragraph text */
  color: #fff;           /* Make sure it's visible on image */
  max-width: 700px;      /* Optional: keep line length readable */
  line-height: 1.6;      /* Better readability */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4); /* Helps text pop on images */
  margin-bottom: 20px;
}
.infra-page {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: left;
}

.infra-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.infra-page p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.infra-page ul {
  margin-bottom: 40px;
  padding-left: 20px;
}

.infra-page ul li {
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px; /* smooth edges */
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #007bff; /* hover blue */
}
.floating-phone {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #007bff;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.floating-phone:hover {
  background: #0056b3;
}

/* ✅ Make header a 3-part flex */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fff;
  flex-wrap: wrap;
}

.logo {
  flex: 1;
}

.top-contact {
  flex: 1;
  text-align: center;  /* ✅ Center the phone/mail links */
}

.top-contact a {
  margin: 0 10px;
  color: #000;
}

.social-icons {
  flex: 1;
  text-align: right;   /* ✅ Icons stay right */
}

.social-icons a {
  margin-left: 10px;
  color: #000;
}

/* ✅ Infra page */
.infra-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.infra-hero {
  text-align: center;
  margin-bottom: 40px;
}

.infra-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.infra-hero .intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.infra-machinery {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.infra-machinery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.infra-machinery ul {
  list-style: none;
  padding: 0;
}

.infra-machinery li {
  font-size: 1.1rem;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.infra-machinery li i {
  color: #007bff;
  margin-right: 10px;
  font-size: 1.2rem;
}

.infra-cta {
  text-align: center;
  margin-top: 40px;
}

.contact-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #007bff;
}
/* ✅ Product page styles */
.product-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.product-page h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  margin: 20px 0;
  font-size: 1.4rem;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;  /* ✅ SHOW FULL IMAGE without cropping */
  background: #fff;     /* Optional: keeps background clean */
  padding: 10px;        /* Optional: adds spacing around image */
}
/* ✅ Product page styles */
.product-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.product-page h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 20px; /* extra space for button */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.product-card h3 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
}

.view-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.view-more-btn:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.05);
}

.about-page {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: justify;
  line-height: 1.8;
}

.about-page h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.about-page p {
  margin-bottom: 20px;
}

.motto-box {
  margin-top: 40px;
  padding: 20px;
  background: #f0f0f0;
  border-left: 5px solid #007bff;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  color: #333;
}
.distribution-network {
  margin-top: 40px;
}

.distribution-network h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: black;
  text-align: center;
}

.distribution-network p {
  line-height: 1.8;
}

.quote-box {
  margin-top: 40px;
  padding: 20px;
  background: #f0f0f0;
  border-left: 5px solid #007bff;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  color: #333;
}
/* ✅ Splash Screen Styles */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* or your brand color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#splash .splash-logo {
  max-width: 200px; /* adjust as needed */
  animation: splash-bounce 1.5s infinite;
}

@keyframes splash-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
/* Contact Page Styles */
.contact-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #000;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-boxes {
  flex: 1;
  min-width: 250px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.info-box i {
  font-size: 28px;
  margin-right: 15px;
  color: #007bff;
}

.info-box h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #000;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    padding: 20px;
  }
}
/* Make all contact links look clickable */
.top-contact a,
.contact-center a,
.footer-contact a {
  cursor: pointer;
}
.product-images img {
  max-width: 400px;   /* Or whatever width you like */
  width: 100%;        /* Makes it responsive */
  height: auto;       /* Maintain aspect ratio */
  display: block;
  margin: 20px auto;  /* Center it nicely */
  border-radius: 8px; /* Optional: rounded corners */
}
.product-detail-page p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
  text-align: justify;
}

.product-detail-page h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 2rem;
  color: #000;
}

.product-images img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.product-images {
  text-align: center;
}

.product-subtitle {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}
.calendar-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.calendar-item {
  text-align: center;
}

.calendar-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.calendar-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-subtitle {
  margin-top: 10px;
  font-weight: bold;
}

.product-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.product-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* ✅ BOOK PAGE STYLES (Same as box, but scoped for books) */
.book-page {
  padding: 60px;
  text-align: center;
}

.book-page h1 {
  margin-bottom: 20px;
}

.book-page p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.book-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.book-item {
  text-align: center;
}

.book-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.book-item p {
  margin-top: 8px;
  font-weight: bold;
}
.call{
  text-align: right;
}
/* Dropdown Parent */
.main-nav ul li.dropdown {
  position: relative;
}

.main-nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  z-index: 1000;
}

.main-nav ul li .dropdown-content li {
  display: block;
}

.main-nav ul li .dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.main-nav ul li .dropdown-content li a:hover {
  background-color: #007bff;
}

.main-nav ul li.dropdown:hover .dropdown-content {
  display: block;
}

/* Arrow icon styling */
.main-nav .dropdown-toggle i {
  margin-left: 5px;
  font-size: 0.8em;
}
