/* Global */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}
html {
    scroll-behavior: smooth;
  }
/* Navbar */
.navbar {
  background-color: #0a3468;
  min-height: 100px;
}
.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 600;
}
.navbar-nav .nav-link.active {
  color: #00b14f !important;
}
.navbar-brand img {
  height: 90px;
}

/* Banner */
.banner-slide {
  height: 85vh;
  background-size: cover;
  background-position: center;
  animation: fadeInOut 12s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.animated-text {
  font-size: 2.5rem;
  font-weight: 700;
}
.banner-slide .btn-animate {
  border-width: 2px;
  transition: all 0.3s ease;
}
.banner-slide .btn-animate:hover {
  background-color: #00b14f;
  border-color: #00b14f;
  color: #fff;
}
.highlight-green {
  color: #00b14f;
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
.banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0)); /* Left to right fade */
  z-index: 2;
}

.banner-slide > .container {
  position: relative;
  z-index: 3;
}

/* Certification Banner */
.certification-banner {
  background-color: #0caf51;
  max-width: 72%;
  height: 100px;
  margin-top: -51px;
  margin-left: 0;
  z-index: 1;
  position: relative;
  clip-path: polygon(0 0, 90% 0, 95% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 35px;
  font-family: 'Roboto', sans-serif;
}
.certification-text {
  padding: 0 1rem;
  text-align: center;
}

/* About Section */
.about-section {
  background-color: #fff;
  padding: 100px 0;
}
.about-img img {
  max-width: 450px;
  float: right;
  margin-right: 70px;
}
.about-text {
  font-family: 'Roboto', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .about-text h2,
  .about-text h4 {
    text-align: center;
  }

  .about-img img {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .certification-banner {
    font-size: 20px;
    height: 80px;
    max-width: 100%;
  }
}


.services-section {
  background-color: #fafafa;
  padding: 100px 0;
  font-family: 'Roboto', sans-serif;
}

.services-section .section-subtitle {
  color: #014776;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
}

.services-section .section-title {
  color: #152441;
  font-weight: bold;
  font-size: 32px;
}


@media (max-width: 768px) {
  .about-text h2,
  .about-text h4 {
    text-align: center;
  }

  .about-img img {
    float: none;
    margin: 0 auto;
    display: block;
    max-width: 100%; /* Ensures responsiveness on mobile */
    height: auto;
  }

  .certification-banner {
    font-size: 20px;
    height: 80px;
    max-width: 100%;
  }
}

.about-text small {
  display: block;
  text-align: center;

}

@media (max-width: 768px) {
  .about-text h2,
  .about-text h4 {
    text-align: center;
  }

  .about-text small {
    display: block;
    text-align: center;
    width: 100%;
  }

  .about-img img {
    float: none;
    margin: 0 auto;
    display: block;
    max-width: 80%;
    height: auto;
  }

  .certification-banner {
    font-size: 20px;
    height: 80px;
    max-width: 100%;
  }
}

/* Reusable padding and layout control */
.service-text {
  padding: 3rem;
}

.service-content {
  max-width: 560px;
  width: 100%;
}

.service-content.left {
  padding-left: 100px;
}

.service-content.right {
  padding-right: 100px;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-text {
    padding: 2rem !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .service-content {
    padding: 0 !important;
    text-align: center !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .swiper-slide img {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
}



/* Remove all padding from navbar */
.navbar {
  padding: 0 !important;
}

/* Padding for nav links */
.navbar-nav .nav-link {
  padding: 40px 25px !important;
}

/* Base dropdown styles */
.custom-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #00bf51;
  padding: 0;
  margin-top: 0;
  min-width: 180px;
  z-index: 999;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.custom-dropdown-menu li a{
  background: #00bf51;
}
/* Triangle on top */
.dropdown-arrow {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #00bf51;
}

/* Dropdown items styling */
.custom-dropdown-menu .dropdown-item {
  padding: 10px 16px;
  color: #fff;
  /* background-color: #fff; */
  font-weight: 500;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus,
.custom-dropdown-menu .dropdown-item.active {
  background-color: #0a3468;
  color: #fff;
}

/* Desktop hover only (min-width: 992px) */
@media (min-width: 992px) {
  .custom-dropdown:hover .custom-dropdown-menu {
    display: block;
  }

  .custom-dropdown .dropdown-toggle::after {
    display: none;
  }
 
  
}

/* Mobile fix for Bootstrap dropdown */
@media (max-width: 991px) {
  .custom-dropdown-menu {
    position: static;
    /* display: block; */
    box-shadow: none;
    background-color: transparent;
    border: none;
  }

  .dropdown-arrow {
    display: none;
  }

  .custom-dropdown-menu .dropdown-item {
    padding: 10px 20px;
    background: white;
    color: #000;
  }
  .navbar-nav .nav-link {
    padding: 9px 25px !important;
}
.navbar-brand img {
    height: auto;
    width: 100%;
    max-width: 250px;
}
footer img{
    float: left;
  }
  footer h5{
        text-align: left;
     width: 100%;
  }
  footer ul{
        text-align: left;
    width: 100%;
  }
  .content-center {
    justify-content: left !important;
}
 .about-section p{
    text-align: left;
  }
  .card-text{
     text-align: center;
  }
  .testimonialSwiper p{
     text-align: center;
  }
  footer p{
    text-align: center;
  }
  html{
    overflow-x: hidden;
  }
  p{
    text-align: center !important;
  }
  .certifying-trust-section p {
    text-align: center;
}
.services-section2 h5 {
    font-size: 25px !important;
    text-align: center;
}
.product-certification-section h4 {
    font-size: 25px !important;
}
p{
  text-align: left !important;
  font-size: 18px !important;
}

.banner-slide{
  height: 50vh;
}
.animated-text{
  font-size: 27px;
}
.about-section {
    padding: 50px 0;
}
.services-section {
    padding: 30px 0;
}
.section-title {
    font-weight: 400 !important;
    font-size: 25px !important;
}
h3{
  text-align: left;
}
h2{
  text-align: left;
}
.m-tl{
  text-align: left !important;
}
.m-tc{
  text-align: center !important;
}
.p-150{
  padding: 50px 0 !important;
}
.p-100{
  padding: 50px 0 !important;
}
.footer-padding{  
    padding: 50px 0 0 !important;
}
.vision-title {
    font-size: 25px !important;
    text-align: left;
}
.news-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.contact-page {
    padding: 60px 15px !important;
}
}
.footer-padding{
    padding: 150px 0 0;
}

.p-150{
  padding: 150px 0;
}

.p-100{
  padding: 100px 0;
}

.t-c{
  text-align: center;
}
.about-banner2 {
  background-image: url('../images/about-banner2.jpg');
}

.about-banner {
  background-image: url('../images/about-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  position: relative;
  color: #fff;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 41, 77, 0.65); /* dark blue overlay for readability */
  z-index: 1;
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.about-heading {
  font-size: 65px;
  font-weight: 100;
  letter-spacing: 1px;
}
@media (max-width: 767.98px) {
  .about-banner {
    height: 20vh;
  }
}


.mt-100{ margin-top: 100px;}

.certifying-trust-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.certifying-trust-section h2 {
  color: #0caf51; /* Updated green */
  font-weight: 700;
      font-size: 50px;
}

.certifying-trust-section h3 {
    color: #014776;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 35px;
}

.certifying-trust-section p {
  text-align: justify;
  color: #152441; /* Updated paragraph color */
  font-size: 16px;
}
.vision-title {
    color: #152441;
    font-weight: 100;
    font-size: 40px;
    margin-bottom: 15px;
}

.vision-text {
  color: #152441;
  font-size: 16px;
  text-align: justify;
}

@media (max-width: 767.98px) {
  .certifying-trust-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .certifying-trust-section h3 {
            font-size: 20px;
        text-align: center;

  }

  .certifying-trust-section img {
    max-width: 100%;
    height: auto;
  }
  .mt-100 {
    margin-top: 50px;
}
.certifying-trust-section h2 {
    font-weight: 700;
    font-size: 39px;
    text-align: center;
}
}







.quality-policy-section {
  padding: 150px 0;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto;
  color: #152441;
  font-size: 16px;
}

.section-title {
    color: #014776;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

.quality-policy-section p {
  color: #152441;
  text-align: justify;
  font-size: 16px;
}

.list-style-green {
  list-style: none;
  padding-left: 0;
}

.list-style-green li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.list-style-green li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #0caf51;
  font-size: 18px;
}
.im2{
    width: 90%;
    float: right;
}
.im1{
    width: 90%;
    float: left;
}
.mt-h5{
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .quality-policy-section {
    padding: 60px 0;
  }

 
  .im2{
    width: 100%;
    float: right;
}
.im1{
    width: 100%;
    float: left;
}
.mt-h5{
  margin-top: 15px;
}
}





.our-commitment-section {
  background-image: url('../images/our-commitment-bg.jpg'); /* Replace with actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.our-commitment-section .overlay {
  padding: 100px 0;
}

.section-title-white {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.commitment-list {
  list-style: none;
  padding-left: 0;
}

.commitment-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.6;
    color: #fff;
    font-weight: 200;
}
.commitment-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .our-commitment-section,
  .our-commitment-section .overlay {
    padding: 60px 0;
  }

  .section-title-white {
    font-size: 18px;
  }

  .commitment-list li {
    font-size: 15px;
  }
  .our-commitment-section .overlay {
  padding: 0px 0;
}
}


.bg-green {
  background-color: #00bf51;
}

.bg-blue {
  background-color: #014776;
}

.list-white {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-white li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.6;
}

.list-white li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 4px;
  color: #ffffff;
  font-size: 14px;
}
.b-one {
    padding-left: 14%;
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}
.b-two {
    padding-right: 14%;
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.why-certification-section h4{
    font-size: 35px;
    font-weight: 500;
}
@media (max-width: 767.98px) {
  .bg-green,
  .bg-blue {
    padding: 40px 20px;
  }

  h4 {
    font-size: 18px;
  }

  .list-white li {
    font-size: 15px;
  }
}
.product-certification-section{
  padding: 150px 0;
}
.product-certification-section h5{
  font-size: 30px;
  color: #152441;
  margin-bottom: 30px;

}
.product-certification-section img{
 width: 100%;
 max-width: 90px;

}
.list-style-green {
  list-style: none;
  padding-left: 0;
}

.list-style-green li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #152441;
  font-size: 18px;
  line-height: 1.5;
}

.list-style-green li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #0caf51;
  font-size: 14px;
}
.mt-75 {
    margin-top: 75px;
}
.product-certification-section h4 {
    color: #152441;
    font-weight: 100;
    font-size: 40px;
    margin-bottom: 15px;
}
 .product-certification-section p{
    font-size: 18px;
    margin-bottom: 65px;
}
@media (max-width: 767.98px) {
.product-certification-section {
    padding: 60px 0;
}
.services-section2{
  padding: 60px 0;
}
.about-heading {
    font-size: 30px;
}
.product-certification-section img {
    width: 100%;
    max-width: 50px;
}

}

.services-section2{
  padding: 150px 0;
}

.list-style-green {
  list-style: none;
  padding-left: 0;
}

.list-style-green li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #152441;
  font-size: 15px;
  line-height: 1.5;
}

.list-style-green li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #0caf51;
  font-size: 14px;
}

.service-img-circle {
  border-radius: 50%;
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-section2 h5{
  color: #152441;
    font-weight: 100;
    font-size: 40px;
    margin-bottom: 15px;
}



.news-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f8f9fa;
}

.news-section .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.news-section .card {
  border-radius: 0.5rem;
  transition: transform 0.2s ease-in-out;
}

.news-section .card:hover {
  transform: translateY(-5px);
}

.news-section a {
  color: inherit;
  text-decoration: none;
}

.news-section a:hover .card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.contact-page{
  padding: 150px 15px;
}




.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-left,
.contact-right {
  flex: 1 1 45%;
}

.contact-subtitle {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #555;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
textarea{
    min-height: 170px;}
.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.form-group input {
  flex: 1;
}

.btn-submit {
  background-color: black;
  color: white;
  padding: 14px 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.contact-disclaimer {
  font-size: 0.75rem;
  color: #555;
  margin-top: 10px;
}

.contact-disclaimer a {
  text-decoration: underline;
  color: #333;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-block h4 {
  margin: 0;
  color: #152441;
  font-weight: normal;
}

.contact-block p {
  margin: 4px 0;
}

.contact-block .icon {
  font-size: 1.5rem;
  margin-right: 20px;
}


.news-detail-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-detail-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #152441;
}

.badge.bg-success {
  background-color: #0caf51 !important;
}
.news-detail-section {
padding: 150px 0;
}
@media (max-width: 767.98px) {
  .news-detail-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .news-detail-body p {
    font-size: 15px;
  }
  .news-detail-section {
padding: 60px 0;
}
}

.blog-detail-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.blog-detail-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #152441;
}

.blog-detail-body blockquote {
  font-size: 16px;
  background-color: #f8f9fa;
  border-left: 4px solid #0d6efd;
  color: #333;
}

.badge.bg-primary {
  background-color: #014776 !important;
}

@media (max-width: 767.98px) {
  .blog-detail-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-detail-body p {
    font-size: 15px;
  }
}


.sticky-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #0a3468;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
p {
    text-align: justify;
    font-weight: 100;
    font-size: 18px;
}



/* Reset Bootstrap's default bg image */
.custom-toggler .navbar-toggler-icon {
  background-image: none;
}

/* 3 bars */
.custom-toggler .toggler-icon {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background-color: #fff; /* white bars */
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Animate into "X" when expanded */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar-toggler {
    border: none;
    padding: 0 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}


.clr-blue {
    color: #014776;
}
.clr-green {
    color: #0caf51;
}
footer p{
    text-align: left;
}