* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.top-bar {
    background-color: #f4f4f4;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
}
.contact-info{
    display: flex;
    align-items: center;
    margin-left: 30%;

}
.contact-info span {
    margin-left: 15px;
}
.contact-info span:last-child {
    margin-bottom: 0; /* Remove margin from the last item */
}

@media (max-width: 768px) {
    .contact-info {
        display: none; /* Hides the entire section on mobile */
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
    padding: inherit;
    transition: max-height 0.3s ease-in-out;
}

.nav-links li {
    padding: 5px 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a:hover {
    color: #f4a100;
}

.enquire-btn {
    background-color: #f4a100;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.enquire-btn:hover {
    background-color: #d48800;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
  }
  
  .enquire-section {
    width: 40%;
  }
  
  .enquire-section h1 {
    font-size: 24px;
    color: #333;
  }
  
  .enquire-section p {
    color: #666;
    margin: 10px 0 20px;
  }
  
  .social-media h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .icons a img {
    width: 40px;
    margin-right: 10px;
  }
  
  .form-section {
    width: 55%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  input, textarea {
    width: 48%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
  }
  
  textarea {
    width: 100%;
    resize: none;
  }
  
  button {
    padding: 10px 20px;
    background-color: #f0a500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #d48e00;
  }

  
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Top bar styles */
    .top-bar {
        display: flex;
        justify-content: space-between; /* Ensures proper alignment of hamburger and contact info */
        flex-direction: row; /* Align items horizontally */
        text-align: center;
    }

    /* Contact info margin adjustment */
    .contact-info {
        margin-top: 5px;
    }

    /* Hamburger menu styles */
    .hamburger {
        display: block;
        font-size: 30px;
        padding: 10px;
    }

    /* Navigation links */
    .nav-links {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on navbar height */
        left: 0;
        background-color: white;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        align-items: center;
        z-index: 10; /* Ensure it is above other content */
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    /* Navigation links styling */
    .nav-links ul {
        list-style: none;
        padding: 0;
    }

    .nav-links ul li {
        padding: 10px;
        text-align: center;
    }

    .nav-links ul li a {
        text-decoration: none;
        color: black;
        font-size: 18px;
        display: block;
    }

    .nav-links ul li a:hover {
        background-color: #ddd; /* Hover effect for better UX */
    }

    /* Enquire button styling */
    .enquire-btn {
        align-self: center;
        margin-top: 10px;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .enquire-btn:hover {
        background-color: #0056b3; /* Hover effect */
    }
}

.hero {
    position: relative;
    background-color: #000;
    height: 600px;
    color: white;
}

.swiper {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    background-size: cover;
    background-position: center;
}

.swiper-slide:nth-child(1) {
    background: url('../images/i2.jpg') no-repeat center center/cover;
}

.swiper-slide:nth-child(2) {
    background: url('../images/i3.jpg') no-repeat center center/cover;
}

.swiper-slide:nth-child(3) {
    background: url('../images/i4.jpg') no-repeat center center/cover;
}
@media (max-width: 768px) {
    .swiper {
        height: 50vh; /* Adjust height for mobile view */
    }

    .swiper-slide {
        font-size: 1em; /* Adjust font size for mobile view */
    }
    .hero{
        height: 50vh;
    }
}
.info-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #f9f9f9;
}

.info-section .text-content {
    width: 50%;
}

.info-section .text-content h2 {
    color: #ff9900;
    margin-bottom: 20px;
}

.info-section .text-content p {
    color: #333;
    margin-bottom: 15px;
}

.info-section .stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-section .stats div {
    text-align: center;
    margin-bottom: 15px;
}

.info-section .stats div h3 {
    font-size: 2em;
    color: #ff9900;
}

.explore-section {
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.explore-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.explore-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.explore-section .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #2c3e50;
    background-color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
/* .clients-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.clients-section h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

    .box-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        
    }


.clients-section ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
    text-align: left;
}

.clients-section ul li {
    margin: 10px 0;
    padding: 10px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.left-box, .right-box {
    flex: 1;
    padding: 20px;
    margin: 0 10px;
}
.left-box p {
    font-size: 1.2em;
    color: #333;
}

.right-box h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.right-box ul {
    list-style-type: none;
    padding: 0;
}

.right-box ul li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .clients-section {
        flex-direction: column;
    }

    .box-container {
        flex-direction: column;
    }

    .left-box, .right-box {
        margin-bottom: 20px;
    }
} */

.clients-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.clients-content {
    flex: 1 1 40%;
    padding: 20px;
}

.clients-content h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.clients-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.clients-list {
    flex: 1 1 60%;
    padding: 20px;
}

.client-category {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.category-title {
    background-color: #f8f8f8;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
}

.category-title:hover {
    background-color: #e8e8e8;
}

.category-content {
    display: none;
    padding: 10px;
    background-color: #ffffff;
}

.category-content img {
    max-width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.services-section {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 30px;
    color: #333;
}



.service {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.blogs-section {
    padding: 50px;
    background-color: #fff;
}

.blogs-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.blog {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.blog h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.giving-back .background-image {
    background-image: url('../images/i9.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.giving-back .content h2 {
    font-size: 36px;
    color: #f4f0f0;
    font-weight: bold;
    margin-bottom: 20px;
}

.giving-back .content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.giving-back .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.giving-back .btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.giving-back .btn-discover {
    background-color: #f9a825;
    color: white;
}

.giving-back .btn-quote {
    background-color: white;
    color: #333;
}

.giving-back .btn:hover {
    opacity: 0.9;
}

.contact-info1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #070606;
    color: white;
    flex-wrap: wrap;
    gap: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: fit-content; /* Content-based width */
    margin: 0 auto; /* Centers the element horizontally */
  }
  

.contact-info1 .info-item1 {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    max-width: 300px;
}

.contact-info1 .icon1 {
    font-size: 28px;
    color: white;
    padding: 10px;
}

.contact-info1 h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.contact-info1 p {
    margin: 0;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .contact-info1 {
        flex-direction: column; /* Stack all items vertically */
        padding: 15px; /* Adjust padding for smaller screens */
        gap: 15px; /* Reduce gap between items */
    }

    .contact-info1 .info-item1 {
        align-items: left; /* Center-align items */
        text-align: left; /* Center text */
        max-width: 100%; /* Allow full width */
    }

    .contact-info1 .icon1 {
        font-size: 20px; /* Further reduce icon size for smaller screens */
    }

    .contact-info1 h4 {
        font-size: 14px; /* Keep header text readable */
    }

    .contact-info1 p {
        font-size: 12px; /* Keep paragraph text readable */
    }
}


footer {
    text-align: center;
    padding: 0px;
    background-color: #333;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        padding: 20px;
    }

    .info-section .text-content,
    .info-section .stats {
        width: 100%;
    }

    .explore-section h2 {
        font-size: 2em;
    }
}









/* Footer Styles */
footer {
    background: #ebebe9;
    text-align: left;
    padding: 45px;
    color: rgb(9, 9, 9);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 100px;
    min-width: 250px;
}
.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: rgb(9, 9, 9);
    display: inline-block;
    padding-bottom: 5px; /* Space for the border */
    position: relative; /* To position the pseudo-element */
}

/* Pseudo-element for gradient border */
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;  /* Align at the bottom of the h4 */
    left: 0;
    width: 100%;
    height: 2px; /* Height of the gradient border */
    background: linear-gradient(90deg, #160a0a, #4fb5f0); /* Gradient effect */
}



.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgb(9, 9, 9);
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: rgb(9, 9, 9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    display: inline-block;
    color: rgb(9, 9, 9);
}

.footer-section ul li a:hover {
    color: rgb(9, 9, 9);
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

/* Style for the logo in the footer */
.footer-logo {
    width: 70px;  /* Set the desired width */
    height: 70px;  /* Maintain aspect ratio */
    margin-top: 1rem; /* Optional: adds some space above the logo */
}

/* Optional: Adjust the width for responsiveness */
@media (max-width: 768px) {
    .footer-logo {
        width: 70px;  /* Adjust logo size for smaller screens */
    }
}
