* {
    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';
  }

  
  /* 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 */
    }
}

/*Section 4*/

.image-text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    margin-top: 100px;
    background-color: #ffffff00;
    border-radius: 10px;
}
  


.image-text-container img {
    width: 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(15, 15, 15, 0);
    background-position:center;
    background-size: cover;
    
}

.text-content 
{
    width: 55%;
    padding-left: 20px;
}

.text-content h2 {
    font-size: 2rem;
    color: #333;
}

.text-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Button Styling */
.consultation-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.2rem;
    color: #b20b16;
    border: 2px solid #b20b16;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6); /* Background blur effect */
    backdrop-filter: blur(10px); /* Blur effect */
    box-shadow: 0 4px 10px rgba(15, 15, 15, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    background-color: #b20b16;
    color: #fff;
    box-shadow: 0 4px 15px rgba(178, 11, 22, 0.5);
}

/* Responsive Design for Tablets and Smaller Screens */
@media (max-width: 1024px) {
    .image-text-container {
        flex-direction: column;
        text-align: center;
    }

    

     
.image-text-container img {
    width: 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(15, 15, 15, 0);
    background-position:center;
    background-size: cover;
    
}



    .text-content {
        width: 100%;
        padding-left: 0;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1.1rem;
    }

    .consultation-btn {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .text-content h2 
    {
        font-size: 1.6rem;
    }

    .text-content p 
    {
        font-size: 1rem;
    }

    .consultation-btn 
    {
        font-size: 1rem;
        padding: 8px 20px;
    }
}
/*Section 5*/

.bullet-point-container {
    max-width: 800px; /* Container width */
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
  
    text-align: left;
}

.bullet-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center; /* Center align the heading */
}

.bullet-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center; /* Center align the introductory text */
}

.bullet-list {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 20px; /* Added padding to the left of the bullet points */
}

.bullet-list li {
    position: relative;
    padding-left: 40px; /* Space for custom bullet and more padding to the left */
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.bullet-list li::before {
    content: "•"; /* Red bullet point */
    color: #b20b16; /* Bullet color */
    position: absolute;
    left: 10px; /* Position the bullet 10px to the left of the text */
    font-size: 2rem;
    line-height: 1.2;
}

/* Responsive Design for Tablets and Smaller Screens */
@media (max-width: 768px) {
    .bullet-heading {
        font-size: 1.8rem;
    }

    .bullet-intro {
        font-size: 1.1rem;
    }

    .bullet-list li {
        font-size: 1rem;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 480px) {
    .bullet-heading {
        font-size: 1.6rem;
    }

    .bullet-intro {
        font-size: 1rem;
    }

    .bullet-list li {
        font-size: 0.9rem;
    }
}

/*  Form   */

/* Container for the form */
.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6); /* Background blur effect */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form group styling for fields */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

/* Input fields styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #b20b16; /* Red border */
    border-radius: 20px; /* Rounded corners */
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(15, 15, 15, 0.2);
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus effect on fields */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b20b16;
    box-shadow: 0 4px 10px rgba(178, 11, 22, 0.3);
}

/* Styling for textareas */
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit button styling */
.submit-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    color: #b20b16;
    border: 2px solid #b20b16; /* Red border */
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6); /* Background blur effect */
    backdrop-filter: blur(10px); /* Blur effect */
    box-shadow: 0 4px 10px rgba(15, 15, 15, 0.2);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

/* Submit button hover effect */
.submit-btn:hover {
    background-color: #b20b16;
    color: #fff;
    box-shadow: 0 4px 15px rgba(178, 11, 22, 0.5);
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
}

/* Responsive design for mobile devices */
@media (max-width: 480px) {
    .form-container {
        padding: 10px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
}





/* ===========================================
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;
	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;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	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);
}

