/* header.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


.top-header {
    background-color: #ec6969;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 10px;
}

.contact-info a,
.contact-info span {
    margin-right: 20px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.social-icon {
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.social-icon:hover {
    color: #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info a,
    .contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }

    .social-icon {
        margin-left: 5px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-media {
        margin-top: 10px;
        margin-left: 0;
    }

    .contact-info a,
    .contact-info span,
    .social-icon {
        font-size: 12px;
    }
}

.top-header1 {
    background-color: #fff6f6;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative; /* Added to manage positioning of children */
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text h1 {
    margin: 0;
    font-size: 18px;
    color: #618ed1;
}

.logo-text p {
    margin: 0;
    font-size: 14px;
    color: #618ed1;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navigation ul li {
    margin: 0 15px;
}

.navigation ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.navigation ul li a:hover {
    color: #618ed1;
}

.contact {
    text-align: right;
}

.contact p {
    margin: 0;
    font-size: 14px;
    color: #618ed1;
}

.contact a {
    text-decoration: none;
    color: #f46b08;
    font-size: 16px;
}

.contact a:hover {
    color: #e53935;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav ul li {
    margin: 15px 0;
    text-align: left;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.mobile-nav ul li a:hover {
    color: #618ed1;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: none; /* Initially hide the mobile navigation */
    }

    .contact {
        text-align: left;
        margin-top: 10px;
    }

    .social-media {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .social-icon {
        margin-left: 5px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .navigation ul li a {
        font-size: 14px;
    }

    .contact a {
        font-size: 14px;
    }
}

.hamburger-menu.active {
    content: "\2715"; /* Unicode character for 'X' */
}

.slider {
    position: relative;
    max-width: 100%;
    height: 650px; /* Adjust height as needed */
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation1 {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation1 button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navigation1 button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation1 ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation1 ul li {
        margin: 5px 0;
    }

    .contact {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .navigation1 ul li a {
        font-size: 14px;
    }

    .contact a {
        font-size: 14px;
    }

    .slider {
        height: 300px; /* Adjust for smaller screens */
    }
}




/* .containerplus {
    text-align: center;
    padding: 20px;
}
h1 {
    color: #333;
}
.companies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.company-logo img {
    max-width: 100%;
    height: auto;
} */


.vmv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0;
}

.vmv-row {
    display: flex;
    justify-content: center; /* Center the columns within the row */
    width: 100%;
    margin-bottom: 20px;
}

.vmv-column {
    text-align: center;
    width: 31%; /* Reduced width for VISION and MISSION */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 15px; /* Added horizontal margin for spacing */
}

.vmv-column img {
    width: 50px;
    height: 50px;
}

.vmv-column h2 {
    margin: 20px 0 10px;
}

.underline {
    width: 50px;
    height: 4px;
    background-color: #618ed1;
    margin: 10px auto;
}

@media (max-width: 783px) {
    .vmv-row {
        flex-direction: column;
        align-items: center;
    }

    .vmv-column {
        width: 80%;
        margin-bottom: 20px;
    }
}




/* General styles */
.values-container {
    text-align: center;
    padding: 75px;
}

.values-container h1 {
    color: #ec6969;
    font-size: 2em;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
    gap: 52px; /* Reduced gap between columns */
    justify-content: center; /* Center the grid items */
    margin: 0 auto; /* Center the grid container */
    max-width: 1000px; /* Set a maximum width for the grid */
}

.value-box {
    width: 100%; /* Set width to 100% of the grid cell */
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-box img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.value-box h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.value-box p {
    font-size: 1em;
    color: #777;
}


/* Responsive styles for screens smaller than 768px (mobile) */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; /* 1 column for small screens */
        justify-content: center;
    }

    .value-box {
        width: 80%; /* Further reduce width for small screens */
        padding: 10px; /* Further reduce padding */
        text-align: center;
    }

    .value-box h2 {
        font-size: 1.2em; /* Further reduce font size */
    }

    .value-box p {
        font-size: 0.9em; /* Further reduce font size */
    }
}










.main-container {
    text-align: center;
    padding: 0px;
}
#header-title {
    color: #333;
}
#companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.company-logo img {
    max-width: 100%;
    height: auto;
}



.feedback-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feedback-container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
}

.underline {
    width: 20%;
    height: 4px;
    background-color: #618ed1;
    margin: 0 auto;
    margin-bottom: 20px;
}

.feedback-slider {
    position: relative;
    overflow: hidden;
    height: 300px; /* Adjust based on your content */
}

.feedback-slide {
    display: none;
    text-align: left;
    font-size: 1.4em;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
}

.client-feedback {
    font-size: 1.2em;
    line-height: 1.6;
}

.highlight {
    color: #ff6666;
    background: linear-gradient(90deg, rgba(255, 102, 102, 1) 0%, rgba(255, 102, 102, 0) 100%);
}

.navigation {
    margin-top: 20px;
}

.nav-btn {
    background-color: #ddd;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
}

.nav-btn:hover {
    background-color: #ccc;
}

@media (max-width: 768px) {
    .feedback-container {
        padding: 20px;
    }

    .feedback-container h1 {
        font-size: 2em;
    }

    .client-feedback {
        font-size: 1em;
    }

    .feedback-slider {
        height: 250px;
    }

    .client-photo {
        width: 80px;
        height: 80px;
    }
}




#unique-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo p {
    margin: 10px 0;
    color: #f39c12;
}

.footer-logo address {
    font-style: normal;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links div {
    margin-right: 40px;
}

.footer-links h4 {
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #f39c12;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Icon CSS */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}



.about-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
}

.underline {
    width: 13%; /* 1/5th of the original size */
    height: 4px;
    background-color: #618ed1;
    margin: 0 auto;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
}

.highlight {
    color: #000000;
    background: linear-gradient(90deg, rgba(255, 102, 102, 1) 0%, rgba(255, 102, 102, 0) 100%);
}

@media (max-width: 768px) {
    .about-container {
        padding: 10px;
    }

    .about-container h1 {
        font-size: 2em;
    }

    .about-text {
        font-size: 1em;
    }
}






#form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px; /* Adds some space above and below the form */
    padding: 20px;
    background-color: #f3eeee; /* Light background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#form iframe {
    border: none; /* Removes the default border */
    border-radius: 10px; /* Matches the container's rounded corners */
}