/* Styles for the fixed navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.toggle_btn{
  display: none;
}
.drp-menu{
  position: absolute;
  top: 0px;
  right: 0px;
  /* border: 1px solid black; */
  background-color: rgb(255, 255, 255);
  height: 100vh;
  width: 80%;
  display: none;
  flex-direction: column;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.658);
}
.drp-menu li{
  list-style: none;
  font-weight: 700;
  margin-top: 29px;
}
.drp-menu ul li .nav{
  color: #b54042;
  margin-left: 20px;
  list-style: none ;
  font-size: 22px;
  text-decoration: none;
}
.drp-menu ul li a{
  font-size: 12px;
}

.logo {
    display: flex;
    align-items: center; /* Align items vertically */
}

.logo img {
    height: 50px; /* Adjust height of the logo as needed */
    margin-right: 10px; /* Add spacing between logo and company name */
}

.company-name {
    color: #b54042;
    font-weight: bold;
    font-size: 1.8em;
}

.nav-links a {
    color: #b54042;
    text-decoration: none;
    font-size: 1.2em;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: 15px;
}

.home-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    padding: 50px;
}

.content {
    width: 50%; /* Content takes up 50% of the width */
    margin-right: 20px; /* Margin on the right side */
    margin-top: 130px;
    font-size: 1.1em;
}

.levitating-image {
    width: 50%; /* Image takes up 50% of the width */
    height: auto; /* Maintain aspect ratio */
    animation: bounce 1s infinite alternate; /* Apply the bounce animation */
    margin-top: 110px; /* Adjust margin to prevent overlap with navbar */
    
}

@keyframes bounce {
    from {
        transform: translateY(0); /* Start position */
    }
    to {
        transform: translateY(-20px); /* End position */
    }
}
.stylish-content {
    width: 80%; /* Set the width of the content */
    margin: 50px auto; /* Add margin on both sides, centered horizontally */
    padding: 20px; /* Add padding for better readability */
    background-color: #f4f4f4; /* Add a light background color */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
}

.stylish-content p {
    color: #333; /* Darken the color of the paragraph text */
    font-size: 21px; /* Increase font size for better readability */
}
.Our-Offering-section {
    text-align: center; /* Center-align the content */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b54042;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px; /* Add margin to separate the button from the content */
}
.Our-Offering-section h1 {
    font-family: Arial, sans-serif; /* Change the font to Arial or any other desired font */
    position: relative; /* Set position to relative */
    border-bottom: 5px solid #b54042; /* Add underline with specified color */
    display: inline-block; /* Ensure the underline only spans the width of the heading */

}
.our-offerings-content {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center align items vertically */
    margin-top: 20px;
}

.large-text {
    width: 60%;
    font-size: 18px; /* Set font size */
    margin-right: 20px; /* Add space between text and image */
}

.our-offerings-image {
    width: 39% ;/* Set width of the image */
    height: auto; /* Maintain aspect ratio */
}
/* Styles for the bar button */
.bar-button {
    display: none; /* Hide button by default */
    font-size: 1.5em; /* Adjust font size */
    background-color: #333; /* Transparent background */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor to pointer */
}

/* Media query for screens up to 768px width */
@media screen and (max-width: 470px) {
    .navbar {
        flex-direction: column; /* Change flex direction to stack items vertically */
    }
    
    .nav-links {
        display: none; /* Hide nav links by default */
        order: 3; /* Change order to display below logo and button */
    }
    
    .bar-button {
        display: block; /* Show bar button for small screens */
        order: 2; /* Change order to display between logo and nav links */
        margin-bottom: 10px; /* Add margin to separate button from logo */
    }

    .levitating-image {
        order: 4; /* Change order to display below content */
    }
}

/* Styles for the home page image */
.levitating-image img {
    max-width: 100%; /* Set maximum width to 100% */
    height: auto; /* Maintain aspect ratio */
}
.why-choose-us-section{
    text-align: center;

}

.why-choose-us-section h1 {
     font-family: Arial, sans-serif; /* Change the font to Arial or any other desired font */
     
     position: relative; /* Set position to relative */
     border-bottom: 5px solid #b54042; /* Add underline with specified color */
     display: inline-block;
   
}

.why-choose-us-content {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center align items vertically */
    margin-top: 20px;
}

.why-choose-us-content img {
    width: 39%; /* Set width of the image */
    height: auto; /* Maintain aspect ratio */
}

.why-choose-us-content .large-text {
    width: 60%;
    font-size: 18px; /* Set font size */
    margin-left: 20px; /* Add space between image and text */
}
.mainservices{
    text-align: center;
}
.mainservices h1 {
    font-family: Arial, sans-serif; /* Change the font to Arial or any other desired font */
    
    position: relative; /* Set position to relative */
    border-bottom: 5px solid #b54042; /* Add underline with specified color */
    display: inline-block;
  
}
.mainservices h3{
    text-align: center;
    margin: auto;
    font-family: Arial, sans-serif;
}
.services-section {
    text-align: center;
    margin-top: 50px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.services-container p{
    font-size: larger;
    font-family: Arial, sans-serif;
    
}
.service-card {
    width: calc(25% - 20px); /* Adjust the width of each card */
    background-color: #fcfcfc;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05); /* Add a hover effect */
}

.service-card img {
    width: 80px; /* Adjust the size of the icon */
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.2em;
    color: #333;
}

.service-card p {
    font-size: 1em;
    color: #666;
}
.contact {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.contact-item img {
  width: 30px;
  margin-right: 10px;
}

.contact-item p {
  font-size: 18px;
  font-weight: bold;
  color: #666;
  margin: 0;
}
.footer-top {
  background-color: #ffffff;
  color: #b54042;
  padding: 50px 0;
}
.footer-top{
  font-family: Arial, sans-serif;
}
.footer-top h3,
.footer-top h4 {
  color:black;
}

.footer-contact p {
  color: black;
}

.footer-contact p strong {
  color: black;
}

.footer-contact .social-links a {
  color: #b54042;
  transition: color 0.3s;
}

.footer-contact .social-links a:hover {
  color: #7e0103;
}

.footer-links ul {
  padding: 0;
}

.footer-links ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #b54042;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #7e0103;
}

.footer-bottom {
  background-color: #ffffff;
  color: black;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .copyright strong {
  color: black;
}

.footer-bottom .credits {
  color: black;
}

/* Adjustments for Horizontal Layout */
.footer-top .container .row {
  display: flex;
  justify-content: space-between;
}

.footer-top .container .row .col-lg-3 {
  flex: 1;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.home-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #b54042;
  margin-top: 20px;
  margin-bottom: 30px;
  text-decoration: underline;
}

.about-content {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-content ul {
  list-style-type: none;
  padding: 0;
}

.about-content ul li {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.about-content ul li:before {
  content: "\2022"; /* Bullet character */
  color: #b54042; /* Bullet color */
  font-size: 20px;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .about-content {
      padding: 0 10px;
  }
  
  .about-heading {
      font-size: 30px;
  }
  
  .about-content p,
  .about-content ul li {
      font-size: 16px;
  }
}
/* Styles for dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color:#b54042 ; /* White text color */
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  color: #b54042;
  background-color: white; /* Brown background color */
  min-width: 310px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 0;
  text-align: left;
}
.sub-dropbtn::after {
  content: "\203A"; /* Unicode for right angle quote */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.dropdown-content a {
  color: #ffffff; /* White text color */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #862f30; /* Darker brown on hover */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Styles for sub-dropdown */
.sub-dropdown {
  position: relative;
  display: inline-block;
}

.sub-dropbtn {
  background-color: transparent;
  color:#b54042 ; /* White text color */
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  background-color: white; /* Brown background color */
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  top: 0;
  left: 100%;
}

.sub-dropdown-content a {
  color: #b54042; /* White text color */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: small;
  width: 200PX;
}

.sub-dropdown-content a:hover {
  background-color: #862f30; /* Darker brown on hover */
}

.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}

