* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica'; /* Apply Helvetica globally */
  }
  
  /* Ensure that text-specific elements use Helvetica as well */
  h1, h2, h3, h4, h5, h6, p, a, li, span, div {
    font-family: 'Helvetica';
  }
  
  body {
    overflow-x: hidden;
  }
  
  /* Any additional specific font rules can follow */
  
  
  

  
  .logo {
    display: flex;
    font-size: 24px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  /* For the logo */
  .logo img {
    margin-top: -20px;
    height: 40px;
    width: 90px;
  }
  
  /* Adjust logo size on smaller devices */
  @media screen and (max-width: 768px) {
    .logo img {
        width: 120px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo img {
        width: 100px;
        margin-left: -20px;
    }
  }
  
  nav {
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    
    width: 100%; /* Ensures the navbar covers the full width */
    
   
  }
  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav li {
    height: 50px;
  }
  nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color:rgb(255, 255, 255);
  }
  nav a:hover {
    color: rgba(255, 1, 1, 0.792);
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  .navbar img {
    width: 95px;
    height: 45px;
  }
  
  nav li:first-child {
    margin-right: auto;
  }
  .sidebar  a{
    color:black;
  }
  .sidebar {
   
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgb(255, 255, 255);
    color:black;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sidebar li {
    width: 100%;
  }
  .sidebar a {
    width: 100%;
  }
  .menu-button {
    display: none;
  }
  
  
  
  
  :root {
    --primary-color: rgb(190, 44, 44) ;
    --text-dark: #2c2724;
    --white: #ffffff;
    --max-width: 1200px;
  }
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica;
  }
  
  .btn {
    outline: none;
    border: none;
    transition: 0.3s;
    cursor: pointer;
  }
  
  img {
    display: flex;
    width: 100%;
  }
  
  a {
    text-decoration: none;
    transition: 0.3s;
  }
  
  body {
  
    font-family: Helvetica;
  }
  
  nav {
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;
  }
  
  .nav__header {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--text-dark);
  }
  
  .nav__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
  }
  
  .nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
  }
  
  .nav__links {
   top: 60px;
    left: 0;
    width: 100%;
    padding: 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--text-dark);
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
  }
  
  .nav__links.open {
    transform: translateY(0);
  }
  
  .nav__links a {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .nav__links a:hover {
    color: var(--white);
  }
  
  .nav__btns {
    display: none;
  }
  
  
  
  @keyframes show {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 2rem);
    }
  }
  
  
  
  
  
  .about-bg-img {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* To make sure the blur doesn't affect outside */
  }
  
  .about-bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/0A7A1583.jpg);
    background-position: center;
    background-size: cover;
    filter: blur(8px); /* Apply blur to the background image */
    -webkit-filter: blur(8px); /* Safari support */
    z-index: 1; /* Below the content */
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 22, 22, 0.2); /* Semi-transparent overlay */
    z-index: 2; /* Above the blurred background */
  }
  
  .content {
    position: relative;
    z-index: 3; /* Highest z-index to make sure the text stays above the blur and overlay */
    padding-block: 0 5rem;
    padding-inline: 2rem;
    text-align: center;
  }
  
  .content h2 {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    color: #b20b16;
  }
  
  .content p {
    line-height: 1.5rem;
    text-align: center;
    color: var(--white);
  }
  
  /* Responsive Styles */
  @media (min-width: 1024px) {
    .content {
      padding-block: 5rem;
      text-align: left;
      max-width: 1000px;
      margin-inline-start: unset;
    }
  }
  
  @media (max-width: 768px) {
  
    .content h2 {
      font-size: 1.5rem;
    }
  
    .content p {
      font-size: 1rem;
    }
  }
  
  
  
  .h2
  {
    margin-top:100px;
    text-align: center;
    font-size:38px;
     font-family: Helvetica;
    margin-bottom:20px;
    color:#b20b16;
  
  }
  @media screen and (max-width:768px)
  {
  
    .h2
    {
      font-size: 30px;
  
    }
    }
  
    @media (max-width: 800px) {
      .hideOnMobile {
          display: none;
      }
      .menu-button {
          display: block;
      }
    }
    @media (max-width: 400px) {
      .sidebar {
          width: 100%;
      }
    }


    /* section 3 */
    .horizontal-div {
      max-width: 900px; /* Maximum width for the div */
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 60px;
      padding-right: 100px;
      margin-top: 80px;
      margin-bottom: 40px;
      margin-left: 50px;
      background-color: #ffffff; /* White background */
      border-radius: 10px; /* Rounded corners */
     
      justify-content: space-between; /* Align content horizontally */
      align-items: center; /* Center content vertically */
      text-align: left;
  }
  
  /* Text styling inside the div */
  .horizontal-div p {
      font-size: 1.3rem;
      color: #333; /* Text color */
      line-height: 1.6; /* Line height for readability */
  }
  
  /* Responsive Design for Tablets and smaller screens */
  @media (max-width: 1024px) {
      .horizontal-div {
          max-width: 85%; /* Make the div width flexible */
          padding-top: 30px;
          padding-bottom: 30px;
          padding-left: 40px;
          padding-right: 80px;
          margin-left: 40px;
          margin-right: 20px;
      }
  
      .horizontal-div p {
          font-size: 1.2rem; /* Adjust font size for readability */
      }
  }
  
  /* Responsive Design for Smaller Screens */
  @media (max-width: 768px) {
      .horizontal-div {
          max-width: 90%; /* Adjust width for smaller screens */
          padding-top: 25px;
          padding-bottom: 25px;
          padding-left: 30px;
          padding-right: 50px;
          margin-left: 30px;
          margin-right: 20px;
          flex-direction: column; /* Stack content vertically */
          text-align: center; /* Center text for better readability */
      }
  
      .horizontal-div p {
          font-size: 1.1rem; /* Further reduce font size */
      }
  }
  
  /* Responsive Design for Mobile Devices */
  @media (max-width: 480px) {
      .horizontal-div {
          max-width: 100%; /* Full width for mobile */
          padding-top: 20px;
          padding-bottom: 20px;
          padding-left: 20px;
          padding-right: 30px;
          margin-left: 10px;
          margin-right: 10px;
          text-align: left; /* Adjust text alignment for mobile */
      }
  
      .horizontal-div p {
          font-size: 1rem; /* Smallest font size for mobile */
      }
  }


    /* Our services*/
/* Section Styling */
.section4 {
  padding: 20px;
  background-color: rgb(242, 242, 242); /* Light background */
}

.about-us-heading {
  padding-top: 100px;
  font-size: 4rem;
  text-align: center;
  font-weight: 400;
  color: #b20b16;
}

/* Flex Container for Cards */
.card-container {
 
  display: flex; /* Enable flexbox */
  justify-content: space-between; /* Space between cards */
  margin: 0 15px; /* Equal margin on left and right sides */
  flex-wrap: wrap; /* Wrap cards on smaller screens */
}

/* Card Styling */
.card {
  margin-top:50px;
  flex: 0 0 48%; /* Flex basis for two cards in a row */
  margin-bottom: 20px; /* Space below cards */
  display: flex;
  flex-direction: column; /* Stack content in card */
  justify-content: space-between; /* Space between content and button */
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1); /* Transparent background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.71); /* Shadow */
  transition: transform 0.2s; /* Smooth transform */
}

.card:hover {
  transform: scale(1.05); /* Scale up on hover */
}

.card-body {
  padding: 20px; /* Inner padding */
}

.card-title {
  text-align: center;
  font-size: 1.5rem;
  color: #b20b16; /* Red color */
}

.card-text {
  text-align: center;
  margin: 10px 0; /* Margin for spacing */
  font-size: 1rem;
  color: #000000; /* Black text */
}

/* Red Bullet Points Styling */
.red-bullet-points {
  list-style-type: disc; /* Bulleted list */
  padding-left: 20px; /* Left padding for bullets */
  margin: 15px 0; /* Space above and below the bullet points */
}

.red-bullet-points li::marker {
  color: red; /* Red bullet points */
}

.red-bullet-points li {
  color: black; /* Black bullet point text */
  margin-bottom: 10px; /* Space between bullet points */
}

/* Button Styling */
.button-container {
  display: flex;
  justify-content: center;
  padding: 20px 0; /* Padding for top and bottom of button */
}

.custom-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #b20b16; /* Red text */
  border: 2px solid #b20b16;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2); /* Transparent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn:hover {
  background-color: #b20b16; /* Red background on hover */
  color: white; /* White text */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .card {
      flex: 0 0 100%; /* Stack cards vertically on small screens */
  }
}



/*  Contact us */
  
.text-section {
  margin-top: 100px;
  padding-left: 200px; /* Add left padding */
  padding-right: 200px;
  text-align: left; /* Ensure text is left-aligned */
  background-color: #ffffff; /* Optional background color */
  border-left: 5px solid #ddd; /* Optional border for style */
}

.text-section h2 {
  font-size: 2rem; /* Main heading size */
  margin-bottom: 10px;
  color: #b20b16;
}

.text-section p {
  font-size: 1rem; /* Paragraph text size */
  line-height: 1.5; /* Increase readability */
  color: #555;
}

/* Button Styling */
.btn-custom {
  display: inline-block;
  padding: 12px 30px; /* Padding for button */
  margin-top: 20px;
  border-radius: 30px; /* Rounded border */
  border: 2px solid #b20b16; /* Red border */
  background: rgba(255, 255, 255, 0.3); /* Transparent background with blur */
  backdrop-filter: blur(5px); /* Blur effect for the background */
  color: #b20b16; /* Text color */
  font-size: 1rem; /* Button text size */
  text-decoration: none; /* Remove underline from link */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Button shadow */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

/* Hover effect for the button */
.btn-custom:hover {
  background-color: #b20b16; /* Red background on hover */
  color: #fff; /* White text on hover */
}

/* Responsive adjustments for tablet screens */
@media (max-width: 1024px) {
  .text-section {
    padding-left: 100px; /* Reduce left padding */
    padding-right: 100px; /* Reduce right padding */
  }
  
  .text-section h2 {
    font-size: 1.8rem; /* Slightly smaller heading */
  }
  
  .text-section p {
    font-size: 0.95rem; /* Slightly smaller paragraph text */
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .text-section {
    padding-left: 50px; /* Further reduce left padding */
    padding-right: 50px; /* Further reduce right padding */
  }
  
  .text-section h2 {
    font-size: 1.6rem; /* Adjust heading size */
  }
  
  .text-section p {
    font-size: 0.9rem; /* Adjust paragraph text size */
  }
  
  .btn-custom {
    font-size: 0.9rem; /* Slightly smaller button text */
    padding: 10px 25px; /* Adjust button padding */
  }
}

/* Responsive adjustments for very small screens (like phones) */
@media (max-width: 480px) 
{
  .text-section 
  {
    padding-left: 20px; /* Minimal left padding for small screens */
    padding-right: 20px; /* Minimal right padding for small screens */
  }
  
  .text-section h2 
  {
    font-size: 1.4rem; /* Smaller heading */
  }
  
  .text-section p 
  {
    font-size: 0.85rem; /* Smaller paragraph text */
  }

  .btn-custom 
  {
    font-size: 0.85rem; /* Smaller button text */
    padding: 8px 20px; /* Adjust button padding */
  }
}


/* ===========================================
Footer Section
======================================= */

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #ffffff;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	font-family: Helvetica;
	color: #000000;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e1e;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
	 font-family: Helvetica;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	 font-family: Helvetica;
	text-transform: capitalize;
	color: #000000;
	text-decoration: none;
	font-weight: 300;
	color: #000000;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #e12424;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgb(82, 77, 77);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #f4f0f0;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #fbfcff;
	background-color:  #e12424;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    .m-left
    {
        margin-left:100px
    }
    .marg-left
    {
        margin-left: 60px;
    }
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
   
}
} 

/* WhatsApp floating icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Make sure it stays on top */
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    padding: 10px;
}

/* Hover effect for the WhatsApp button */
.whatsapp-float:hover {
    background-color: #128c7e; /* Darker WhatsApp color on hover */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}


/*  left bar icons */
.social-icons-left-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background-color: #f4f4f400;
  padding: 10px;
  border-radius: 0 8px 8px 0;
  z-index: 1000; /* Ensures the icons are above most other elements */
}

.social-icons-left-bar a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #555;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons-left-bar a i {
  font-size: 18px;
}

.social-icons-left-bar a:hover {
  transform: scale(1.1);
}

.social-icons-left-bar a.facebook {
  background-color: #3b5998;
}

.social-icons-left-bar a.tiktok {
  background-color: #000000; /* TikTok color */
}

.social-icons-left-bar a.instagram {
  background-color: #e4405f;
}

.social-icons-left-bar a.linkedin {
  background-color: #0077b5;
}
