*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}
  
  /* Section Styling */
  .enterprise-her-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    color: #fff;
  }
  
  /* Background Image Styling */
  .background-containre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .background-imagee {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    filter: brightness(50%);

  }
  
  /* Text Content Styling */
  .content-containere {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
  }
  
  .text-boxe {
    max-width: 800px;
  }
  
  .main-headinge {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fade-in-upe 1.5s ease-out;
  }
  
  .subtexte {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fade-in-upe 2s ease-out;
  }
  
  /* Animations */
  @keyframes fade-in-upe {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .main-headinge {
      font-size: 2.5rem;
    }
  
    .subtexte {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .main-headinge {
      font-size: 2rem;
    }
  
    .subtexte {
      font-size: 1rem;
    }
  }

  /* ***************************************** */
  .overview-sectiono1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

.cardo {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    max-width: 300px;
    transition: transform 0.2s;
}

.cardo:hover {
    transform: scale(1.05);
}

.card-img-topo {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.card-bodyo {
    padding: 15px;
}

.card-texto {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.3s;
}

.card-texto span {
    font-weight: bold;
    font-size: 18px;
    color: #4CAF50;
    transition: color 0.3s;
}

.cardo:hover .card-texto {
    color: #4CAF50;
}

.cardo:hover .card-texto span {
    color: #333;
}

.text-flashing {
    background-color: #084c7f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: flashe 8.5s infinite;
    font-weight: bold;
    margin-top: 20px;
}

@keyframes flashe {
    0% { opacity: 1;background-color:#e5f3ff ;color: #084c7f; }
    25%{ opcaity:0.8;background-color:#084c7f;color: #e5f3ff;}
    50% { opacity: 1;background-color:#e5f3ff ; color: #084c7f;}
    75%{opacity:0.9;background-color:#084c7f;color: #e5f3ff;}
    100% { opacity: 1; background-color:#e5f3ff ;color: #084c7f;}
}

@media (max-width: 768px) {
    .overview-sectiono1 {
        flex-direction: column;
        align-items: center;
    }

    .cardo {
        max-width: 90%;
    }
}

/* **************** */
/* General Styling */
.split-view1, .split-view2 {
    background-color: #f9f9f9; /* Light gray for a clean look */
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
}

.containerv {
    display: flex;
    flex-direction: column; /* Ensures row-by-row layout */
    gap: 30px; /* Adds spacing between rows */
    max-width: 1200px;
    margin: 0 auto; /* Centers the content */
}

/* Section Items */
.left-sectionv {
    background-color: #fff; /* White background for contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row; /* Default layout: Image and content in a row */
    align-items: center; /* Centers content vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 20px; /* Space between image and text */
    padding: 15px;
}

/* Reverse Layout for Even Cards */
.left-sectionv:nth-child(even) {
    flex-direction: row-reverse; /* Image on the right, content on the left */
}

.left-sectionv:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Image Styling */
.left-sectionv img {
    width: 100%;
    max-width: 150px; /* Consistent image size */
    border-radius: 10px; /* Matches container rounding */
    object-fit: cover; /* Ensures the image fits nicely */
}

/* Below Image Content */
.below-image-contentv {
    flex: 1; /* Ensures the content takes the remaining space */
    padding: 10px;
}

.Belowtitlev {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.below-image-contentv p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .left-sectionv {
        flex-direction: column; /* Stacks image and text vertically */
        text-align: center; /* Centers content */
    }

    .left-sectionv:nth-child(even) {
        flex-direction: column; /* Align all cards consistently */
    }

    .below-image-contentv {
        text-align: center; /* Centers text content */
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .Belowtitlev {
        font-size: 1.4rem;
    }

    .below-image-contentv p {
        font-size: 0.95rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .Belowtitlev {
        font-size: 1.45rem;
    }

    .below-image-contentv p {
        font-size: 1rem;
    }
}

/* Large Devices (992px and above) */
@media (min-width: 992px) {
    .Belowtitlev {
        font-size: 1.6rem;
    }

    .below-image-contentv p {
        font-size: 1.1rem;
    }
}

/* ***************** */
/* General Styling */
.Mainsectione {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    padding: 50px 20px;
    /* margin: 50px 20px; */
    /* height: 400px; */
    overflow: hidden;
    /* border: 2px solid; */
}

.slider-containere {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* overflow: hidden; */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.slidee {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    position: absolute;
    background-color: #e5f3ff;

}

.slidee.activee {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* Content Section */
.content-carouselse {
    flex: 1;
    padding: 50px 20px;
    height: 300px;
    margin-left: 50px;
}

.content-carouselse h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.content-carouselse p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.content-carouselse ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #777;
}

.content-carouselse ul li {
    margin-bottom: 5px;
}

/* Image Section */
.imagee img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 50px;
}

/* Navigation Buttons */
button.preve, button.nexte {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

button.preve:hover, button.nexte:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

button.preve {
    left: 10px;
}

button.nexte {
    right: 10px;
}

/* Responsive Design */

/* Small Devices (up to 767px) */
@media (max-width: 767px) {
    .slidee {
        flex-direction: column;
        text-align: center;
    }

    .content-carouselse {
        padding: 15px;
    }

    .imagee img {
        max-width: 200px;
        margin: 0 auto;
    }

    button.preve, button.nexte {
        padding: 8px 12px;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .content-carouselse h2 {
        font-size: 1.6rem;
    }

    .content-carouselse p {
        font-size: 0.95rem;
    }
}

/* Large Devices (992px and above) */
@media (min-width: 992px) {
    .content-carouselse h2 {
        font-size: 1.8rem;
    }

    .content-carouselse p {
        font-size: 1rem;
    }
}
/* ******************************** */
/* General Styling for the Section */
.logo-sectione {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 40px 20px;
    text-align: center;
    color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 450px;
    border: 2px solid;
}

/* Section Heading */
.logo-sectione h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d47a1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    animation: fadeInDownl 1s ease;
}

/* Paragraph Styling */
.logo-sectione p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #424242;
    margin: 10px 0;
    text-align: left;
    animation: fadeInUpl 1s ease;
}

.logo-sectione p b {
    color: #1565c0;
    font-weight: bold;
}
#ediv1{
    flex: 1;
    margin-right: 20px;
    /* border: 2px solid; */
}
/* Parent Flex Container */
.images-containe {
    justify-content: center;
    gap: 20px;
    /* margin-top: 30px; */
}

/* Individual Image Styling */
.images-containe{
    /* border: 2px solid red; */
    max-width: fit-content;
    position: absolute;
    right: 0;
    bottom: 0;
}
.images-containe img {
    max-width: 120px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    padding: 10px;
    border: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    animation: bouncel 1s infinite;

}

.images-containe img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@keyframes bouncel {
    0%{
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-10px); 
        transform: translateX(-10px);
    }
    60% {
        transform: translateY(-10px); /* Move slightly down */
    }
}
/* Decorative Background Elements */
.logo-sectione::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(33, 150, 243, 0.3);
    border-radius: 50%;
    z-index: 0;
    animation: floate 5s ease-in-out infinite;
}

.logo-sectione::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(33, 150, 243, 0.3);
    border-radius: 50%;
    z-index: 0;
    animation: floate 7s ease-in-out infinite;
}

/* Animation Effects */
@keyframes fadeInDownl {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpl {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floate {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.logo-image-1{
    position: absolute;
    /* bottom: 0; */
    right: 100px;
    bottom: 180px;
    animation-delay: 0s;
}
.logo-image-2{
    position: absolute;
    /* bottom: 0; */
    right: 280px;
    bottom: 100px;
    animation-delay: 2s;

}
.logo-image-3{
    position: relative;
    right: 100px;
    /* bottom: 30px; */
    animation-delay: 7s;

}
/* Responsive Design */
@media (max-width: 1024px) {
    .logo-sectione h1 {
        font-size: 1.8rem;
    }
    .images-containe{
        display: flex;

    }
    .images-containe img {
        max-width: 70px;
        position: relative;
bottom: 0;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .logo-sectione h1 {
        font-size: 1.5rem;
    }

    .logo-sectione p {
        font-size: 0.9rem;
        text-align: center;
    }

    .images-containe {
        display: flex;
        /* flex-direction: column; */
        /* align-items: center; Centers icons horizontally */
        gap: 25px; /* Adds spacing between icons */
    }

    .images-containe img {
        max-width: 60px;
        position: relative;
        /* left: 0; */
        bottom: 0;

    }
}

@media (max-width: 480px) {
    .logo-sectione {
        padding: 20px 10px;
    }

    .logo-sectione h1 {
        font-size: 1.2rem;
    }

    .images-containe {
        gap: 10px; /* Reduces spacing for smaller screens */
    }

    .images-containe img {
        max-width: 50px;
        position: relative;
        left: 0;
        bottom: 90px;
    }
}


/* Responsive Design */

/* ************************ */
/* General Styling for the Section */
.why-choosee {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f3f9fe, #e3f2fd);
    padding: 40px 20px;
    text-align: center;
    color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
}

/* Cards Container */
.coll {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    /* margin-bottom: 20px; */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Solution Cards */
.solution_cardl {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 275px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects */
.solution_cardl:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hover_color_bubblel {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    z-index: 0;
    animation: floatt 5s ease-in-out infinite;
}

.solution_cardl:hover .hover_color_bubblel {
    background: rgba(33, 150, 243, 0.3);
}

/* Icons */
.so_top_iconl img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

/* Card Titles */
.solu_titlel h3 {
    font-size: 1.5rem;
    color: #1565c0;
    margin: 0 0 15px;
    font-weight: bold;
    text-align: center;
}

/* Card Descriptions */
.solu_descriptionl p {
    font-size: 1rem;
    line-height: 1.6;
    color: #424242;
    margin: 0;
}

/* Responsive Design */

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    .coll {
        flex-direction: column;
        gap: 30px;
    }

    .solution_cardl {
        max-width: 100%;
    }

    .so_top_iconl img {
        width: 50px;
    }

    .solu_titlel h3 {
        font-size: 1.3rem;
    }

    .solu_descriptionl p {
        font-size: 0.9rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .solution_cardl {
        max-width: 45%;
    }

    .so_top_iconl img {
        width: 55px;
    }

    .solu_titlel h3 {
        font-size: 1.4rem;
    }

    .solu_descriptionl p {
        font-size: 1rem;
    }
}

/* Decorative Animation */
@keyframes floatt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ***************************************** */

  
  .enterprise-section-con {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #e5f3ff, #084c7f);
    color: white;
    padding: 50px 20px;
  }
  
  .content-wrapper-c {
    text-align: center;
    max-width: 800px;
  }
  
  .section-title-c {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .section-text-c {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button-c {
    background: #084c7f;
    color: #e5f3ff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button-c:hover {
    background: #e5f3ff;
    color: #084c7f;
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .section-title-c {
      font-size: 2rem;
    }
  
    .section-text-c {
      font-size: 1rem;
    }
  
    .cta-button-c {
      width: 100%;
    }
  }
  