@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:opsz,wght@10..72,100..900&family=Dancing+Script:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: navy;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.navbar-nav .nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: #000080;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: rgb(248, 180, 54);
}

.navbar-nav .nav-link.active {
  color: rgb(248, 180, 54);
}

.box1 {
  color: #000080;
}

/* Carousel Styles */
/* Carousel Styles */
.carousel {
  margin-top: 76px; /* Adjust based on navbar height */
}

.carousel-item {
  height: 600px;
  position: relative;
}

/* Shadow Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(58, 57, 57, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  /* background: rgba(0, 0, 0, 0.3); */
  padding: 2rem;
  border-radius: 10px;
  z-index: 2;
  position: absolute;
  left: 3rem;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
  max-width: 600px;
}

.carousel-caption h1 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 4rem; /* 64px */
  font-weight: 700; /* Bold */
  letter-spacing: 2px;
  color: #000080;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption h2 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 4rem; /* 64px */
  font-weight: 700; /* Bold */
  letter-spacing: 2px;
  color: #000080;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  font-family: "Open Sans", "Roboto", sans-serif;
  font-size: 1.5rem; /* 24px */
  font-weight: 500; /* Medium */
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}
/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 2rem;
}

.btn-hero {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 2rem;
}

/* Centered heading wrapper */
.heading-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.heading-wrapper .pill-heading {
  display: inline-flex;
  margin-bottom: 0.8rem;
}

.heading-wrapper h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0;
}
/* Pill-style heading */
.pill-heading {
  display: inline-flex;
  text-align: center;
  gap: 0.5rem;
  background: #e8f0fe;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #df9c21;
  margin-bottom: 1rem;
}

.pill-heading::before {
  content: "◆";
  font-size: 0.8rem;
  color: #1a73e8;
}

/* Marquees */
/* Marquee Logo Slider */
/* Marquee Logo Slider */
.logo-marquee-section {
  /* background: #f8f9fa; */
  padding: 3rem 0;
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 2rem;
  color: #000080;
  margin-bottom: 2rem;
  font-weight: 600;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 90px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Content Section */
.content-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content-section h1 {
  font-size: 3rem;
  color: #000080;
  margin-bottom: 1.5rem;
  font-weight: 700;

  line-height: 1.2;
}

.content-section p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* About Us Section */
.about-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.about-images {
  width: 100%;
  height: 500px;
  border-radius: 0px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h1 {
  font-size: 2.5rem;
  color: navy;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Counter Section */
/* Counter Section */
.counter-section {
  padding: 5rem 2rem;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: black;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.counter-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
}

.counter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counter-number {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000080;
  gap: 0.3rem;
}

.counter-number .number {
  font-size: 4rem;
}

.counter-number .suffix {
  font-size: 3rem;
}

.counter-label {
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.95;
  color: rgb(250, 192, 83);
}

/* Animation classes */
.counter-item.animated .counter-number {
  animation: popIn 0.6s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Little icons */

/* Interactive Tabs Section */
.tabs-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

.tabs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tabs-content {
  order: 1;
}

.tabs-image {
  order: 2;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.tabs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.tabs-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-button {
  flex: 1;
  padding: 1rem 2rem;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  border-color: #667eea;
  color: #667eea;
}

.tab-button.active {
  background: navy;
  color: white;
  border-color: transparent;
}

.tab-text {
  display: none;
}

.tab-text.active {
  display: block;
  animation: fadeIn 0.5s;
}

.tab-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.tab-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The Process */
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.process-title {
  text-align: center;
  font-size: 3rem;

  color: #000080;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* The Products  */
/* Image Grid Section */
.image-grid-section {
  padding: 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.image-grid-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.image-grid-item {
  text-align: center;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-10px);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-grid-item h1 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.caption-box {
  background-color: navy;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
  color: rgb(252, 180, 46);
  font-size: 14px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bolder;
}

/* Blog  */
.homepage-blog-grid {
  padding: 50px 20px;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ddd;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.read-more-btn {
  background: rgb(243, 180, 64);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  align-self: flex-start;
}

.read-more-btns {
  background: #d2872c;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
  align-items: center;
}

.read-more-btn:hover {
  background: #b76d21;
}

/* Footer Section */
footer {
  background: #000080;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgb(252, 190, 75);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-column p {
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00d4ff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-item span {
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #2a2a3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #00d4ff;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #2a2a3e;
  text-align: center;
  color: #ccc;
}

/* START WHATSAPP */
/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  background: #25d366;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}

.button-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #ff3333;
  border-radius: 50%;
  border: 2px solid white;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: bottom right;
}

.whatsapp-popup.active {
  transform: scale(1);
  opacity: 1;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.popup-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.popup-info p {
  font-size: 13px;
  opacity: 0.9;
}

.popup-body {
  padding: 20px;
}

.popup-message {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.popup-actions {
  display: flex;
  gap: 10px;
}

.popup-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.popup-btn.primary {
  background: #25d366;
  color: white;
}

.popup-btn.primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.popup-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.popup-btn.secondary:hover {
  background: #e5e7eb;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
/* @media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
} */

/* Mobile Responsive */
@media (max-width: 968px) {
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-caption h2 {
    font-size: 2rem; /* 64px */
    font-weight: 500; /* Bold */
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .counter-number .number {
    font-size: 3rem;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .counter-number .suffix {
    font-size: 2rem;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-caption {
    left: 1rem;
    max-width: calc(100% - 2rem);
    padding: 1.5rem;
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  .carousel-caption h2 {
    font-size: 2.5rem; /* 64px */
    font-weight: 500; /* Bold */
  }

  /* .brand-title {
    display: none;
  } */

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    height: 300px;
  }

  .about-content h1 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .prev,
  .next {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }

  .tabs-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tabs-content {
    order: 2;
  }

  .tabs-image {
    order: 1;
    height: 300px;
  }

  .tabs-buttons {
    flex-direction: column;
  }

  .tab-text h2 {
    font-size: 1.5rem;
  }

  .tab-text p {
    font-size: 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .image-placeholder {
    height: 200px;
  }

  .image-grid-item h1 {
    font-size: 1.2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prev,
  .next {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }
}
