* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Merriweather", serif;
}

/* top navbar */
.top-navbar {
  display: flex;
  justify-content: space-between;
}
.top-navbar p {
  margin-top: 13px;
  margin-left: 15px;
}
.top-navbar .icons {
  margin-top: 13px;
  margin-right: 15px;
}
.top-navbar a {
  text-decoration: none;
  color: black;
  margin-left: 10px;
}
.top-navbar a img {
  margin-bottom: 3px;
}
.top-navbar a:hover {
  color: black;
}
@media screen and (max-width: 400px) {
  .top-navbar a {
    font-size: 13px;
  }
  .top-navbar a img {
    width: 15px;
  }
  .top-navbar p {
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .top-navbar a {
    font-size: 10px;
  }
  .top-navbar a img {
    width: 13px;
  }
  .top-navbar p {
    font-size: 10px;
  }
}
@media screen and (max-width: 318px) {
  .top-navbar a {
    font-size: 8px;
    margin-left: 0;
  }
  .top-navbar a img {
    width: 10px;
    margin-left: 0;
  }
  .top-navbar p {
    font-size: 10px;
    margin-top: 20px;
  }
}
/* top navbar */

/* navbar */
#navbar {
  background-color: #0173ba;
}
#logo {
  margin-left: 15px;
  color: white;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 6px;
}
#logo span {
  color: #0173ba;
}
#logo #span1 {
  font-size: 30px;
}
.navbar-nav {
  margin-left: 20px;
}
.nav-item {
  margin-left: 10px;
}
.nav-item .nav-link {
  color: white;
  margin-left: 2px;
  text-shadow: 0px 0px 1px black;
  transition: 0.5s ease;
}
.nav-item .nav-link:hover {
  color: white;
}
/* Mega Menu Styling */
.mega-menu {
  width: 600px; /* Adjust width */
  left: 0;
  right: 0;
  position: absolute;
  background: white;
  display: none;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Show dropdown on hover */
.mega-dropdown:hover .mega-menu {
  display: block;
}

/* Dropdown Header */
.dropdown-header {
  font-size: 18px !important;
  font-weight: bold;
  color: #0173ba !important;
  margin-bottom: 5px;
}

/* Dropdown Items */
.dropdown-item {
  display: block;
  padding: 8px 10px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: #0173ba;
  color: white;
}

/* Arrange menu in columns */
.mega-menu .row {
  display: flex;
  flex-wrap: wrap;
}
.mega-menu .col-md-4 {
  flex: 1;
  min-width: 150px;
  padding: 10px;
}
@media (max-width: 768px) {
  .mega-menu {
    width: 100%;
  }
  .mega-menu .row {
    flex-direction: column;
  }
}

/* @media screen and (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .dropdown-menu.show {
    max-height: 350px;
    overflow-y: scroll;
  }
} */
#search input {
  border-radius: 50px;
  border: none;
}
#search button {
  border-radius: 50px;
  color: black;
  border: 1px solid #0173ba;
  background-color: white;
}
/*  */
/* Section Styling */
body {
  background-color: #f0f0f5; /* Light gray background */
}

.whyus-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #0173ba;
  margin-bottom: 30px;
}

.whyus-card {
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  height: 650px; /* Increased height for longer cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whyus-title {
  font-size: 45px;
  font-weight: 400px;
  color: #0173ba;
  margin-bottom: 15px;
}

.whyus-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 2; /* Increased space between lines */
  flex-grow: 1; /* Ensures text takes up more space */
}

.whyus-card img {
  width: 100%;
  height: 200px; /* Fixed height for images */
  object-fit: contain;
  margin-top: 20px;
}

/* banner */
.carousel-item .row {
  margin: 0; /* Remove margin */
}
.carousel-item .col-md-6 {
  padding: 0; /* Remove padding */
}
.carousel-item img {
  width: 100%;
  height: 500px;/* Maintain aspect ratio */
  object-fit: cover; /* Ensure it covers the container */
}

/* banner */
.category-section {
  padding: 30px 0;
}
.card {
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
}
.btn-primary {
  background: #0173ba;
  color: #fff;
  border: none;
}
.elementor-widget-divider .elementor-divider {
  display: flex;
  align-items: center; /* Align the divider properly */
  justify-content: center; /* Center the divider */
}

.elementor-divider-separator {
  background-color: #0173ba; /* Your custom color */
  display: block;
  height: 2px; /* Adjust thickness */
  width: 100%; /* Full width */
  margin: 10px 0; /* Add spacing */
}
/* Center the button */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Adjust spacing */
}

/* Light button styling */
.btn-light {
  background-color: #fff; /* White background */
  color: #0173ba; /* Blue text */
  border: 2px solid #0173ba; /* Blue border */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.btn-light:hover {
  background-color: #0173ba; /* Blue background */
  color: #fff; /* White text */
}

.mb-4 {
  color: #0173ba;
}

.card-body {
  background-color: #0173ba;
  color: #fff;
  min-height: 130px;
}

.home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  background-color: #a9a9a92b;
  z-index: 0;
}
.home .img {
}
.home .img img {
  margin-top: 30px;
}
.home .content {
  flex: 1 1 400px;
  margin-top: 20px;
}
.content h1 {
  color: rgb(67 0 86);
  font-weight: bold;
  margin-left: 23px;
  font-size: 55px;
  text-shadow: -1px 1px 1px black;
}
.content h1 span {
  color: rgb(67 0 86);
  text-shadow: 1px 1px 1px black;
}
#span2 {
  color: #ffc800;
}
.content p {
  margin-left: 23px;
}
.btn {
  margin-left: 13px;
}
.btn button {
  width: 150px;
  height: 32px;
  letter-spacing: 3px;
  background-color: rgb(67 0 86);
  color: white;
  border-radius: 5px;
  border: none;
  transition: 0.5s ease;
  cursor: pointer;
}
.btn button:hover {
  background-color: #ffc800;
  color: black;
  border: none;
}
@media screen and (max-width: 1200px) {
  .home {
    height: 90vh;
  }
}
@media screen and (max-width: 799px) {
  .home {
    height: 140vh;
  }
}
@media screen and (max-width: 550px) {
  .home {
    height: 110vh;
  }
}
@media screen and (max-width: 420px) {
  .content h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 320px) {
  .content h1 {
    font-size: 36px;
  }
}
/* home content */

/* product cards */
#product-cards {
  margin-top: 100px;
}
#product-cards h1 {
  color: #0173ba;
  border-bottom: 2px solid #0173ba;
}
#product-cards .card h3 {
  font-size: 20px;
  color: black;
}
#product-cards .card p {
  font-size: 12px;
  margin-top: 5px;
  color: black;
}
.star i {
  margin-left: 5px;
  font-size: 13px;
}
.checked {
  color: #ffc800;
}
#product-cards .card h2 {
  font-size: 20px;
  color: black;
  margin-top: 20px;
}
#product-cards .card h2 span {
  float: right;
  color: black;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  #product-cards .card h3 {
    font-size: 15px;
  }
}
/* product cards */

/* other cards */
#other-cards {
  margin-top: 30px;
}
#other-cards .card {
  background-color: #a9a9a92b;
}
#other-cards .card h3 {
  margin-top: 30px;
  color: black;
  margin-left: 10px;
  letter-spacing: 3px;
}
#other-cards .card h5 {
  margin-top: 15px;
  font-weight: 100;
  font-size: 18px;
  color: black;
  margin-left: 10px;
  letter-spacing: 3px;
  border-bottom: 2px solid black;
  width: 220px;
}
#other-cards .card p {
  margin-top: 10px;
  font-weight: 100;
  font-size: 15px;
  color: black;
  margin-left: 10px;
  letter-spacing: 3px;
}
#shopnow {
  width: 130px;
  height: 30px;
  margin-top: 10px;
  margin-left: 10px;
  letter-spacing: 3px;
  color: white;
  background-color: black;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  #other-cards .card h3 {
    margin-top: 5px;
    font-size: 20px;
  }
  #other-cards .card h5 {
    margin-top: 5px;
    font-size: 15px;
  }
  #other-cards .card p {
    margin-top: 0px;
  }
  #shopnow {
    margin-top: 0px;
    width: 120px;
    height: 30px;
    font-size: 16px;
  }
}
/* other cards */

/* banner */
.banner {
  margin-top: 60px;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  background-color: #a9a9a92b;
  z-index: 0;
}
.banner .img {
  flex: 1 1 300px;
}
.banner .img img {
  margin-top: 30px;
  width: 100%;
}
.banner .content {
  flex: 1 1 400px;
  margin-top: 20px;
}
.banner .content h1 {
  color: rgb(67 0 86);
  font-weight: bold;
  margin-left: 23px;
  font-size: 55px;
  text-shadow: -1px 1px 1px black;
}
.banner .content h1 span {
  color: rgb(67 0 86);
  text-shadow: 1px 1px 1px black;
}
#span2 {
  color: #ffc800;
}
.banner .content p {
  margin-left: 23px;
}
.btn {
  margin-left: 13px;
}
.btn button {
  width: 150px;
  height: 32px;
  letter-spacing: 3px;
  background-color: rgb(67 0 86);
  color: white;
  border-radius: 5px;
  border: none;
  transition: 0.5s ease;
  cursor: pointer;
}
.btn button:hover {
  background-color: #ffc800;
  color: black;
  border: none;
}
@media screen and (max-width: 1200px) {
  .banner {
    height: 90vh;
  }
}
@media screen and (max-width: 799px) {
  .banner {
    height: 140vh;
  }
}
@media screen and (max-width: 550px) {
  .banner {
    height: 110vh;
  }
}
@media screen and (max-width: 420px) {
  .banner .content h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 320px) {
  .banner .content h1 {
    font-size: 36px;
  }
}
/* banner */

/* other cards */
#other {
  margin-top: 50px;
}
#other .card {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
#other .card h3 {
  margin-top: 10px;
  color: white;
  text-shadow: 1px 1px 1px black;
  letter-spacing: 3px;
  font-weight: bold;
}
#other .card p {
  margin-top: 10px;
  color: white;
  text-shadow: 0px 1px 1px black;
  letter-spacing: 3px;
  font-weight: bold;
}
/* other cards */

/* offer */
#offer {
  margin-top: 100px;
}
#offer i {
  font-size: 32px;
  color: black;
}
/* offer */

/* newslater */
#newslater {
  margin-top: 100px;
}
#newslater h3 {
  font-size: 25px;
  letter-spacing: 3px;
}
.input {
  margin-top: 30px;
}
.input input {
  width: 350px;
  height: 36px;
  letter-spacing: 2px;
  border-radius: 3px;
  border: 1px solid black;
  padding-left: 5px;
}
#subscribe {
  width: 200px;
  height: 36px;
  margin-left: 10px;
  border-radius: 3px;
  border: none;
  background-color: #0173ba;
  color: white;
  letter-spacing: 3px;
  font-weight: bold;
  text-shadow: 0px 0px 1px black;
}
@media screen and (max-width: 465px) {
  .input input {
    width: 280px;
  }
  #subscribe {
    margin-top: 10px;
  }
}
@media screen and (max-width: 250px) {
  .input input {
    width: 150px;
  }
  #subscribe {
    width: 150px;
  }
}
/* newslater */

/* footer */
#footer {
  /* padding: 0 0 20px 0;  */
  color: white;
  font-size: 14px;
  background-color: #0173ba;
  margin-top: 100px;
}
#footer .footer-top {
  padding: 0;
  background-color: #0173ba;
  color: white;
}
#footer .footer-top .footer-contact {
  /* margin-bottom: 20px; */
}
#footer .footer-top .footer-contact h3 {
  color: white;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0; /* Reduced bottom margin */
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 22px; /* Reduced line height for a bit smaller text */
  margin-bottom: 0;
  color: white;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px; /* Reduced bottom padding */
}
#footer .footer-top .footer-links {
  margin-bottom: 10px; /* Reduced bottom margin */
  margin-top: 5px; /* Reduced top margin */
}
#footer .footer-top .footer-links h4 {
  color: white;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0; /* Reduced padding */
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li a {
  text-decoration: none;
  color: white;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  transition: 0.5s ease;
}
#footer .footer-top .footer-links ul li a:hover {
  color: white;
}
#footer .footer-top .socail-links a {
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  background-color: #373737;
  color: white;
  line-height: 1;
  padding: 6px 0; /* Reduced padding */
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 32px; /* Reduced size */
  transition: 0.5s ease;
}
#footer .footer-top .socail-links a:hover {
  background-color: #0173ba;
  color: white;
}
#footer .copyright {
  text-align: center;
  float: left;
}
/* #footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}
#footer .credits a {
  color: white;
} */
.text-white.text-decoration-none:hover {
  text-decoration: underline !important;
}

/* footer */

html {
  scroll-behavior: smooth;
}
.arrow {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
}

/* login */
#login {
  width: 65%;
  height: 70vh;
  background-color: #0173ba;
  margin-top: 35px;
  border-radius: 10px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
#side1 h3 {
  color: white;
  font-weight: bold;
  margin-top: 200px;
}
#side2 {
  background-color: white;
  height: 70vh;
  border-radius: 10px;
}
#side2 h3 {
  margin-top: 30px;
  color: white;
  font-weight: bold;
  text-shadow: 0px 1px 1px black;
}
.input2 input {
  margin-top: 15px;
  width: 300px;
  border: none;
  border-bottom: 2px solid white;
}
.input2 input ::placeholder {
  font-weight: bold;
}
#btnlogin {
  padding-top: 10px;
}
#btnlogin a {
  padding: 10px;
  text-decoration: none;
  border-radius: 15px;
  background-color: #0173ba;
  color: white;
  font-weight: bold;
  border: none;
  text-shadow: 0px 0px 1px black;
}
#side2 p {
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .input2 input {
    width: 250px;
  }
}
@media screen and (max-width: 765px) {
  .input2 input {
    width: 260px;
  }
  #side2 {
    height: 60vh;
  }
}
/* login */

/* about */

#about {
  margin-top: 30px;
}
#about h3 {
  font-weight: bold;
  color: #0173ba;
  text-shadow: 0px 1px 1px black;
}
#about button {
  width: 150px;
  height: 36px;
  color: white;
  background-color: #0173ba;
  border-radius: 5px;
  cursor: pointer;
}
.card-title {
  color: #0173ba;
}
/* about */

/* contact */
#contact .card {
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#contact .card:hover {
  transform: scale(1.05);
}

#contact i {
  font-size: 20px; /* Increase icon size */
  margin-bottom: 10px;
}

#contact h6 {
  font-size: 15px; /* Increase text size */
  font-weight: bold;
}

#contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

/* contact */
/* gallery */
/* Gallery Container */
.gallery-container {
  padding: 3rem;
}

/* Gallery Title */
.gallery-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover {
  transform: translateY(-5px);
}

/* Gallery Image */
/* General Styling */
.container {
  padding: 3rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #555;
}

/* Image Styling */
.work-image,
.certificate-image {
  width: 80%;
  margin-bottom: 40px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.work-image:hover,
.certificate-image:hover {
  transform: translateY(-5px);
}
.certificate-image {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
  width: 80%;
}
/* About Us Section */
/* About Us Section */
.about-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light gray background */
}

.about-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.about-section h4 {
  font-size: 1.8rem;
  color: #0173ba; /* Theme color */
  font-weight: 600;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Image Styling */
.about-img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column-reverse; /* Image on top for small screens */
    text-align: center;
  }
  .about-section h1 {
    font-size: 2rem;
  }
  .about-section h4 {
    font-size: 1.5rem;
  }
  .about-section p {
    font-size: 1rem;
  }
}
/* natubanner */
 /* Add gap above the carousel */
 .natucarousel {
  margin-top: 80px; /* Adjust as needed */
}

/* Carousel image with a transparent black overlay */
.natucarousel .carousel-item {
  position: relative;
}

.natucarousel .carousel-item img {
  width: 100%;
  height: 700px; /* Adjust height as needed */
  object-fit: cover;
  filter: brightness(50%); /* Darken the image for better text visibility */
}

/* Text at the bottom with white highlight */
.natucarousel .carousel-caption-bottom {
  position: absolute;
  bottom: 5%; /* Adjust the position */
  left: 50%;
  transform: translateX(-50%); 
  color: white;
  padding: 15px 30px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Highlight effect */
  width: 80%; /* Adjust width */
}

 /* Testimonials Section */
 .testimonials {
  text-align: center;
  padding: 50px 0;
  background-color: #0173b;
  color: white;
}

.testimonials h2 {
  font-size: 28px;
  font-weight: bold;
}

/* Underline for the heading */
.testimonials h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: white;
  margin: 10px auto 20px;
}

/* Testimonial Card Styling */
.testimonials {
  background-color: #0173ba;
  color: white;
  padding: 50px 0;
}

.testimonials h2 {
  font-size: 28px;
  font-weight: bold;
}

.separator {
  width: 100px;
  height: 3px;
  background-color: white;
  margin: 10px auto;
  border: none;
}

.testimonials .row {
  margin-top: 30px;
}

.testimonials h4 {
  font-size: 20px;
  font-weight: bold;
}

.testimonials p {
  font-size: 16px;
  margin-bottom: 10px;
}
