﻿  /* Base Styles */
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Navbar Styles */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 999;
      background-color:white;
      color:black;
      padding: 0.75rem 1.5rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .navbar-brand img {
      height: 75px;
    }

    .nav-link {
      color: #001a07 !important;
      font-weight: 500;
      position: relative;
      margin: 0 10px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .nav-link::after {
      content: "";
      height: 2px;
      background: #00d4ff;
      width: 0;
      position: absolute;
      left: 0;
      bottom: -5px;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .dropdown-menu {
      background: #f7f9fa;
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      min-width: 450px;
      transform: scale(0.95);
      transition: all 0.3s ease-in-out;
    }

    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      transform: scale(1);
    }

    .dropdown-flex {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .dropdown-column {
      flex: 1;
      min-width: 180px;
    }

    .dropdown-header {
      font-size: 1.1rem;
      font-weight: 600;
      color: #203a43;
      margin-bottom: 0.5rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 0.25rem;
    }

    .dropdown-item {
      color: #333;
      font-size: 0.95rem;
      padding: 0.35rem 0;
      transition: all 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: #e2f3ff;
      color: #0077cc;
      border-radius: 5px;
      padding-left: 10px;
    }
    .dropdown-item {
  list-style: none; /* ensures no bullets */
}
    /* Responsive Styling */
    @media (max-width: 991.98px) {
      .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        padding: 0.5rem;
      }
      .dropdown-flex {
        flex-direction: column;
      }
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='white' class='bi bi-list' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 12.5a.5.5 0 010-1h12a.5.5 0 010 1H2zm0-5a.5.5 0 010-1h12a.5.5 0 010 1H2zm0-5a.5.5 0 010-1h12a.5.5 0 010 1H2z'/%3E%3C/svg%3E");
    }

     .carousel-inner {
      height: 90vh;
    }

    .carousel-item {
      position: relative;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 1s ease-in-out;
    }

    .carousel-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5); /* overlay */
    }

    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      animation: fadeInUp 1s ease-out;
    }

    .carousel-caption h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color:white;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      margin: 1rem 0;
    }

    .carousel-caption .btn {
      background-color: #00c6ff;
      border: none;
      color: #fff;
      padding: 10px 25px;
      font-weight: 500;
      border-radius: 30px;
      transition: background 0.3s ease;
    }

    .carousel-caption .btn:hover {
      background-color: #008cba;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

  @media (max-width: 768px) {
  .carousel-inner {
    height: 30vh;
  }

  .carousel-item img {
    height: 30vh;
    object-fit: cover;
  }

  .carousel-caption h2 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .carousel-caption p {
    font-size: 0.8rem;
    margin: 0.5rem 0;
  }

  .carousel-caption .btn {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  .carousel-caption {
    padding: 0 1rem;
  }
}
  .social-icons {
  position: absolute;
  top: 40%;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #00c6ff;
  transform: scale(1.1);
  color: #fff;
}
@media (max-width: 768px) {
      .social-icons {
        position: fixed;
        display: none;
        bottom: 20px;
        left: 50%;
        top: 241px;
        transform: translateX(-50%);
        flex-direction: row;
        height: 55px;
        gap: 12px;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px 15px;
        border-radius: 30px;
        z-index: 999;
    }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.about-mkr {
  background: #f8f9fa;
  text-align: center;
}

.about-mkr h2 {
  font-weight: 700;
  color: #003366;
}

.about-mkr p {
  font-size: 1.1rem;
  color: #333;
}

.btn-mkr {
  background-color: #00c6ff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.btn-mkr:hover {
  background-color: #008cba;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .about-mkr {
    padding: 30px 15px;
  }

  .about-mkr h2 {
    font-size: 1.5rem;
  }

  .about-mkr p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .btn-mkr {
    padding: 8px 20px;
    font-size: 0.95rem;
  }
}
.video-content {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.video-content h2 {
  font-weight: 700;
  color: #003366;
}

.video-content p {
  font-size: 1.1rem;
  color: #333;
}

.owner-name {
  margin-top: 20px;
}

.owner-name p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00c6ff;
}

.owner-name span {
  display: block;
  font-size: 1rem;
  color: #555;
}

.video-container iframe {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .video-content {
    padding: 30px 15px;
  }

  .video-content h2 {
    font-size: 1.5rem;
  }

  .video-content p {
    font-size: 1rem;
  }

  .owner-name p {
    font-size: 1rem;
  }

  .owner-name span {
    font-size: 0.9rem;
  }
}
/* Sticky Buttons */
/* Sticky Buttons - Left Side Aligned */
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.btn-sticky {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 50px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  
  cursor: pointer;
}

.btn-sticky i {
  font-size: 18px;
}

/* Specific Button Colors */
.btn-whatsapp {
  background: linear-gradient(to right, #25D366, #128C7E);
}

.btn-enquiry {
  background: linear-gradient(to right, #007bff, #0056b3);
}

.btn-contact {
  background: linear-gradient(to right, #28a745, #1e7e34);
}

/* Hover Animation */
.btn-sticky:hover {
  transform: translateX(5px);
  opacity: 0.95;
}

/* Modal Box Styling */
.modal-content {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-title {
  margin: 0 auto;
  font-weight: bold;
}

.modal-body {
  padding: 20px;
}

.form-label {
  font-weight: bold;
  font-size: 14px;
}

.form-control {
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
}

/* Submit Button */
button[type="submit"] {
  width: 100%;
  background-color: #28a745;
  border-radius: 30px;
  font-size: 16px;
  padding: 12px;
  color: #fff;
  border: none;
  transition: all 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* I'm Not Robot Checkbox */
.robot-check {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    bottom: 10px;
    left: 10px;
    gap: 12px;
  }

  .btn-sticky {
    font-size: 13px;
    padding: 10px 16px;
    width: 0px;
          

  }

  .btn-sticky i {
    font-size: 16px;
      position: relative;
        left: -7px;
  }

  .modal-body {
    padding: 16px;
  }

  .form-control {
    font-size: 14px;
  }

  button[type="submit"] {
    font-size: 15px;
    padding: 10px;
  }
}
.choose-us-modern {
  background: url('../Image/Slider-3.jpg') center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
}

.choose-us-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.choose-us-modern .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
}

/* 3-by-2 layout */
.choose-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.choose-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 25px;
  border-radius: 20px;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.choose-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.02);
}

.choose-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #00c6ff;
  transition: 0.3s;
}

.choose-card:hover .choose-icon {
  color: #fff;
  transform: scale(1.2);
}

.choose-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.choose-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Center-align 2nd row of 2 cards */
.choose-boxes > .choose-card:nth-child(4),
.choose-boxes > .choose-card:nth-child(5) {
  grid-column: span 1;
  justify-self: center;
}

/* Responsive: Stack on mobile */
@media (max-width: 992px) {
  .choose-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .choose-boxes > .choose-card:nth-child(4),
  .choose-boxes > .choose-card:nth-child(5) {
    grid-column: span 1;
    justify-self: center;
  }
}

@media (max-width: 576px) {
  .choose-boxes {
    grid-template-columns: 1fr;
  }
}
.product-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px 40px;
      text-align: center;
      position: relative;
    }

    h2 {
      color: #222;
      font-size: 32px;
      margin-bottom: 10px;
    }

    .subheading {
      color: #555;
      font-size: 16px;
      margin-bottom: 40px;
    }

    .slider-wrapper {
      position: relative;
      overflow: hidden;
    }

    .slider-container {
      overflow-x: hidden; /* Hide scroll bar */
    }

    .slider {
      display: flex;
      gap: 20px;
      padding-bottom: 10px;
    }

    .product-card {
      background-color: white;
      border-radius: 30px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 260px;
      flex-shrink: 0;
      text-align: center;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-top-left-radius:20px;
      border-top-right-radius:20px;
    }

    .product-card p {
      font-weight: bold;
      color: #222;
      padding: 15px 10px;
      margin: 0;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #333;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    .arrow:hover {
      background-color: #555;
    }

    /* Optional: Hide scrollbar for all browsers */
    .slider-container::-webkit-scrollbar {
      display: none;
    }
    .slider-container {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;     /* Firefox */
    }
      .counter-section {
      background: url('https://i.imgur.com/8Km9tLL.jpg') no-repeat center center/cover;
      position: relative;
      color: #fff;
      padding: 60px 30px;
    }

    .counter-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 48, 87, 0.9);
      z-index: 0;
    }

    .counter-content {
      position: relative;
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      z-index: 1;
    }

    .left-box {
      flex: 1 1 30%;
      padding-right: 20px;
    }

    .left-box h2 {
      font-size: 32px;
      font-weight: bold;
      color:yellow;
      margin-bottom: 20px;
    }

    .right-box {
      flex: 1 1 65%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .counter {
      text-align: center;
      flex: 1 1 22%;
      margin: 10px 0;
    }

    .counter .number {
      font-size: 28px;
      font-weight: bold;
    }

    .counter .label {
      font-size: 14px;
      font-style: italic;
    }

    .cta {
      text-align: center;
      color: #fff;
      margin-top: 30px;
    }

    .cta span {
      font-size: 16px;
    }

    .cta b {
      font-weight: bold;
    }

    .cta button {
      margin-left: 10px;
      padding: 10px 20px;
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta button:hover {
      background: #fff;
      color: #003057;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .counter-content {
        flex-direction: column;
        text-align: center;
      }

      .left-box,
      .right-box {
        flex: 1 1 100%;
      }

      .counter {
        flex: 1 1 45%;
      }
    }
     .heading-wrap {
      text-align: center;
      padding: 50px 20px 20px;
    }

    .heading-wrap h2 {
      font-size: 2.5rem;
      margin: 0;
      opacity: 0;
      transform: translateY(-30px);
      animation: fadeSlide 1.2s ease-out forwards;
    }

    @keyframes fadeSlide {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slider-wrap {
      overflow: hidden;
      width: 100%;
      background: #fff;
      padding: 30px 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .logo-track {
      display: flex;
      width: max-content;
      animation: scroll 25s linear infinite;
    }

    .logo-item {
      flex: 0 0 auto;
      margin: 0 50px;
    }

    .logo-item img {
      height: 70px;
      width: auto;
      display: block;
      filter: grayscale(100%);
      transition: all 0.3s ease;
    }

    .logo-item img:hover {
      filter: grayscale(0%);
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive tweak */
    @media (max-width: 600px) {
      .logo-item {
        margin: 0 20px;
      }
      .heading-wrap h2 {
        font-size: 1.8rem;
      }
    }
    .section {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 50px;
      align-items: center;
      justify-content: center;
      background: #fff;
      gap: 50px;
    }

    .image-area {
      flex: 1 1 40%;
      position: relative;
      animation: bounce 3s ease-in-out infinite;
    }

    .image-area img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .badge {
      position: absolute;
      bottom: -20px;
      left: 20px;
      background: #003B5C;
      color: #fff;
      padding: 15px 25px;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .badge span {
      display: block;
      font-size: 13px;
      font-weight: normal;
      margin-top: 5px;
    }

    .content-area {
      flex: 1 1 50%;
      animation: fadeInUp 1.5s ease-in;
    }

    .content-area h2 {
      color: #d50808;
      font-size: 32px;
      margin-bottom: 10px;
    }

    .content-area h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .content-area p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .features-list {
      list-style: none;
      padding: 0;
    }

    .features-list li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
      font-size: 16px;
    }

    .features-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #00b894;
      font-weight: bold;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        padding: 40px 20px;
      }

      .badge {
        font-size: 18px;
        padding: 10px 18px;
        bottom: -15px;
      }

      .content-area h2 {
        font-size: 26px;
      }

      .content-area h3 {
        font-size: 18px;
      }
    }
     @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  section div:hover {
    transform: translateY(-5px);
  }

  @media (max-width: 768px) {
    section > div {
      flex-direction: column;
      align-items: center;
    }

    section div[style*="width: 320px"] {
      width: 100%;
      max-width: 360px;
    }
  }
