@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.header_wedo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    color: #d1d1d1;
    padding: 20px;
    height: 312px;
}

.content {
    max-width: 57%;
    padding-top: 3%;
}

.tag {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 10px;
}

.tagline {
    padding: 10px;
    font-size: x-large;
    color: #fff;
}

h1 {
    font-size: 36px;
    margin: 0;
}

.decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 28%;
}

.diamond-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(25px); /* Initial position */
    transition: opacity 0.3s ease-in-out, transform 0.9s ease-in-out; /* Transition for both opacity and transform */
}

.diamond-grid.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Final position */
}


.container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0px 2px rgb(205 119 45);
    margin-top: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Slightly deeper shadow on hover */
    transform: translateY(-5px);
    /* Lift the card slightly */
}

.icon {
    font-size: 48px;
    margin-bottom: 15px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
#feature{
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.carousel_p {
    font-size: 14px;
    color: #ff9e0e;
    line-height: 1.4;
    background: #140f0fa6;
}

/* Responsive breakpoint for tablets and desktops */
@media screen and (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 19px
    }

    .feature {
        flex-basis: calc(25% - 15px);
        margin-bottom: 0;

    }

}

@media (max-width: 768px) {
    .diamond_image {
        height: 100px;
        /* Adjust the height for mobile screens */
        margin-right: 5%;
        /* Adjust the margin for mobile screens */
    }

    .feature {
        box-shadow: 0 2px 4px rgb(0 0 0 / 42%);
    }
}

.container_solutions {
    max-width: 1200px;
    margin: 0 auto;

}

.section-title {
    color: #0a0101;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: auto;
    padding-top: 32px;
}

h1 {
    color: #1a1a1a;
    font-size: 36px;
    margin-bottom: 30px;
}

.solutions {
    /* display: flex; */
    justify-content: space-between;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Two columns */
    gap: 20px;
    /* Gap between cards */
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;

    min-width: 250px;
}

.solution-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.solution-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.solution-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.solutions_main {
    background: radial-gradient(#72a1e8, transparent);
    height: auto;
    width: 100%;

    margin-top: 3%;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .solutions {
        flex-direction: column;
    }

    .solution-card {
        flex: 1 1 100%;
    }

    h1 {
        font-size: 28px;
    }
}

/* Media query for very small screens */
@media (max-width: 480px) {

    /* body {
        padding: 10px;
    } */
    .section-title {
        font-size: 12px;
    }

    h1 {
        font-size: 24px;
    }

    .solution-title {
        font-size: 18px;
    }

    .solution-description {
        font-size: 13px;
    }
}

@media (min-width: 576px) {
    .solutions {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on small screens */
    }
}

@media (min-width: 768px) {
    .solutions {
        grid-template-columns: repeat(2, 1fr);
        /* Three columns on medium screens */
    }
}

@media (min-width: 1200px) {
    .solutions {
        grid-template-columns: repeat(3, 1fr);
        /* Three columns on large screens */
    }
}

.button_solutions {
    cursor: pointer;
    font-weight: 700;
    font-family: Helvetica, "sans-serif";
    transition: all .2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: #3498db;
    color: white;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
}

.button_solutions:hover {
    background: slategray;
}

.button_solutions>svg {
    width: 34px;
    margin-left: 10px;
    transition: transform .3s ease-in-out;
}

.button_solutions:hover svg {
    transform: translateX(5px);
}

.button_solutions:active {
    transform: scale(0.95);
}

.success-stories {
    position: relative;
    /* Add this line */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    /* Add this line */
}

.success-stories h2 {
    text-align: center;
    color: #2c3e50;
}

.news-cards {
    justify-content: space-between;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns */
    gap: 20px;
    /* Gap between cards */
}

.news {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news img {
    width: 100%;
    height: auto;
}

.news h3 {
    font-size: 1.25em;
    margin: 16px;
    color: #2c3e50;
}

.news p {
    flex-grow: 1;
    margin: 0 16px 16px;
    color: #555;
    line-height: 1.4;
}

.news ul {
    margin: 0 16px 16px;
    padding-left: 20px;
    color: #555;
}

.news ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.news img {
    width: 100%;
    height: 200px;
    /* Fixed height */
    object-fit: cover;
    /* Ensures image covers the container without stretching */
}

@media (max-width: 768px) {
    .news-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* @media (max-width: 480px) {
    .news-cards {
        flex: 1 1 100%; /* One card per row on mobile devices */
/* } */
/* } */


.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #2980b9;
}

.learn-more_container {

    margin-top: auto;
}

.testimonial-carousel {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-carousel h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.carousel {
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.testimonial p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.testimonial h3 {
    font-size: 1.2em;
    color: #3498db;
    margin-bottom: 5px;
}

.testimonial h4 {
    font-size: 1em;
    color: #777;
}

.slick-prev:before,
.slick-next:before {
    color: #3498db;
}

.slick-slide {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        padding: 15px;
    }

    .testimonial p {
        font-size: 1em;
    }
}

.background-svg {
    position: absolute;
    top: -243px;
    left: -173px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-svg svg {
    transition: transform 0.2s linear;
}

.container_about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    background: linear-gradient(201deg, rgb(179 203 239 / 77%) 38%, rgba(203, 202, 202, 1) 100%);
    min-height: 714px;
}

.header_about {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* .content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px 0;
        } */

.left-section {
    flex: 1 1 300px;
    width: fit-content;
}

.benefits {
    
        margin: 20px;
        padding: 20px;
    background: rgba(255, 255, 255, 0.1);
            /* backdrop-filter: blur(10px); */
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: fit-content;
    }


.benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three columns */
    list-style: none;
    padding: 0;
    gap: 10px; /* Space between items */
}

.benefits ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    width: max-content;
}

.benefits ul li::before {
    content: "\f00c"; /* Font Awesome check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: green; /* You can change the color to your preference */
}

@media (max-width: 768px) {
    .benefits ul {
        grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .benefits ul {
        grid-template-columns: 1fr; /* One column for mobile devices */
    }
}

.contact,
.process {
    margin-top: 20px;
}

.process ol {
    margin-top: 4%;
    padding-left: 20px;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    /* opacity: 0; */
    transform: translateY(50px);
    /* transition: opacity 0.6s ease-out, transform 0.6s ease-out; */
}
/* .form-container.visible {
    opacity: 1;
    transform: translateY(0);
} */

form {
    display: flex;
    flex-direction: column;
}

input,
select,
textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #3366cc;
    color:black;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .form-container {
        position: absolute;
        top: 135px;
        right: 35px;
        width: 300px;
    }
/* 
    .content {
        padding-right: 320px;
    } */
}

@media screen and (max-width: 767px) {

    .form-container {
        margin-top: 20px;
        width: 150%;
    }
}

/* awards and certifications--Start */


.awards-certifications {
    background: radial-gradient(ellipse at bottom right, #72a1e8, #fcfcfc);
    padding: 4rem 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .award_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .achievements {
    flex: 1;
    min-width: 300px;
    margin-right: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .timeline {
    list-style: none;
    padding: 0;
    position: relative;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: #007bff;
  }
  
  .timeline-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #007bff;
  }
  
  .year {
    font-weight: bold;
    color: #007bff;
  }
  
  .additional-info {
    margin-top: 1rem;
    font-style: italic;
  }
  
  .certifications {
    flex: 1;
    min-width: 300px;
  }
  
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
  }
  
  .cert-logo {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .cert-logo:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    
    .achievements {
      margin-right: 0;
      margin-bottom: 2rem;
    }
  }

/* awards and certifications--End */




/* 
.awards_footer {
    margin-top: 30px;
    border-top: 1px solid #b1a8a8;
} */

h1 {
    color: #000;
    /* border-bottom: 2px solid #ccc; */
    padding-bottom: 10px;
}

/* .content_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
} */
/* 
.text-content {
    flex: 2;
    padding-right: 20px;
    margin-left: 3%;
    line-height: 183%;

} */

/* .certifications {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
} */

/* .cert-logo {
    max-width: 100px;
    margin: 10px;
    opacity: 0;
    /* Initially hide images */
    /* transition: opacity 0.5s ease-in-out;
} */
/* 
.cert-logo.visible {
    opacity: 1;
    /* Fade in effect */
/* } */ 
/* 
ul {
    padding-left: 20px;
}

.newsletter {
    max-width: 500px;
    background-color: #f0f0f0;
    padding: 20px;
    margin-top: 20px;
}

.newsletter input[type="email"] {
    width: 70%;
    padding: 10px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
} */ 

/* footer {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
background: #a3a3a3;
}

.footer_content {
    margin-left: 3%;
}

.social-icons {
    margin-left: 10px;
    margin-right: 3%;
}

.social-icons {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a i.fab.fa-linkedin {
    color: #0077B5;
}

.social-icons a i.fa-brands  {
    color: black;
}

.social-icons a i.fab.fa-facebook-f {
    color: #1877F2;
}

.social-icons a i.fab.fa-youtube {
    color: #FF0000;
}

.social-icons a:hover {
    transform: scale(1.1);
   
} */

/* Footer-start */


.modern-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
  }
  
  .footer-column p {
    line-height: 1.6;
    color: #b0b0b0;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #b0b0b0;
  }
  
  .footer-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #007bff;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .footer-nav {
      justify-content: center;
    }
  }

/* footer-end */

/* top */




:root {
    --primary-color: #333;
    --secondary-color: #666;
    --background-color: #f4f4f4;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        } */




/* 
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
    font-size: large;
    font-weight: bold;
} */




.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
}

.carousel-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

.carousel-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-text p {
    font-size: 1.2rem;
    font-weight: bold;
}

.counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: end;
    padding: 50px 0;
    background-color: var(--background-color);
}

.counter {
    text-align: center;
    margin: 20px;
    flex: 1 1 200px;
}

.counter .number {
    font-size: 31px;
    font-weight: bold;
    color: var(--primary-color);
}

.counter .label {
    font-size: 24px;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    

    /* nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    } */

    .carousel-text {
        bottom: 10%;
    }

    .carousel-text h2 {
        font-size: 1.5rem;
    }

    .carousel-text p {
        font-size: 1rem;
    }

    .counter .number {
        font-size: 36px;
    }

    .counter .label {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .option_top {
        color: black; /* Change to black for mobile and tablets */
        border-bottom: 1px solid #0e0303;
    }
}
/* form popup */
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
}
.popup h3 {
    margin-top: 0;
    color: #4CAF50;
}
.popup-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
/* Add this CSS to style the dropdown */
