/* Fade-up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeUpAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeUp {
    opacity: 0;
}

.animate__fadeUp.visible {
    animation: fadeUpAnimation 1s forwards;
}

.animate__fadeIn {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate__fadeIn.visible {
    animation: fadeIn 0.8s forwards;
}


.section {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.section.visible {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50%;
    transform: translateX(50%);
    display: none;
    z-index: 999;
    background-color: #2e77ff;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.back-to-top img {
    width: 30px;
    height: 30px;
    display: block;
}

.back-to-top:hover {
    background-color: #1a5bbf;
}


/*-----------------------------------------------------------
  General Styles
-----------------------------------------------------------*/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f8fc;
    color: #333;
	overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

/*-----------------------------------------------------------
  Header Styles
-----------------------------------------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	 /*background-color: #2e88ff;*/
    background-color: #fff; /*#6a5acd*/
    padding: 0px 20px;
    color: #2e77ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    margin: 0 15px 0 0px;
    height: 70px;
}

nav {
    flex-grow: 1;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    text-decoration: none;
    color: #2e77ff;
    padding: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-menu > li > a:hover {
    color: #00d4ff; 
}

/*-----------------------------------------------------------
  Submenu Styles (Full-Width)
-----------------------------------------------------------*/
.submenu {
    display: none;
    position: fixed; /* Change from fixed to absolute */
     top:70px;    /* Position below the parent li */
    left: 0;
    width: 100%;        /* Adjust as needed */
    background: linear-gradient(135deg, #ffffff, #f5f8fc);
    padding: 20px;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-wrap: wrap;
}

.submenu-title {
    text-align: center;
    margin: 30px;
    position: relative;
}

.submenu-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e77ff; 
    margin: 0;
    letter-spacing: 1px;
}

/*Image Below the Submenu Title */
.submenu-title img {
    display: block;
    margin: 3px auto 3px;
    max-width: 120px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Submenu Content with Vertical Gradient Lines */
.submenu-content {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
	padding:20px;
}

.submenu-column {
    position: relative;
    text-align: left;
    width: 30%;
    min-width: 150px;
    padding: 0px 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submenu-column:hover {

    
}

/* Vertical Line Between Columns */
.submenu-column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #7f85ff, #00d4ff);
}

/* Links Styling in Submenu */
.submenu-column a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 15px 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.submenu-column a:hover {
    color: #2e77ff; 
    transform: scale(1.05);
    font-weight: 600;
}


/*-----------------------------------------------------------
  Hero Section
-----------------------------------------------------------*/
.hero {
    background: url('../bg.jpg') no-repeat right center;
    background-size: cover;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding-left: 10%;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: -1;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2e77ff; 
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dfefff;
}

.hero-buttons .button {
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.hero-buttons .button.primary {
    background: #00d4ff; /* Cyan */
    color: #fff;
}

.hero-buttons .button.primary:hover {
    background: #2e77ff; 
}

.hero-buttons .button.secondary {
    background: transparent;
    color: #00d4ff; 
    border: 2px solid #00d4ff;
}

.hero-buttons .button.secondary:hover {
    background: #00d4ff; 
    color: #fff;
}

/*-----------------------------------------------------------
  Services Section
-----------------------------------------------------------*/
.services {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2e77ff;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

/*-----------------------------------------------------------
  CTA Banner
-----------------------------------------------------------*/
.cta-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2e77ff, #00d4ff);
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-banner .button {
    background: #fff;
    color: #2e77ff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-banner .button:hover {
    background: #2e77ff;
    color: #fff;
}

/*-----------------------------------------------------------
  Process Flow Section
-----------------------------------------------------------*/
.process-flow {
    padding: 60px 20px;
}

.process-flow h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step img {
    width: 80px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: #2e77ff;
}

/*-----------------------------------------------------------
  Testimonials Section
-----------------------------------------------------------*/
.testimonials {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
    font-size: 18px;
    color: #555;
}

.testimonial-item h4 {
    margin-top: 20px;
    font-size: 16px;
    color: #2e77ff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #2e77ff;
}

/*-----------------------------------------------------------
  Partners Section
-----------------------------------------------------------*/
.partners {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.partners h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/*-----------------------------------------------------------
  Latest News Section
-----------------------------------------------------------*/
.latest-news {
    padding: 60px 20px;
}

.latest-news h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.news-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.news-item {
    max-width: 300px;
    text-align: left;
}

.news-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.news-item h3 {
    font-size: 22px;
    color: #2e77ff;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.news-item .button {
    background: #00d4ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.news-item .button:hover {
    background: #2e77ff;
}

/*-----------------------------------------------------------
  Smooth Scroll
-----------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

/*-----------------------------------------------------------
  Fade-In Animation
-----------------------------------------------------------*/
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.section {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.section.visible {
    opacity: 1;
}

/*-----------------------------------------------------------
  Buttons 
-----------------------------------------------------------*/
.button {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
    background: #00d4ff;
    color: #fff;
}

.button.primary:hover {
    background: #2e77ff;
}

.button.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.button.secondary:hover {
    background: #00d4ff;
    color: #fff;
}

/*-----------------------------------------------------------
  Media Queries
-----------------------------------------------------------*/
@media (max-width: 768px) {
    .services-container,
    .process-steps,
    .news-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item,
    .step,
    .news-item {
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 20px;
    }
}

/*-----------------------------------------------------------
  Call to Action Section
-----------------------------------------------------------*/
.cta {
    background: #7f85ff; 
    color: #ffffff;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons .button {
    margin: 0 10px;
}

.cta-buttons .button.primary {
    background: #00d4ff; 
    color: #ffffff;
}

.cta-buttons .button.primary:hover {
    background: #2e77ff; 
}

.cta-buttons .button.secondary {
    background: transparent;
    color: #00d4ff; 
    border: 2px solid #00d4ff;
}

.cta-buttons .button.secondary:hover {
    background: #00d4ff; 
    color: #ffffff;
}

/*-----------------------------------------------------------
  Footer Styles
-----------------------------------------------------------*/
footer {
    background-color: #003366; 
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #00d4ff; 
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/*-----------------------------------------------------------
  Buttons
-----------------------------------------------------------*/
.button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
    background: #00d4ff;
    color: #fff;
}

.button.primary:hover {
    background: #2e77ff; 
}

.button.secondary {
    background: #fff;
    color: #00d4ff; 
    border: 2px solid #00d4ff;
}

.button.secondary:hover {
    background: #00d4ff; 
    color: #fff;
}

/*-----------------------------------------------------------
  Responsive Design
-----------------------------------------------------------*/
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding-right: 20px;
    }

    .main-menu {
        display: none;
        flex-direction: column;
    }

    .main-menu.active {
        display: flex;
    }

    .submenu {
        flex-direction: column;
        padding: 20px;
        top: 10%; 
    }

    .submenu-content {
        flex-direction: column;
        align-items: center;
    }

    .submenu-column {
        width: 100%;
        margin-bottom: 20px;
        border-right: none;
    }

    .submenu-column:not(:last-child)::after {
        display: none;
    }

    .submenu-title img {
        max-width: 90px;
    }
}



/*-----------------------------------------------------------
  Partners Section
-----------------------------------------------------------*/
.partners {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.partners h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.partner {
    text-align: center;
    max-width: 200px;
}

.partner img {
    width: 100px;
    margin-bottom: 15px;
}

.partner h3 {
    font-size: 20px;
    color: #2e77ff;
    margin-bottom: 10px;
}

.partner p {
    font-size: 14px;
    color: #555;
}

/*-----------------------------------------------------------
  Technology Stack Section
-----------------------------------------------------------*/
.tech-stack {
    padding: 60px 20px;
}

.tech-stack h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.tech-stack-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tech-category {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tech-category .tech-icon img {
    width: 60px;
    margin-bottom: 15px;
}

.tech-category h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2e77ff;
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tech-category ul li img {
    width: 24px;
    margin-right: 10px;
}

/*-----------------------------------------------------------
  Why Choose Us Section
-----------------------------------------------------------*/
.why-choose-us {
    padding: 60px 20px;
    background-color: #f0f7ff; 
}

.why-choose-us h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.why-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.why-card .why-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    color: #2e77ff;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

/*-----------------------------------------------------------
  Responsive Design Adjustments
-----------------------------------------------------------*/
@media (max-width: 768px) {
    .tech-stack-container,
    .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .tech-category,
    .why-card {
        max-width: 100%;
    }
}

/*-----------------------------------------------------------
  Technology Stack Submenu Styles
-----------------------------------------------------------*/
.submenu.tech-stack {
    background-color: #f5f8fc;
}

.submenu.tech-stack .submenu-title h2 {
    color: #2e77ff;
}

/*-----------------------------------------------------------
  Additional Styles
-----------------------------------------------------------*/
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.visible {
    opacity: 1;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Existing styles... */

/*-----------------------------------------------------------
  Our Mission Section
-----------------------------------------------------------*/
.mission {
    padding: 80px 20px;
    background: url('images/mission-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 119, 255, 0.8);
    z-index: -1;
}

.mission h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.mission p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/*-----------------------------------------------------------
  Our Expertise Section
-----------------------------------------------------------*/
.expertise {
    padding: 60px 20px;
}

.expertise h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.expertise-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 22px;
    color: #2e77ff;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.expertise-card .button {
    margin-top: auto;
}

/*-----------------------------------------------------------
  Industries We Serve Section
-----------------------------------------------------------*/
/* Industries We Serve Section */
.industries {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center; 
}

.industries h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 40px;
}

.industries-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px; 
}

.industry-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.industry-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 22px;
    color: #2e77ff;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.industries .button {
    margin-top: 40px;
}

/*-----------------------------------------------------------
  Call to Action Section
-----------------------------------------------------------*/
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2e77ff, #00d4ff);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons .button {
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-buttons .button.primary {
    background: #fff;
    color: #2e77ff;
}

.cta-buttons .button.primary:hover {
    background: #2e77ff;
    color: #fff;
}

.cta-buttons .button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .button.secondary:hover {
    background: #fff;
    color: #2e77ff;
}

/*-----------------------------------------------------------
  Case Studies Link Section
-----------------------------------------------------------*/
/* Case Studies Link Styles */
.case-studies-link {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.case-studies-content {
  margin: auto;
  max-width: 1200;
  padding: 5px;
}

.case-studies-carousel {
    margin: 40px 0;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    /* Remove margins if any */
    margin: 0;
    padding: 0;
}

/* Adjusting swiper-wrapper */
.swiper-wrapper {
    margin: 0;
    padding: 0;
}

/* Adjusting swiper-container */
.swiper-container {
    padding: 0;
}


.case-study {
    background: #fff;
    padding: 15px; /* Reduced padding */
    margin: 0;     /* Ensure no margin */
    border-radius: 10px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.case-study img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.case-study h3 {
    font-size: 20px;
    color: #2e77ff;
    margin-bottom: 10px;
}

.case-study p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    flex-grow: 1;
}

.case-study .button {
    align-self: flex-start;
}

.swiper-pagination {
    margin: 20px 1px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #2e77ff;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: auto;
    }
    
    .case-study {
        max-width: 90%;
    }
}


/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/* Case Study Page Styles */
/*-----------------------------------------------------------
  Case Study Page Styles
-----------------------------------------------------------*/
.case-study-page {
    background-color: #f5f8fc;
}

/* Hero Section */
.case-study-hero {
    background: linear-gradient(45deg, #3e79ff 0%, #00d7ff 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.case-study-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-hero h1 {
	color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.case-study-hero p {
    font-size: 24px;
    line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
}

/* Sidebar Navigation */
.case-study-sidebar {
    width: 30%;
    padding: 0 20px 0 20px;
}

.case-study-navigation {

    padding: 20px;
    border-radius: 8px;
}

.case-study-navigation h3 {
    font-size: 24px;
    color: #2e77ff;
    margin-bottom: 20px;
}

.case-study-navigation .case-study-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-navigation .case-study-list li {
    margin-bottom: 15px;
}

.case-study-navigation .case-study-list li a {
    text-decoration: none;
	font-style: italic;
    color: #555;
    font-size: 16px;
    transition: color 0.3s ease;
}

.case-study-navigation .case-study-list li a:hover,
.case-study-navigation .case-study-list li.active a {
    color: #2e77ff;
}

/* Main Content Area */
.case-study-content {
    width: 75%;
    padding-left: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.case-study-content h2 {
    font-size: 28px;
    color: #2e77ff;
    margin-bottom: 20px;
}

.case-study-content p,
.case-study-content ul {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.case-study-content ul {
    list-style: disc inside;
    margin: 20px 0;
    padding-left: 20px;
}

.case-study-content ul li {
    margin-bottom: 10px;
}

/* Image Container */
.image-container {
    margin: 30px 0;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* Custom List Styling */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.custom-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #2e77ff;
    font-size: 20px;
}

/* Testimonial Section */
.testimonial {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
}

.testimonial blockquote {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #2e77ff;
}

/* Statistics Cards */
.statistics-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-card {
    background: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: #f0f7ff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 28px;
    color: #2e77ff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-section .button {
    padding: 12px 24px;
    font-size: 16px;
}
/* Hover Effects for Sections */
section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #2e77ff;
    margin-top: 10px;
    transition: width 0.3s ease;
}

section h2:hover::after {
    width: 100px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .case-study-sidebar,
    .case-study-content {
        width: 100%;
        padding: 0;
    }

    .case-study-sidebar {
        margin-bottom: 20px;
    }

    .case-study-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .case-study-hero h1 {
        font-size: 36px;
    }

    .case-study-hero p {
        font-size: 18px;
    }

    .case-study-navigation h3 {
        font-size: 20px;
    }

    .case-study-content h2 {
        font-size: 24px;
    }

/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/
/*CASE STUDY PAGEEEEEEEE*/


/* Statistics Section Styles */
.statistics {
    padding: 60px 20px;
    background-color: #f0f7ff;
    text-align: center;
}

.statistics h2 {
    font-size: 36px;
    color: #2e77ff;
    margin-bottom: 20px;
}

.statistics p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.statistics-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 48px;
    color: #2e77ff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .statistics-cards {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        max-width: 100%;
    }
}


/*-----------------------------------------------------------
  Responsive Design Adjustments
-----------------------------------------------------------*/
@media (max-width: 768px) {
    .expertise-cards,
    .industries-cards {
        flex-direction: column;
        align-items: center;
    }

    .expertise-card,
    .industry-card {
        max-width: 100%;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 18px;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}