*{
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* Base Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Header styling */
  #header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: red;
    color: #fff;
  }
  
  #header #logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  /* Navigation styling (mobile-first) */
  #nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: none; /* hidden by default */
    flex-direction: column;
    align-items: center;
  }
  
  #nav ul.show {
    display: flex;
  }
  
  #nav ul li {
    margin: 0.5rem 0;
  }
  
  #nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  /* Hamburger toggle button */
  #menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Show nav on larger screens */
  @media (min-width: 768px) {
    #header {
      flex-direction: row;
      justify-content: space-between;
    }
  
    #menu-toggle {
      display: none;
    }
  
    #nav ul {
      display: flex !important;
      flex-direction: row;
      margin: 0;
    }
  
    #nav ul li {
      margin: 0 1rem;
    }
  }
  .home-section {
    background-image: url('./pexels-ramdasaswale-12995534.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-content {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
  }
  
  .banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 18px;
  }
  .bluess {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap; 
    padding: 20px;
  }
  
  .bluess .col-8 {
    flex: 1 1 55%;
  }
  .bluess .col-12{
    font-size: 18px;
  }
  
  .chick-image {
    flex: 1 1 40%;
  }
  
  .chick-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .bluess {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 20px;
    background-color: #f5f5f5;
  }
  
  .text-content {
    max-width: 600px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .text-content h3 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-top: 30px;
    border-bottom: 2px solid #28a745;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-top: 15px;
  }
  
  .company-name {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 1px;
  }
  
  .chick-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .bluess {
      flex-direction: column;
      align-items: center;
    }
  
    .text-content {
      text-align: center;
    }
  
    .text-content h3 {
      text-align: center;
    }
  }


  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc59;
  }

.section1 {
    padding: 60px 20px;
    background-color: #fdfdfd;
    font-family: Arial, sans-serif;
  }
  
 
  .container2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px;
  }
  
  
  .formContact {
    flex: 1 1 50%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #28a745;
    outline: none;
  }
  

  .contact-form button{
    background-color: RED;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: brown;
  }
  .informo {
    flex: 1 1 40%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .informo ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
  }
  
  .informo li {
    margin-bottom: 10px;
  }
  
  
  @media (max-width: 768px) {
    .container2 {
      flex-direction: column;
    }
  
    .formContact,
    .informo {
      width: 100%;
    }
  }
/*.informo {
    flex: 1 1 40%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }
  
  .informo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }
  
  .informo li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }*/
  
 
 /* .informo li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745;
    display: inline-block;
    width: 20px;
  }
  
  .informo li:nth-child(1)::before {
    content: "\f007";
  }
  .informo li:nth-child(2)::before {
    content: "\f095"; 
  }
  .informo li:nth-child(3)::before {
    content: "\f0e0"; 
  }
  .informo li:nth-child(4)::before {
    content: "\f3c5"; 
  }*/

/*.container2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap; 
  }
  
  
  .formContact {
    flex: 1 1 55%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .informo {
    flex: 1 1 40%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }*/
  
  @media (max-width: 768px) {
    .container2 {
      flex-direction: column;
    }
  
    .formContact,
    .informo {
      width: 100%;
    }
  }
#footer {
    background-color:red;
    color: red;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  #footer .icons {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  #footer .icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
  }
  
  #footer .icons li a:hover {
    background-color: #28a745;
    transform: scale(1.1);
  }
  
  #footer .copyright {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #aaa;
    font-size: 14px;
  }
  
  #footer .copyright li {
    display: inline;
    margin: 0 10px;
  }
  
  #footer a {
    color: #28a745;
    text-decoration: none;
  }
  
  #footer a:hover {
    text-decoration: underline;
  }
  */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
  }
  
  .about-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #222;
  }
  
  .about-section h3 {
    font-size: 24px;
    color: #28a745;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  .about-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
  }
  
  .about-section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
 
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  /* Main Section Title */
  .about-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #28a745;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #28a745;
  }
  
  /* Subheadings */
  .about-section h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    border-left: 4px solid #28a745;
    background-color: #eaf7ee;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
  }
  
  /* Paragraphs */
  .about-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
  }
   /* === Our Services Section === */
#services, .wrapper.style1.container.special {
    padding: 60px 20px;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
  }
  
  /* Section Heading */
  #services h2,
  .wrapper.style1.container.special h1 {
    text-align: center;
    font-size: 40px;
    color: #28a745;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #28a745;
  }
  .contactH1{
  text-align: center;
  font-size: 40px;
  padding-bottom: 10px;
  border-bottom: 3px solid #28a745;
  display: inline-block;
  margin-left: 470px;
  }
  /* Services Row */
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  /* Individual Service Box */
  .col-4 {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .col-4:hover {
    transform: translateY(-5px);
  }
  
  /* Service Icon */
  .col-4 .icon {
    font-size: 30px;
    color: #28a745;
    margin-bottom: 15px;
  }
  
  /* Service Title */
  .col-4 h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: capitalize;
  }
  
  /* Service Description */
  .col-4 p {
    font-size: 15px;
    color: #555;
    line-height: 1.6em;
  }