
    /* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap');

body {
  margin: 3px;
  font-family: 'Outfit', sans-serif;
  background-color: floralwhite;
}

.main-header {
    position: fixed;
    height: 15vh;
    color: black;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 5;
    background-color: wheat;
    top: 0;
    width: 100%;
}

.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/flags.png') center center / cover no-repeat;
  opacity: 0.2; /* Adjust image opacity */
  filter: blur(1px); /* Optional blur */
  z-index: 1;
}

.main-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0, 155, 242, 0.4));
  z-index: 2;
}

/* Overlay not mandatory anymore but kept for safety */
.main-header .overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Content container */
.main-header .container {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Heading with animation */
.main-header h1 {
  font-size: clamp(1.8rem, 4vw, 2rem);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeSlide 1s ease-in-out forwards;
  opacity: 0;
}

/* Navigation links */
.main-header nav a {
  margin-left: 2rem;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.main-header nav a:hover {
  color: #ffd700; /* gold highlight on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .main-header .container {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
  }

  .main-header nav a {
    margin: 0 1rem;
  }
}

/* Animation Keyframes */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 6;
  color: black;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  position: relative;
  color: #000;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background-color: #005577;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #005577;
}

.nav-menu a:hover::after {
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.logo {
  height: 80px;
  width: auto;
  margin-right: 1rem;
}

/* Mobile styles */
@media (max-width: 486px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 5;
  }

  .nav-menu.show {
    display: flex;
    width: fit-content;
  }

  .nav-menu a {
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #ccc;
    color: #000;
  }
  .logo {
  height: 80px;
  width: auto;
  margin-right: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
}

.site-heading {


  

     position: relative;
  text-align: center;
  padding: 2rem 0;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  animation: backgroundSlide 15s infinite;
}




.site-heading .site-heading-h.animate {
  opacity: 1;
  visibility: visible;
  animation: fadeSlide 1s ease forwards;

}

.site-heading .site-heading-p.animate {
  opacity: 1;
  visibility: visible;
  animation: fadeSlide 1s ease forwards;
  animation-delay: 0.5s;

}



/* Add keyframes for background slideshow */
@keyframes backgroundSlide {
  0%   { background-image: url('images/image.jpg'); }
  33%  { background-image: url('images/s1.jpg'); }
  66%  { background-image: url('images/s2.jpg'); }
  100% { background-image: url('images/s3.jpg'); }
}

.site-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: -1;
}


.site-heading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  z-index: -1;
}


  

.site-heading .site-heading-h {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 37px;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateY(0px);
  transition: all 1s ease-in-out;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.site-heading .site-heading-p {
  font-size: clamp(1rem, 5vw, 1rem);
  line-height: 37px;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateY(0px);
  transition: all 1s ease-in-out;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.site-heading .site-heading-h.animate {
  opacity: 0.9;
  visibility: visible;
  transform: matrix3d(1, 0, 0, 0,
                      0, 1, 0, 0,
                      0, 0, 1, -0.0025,
                      0, 13.1538, 0, 1);
}

.site-heading .site-heading-p.animate {
  opacity: 0.564444;
  visibility: visible;
  transform: matrix3d(1, 0, 0, 0,
                      0, 1, 0, 0,
                      0, 0, 1, -0.0025,
                      0, 13.1538, 0, 1);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #005577;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
  height: 200px; /* You can adjust this height */
  object-fit: cover; /* Ensures image fills the area without distortion */
  border-radius: 8px;

}

.service-card h3 {
  font-size: 1.3rem;
  color: #005577;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}


    .section {
      padding: 2rem;
    }

    .section h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #005577;
      font-size: 2rem;
    }
    .products {
      display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
    }

    
   
    .products-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    padding: 1.5rem;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
   .products-card img {
   
      width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

    

    .products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.products-card h3 {
  font-size: 1.3rem;
  color: #005577;
  margin-bottom: 0.5rem;
}

.products-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
  }
}

/* Styling for the trust section */
.why-trust-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #f7faff;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
}
.trust-box {
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s forwards;
}
.trust-box:nth-child(1) { animation-delay: 0.2s; }
.trust-box:nth-child(2) { animation-delay: 0.4s; }
.trust-box:nth-child(3) { animation-delay: 0.6s; }
.trust-box:nth-child(4) { animation-delay: 0.8s; }
.trust-box:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline styling */
.timeline-section {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  background: #005577;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}
.testimonial-carousel {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 1rem;
}
.testimonial {
  background: #fff;
  padding: 1.2rem;
  border-left: 4px solid #005577;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 1000;
}
.whatsapp-chat:hover {
  background-color: #128c7e;
}


    

    .inquiry {
      background: #e6f0ff;
      padding: 2rem;
      border-radius: 10px;
      max-width: 600px;
      margin: 1rem auto;
    }
    .inquiry input, .inquiry textarea {
      width: 100%;
      padding: 0.8rem;
      margin: 0.5rem 0;
      border-radius: 6px;
      border: 1px solid #ccc;
    }
    .inquiry button {
      padding: 0.8rem 1.5rem;
      background: #005577;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
    }
    footer {
      background: #002244;
      color: white;
      text-align: center;
      padding: 1rem;
    }



    /********************************************************/
    /* General Section Styling */
.section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Titles */
.section h1,
.section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #005577;
  margin-bottom: 2rem;
  text-align: center;
}

/* Products Container */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Individual Product Cards */
.products-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

/* Animate cards on load with stagger */
.products-card:nth-child(1) {
  animation-name: fadeSlideUp;
  animation-delay: 0.1s;
}
.products-card:nth-child(2) {
  animation-name: fadeSlideUp;
  animation-delay: 0.3s;
}
.products-card:nth-child(3) {
  animation-name: fadeSlideUp;
  animation-delay: 0.5s;
}
.products-card:nth-child(4) {
  animation-name: fadeSlideUp;
  animation-delay: 0.7s;
}

/* Hover effect */
.products-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Product Images */
.products-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.products-card:hover img {
  transform: scale(1.05);
}

/* Product Titles */
.products-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #003355;
  margin-bottom: 0.5rem;
}

/* Product Descriptions */
.products-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
  }
  .products-card {
    width: 90%;
  }
}

/* Fade and slide up animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section fade-in for titles */
.section-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

/* Optional: Animate entire section on scroll (requires JS) */
/* You can add a class like 'animate-section' on scroll to trigger this */
.animate-section {
  animation: fadeSlideUp 0.8s ease forwards !important;
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}


