@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
/* Section 5 (Leadership) */

.sec-5 {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 80px;
}

main {
    width: 100%;
    background-color: white;
}


/* Carousel Container */

.sec-5 #carousel {
    position: relative;
    height: 350px;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sec-5 #carousel div {
    position: absolute;
    transition: transform 400ms, left 400ms, opacity 400ms, z-index 0s;
    opacity: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.sec-5 #carousel div img {
    width: 390px;
    transition: width 400ms;
    -webkit-user-drag: none;
    border-radius: 10px;
}


/* Carousel Item Positions */

.sec-5 #carousel div.hideLeft {
    left: -100%;
    opacity: 0;
    transform: translateX(-50%);
}

.sec-5 #carousel div.hideLeft img {
    width: 200px;
}

.sec-5 #carousel div.hideRight {
    left: 100%;
    opacity: 0;
    transform: translateX(50%);
}

.sec-5 #carousel div.hideRight img {
    width: 200px;
}

.sec-5 #carousel div.prev {
    z-index: 5;
    left: 30%;
    transform: translateY(50px) translateX(-50%);
}

.sec-5 #carousel div.prev img {
    width: 300px;
}

.sec-5 #carousel div.prevLeftSecond {
    z-index: 4;
    left: 15%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
}

.sec-5 #carousel div.prevLeftSecond img {
    width: 200px;
}

.sec-5 #carousel div.selected {
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
}

.sec-5 #carousel div.next {
    z-index: 5;
    left: 70%;
    transform: translateY(50px) translateX(-50%);
}

.sec-5 #carousel div.next img {
    width: 300px;
}

.sec-5 #carousel div.nextRightSecond {
    z-index: 4;
    left: 85%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
}

.sec-5 #carousel div.nextRightSecond img {
    width: 200px;
}


/* Titles and Descriptions Section */

.sec-5 #titles-descriptions {
    text-align: center;
    margin-bottom: 30px;
}

.sec-5 .mainhead {
    display: flex;
    font-size: 45px;
    justify-content: center;
    align-items: center;
    color: rgba(90, 90, 90, 1);
    width: 100%;
    margin-bottom: 40px;
    background: white;
    font-weight: 500;
}

.title-description {
    display: none;
}

.title-description.active {
    display: block;
    background-color: rgb(254, 254, 254);
    width: 70%;
    margin: 0 auto;
    padding: 0px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.title-description.active.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-description.active h1 {
    font-size: 26px;
    color: rgba(90, 90, 90, 1);
    font-weight:600;
}

.title-description.active h3 {
    font-size: 22px;
    font-weight: bolder;
    margin-bottom: 10px;
    color: rgb(34, 126, 225);
}

.title-description.active p {
    font-size: 18px;
    color: rgb(23, 23, 23);
}


/* Dots Container */

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    position: relative;
    width: 100%;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: hsl(212, 100%, 47%);
}


/* Responsive Styles */

@media (max-width: 768px) {
    .sec-5 #carousel {
        height: auto;
        min-height: 300px;
    }
    .sec-5 #carousel div {
        width: 100%;
    }
    .sec-5 #carousel div img {
        width: 300px;
        height: auto;
    }
    .sec-5 #carousel div.selected {
        left: 50%;
        transform: translateX(-50%);
    }
    .sec-5 #carousel div.prev,
    .sec-5 #carousel div.next,
    .sec-5 #carousel div.prevLeftSecond,
    .sec-5 #carousel div.nextRightSecond {
        display: none;
    }
    .sec-5 .mainhead {
        font-size: 48px;
    }
    .title-description.active h1 {
        font-size: 24px;
    }
    .title-description.active h3 {
        font-size: 20px;
    }
    .title-description.active p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sec-5 #carousel {
        min-height: 200px;
    }
    .sec-5 #carousel div img {
        width: 200px;
    }
    .sec-5 .mainhead {
        font-size: 36px;
    }
    .title-description.active h1 {
        font-size: 20px;
    }
    .title-description.active h3 {
        font-size: 18px;
    }
    .title-description.active p {
        font-size: 14px;
    }
}
 :root {
    --primary-color: #1b219a;
    --secondary-color: #333;
    --background-gradient: linear-gradient(135deg, #f5f5f5, #e0e0e6);
    --spacing: 20px;
    --border-radius: 10px;
    --transition-speed: 0.1s;
    --primary-color1: #1e90ff;
    --secondary-color1: #333;
    --gradient-blue: linear-gradient(135deg, #0a1f3d, #1c3b6a);
    --spacing1: 20px;
    --border-radius1: 10px;
    --transition-speed1: 0.3s;
}

body {
    color: #2d3748;
}


/* Hero Section (Section 1) */

.hero-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px 10px 15px;
    perspective: 1000px;
    z-index: 2;
    width: 100vw;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: url(/assets/company-page-bg.png) no-repeat center center/cover;
    background-attachment: fixed;
    z-index: -1;
    transform: scale(1);
    will-change: transform;
}

.orange-container {
    width: 100vw;
    background: rgba(50, 106, 178, 0.5);
    padding: 5px 40px;
    transform: translateY(50px) rotateX(-20deg);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 10 0 40px 0;
    gap: 10px;
    min-height: 150px;
    transition: all 0.5s ease-out;
}

.orange-container.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.orange-container .heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.2;
}

.orange-container .heading span:first-child {
    font-size: 5.3rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}

.orange-container .heading span:last-child {
    font-size: 5.3rem;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
}

.orange-container .description {
    font-size: 18px;
    color: #ffffff;
    max-width: 800px;
    font-weight: 400;
    border-left: 6px solid #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    line-height: 1.5;
    transform: translateZ(20px);
}

.content-container {
    width: 100%;
    max-width: 1400px;
    padding-top: 40px;
    text-align: center;
    margin: 0 auto;
    background: none;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
    justify-content: center;
    width: 100%;
    padding: 30 10px 0px;
    min-height: 180px;
}

.stat {
    text-align: center;
    padding: 20px 20px;
    border-radius: 10px;
    background: #10101096;
    width: 100%;
    max-width: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(50px) rotateX(-15deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.stat.visible {
    opacity: 1 ! important;
    transform: translateY(0) rotateX(0deg);
}

.stat i {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.stat .count {
    font-size: 2.1rem;
    color: #ffffff;
    font-weight: 700;
}

.stat .count::after {
    content: '+';
    font-size: 1.9rem;
    margin-left: 6px;
    color: #ffffff;
}

.stat p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 400;
}

@media (max-width: 1500px) {
    .orange-container .heading span:first-child {
        font-size: 90px;
    }
    .orange-container .heading span:last-child {
        font-size: 90px;
    }
    .orange-container .description {
        font-size: 20px;
        max-width: 700px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .orange-container {
        padding: 15px 40px;
        gap: 20px;
    }
    .stat .count {
        font-size: 2.5rem;
    }
    .stat p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1300px) {
    .hero-section {
        min-height: 100vh;
        padding: 0px 0px;
    }
    .orange-container .heading span:first-child {
        font-size: 80px;
    }
    .orange-container .heading span:last-child {
        font-size: 80px;
    }
    .orange-container .description {
        font-size: 19px;
        max-width: 500px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .orange-container {
        padding: 15px 40px;
        gap: 20px;
    }
    .stat .count {
        font-size: 2.5rem;
    }
    .stat p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1100px) {
    .hero-section {
        min-height: 100vh;
        padding: 0px 0px;
    }
    .orange-container .heading span:first-child {
        font-size: 70px;
    }
    .orange-container .heading span:last-child {
        font-size: 70px;
    }
    .orange-container .description {
        font-size: 17px;
        max-width: 500px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .orange-container {
        padding: 15px 40px;
        gap: 20px;
    }
    .stat .count {
        font-size: 2.5rem;
    }
    .stat p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 100vh;
        padding: 0px 0px;
    }
    .orange-container .heading span:first-child {
        font-size: 60px;
    }
    .orange-container .heading span:last-child {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 15px;
        max-width: 400px;
        padding-left: 15px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .orange-container {
        padding: 22px 22px;
        gap: 20px;
    }
    .stat .count {
        font-size: 2.2rem;
    }
    .stat p {
        font-size: 1.1rem;
    }
}

@media (max-width: 800px) {
    .hero-section {
        min-height: 120vh;
        padding: 0px 0px;
    }
    .parallax {
        height: 100%;
        background-size: cover;
        background-attachment: scroll;
    }
    .orange-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 100%;
        min-height: auto;
        margin: 0px;
    }
    .orange-container .heading {
        align-items: center;
        text-align: center;
    }
    .orange-container .heading span:first-child {
        font-size: 50px;
    }
    .orange-container .heading span:last-child {
        font-size: 50px;
    }
    .orange-container .description {
        font-size: 18px;
        border-left: none;
        border-top: 4px solid #ffffff;
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
        max-width: 100%;
    }
    .content-container {
        padding: 50px 10px 30px 0px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        padding: 5px;
    }
    .stat {
        padding: 15px;
        max-width: 180px;
    }
    .stat .count {
        font-size: 2.2rem;
    }
    .stat p {
        font-size: 1rem;
    }
    .stat i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 120vh;
        padding: 0px 0px;
    }
    .parallax {
        height: 100%;
        background-size: cover;
        background-attachment: scroll;
    }
    .orange-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 100%;
        min-height: auto;
        margin: 0px;
    }
    .orange-container .heading {
        align-items: center;
        text-align: center;
    }
    .orange-container .heading span:first-child {
        font-size: 60px;
    }
    .orange-container .heading span:last-child {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 18px;
        border-left: none;
        border-top: 4px solid #ffffff;
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
        max-width: 100%;
    }
    .content-container {
        padding: 30px 10px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        padding: 0 5px;
    }
    .stat {
        padding: 15px;
        max-width: 180px;
    }
    .stat .count {
        font-size: 2.2rem;
    }
    .stat p {
        font-size: 1rem;
    }
    .stat i {
        font-size: 2rem;
    }
}

@media (max-width: 620px) {
    .hero-section {
        min-height: 120vh;
        padding: 90px 0px;
    }
    .parallax {
        height: 100%;
        background-size: cover;
        background-attachment: scroll;
    }
    .orange-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 100%;
        min-height: auto;
        margin: 0px;
    }
    .orange-container .heading {
        align-items: center;
        text-align: center;
    }
    .orange-container .heading span:first-child {
        font-size: 60px;
    }
    .orange-container .heading span:last-child {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 18px;
        border-left: none;
        border-top: 4px solid #ffffff;
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
        max-width: 100%;
    }
    .content-container {
        padding: 30px 10px;
    }
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        padding: 0 5px;
    }
    .stat {
        padding: 15px;
        max-width: 180px;
    }
    .stat .count {
        font-size: 2.2rem;
    }
    .stat p {
        font-size: 1rem;
    }
    .stat i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 90px 5px;
    }
    .orange-container {
        padding: 10px;
        gap: 10px;
    }
    .orange-container .heading span:first-child {
        font-size: 35px;
    }
    .orange-container .heading span:last-child {
        font-size: 45px;
    }
    .orange-container .description {
        font-size: 14px;
        padding-top: 10px;
    }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .stat {
        padding: 10px;
        max-width: 100%;
    }
    .stat .count {
        font-size: 1.8rem;
    }
    .stat p {
        font-size: 0.9rem;
    }
    .stat i {
        font-size: 1.6rem;
    }
}


/* Software Innovation Section (Section 2) */

.software-innovation {
    margin: 0px auto;
    padding: 40px 50px 70px 50px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.content {
    width: 50%;
    padding-left: 20px;
    box-sizing: border-box;
    opacity: 0;
}

.content h1 {
    font-size: 2.7em;
    color: var(--secondary-color);
    margin: 0 0 20px;
    line-height: 1.3;
    font-weight: 700;
}

.content h1 strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1em;
}

.content p {
    font-size: 1em;
    color: #4d4d4d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 0.8fr);
    gap: var(--spacing);
    width: 35%;
    box-sizing: border-box;
    opacity: 0;
}

.grid-item {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease;
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-item .real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.grid-item.mission {
    transform: translateY(-20px);
}

.grid-item.vision {
    transform: translateY(20px);
}

.grid-item.philosophy {
    transform: translateY(-20px);
}

.grid-item.strategy {
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .software-innovation {
        flex-direction: column;
        padding: 50px 20px;
        align-items: flex-start;
    }
    .grid-item.mission,
    .grid-item.vision,
    .grid-item.philosophy,
    .grid-item.strategy {
        transform: translateY(0);
    }
    .content,
    .grid {
        width: 100%;
        padding-left: 0;
    }
    .grid {
        margin-top: var(--spacing);
    }
    .content h1 {
        font-size: 2em;
    }
    .grid-item {
        height: 120px;
    }
    .content p {
        font-size: 0.8em;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}


/* Banner Section (Section 3) */

.banner {
    display: flex;
    justify-content: space-between;
    padding: 30px 80px;
    background: var(--gradient-blue);
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.banner-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.banner-left {
    width: 40%;
    padding: var(--spacing1);
    box-sizing: border-box;
    opacity: 0;
}

.banner-left img {
    width: 100%;
    border-radius: var(--border-radius1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-right {
    width: 55%;
    padding-left: var(--spacing1);
    box-sizing: border-box;
    opacity: 0;
}

.banner-right h1 {
    font-size: 2.2em;
    margin: 0 0 20px;
    line-height: 1.3;
    color: white;
    font-weight: 700;
}

.banner-right h1 strong {
    color: #1e90ff;
    font-weight: 800;
}

.banner-right p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solutions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing1);
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 15px);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius1);
    transition: transform var(--transition-speed1) ease, background var(--transition-speed1) ease;
    text-align: center;
    opacity: 0;
}

.solution-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.solution-item i {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #1e90ff;
}

.solution-item span {
    font-size: 0.9em;
    color: white;
}

.learn-more {
    margin-top: var(--spacing1);
    background: #015db9;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: var(--border-radius1);
    display: inline-block;
    transition: background var(--transition-speed1) ease;
    margin-top: 40px;
}

.learn-more:hover {
    background: #0047ab;
}

@media (max-width: 1200px) {
    .banner {
        padding: 40px;
    }
    .banner-left {
        width: 45%;
    }
    .banner-right {
        width: 50%;
    }
    .solution-item {
        width: calc(33.33% - 15px);
    }
    .banner-right h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        padding: 20px;
        min-height: 100vh;
    }
    .banner-left,
    .banner-right {
        width: 100%;
        padding: 0;
    }
    .banner-left {
        margin-bottom: var(--spacing1);
    }
    .banner-right h1 {
        font-size: 1.8em;
    }
    .solution-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 15px;
        min-height: 120vh;
    }
    .banner-right h1 {
        font-size: 1.5em;
    }
    .solution-item {
        width: 100%;
    }
    .banner-right p {
        font-size: 0.9em;
    }
}

.mission-vision-values {
    padding: 50px 20px 30px 20px;
    background-color: #f6fbff;
    overflow-x: hidden;
    position: relative;
    width: 100vw;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

.mission-vision-values .cards-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 30px 20px;
    width: 100%;
    max-width: 1400px;
    will-change: transform;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-values .card {
    width: 100%;
    max-width: 300px;
    height: 300px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(50px);
}

.mission-vision-values .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid #0073e6;
}

.mission-vision-values .icon1 {
    font-size: 50px;
    color: #0073e6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.mission-vision-values .icon1 i {
    font-weight: 900 !important;
}

.mission-vision-values .card:hover .icon1 {
    color: #005bb5;
}

.mission-vision-values h3 {
    font-size: 22px;
    color: #0073e6;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-vision-values p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}


/* Tablet and smaller screens */

@media (max-width: 768px) {
    .mission-vision-values {
        padding: 60px 15px;
    }
    .mission-vision-values .cards-container {
        gap: 20px;
        padding: 0 15px 20px 15px;
        flex-direction: column;
    }
    .mission-vision-values .card {
        max-width: 100%;
        height: auto;
        padding: 20px;
    }
    .mission-vision-values .icon1 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .mission-vision-values h3 {
        font-size: 20px;
    }
    .mission-vision-values p {
        font-size: 14px;
    }
}


/* Mobile screens */

@media (max-width: 480px) {
    .mission-vision-values {
        padding: 40px 10px;
    }
    .mission-vision-values .cards-container {
        gap: 15px;
        padding: 0 10px 15px 10px;
    }
    .mission-vision-values .card {
        max-width: 100%;
        height: auto;
        padding: 15px;
    }
    .mission-vision-values .icon1 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .mission-vision-values h3 {
        font-size: 18px;
    }
    .mission-vision-values p {
        font-size: 13px;
    }
}

.sec-8 {
    background-color: rgba(22, 120, 191, 1);
    color: white;
    padding: 20px;
    min-height: 55vh;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clients-section-title p {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: Center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.clients-section {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    animation: scroll 80s linear infinite;
    will-change: transform;
}

.client {
    flex: 0 0 auto;
    width: 150px;
    height: 200px;
    text-align: center;
    margin-right: 20px;
}

.client img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.client p {
    font-size: 0.8rem;
    margin: 0;
    text-transform: capitalize;
}


/* Smooth scrolling animation */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Scroll Animation */

.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer .footer-brand {
    text-align: left!important;
    margin-left: 0px !important;
}

@media (max-width:640px) {
    .footer .footer-brand {
        text-align: left !important;
        margin-left: 0px !important;
    }
    .footer-description {
        color: #a0a0a0 !important;
        max-width: 18rem !important;
        margin: 0px 0px 1.5rem !important;
        line-height: 1.5 !important;
        font-size: 0.875rem !important;
        text-align: justify !important;
    }
    .footer .social-links {
        display: flex !important;
        gap: 1rem !important;
        list-style: none !important;
        align-items: center !important;
        margin-left: -30px !important;
        justify-content: flex-start !important;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}


/* Navigation Styles */

nav {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 65px;
    position: absolute;
    z-index: 999;
    width: 100%;
    transition: background 0.3s ease, position 0.3s ease;
}

nav.fixed-nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

nav .mainlogo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

nav .mainlogo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background: #00000085;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 3px solid rgb(88, 180, 250);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #000000d7;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

nav ul ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul ul li a {
    line-height: 50px;
    padding: 0 20px;
    color: #ffffff;
}

nav ul ul li a:hover {
    background: #011021;
    color: #ffffff;
}

nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.logo {
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    margin-left: 5px;
}

.fa {
    color: white;
}


/* Navigation Media Queries */

@media (max-width: 1300px) and (min-width: 1160px) {
    nav {
        padding: 0 6px;
    }
    nav ul li a {
        font-size: 17px;
        padding: 8px 9px;
    }
}

@media (max-width: 1160px) {
    nav {
        padding: 0 40px;
        background: transparent;
    }
    nav.fixed-nav {
        background: rgb(0, 0, 0);
    }
    nav .mainlogo img {
        height: 50px;
    }
    .icon {
        display: block;
    }
    nav ul {
        display: none !important;
        position: fixed;
        top: 70px;
        right: 0;
        width: 50%;
        background: #000000d7;
        flex-direction: column;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    nav ul.show {
        display: flex !important;
    }
    nav ul li {
        width: 100%;
        margin: 0;
    }
    nav ul li a {
        padding: 15px 20px;
    }
    nav ul ul {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none !important;
        background: #000000;
        box-shadow: none;
        padding: 0;
        height: auto;
        /* Ensure the container shrinks to fit content */
        min-height: 0;
        /* Prevent any minimum height from adding space */
    }
    nav ul ul.show {
        display: block !important;
    }
    nav ul li:hover>ul {
        display: block;
    }
    nav ul ul li {
        border-bottom: none;
        margin: 0;
    }
    nav ul ul li:last-child {
        margin-bottom: 0;
        /* Ensure no extra margin on the last item */
    }
    nav ul ul li a {
        padding: 12px 40px;
        line-height: normal;
        margin: 0;
        /* Ensure no margins on the link itself */
    }
    nav ul li a:hover {
        background: #011021;
        color: #ffffff;
    }
}

@media (max-width: 660px) {
    nav {
        padding: 0 10px;
    }
    nav ul {
        width: 80%;
    }
    .logo {
        font-size: 1em;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        margin-left: 5px;
    }
}


/* Footer Styles */

a {
    text-decoration: none;
}

.footer {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 3rem 1rem 1rem !important;
}

.footer .second-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 2fr !important;
    }
}

.footer .footer-brand {
    text-align: center;
    margin-left: 20px;
}

@media (min-width: 640px) {
    .footer .footer-brand {
        text-align: left !important;
    }
}

.footer .footer-logo {
    display: inline-flex !important;
    margin-bottom: 1rem !important;
    align-items: center !important;
}

.footer .footer-logo img {
    height: 1.8rem !important;
    width: auto !important;
    margin-right: 0.3rem !important;
}

.footer .footer-brand-name {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    display: block !important;
}

.footer .footer-brand-name span {
    display: block !important;
}

.footer-description {
    color: #a0a0a0 !important;
    max-width: 18rem !important;
    margin: 0 auto 1.5rem;
    line-height: 1.5 !important;
    font-size: 0.875rem !important;
    text-align: justify !important;
}

@media (min-width: 640px) {
    .footer .footer-description {
        margin: 0 0 1.5rem !important;
    }
}

.footer .social-links {
    display: flex !important;
    gap: 1rem !important;
    list-style: none !important;
    align-items: center !important;
    margin-left: -30px !important;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer .social-links {
        justify-content: flex-start !important;
    }
}

.footer .social-links a {
    color: #fff !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background-color: transparent !important;
}

.footer .social-links a:hover {
    transform: scale(1.1) !important;
    color: #4a90e2 !important;
}

.footer .social-links svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: block !important;
}

.footer .footer-columns {
    display: grid !important;
    grid-template-columns: 2fr !important;
    gap: 1.4rem !important;
    align-items: start !important;
}

@media (min-width: 640px) {
    .footer .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .footer .footer-columns {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.footer .footer-column {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-title {
    position: relative !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-align: left !important;
    padding: 0 !important;
    display: inline-block !important;
    width: 100% !important;
}

.footer .footer-title:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 30px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4a90e2, transparent) !important;
}

.footer .footer-links {
    list-style: none !important;
    margin-top: 1rem !important;
    text-align: left !important;
    padding: 0 !important;
}

.footer .footer-links li {
    margin: 0 0 0.75rem 0 !important;
    padding: 0 !important;
}

.footer .footer-links a {
    position: relative !important;
    color: #fff !important;
    transition: color 0.3s ease !important;
    display: block !important;
    text-align: left !important;
    font-size: 0.875rem !important;
}

.footer .footer-links a:after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 0.5px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #4a90e2 !important;
    transition: width 0.3s ease !important;
}

.footer .footer-links a:hover:after {
    width: 20% !important;
}

.footer .footer-links a:hover {
    color: #4a90e2 !important;
}

.footer .contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
    margin-left: -30px !important;
    font-size: 0.875rem !important;
}

.footer .contact-item svg {
    width: 1rem !important;
    height: 1rem !important;
    stroke: #fff !important;
    flex-shrink: 0 !important;
    margin-right: 0.2rem !important;
    display: block !important;
}

.footer .contact-item:hover {
    color: #4a90e2 !important;
}

.footer .contact-item address,
.footer .contact-item span {
    color: #fff !important;
    margin: 0 !important;
    text-align: left !important;
    display: inline-block !important;
    line-height: 1.25rem !important;
}

.footer .contact-item:hover address,
.footer .contact-item:hover span {
    color: #4a90e2 !important;
}

.footer .footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 1rem !important;
    text-align: center !important;
}

@media (min-width: 640px) {
    .footer .footer-bottom {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.footer .footer-bottom p {
    color: #a0a0a0 !important;
    font-size: 0.75rem !important;
}

.footer .footer-bottom a {
    color: #4a90e2 !important;
    transition: color 0.3s ease !important;
}

.footer .footer-bottom a:hover {
    color: #357abd !important;
}




/* Chatbot Styles */


/* Styles for the chatbot container */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


/* Styles for the chatbot icon */

.chatbot-icon {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

.chatbot-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}


/* Styles for the chat window */

.chatbot-window {
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* Hidden class for toggling visibility */

.hidden {
    display: none;
}


/* Styles for the chat header */

.chatbot-header {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot-close:hover {
    color: #ffca2c;
}


/* Styles for the messages area */

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.text {
    padding: 8px 12px;
    border-radius: 15px;
    background: #e0e0e0;
    max-width: 70%;
}

.message.bot .text {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
}

.message.user .text {
    background: #d1e7ff;
}


/* Styles for the button container */

.button-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* Styles for main menu buttons (Home, Company, etc.) */

.main-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.main-nav-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.main-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for sub-menu buttons (AI & ML, Farm2Plate, etc.) */

.sub-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #17a2b8, #20c997);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.sub-nav-btn:hover {
    background: linear-gradient(45deg, #138496, #1aab7d);
    transform: scale(1.05);
}

.sub-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for default response Yes/No buttons */

.contact-yes-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #28a745;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-yes-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.contact-yes-btn:active {
    transform: scale(0.95);
}

.contact-no-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #dc3545;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-no-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.contact-no-btn:active {
    transform: scale(0.95);
}


/* Styles for "No" response buttons */

.doubt-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #ffca2c;
    color: #333;
    transition: background 0.3s, transform 0.1s;
}

.doubt-btn:hover {
    background: #e0b024;
    transform: scale(1.05);
}

.doubt-btn:active {
    transform: scale(0.95);
}

.menu-return-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #6c757d;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.menu-return-btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.menu-return-btn:active {
    transform: scale(0.95);
}


/* Styles for the input container */

.chatbot-input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}


/* Styles for the input field */

.chatbot-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
    margin-right: 10px;
}

.chatbot-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


/* Styles for the send button */

.chatbot-send {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-send:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}


/* Styles for the mic button (added via JS) */

.chatbot-mic {
    background: linear-gradient(45deg, #ffca2c, #ffdb6d);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    margin-left: 10px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-mic:hover {
    background: linear-gradient(45deg, #e0b024, #e0c056);
    transform: scale(1.05);
}

.chatbot-mic:active {
    transform: scale(0.95);
}


/* Typing indicator styles (used in components.js) */

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}

