/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Container Styles */
.container {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 80px; /* Adjust top margin to avoid overlap with fixed navbar */
}

.container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.container h2 {
    text-align: center;
    color: #333;
}

.container img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 80%;
    height: auto;
}

.service{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.services-content {
    margin-top: 20px;
}

.services-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.services-content ul {
    margin-bottom: 20px;
}

.services-content ul li {
    margin-bottom: 10px;
}



/* Media Queries */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: rgb(244, 126, 0);
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu li:last-child {
        margin-bottom: 0;
    }

    .menu a {
        padding: 10px 20px;
    }

    .menu-icon {
        display: block;
        margin-right: 10%;
    }

    .menu-icon.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .container {
        padding: 20px;
        margin-top: 160px; /* Adjust top margin for smaller screens */
    }
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scrollbars */
    background-color: rgb(211, 209, 209);
    
}

.navbar {
    background-color: transparent;
    /* Initially transparent */
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure navbar is on top */
    transition: background-color 0.3s;
    /* Smooth color transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
}

.navbar.fixed {
    background-color: rgb(244, 126, 0);
    /* Change to orange on scroll */
}

.navbar img {
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    margin-left: 10px;
    white-space: nowrap;
    /* Prevent line break */
}

.menu {
    list-style-type: none;
    margin: 0 5%;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
    /* Remove margin for the last menu item */
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu Styles */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}


.container {
    max-width: 100%;
    margin: 5% auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.service1{ display: flex;
    justify-content: space-around;
    margin: 2%;
    align-items: center;
}

.services-img{
    width: 50%;

}

h1 {
    text-align: center;
    color: #333;
}

.container h2{
    text-align: center;
    color: #333;
}

p1{
    font-size: large;
    font-weight: bold;
    padding: 0 10%;
    line-height: 1.6;
}
.career-content {
    margin-top: 30px;
}

.service-content
{
    padding: 0 10%;
    line-height: 1.6;
    color: #666;
}
.career-content p {
    padding: 0 10%;
    line-height: 1.6;
    color: #666;
}

.career-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 80%;
    height: auto;
}


.center-content{
    padding: 0 10%;
    line-height: 1.6;
    color: #666;
}


.section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    width: calc(35.33% - 10px);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    flex: 1;
}

.card h1 {
    text-align: center;
    margin: 20px 0;
    color: #333;
}

.card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}



.footer {
    background-color: orange;
    color: #000000;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 5px;
  }
  
  ul.social-icons li {
    display: inline;
    margin-right: 10px;
    color: #000000;
  }

  
li a{
    color: #000000;
}
  
  ul.social-icons li:last-child {
    margin-right: 0;
  }
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 15px;
    }

    .services-img{
        width: 100%;
    }
  }
  
  @media screen and (max-width: 576px) {
    .footer {
      padding: 20px 0;
    }
  
    .footer-section {
      flex-basis: 100%;
    }

    
    .services-img{
        width: 100%;
    }
  }
  
  

@media screen and (max-width: 480px) {
    h1{
        font-size:1.5rem ;
    }
    .card {
        width: calc(80% - 20px);
    }
    
    .value p{
        font-size: 1rem;
    }

    
    .services-img{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .logo span {
        font-size: 15px;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 65px;
        background-color: rgb(244, 126, 0);
        margin: 0%;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* Add shadow for depth */
    }

    .service{
        flex-direction: column;

    }

    .service1{
        flex-direction: column-reverse;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
        /* Center align menu items */
    }

    .menu li:last-child {
        margin-bottom: 0;
        /* Remove margin for the last menu item */
    }

    .menu a {
        padding: 10px 20px;
        /* Increase padding for better touch target */
    }

    .menu-icon {
        display: block;
        margin-right: 10%;
    }

    .menu-icon.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .container {
        margin: 17% auto;
    }
    .main-footer {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
    }

}


@media screen and (min-width: 1800px) {
    .navbar {
        padding: 20px 40px;
        /* Increase padding for larger screens */
    }

    .logo span {
        font-size: 25px;
        /* Increase font size for larger screens */
    }

}