﻿Reset and Base Styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5faff;
}

/* Custom Variables */
:root {
    --primary-blue: #2563eb;
    --light-blue: #e6f0fa;
    --white: #ffffff;
    --gray-900: #1a202c;
    --gray-600: #4a5568;
    --gray-200: #e2e8f0;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}




/* Services Section */
#services {
    /* background: linear-gradient(328deg, rgba(185, 225, 237, 1) 31%, rgba(0, 186, 240, 1) 63%, rgba(37, 99, 235, 1) 86%); */
    background: var(--light-blue);
    background: var(--white);
    padding: 5rem 2rem;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#services .mx-auto {
    max-width: 1200px;
}

#services .max-w-5xl {
    max-width: 800px;
    margin: 0 auto;
}

#services h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

#services h1 span {
    color: var(--primary-blue);
}

#services p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0;
    color: var(--gray-600);
    animation: fadeInUp 1s ease 0.3s forwards;
}

#services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

#services .service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    opacity: 0;
    padding: 20px;
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.3s ease;
}

#services .service-card:nth-child(1) {
    animation-delay: 0.6s;
}

#services .service-card:nth-child(2) {
    animation-delay: 0.9s;
}

#services .service-card:nth-child(3) {
    animation-delay: 1.2s;
}

#services .service-card:hover {
    transform: translateY(-10px);
}

#services .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#services .service-card .p-5 {
    padding: 1.5rem;
    text-align: left;
}

#services .service-title {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

#services .service-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

#services .learn-more {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#services .learn-more:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    #services h1 {
        font-size: 2.5rem;
    }

    #services .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    #services h1 {
        font-size: 2rem;
    }

    #services .service-grid {
        grid-template-columns: 1fr;
    }

    #services .service-card {
        max-width: 100%;
    }
}


/* Technology Section */


#technology .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for more compact layout */
    gap: 1.5rem;
    justify-content: center; /* Center the grid items horizontally */
    max-width: 1200px; /* Limit the width to prevent stretching */
    margin: 0 auto; /* Center the grid container */
}

#technology .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for larger cards */
    justify-content: center; /* Center the grid items horizontally */
    
    margin: 0 auto; /* Center the grid container */
}


#technology {
    padding: 4rem 1rem;
    background: var(--white);
    text-align: center;
}

#technology .mx-auto {
    max-width: 1400px; /* Increased for better spacing */
    margin: 0 auto; /* Ensure the container is centered */
}

#technology .mx-auto {
    max-width: 1200px;
}

#technology h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

#technology h1 span {
    color: var(--primary-blue);
}

#technology .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-items: center;
}

#technology .rounded-lg {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    
}



#technology .rounded-lg:hover {
    transform: translateY(-5px);
    /* animation: scaleUp 0.3s ease; */
}

#technology .rounded-lg .p-4 {
    background: var(--white);
    border-radius: 50%;
    margin-bottom: 1rem;
}

#technology .rounded-lg img {
    width: 60px;
    height: 60px;
}

#technology .rounded-lg p {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-900);
}

#technology .grid:last-child {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
}

#technology .text-black {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    animation: fadeInUp 1s ease forwards;
}

#technology .text-black:nth-child(1) { animation-delay: 0.8s; }
#technology .text-black:nth-child(2) { animation-delay: 0.9s; }
#technology .text-black:nth-child(3) { animation-delay: 1s; }
#technology .text-black:nth-child(4) { animation-delay: 1.1s; }
#technology .text-black:nth-child(5) { animation-delay: 1.2s; }
#technology .text-black:nth-child(6) { animation-delay: 1.3s; }
#technology .text-black:nth-child(7) { animation-delay: 1.4s; }
#technology .text-black:nth-child(8) { animation-delay: 1.5s; }
#technology .text-black:nth-child(9) { animation-delay: 1.6s; }

#technology .text-black:hover {
    transform: translateY(-5px);
    /* animation: scaleUp 0.3s ease; */
}

#technology .border-dashed {
    border: 2px dashed var(--primary-blue);
    /*border-radius: 50%;*/
    padding: 1rem;
    background: var(--white);
    margin-bottom: 0.5rem;
}

#technology .text-black img {
    width: 70px;
    height: 70px;
}

#technology .text-black p {
    font-size: 0.75rem;
    color: var(--gray-900);
}
/* Responsive Design */
@media (max-width: 1024px) {
    #hero h1 {
        font-size: 3rem;
    }

    #services h2,
    #technology h1,
    #contact h2,
    #about h1 {
        font-size: 2.5rem;
    }

    #services .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    #technology .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    #technology .rounded-lg {
        max-width: 150px;
    }
}

@media (max-width: 640px) {
    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    #hero .mt-10 {
        flex-direction: column;
        gap: 1rem;
    }

    #services h2,
    #technology h1,
    #contact h2,
    #about h1 {
        font-size: 2rem;
    }

    #services .grid {
        grid-template-columns: 1fr;
    }

    #services .max-full {
        max-width: 100%;
    }

    #technology .grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    #technology .rounded-lg {
        max-width: 120px;
        padding: 1rem;
    }

    #technology .rounded-lg img {
        width: 40px;
        height: 40px;
    }

    #technology .rounded-lg p {
        font-size: 0.75rem;
    }

    #technology .grid:last-child {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    #technology .text-black img {
        width: 40px;
        height: 40px;
    }

    #technology .text-black p {
        font-size: 0.65rem;
    }

    nav .lg\:flex {
        display: none;
    }

    nav .lg\:hidden {
        display: block;
    }

    nav .lg\:hidden svg {
        width: 24px;
        height: 24px;
    }

    #contact .max-w-2xl {
        max-width: 100%;
        padding: 0 1rem;
    }

    #contact input,
    #contact textarea {
        font-size: 0.875rem;
    }

    #contact button {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }
}  






















.body {
  background-color: white;
  color: #d3d3d3;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.splide {
  max-width: 800px;
  width: 100%;
}
.splide__track {
  padding: 10px 0;
}
.splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  box-shadow: #5d6d7e;
  background-color: white;
  transition: 0s.3s;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
}
.splide__slide .splide__slide_container {
  width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 5px;
}
.splide__slide .splide__slide_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide__slide p {
  text-align: center;
  margin: 0;
  font-size: 0.85em;
  line-height: 1.3;
  max-width: 80%;
  margin-top: 15px;
}
.splide__pagination {
  bottom: -30px;
}
.splide__pagination__page {
  background-color: #5d6d7e;
}
.splide__pagination__page.is-active {
  background-color: #bfff00;
}
@media (max-width: 800px) {
  .splide {
    max-width: 100%;
  }
  .splide__slide {
    width: 300px;
    height: 200px;
    padding: 15px;
  }
  .splide__slide .splide__slide_container {
    width: 150px;
    height: 90px;
  }
  .splide__slide p {
    font-size: 0.75em;
  }
}
@media (max-width: 500px) {
  .splide {
    max-width: 100%;
  }
  .splide__slide {
    width: 250px;
    height: 180px;
    padding: 10px;
  }
  .splide__slide .splide__slide_container {
    width: 120px;
    height: 70px;
  }
  .splide__slide p {
    font-size: 0.7em;
  }
  .splide__arrows {
    display: none; /* Hide arrows on very small screens if needed */
  }
}



        .main {
            font-family: 'Poppins', sans-serif;
            background-color: #f5faff;
            display: flex;
            justify-content: center;
            align-items: center;
            /*min-height: 100vh;*/
            padding: 20px;
        }

     :root {
            --gradient-start: #6685e5;
            --gradient-end: #ffffff;
            --white: #ffffff;
            --text-color: #ffffff;
            --shadow-color: rgba(0, 0, 0, 0.2);
            --first-slide-border: #316578;
        }

        .reviews-section {
            max-width: 900px;
            width: 100%;
            position: relative;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow-color);
            overflow: hidden;
            padding: 1rem;
        }

        .reviews-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            text-transform: uppercase;
        }

        .reviews-section h2::after {
            content: '';
            width: 40px;
            height: 3px;
            background: var(--white);
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 300px;
            border-radius: 15px;
        }

        .slider {
            display: flex;
            width: 500%; /* 100% per slide for 5 slides */
            height: 100%;
            transition: transform 2s ease-in-out;
        }

        .slide {
            min-width: 20%; /* 100% / 5 slides = 20% each */
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }

        .slide:first-child {
            border: 2px solid var(--first-slide-border); /* Unique border for first slide */
        }

        .slide img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            object-position: center;
            border-radius: 15px;
        }

        .dots {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .dot.active {
            background: var(--white);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .reviews-section h2 {
                font-size: 2rem;
            }

            .slider-container {
                height: 400px;
            }

            .slide img {
                max-width: 85%;
                max-height: 85%;
            }
        }

        @media (max-width: 1880px) {
            .reviews-section h2 {
                font-size: 1.5rem;
            }

            .slider-container {
                height: 250px;
            }

            .slide img {
                max-width: 80%;
                max-height: 80%;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }
    



