/* Common styles */
body {
    font-family: "Work Sans", sans-serif;
   
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    }
    .nav-link.active {
        color: #22fc0f !important; /* Change the text color to red */
    }
    .nav-link.active:hover {
        color: #ffffff !important; /* Optional: Change the color on hover */
    }
 
/* Add this style to your existing CSS */

/* Contact icons */
 
.contact-info {
    display: flex;
     width: 100%;
	height:auto;
    
    align-items: center;
    background-color:#f2f2f2; /* Set background color for contact-info */
    padding: 10px; /* Add padding for better visibility */
	 
}
.contact-info .contact-item{
    margin-left: 260px;

}
 
.contact-item {
    color: rgb(0, 0, 0);
   
    display: flex;
    align-items: center;
    margin-right: -260px; /* Adjust margin between contact items */
}

.contact-item i {
    margin-left: 50px;
    margin-right: 8px; /* Adjust margin between icon and text */
    color: rgb(0, 0, 0); /* Set icon color to white */
}

.rotate-icon {
    transform: rotate(90deg);
}

 
.welcome-banner {
    background-color: #0077cc;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    display: none; /* Initially hide the welcome banner */
}

.welcome-banner p {
    margin: 0;
}

@media only screen and (max-width: 874px) {
    .contact-info {
        flex-direction: column; /* Stack items vertically on small screens */
        text-align: left;
        margin-top: 90px;
        width: 100%;
        background-color: #0077cc;
         
    }

    .contact-item {
        margin: 5px 0; /* Add spacing between items on small screens */
    }

    

    .welcome-banner {
        display: block; /* Show the welcome banner on small screens */
        width: 100%;
    }

    .contact-item i {
        margin-left: -250px;
        margin-right: 8px; /* Adjust margin between icon and text */
        color: rgb(255, 255, 255); /* Set icon color to white */
    }

    .contact-info {
        display: none; /* Initially hide the contact details box on small screens */
         
        position: relative; /* Add relative positioning */
        z-index: 1; /* Ensure the contact info box is brought to the front */
    }

    .contact-info-box {
        background-color: #b90e0e;
        width: 100%;
        max-height: 300px;
        margin: 0 auto;
        margin-top: 90px;
        margin-bottom: -100px;
        position: relative; /* Add relative positioning */
        z-index: 2; /* Ensure the contact info box is brought to the front */
    }
    
}

/*laptop*/
@media (min-width: 1200px) and (max-width: 1600px) {
    .contact-info {
        display: flex;
         width: 100%;
        height:auto;
        align-items: center;
        background-color: #000000; /* Set background color for contact-info */
        padding: 10px; /* Add padding for better visibility */
         
    }
    .contact-info .contact-item{
        margin-left: 260px;
    
    }
     
    .contact-item {
        color: rgb(255, 255, 255);
       
        display: flex;
        align-items: center;
        margin-right: -260px; /* Adjust margin between contact items */
    }
    
    .contact-item i {
        margin-left: 10px;
        margin-right: 8px; /* Adjust margin between icon and text */
        color: rgb(255, 255, 255); /* Set icon color to white */
    }
    
    .rotate-icon {
        transform: rotate(90deg);
    }
    
    /* Social icons */
     
    
}



header
/*header*/
body {
    font-family: "Work Sans", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sticky header */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it appears above other content */
}

/* Ensure content starts below the fixed header */
.content {
    padding-top: 100px; /* Adjust this value according to your header height */
}

/* Style for navbar links */
.navbar-nav .nav-link {
    color: yellow; /* Default color for all links */
}

.navbar-nav .nav-item .nav-link:hover {
    color: #22fc0f; /* Text color on hover */
}

/* Style for navbar brand */
.navbar-brand img {
    margin-left: -90px;
    max-width: 150px;
    height: 90px;
}

 

/* Specific rule for the "Home" link */
.navbar-nav .nav-item .nav-link {
    color: white; /* Default color for all links */ /* Color for the "Home" link */
    margin-right: 30px;
    font-size: 16px;
    font-family:"Work Sans", sans-serif;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #22fc0f;
}

/* Styling for dropdown menu */
.navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: #009488 !important; /* Ensure the background color is black */
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: white; /* Color of dropdown items */
    line-height: 2.0;
    background-color: #009488 !important; /* Ensure the background color is black */
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    color: #050505; /* Color of dropdown items on hover */
    background-color: #DDE448 !important; /* Ensure the background color is black */
}

/* Background color for the fixed header */
.bg-black {
    position: fixed;
     background-color: #009488;
    height: 12%;
}

/* Style for navbar brand */
.navbar-brand {
    height: 100px;
    width: 150px;
}
@media (min-height: 500px) and (max-height: 900px) and (min-width:900px) and (max-width:1600px){
  .bg-black {
            position: fixed;
            background-color: #009488;
            height: 16.2%;
        }
}
/* Dropdown background color for small screens */
@media (min-width: 300px) and (max-width: 500px) {
    .bg-black {
        position: fixed;
        background-color: #009488;
        height: 12%;
    }
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        background-color: #009488 !important; /* Ensure the background color is black */
    }
    .navbar-brand img {
        margin-left: 10px;
        max-width: 150px;
        margin-top: 10px;
        height: 70px;
    }
    .navbar-nav  {
        background-color: #009488;
        width:200%;
        margin-left: -15px;
    }
    .navbar-nav .nav-item .nav-link {
        margin-left: 10px;
    }
    .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        background-color: #009488 !important; /* Ensure the background color is black */
    }
}


/*slide*/
 
  
  
 /*about us*/
 /* Container styles */
.firstabt {
    background-color: white;
    width: 100%;
    max-width: 1200px; /* Adjust max-width as needed */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center the content */
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  /* Heading styles */
  .firstabt h2 {
    font-size: 1.5rem;
    color: #000000;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease-in-out; /* Animation for heading */
  }
  
  /* Paragraph styles */
  p {
    font-size: 1.1rem;
    color: #000000;
    font-family: "Work Sans", sans-serif;
    margin-top: 20px;
    text-align: justify;
    animation: fadeInUp 1s ease-in-out; /* Animation for paragraph */
  }
  
  /* Keyframe animation for fadeInUp */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Media queries for responsiveness */
  @media screen and (max-width: 768px) {
    .firstabt {
        padding: 30px;
        margin-top: -85px;
        margin-bottom: -20px;
    }
    h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 1rem;
    }
  }
  @media screen and (min-width: 999px) {
    .firstabt {
        padding: 30px;
        margin-top: -15px;
        margin-bottom: -20px;
    }
     
  }
 

/*ourservice*/
/* Container styles */
.ourservice {
    width: 100%;
    background-color: #eae9e9; /* Set red background color */
    padding: 20px 0; /* Add some padding */
    box-sizing: border-box; /* Include padding in the width calculation */
    margin-top: 30px;
}
  
/* Inner container styles */
.inner {
    width: 80%; /* Set inner container width to 80% */
    margin: 0 auto; /* Center the inner container */
}

/* Heading styles */
.ourservice h2 {
    font-size: 1.5rem;
    color: #333;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;

    text-align: center;
    margin-left: 20px;
    animation: fadeInUp 1s ease-in-out; /* Animation for heading */
}

/* Service images container styles */
.service-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Individual service styles */
.service {
    width: calc(25% - 20px); /* Set width of individual service */
    margin-bottom: 20px;
    text-align: center; /* Center the content */
    background-color: white; /* Set background color of service */
    padding: 20px; /* Add some padding */
}

/* Image styles */
.service img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Service heading styles */
.service h3 {
    font-family: "Work Sans", sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    margin-top: 10px;
    color: #000000;
}

/* Button styles */
.service button {
    background-color:  #28AF1E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
.service button:hover{
    background-color: rgb(255, 166, 2);
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .service {
        width: calc(50% - 20px); /* Two services per row on smaller screens */
       
    }
    .ourservice {
        margin-top: -10px;
    }
}

@media screen and (max-width: 480px) {
    .service {
        width: 100%; /* One service per row on smaller screens */
    }
}




/*num*/
.num {
    text-align: center;
    font-size: 24px;
    background-color: rgb(255, 255, 255);
    width: 100%;
     
}
.num h2{
    font-size: 1.5rem;
    color: #000000;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-align: center;
    margin-left: 20px;
    animation: fadeInUp 1s ease-in-out; /* Animation for heading */
    margin-top: 50px;

}
.number-container {
    display: inline-block;
    color: #000000;
    text-align: center;
     font-size: 20px;
     font-family: "Work Sans", sans-serif;
    padding: 20px;
    margin: 10px;
     
     
}

.number {
    font-size: 30px;
    font-family: "Work Sans", sans-serif;
    color: #000000;
    
}
/* Media query for small screens */
@media screen and (max-width: 768px) {
    .number-container {
        width: 80%; /* Set width to 80% for better visibility on small screens */
    }
    .number {
        font-size: 22px;
        color: #000;
        font-weight: bold;
    }
    .num h2{
        text-align: center;
        margin-right: 30px;
    }
}



/* Contact form styles */
/* Contact section styles */
.contact1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #f8f8f8;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.contact22{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    background-color: #f8f8f8;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
  
.contact-info {
    flex: 1;
    padding: 20px;
    background-image: url('assets/images/service-3.jpeg');
    background-size: cover;
    color: #fff;
    height: 50vh;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
     
}

.contact-info p {
     color: white;
     margin-top: -560px;
    font-size: 50px;
    margin-bottom: 10px; /* Add margin between paragraphs */
}

 
.contact-info h2,
.contact-info p {
    color: #fafafa;
}


.contact-form {
    flex: 1;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    margin-left: -150px;
    flex-direction: column;
    align-items: center; /* Center align content horizontally */
}

.contact-form h2 {
    margin-top: 0;
    color: #000;
    font-family: "Work Sans", sans-serif;
    margin-left: 90px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 150%; /* Adjusted width to occupy the full width of the form */
    max-width: 400px; /* Set maximum width for better readability */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
}

.button {
    display: block;
    width: 50%; /* Adjusted width to occupy the full width of the form */
    max-width: 400px; /* Set maximum width for better readability */
    padding: 10px;
    font-size: 16px;
    margin-left: 100px;
    color: #fff;
    background-color: #28AF1E;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ffa600;
}


/* Responsive Media Queries */
@media only screen and (max-width: 768px) {
    /* For tablets and below */
    .contact {
        padding: 15px;
    }
    .contact-info {
        background-image: url('assets/images/con1.jpg'); /* Set background image */
          
        height: 150px; /* Set height to 50% of the viewport height */
        width: 100%; /* Set width to 100% to span the entire container */
        display: flex; /* Use flexbox to center content vertically */
        justify-content: center; /* Center content horizontally */
        align-items: center; /* Center content vertically */
        margin-top: -10px;
        text-align: center; /* Center text horizontally */
       margin-right: 30px;
       margin-left: 10px;
    }
    .contact22 .contact-info p {
        color: white;
       margin-top: -550px;
    }
    .contact-form {
        margin-left: -90px;
    }
    .contact-form h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 576px) {
    /* For mobile devices */
    .contact {
        padding: 10px;
    }

    .contact h2 {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
}

@media only screen and (min-width: 999px) and (max-width:1600px) {
    /* For large screens (desktops, laptops, PCs) */
    .contact {
        padding: 30px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 18px;
    }
    .contact-form {
        margin-left: 90px;
    }
}

 


/*contact info 121*/
/* Default styles */
.contact-info121 {
    font-family: "Work Sans", sans-serif;
    display: flex;
    width: 80%;
    margin: 0 auto;
    height: 150px; /* Adjust the height as needed */
}

.column1 {
    flex: 1;
    padding: 0 10px;
    margin-top: 30px;
    position: relative;
}

.column1:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5px; /* Adjust as needed */
    width: 1px;
    background-color: #ccc; /* Adjust color as needed */
}

.contact-info121 h4 {
    color: #28AF1E;
    font-size: 16px;
    font-weight: 500;
    font-weight: bold;
    text-align: center;
    margin-top: 10px; /* Corrected the missing 'px' unit */
}

.column1 p {
    color: #000;
    text-align: center;
    margin-bottom: 0; /* Remove default margin */
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .contact-info121 {
        flex-direction: column;
        height: auto; /* Adjust height to fit content */
        
    }

    .column1 {
        width: 100%; /* Make each column take full width */
        margin-top: 15px; /* Adjust spacing between columns */
        margin-bottom: 15px; /* Adjust spacing between columns */
        margin-left: 0px;
        position: relative; /* Add relative positioning for absolute positioning of line */
    }

    .column1:not(:first-child)::before {
        content: ""; /* Add horizontal divider for second and third columns */
        position: absolute;
        top: -7px; /* Adjust position as needed */
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #ccc; /* Adjust color as needed */
    }
    .column1:not(:last-child)::after {
        display: none;
    }
    
}
@media (max-width: 1500px) {
    .contact-info121 {
        width: auto;
        height: auto; /* Adjust height to fit content */
        margin-bottom: 30px;
        
    }

}



 

  /*side contact icons*/
/* Side contact icons */
.contact-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Set a fixed width for all icons */
    height: 40px; /* Set a fixed height for all icons */
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: iconAnimation 2s infinite alternate; /* Apply animation to all icons */
}

.contact-icons a:hover {
    background-color: #555;
    transform: scale(1.2) rotate(15deg); /* Added rotation on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: hoverAnimation 0.5s ease forwards; /* Additional hover animation */
}

.contact-icons a.whatsapp {
    background-color: #28AF1E; /* WhatsApp green color */
}

.contact-icons a.email {
    background-color: #d84a30; /* Email icon color */
}

.contact-icons a.phone {
    background-color: #2c49eb; /* Call icon color */
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .contact-icons {
        bottom: 10px;
        left: 10px;
    }
}

/* Animation */
@keyframes iconAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Additional hover animation */
@keyframes hoverAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3) rotate(-15deg);
    }
    100% {
        transform: scale(1.2) rotate(15deg);
    }
}


 