/* font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #333;
    margin: 0;
    padding: 0;
}


/* Header css */

.section-1 {
    background-color: aliceblue;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.container {
    max-width: 100px;
}

.image-1 h1,
h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.image-1 img {
    width: 100px;
    height: auto;
}

.image-1 h1 {
    font-size: 20px;
    color: #021748;
    margin-bottom: 10px;
}

.image-1 h5 {
    font-size: 10px;
    color: #021748;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.custom-padding {
    padding-left: 10%;
    padding-right: 10%;
}

.head-page-one a{
    text-decoration: none;
    color: #000;
}


/* Initial state: caret pointing to the right */

.arrow-icon {
    transition: transform 0.3s ease;
    /* Smooth transition */
}


/* Rotate the caret when hovering over the parent <li> */

.nav-item:hover .arrow-icon {
    transform: rotate(90deg);
    /* Rotate 90 degrees to point down */
}


/* If you want to reset it for other dropdowns (if any), ensure smooth transition */

.nav-item .arrow-icon {
    transition: transform 0.3s ease;
}

.topbar-shadow {
    /* box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15)
}


/* ---------------------------------Nav-Section-1-End-------------------------------------*/


/* --------------------------------------------------------------------------------------*/


/* Animation to main menu */

@keyframes fade-in-slide-down-loop {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        /* Start slightly above */
    }
    50% {
        opacity: 1;
        transform: translateY(0);
        /* Fully visible at the original position */
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
        /* Disappear again */
    }
}

@keyframes show-hide-menu {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        /* Slight upward position */
    }
    10% {
        opacity: 1;
        transform: translateY(0);
        /* Fully visible at original position */
    }
    40% {
        opacity: 1;
        transform: translateY(0);
        /* Remain visible */
    }
    50% {
        opacity: 0;
        transform: translateY(10px);
        /* Slight downward position */
    }
    100% {
        opacity: 0;
        /* Remain hidden */
    }
}

@keyframes fade-in-slide-down {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        /* Start slightly above */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        /* End at the original position */
    }
}

@keyframes icon-bounce-loop {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes underline-reveal-loop {
    0%,
    50% {
        width: 0;
    }
    50%,
    100% {
        width: 100%;
    }
}

.nav-list li a {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: #2299aa;
    padding-bottom: 5px;
    display: inline-block;
    opacity: 0;
    /* Initially hidden */
    animation: show-hide-menu 5s linear infinite;
}

.nav-list li img {
    animation: icon-bounce-loop 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}


/* Assign specific delays to each menu item for sequential visibility */

.nav-list li:nth-child(1) a {
    animation-delay: 1.2s;
    /* First item starts immediately */
}

.nav-list li:nth-child(2) a {
    animation-delay: 2s;
    /* Second item starts after 3 seconds */
}

.nav-list li:nth-child(3) a {
    animation-delay: 2.7s;
    /* Third item starts after 6 seconds */
}

.nav-list li a:hover {
    color: #000;
    /* Change text color on hover */
    transition: color 0.3s ease;
}


.nav-list li {
    animation: showItems 5s infinite; /* Total duration: 2s animation + 3s delay */
}

/* Animation for all list items to appear together */
@keyframes showItems {
    0% {
        opacity: 0; /* Start invisible */
        transform: translateY(10px); /* Slight upward movement */
    }
    20%, 40% { /* Animation active from 0% to 40% (2s) */
        opacity: 1; /* Fully visible */
        transform: translateY(0);
    }
    40%, 100% { /* Stay visible for 3s (40% to 100%) */
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes showItems {
    0% { opacity: 0; transform: translateX(-20px); }
    20%, 40% { opacity: 1; transform: translateX(0); }
    40%, 100% { opacity: 1; transform: translateX(0); }
}

/* Hover effect for links */
.nav-list li a:hover {
    color: #000;
    transition: color 0.3s ease;
}

/* Hover effect with underline reveal */

.nav-list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    /* Underline thickness */
    width: 0;
    background-color: #2299aa;
    animation: underline-reveal-loop 6s ease-in-out infinite;
    /* Looping underline */
    transform-origin: left;
    /* Ensures smooth animation */
}

.nav-list li a:hover {
    color: #2299aa;
    /* Change text color on hover */
}

.dropdown-menu li a {
    color: rgb(155, 155, 155);
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background-color: #2299aa;
    color: white;
}

@media (min-width: 1024px) {
    .dropdown-menu li a {
        color: rgb(155, 155, 155);
        font-size: 13px;
    }
}


/* -----------------------------Animation-End---------------------------------------------*/


/* --------------------------------------------------------------------------------------*/


/* -----------------------------Nav-Section-2-Start---------------------------------------*/


/* --------------------------------------------------------------------------------------*/


/* Second nav bar */

.menu li {
    list-style: none;
    font-size: 10px;
    width: 100%;
}

.menu a {
    text-decoration: none;
    color: #021748;
}

.custom-collapse {
    width: 95%;
}

/* pagenation indicator */

.section-2 .swiper-pagination-bullet {
    background-color: #fff; /* White dots */
    opacity: 0.7;
}

.section-2 .swiper-pagination-bullet-active {
    background-color: #ffffff; /* Active dot color */
    opacity: 1;
}


/* search */

.input-group input {
    background-color: #2299aa;
}

.input-group input::placeholder {
    color: white;
}

.input-group .form-control {
    margin-right: 5px;
}
 
.input-group span {
    background-color: #2299aa;
}

.input-group span i {
    color: white;
}

.nav-custom {
    margin-top: 10px;
}


/* animation hover nav menu */

.nav-link {
    position: relative;
    text-decoration: none;
    color: #2299aa;
    padding-bottom: 5px;
}

.nav-item .nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin-left: 10px;
}

.nav-item .nav-link:hover {
    color: #2299aa;
}


/* Mega Menu Styling */

.text-1 {
    margin-left: 15px;
}

.dropdown-menu {
    width: 50%;
}


/* Remove dropdown caret */

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-item .dropdown-menu {
    display: none;
    /* Default state is hidden */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}


/* Sidebar Styles */

.offcanvas {
    background: rgb(247, 247, 247);
    color: #ffffff;
    /* Dark text color */
    width: 50%;
    /* Set the width to half the screen */
    max-width: 300px;
    /* Optional: Limit the maximum width */
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for opening/closing */
}


/* Offcanvas open state */

.offcanvas.show {
    transform: translateX(0);
    /* Fully visible */
}


/* Offcanvas hidden state (default) */

.offcanvas.offcanvas-start {
    transform: translateX(-50%);
    /* Reveal only half of the menu */
}


/* Navbar item styles */

.nav-item .dropdown-menu .text {
    margin-left: 15px;
    font-size: 13px;
}


/* Link styles */

.nav-link {
    color: #212529;
    /* Default link color */
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    /* background-color: #e9ecef;  */
    color: #007bff;
}


/* Collapse container styles */

.collapse {
    padding-left: 15px;
    /* Indentation for collapsed content */
    border-left: 2px solid #ddd;
    /* Vertical line for hierarchy */
    margin-left: 10px;
}


/* Dropdown item styles inside collapse */

.collapse .nav-link {
    font-size: 0.9rem;
    /* Slightly smaller font */
    padding: 5px 10px;
    /* Reduced padding for nested items */
    color: #6c757d;
    /* Muted text color for dropdown items */
}

.collapse .nav-link:hover {
    color: #2299aa;
    /* Slightly darker hover effect for dropdown links */
}


/* Headings inside collapsible dropdown */

.collapse h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #495057;
    /* Dark gray heading */
    margin-top: 10px;
}


/* Divider styles between sections in collapsible dropdown */

.collapse .list-unstyled {
    margin-bottom: 10px;
}

.collapse .list-unstyled li {
    margin-bottom: 5px;
}


/* Search bar styles */

form .input-group {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
}

form .form-control {
    border: none;
    box-shadow: none;
}

form .input-group-text {
    background-color: #e9ecef;
    border: none;
}

form .input-group-text i {
    color: #007bff;
    /* Search icon color */
}


/* toggle style */

.navbar-toggler img {
    width: 20px;
    height: 20px;
}

.custom-padding .navbar-toggler {
    border: none;
}


/* Arrow icon rotation animation */

.arrow-icon {
    transition: transform 0.3s ease;
    /* Smooth transition */
    font-size: 0.9rem;
    /* Adjust arrow size */
    color: #000;
    /* Set arrow color */
}


/* Rotate arrow when collapsible menu is shown */

.collapse.show+.nav-link .arrow-icon {
    transform: rotate(180deg);
    /* Rotate the arrow when expanded */
}


/* Rotate arrow when any of the submenu collapses (i.e. product, services, knowledge, etc.) */

.collapse.show+.nav-link .arrow-icon {
    transform: rotate(180deg);
}


/* Reset arrow when collapsible menu is closed */

.collapse:not(.show)+.nav-link .arrow-icon {
    transform: rotate(0deg);
    /* Reset rotation when collapsed */
}


/* -----------------------------Media queary----------------------------------------------*/


/* --------------------------------------------------------------------------------------*/

/* Responsive Adjustments */

@media only screen and (max-width: 768px) {
    .nav-container {
        margin-top: 5px;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .nav-list {
        justify-content: center;
    }
    .nav-a {
        font-size: 10px;
    }
    .nav-list li {
        margin-right: 10px;
    }
    .nav-container a {
        font-size: 8px;
    }
    .image-1 .text-0 {
        font-size: 10px;
    }
    .image-1 .text-1 {
        font-size: 11px;
    }
    .image-1 {
        margin-bottom: 0px;
    }
    .image-1 h1 {
        font-size: 15px;
        color: #021748;
        margin-bottom: 10px;
    }
}

@media (max-width: 390px) {
    .nav-container {
        margin-top: 5px;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .nav-list {
        justify-content: center;
    }
    .nav-a {
        font-size: 10px;
    }
    .nav-list li {
        margin-right: 10px;
        flex-wrap: nowrap;
    }
    .nav-container a {
        font-size: 8px;
    }
    .image-1 .text-0 {
        font-size: 10px;
    }
    .image-1 .text-1 {
        font-size: 11px;
    }
    .image-1 {
        margin-bottom: 0px;
    }
    .image-1 h1 {
        font-size: 14px;
        color: #021748;
        margin-bottom: 10px;
    }
}

@media (max-width: 320px) {
    .nav-container {
        margin-top: 5px;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .nav-list {
        justify-content: center;
    }
    .nav-a {
        font-size: 10px;
    }
    .nav-list li {
        margin-right: 10px;
        flex-wrap: nowrap;
    }
    .nav-container a {
        font-size: 8px;
    }
    .image-1 .text-0 {
        font-size: 7px;
    }
    .image-1 .text-1 {
        font-size: 11px;
    }
    .image-1 {
        margin-bottom: 0px;
    }
    .image-1 h1 {
        font-size: 10px;
        color: #021748;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .nav-container {
        margin-top: 5px;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .nav-list {
        justify-content: center;
    }
    .nav-a {
        font-size: 10px;
    }
    .navbar a {
        font-size: 11px;
    }
    .nav-list li {
        margin-right: 10px;
        flex-wrap: nowrap;
    }
    .nav-container a {
        font-size: 8px;
    }
    .dropdown-menu .text {
        font-size: 10px;
    }
    .dropdown-menu {
        width: 75%;
    }
    .dropdown-menu h6 {
        margin-left: 0px;
    }
    .dropdown-menu li a {
        color: rgb(155, 155, 155);
        font-size: 9px;
        text-align: justify;
        padding-left: 10px;
    }
    .image-1 .text-0 {
        font-size: 10px;
    }
    .image-1 .text-1 {
        font-size: 11px;
    }
    .image-1 {
        margin-bottom: 0px;
    }
    .image-1 h1 {
        font-size: 10px;
        color: #021748;
        margin-bottom: 10px;
    }
    .custom-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* -----------------------------Nav-Section-2-End-----------------------------------------*/


/* --------------------------------------------------------------------------------------*/


/* -----------------------------Menubar---------------------------------------------------*/


/* --------------------------------------------------------------------------------------*/

.menu {
    position: fixed;
    top: 358px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: #0db0c9;
    border-radius: 45px;
    padding: 20px;
    width: 70px;
    z-index: 1000;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.chatbot {
    margin-top: 160px;
    position: fixed;
    top: 316px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: #0db0c9;
    border-radius: 45px;
    padding: 20px;
    width: 70px;
    z-index: 1000;
}

/* .intro-message {
    position: absolute;
    bottom: 80px; 
    right: 20px;
    background-color: #f0f0f0; 
    color: #333; 
    padding: 10px 15px;
    border-radius: 15px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000; 
} */

.intro-message {
    position: absolute;
    bottom: 2px;
    right: -237px;
    margin-left: 79px;
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000;
}

/* Intro Message Styles */
#introMessage {
    position: absolute;
    bottom: 2px;
    right: -237px;
    margin-left: 79px;
    /* background-color: #f0f0f0; */
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 15px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Positioned off-screen */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Chat Content */
.chat-content {
    background-color: #0a8d99; /* Professional blue tone */
    color: #fff; /* White text for contrast */
    padding: 15px 20px;
    border-radius: 15px 15px 15px 5px; /* Rounded corners with a tail */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean, modern font */
    font-size: 12px;
    line-height: 1.5;
    position: relative;
}

/* Tail for Chat Bubble */
.chat-content:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -26px; /* Position the tail */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px;
    border-color: transparent #0a8d99 transparent transparent; /* Blue tail */
}

/* Slide-in Animation */
#introMessage.show {
    opacity: 1;
    transform: translateX(0); /* Slide into view */
}

/* Smooth fade-out and slide-out */
#introMessage.hide {
    opacity: 0;
    transform: translateX(100%); /* Slide out of view */
    pointer-events: none; /* Disable interaction during hiding */
}


.icon-one {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-one img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.main-menu {
    position: absolute;
    padding-top: 350px;
    z-index: 10;
    padding-left: 20px;
}
.menu-toggle {
    display: none; /* Hide the button in normal view (desktop) */
}




/* -----------------------------Menubar-end-----------------------------------------------*/
/* --------------------------------------------------------------------------------------*/




/* -----------------------------Menubar-media-queary--------------------------------------*/
/* --------------------------------------------------------------------------------------*/


    @media screen and (min-width:768px) and (max-width: 768px) {
        /* Hide the menu on small screens by default */

        .menu.show {
            display: none;
        }
        /* Menu toggle button visible only on mobile */
        .menu-toggle {
            display: none;
        }

        .menu {
            position: fixed;
            top: 274px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            background-color: #0db0c9;
            border-radius: 45px;
            padding: 20px;
            width: 70px;
            z-index: 1000;
        }
        /* Set the size of the gear icon */
        .menu-toggle .gear {
            color: white;
            font-size: 24px; /* Control the size of the gear icon */
        }

        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 50px;
            height: 50px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            left: 20px;
            width: 80px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 300px;
            width: 80px;
            height: 80px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
    }

    @media screen and (max-width:360px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 539px;
            right: 282px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .menu.show{
            display: none;
        }

        .menu{
            display: none;
        }

        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 150px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }
    }


    @media screen and(min-width:480px) and (max-width:480px) {

            .menu-toggle {
                right: 402px;
            }

    }

    @media screen and (min-width:427px) and (max-width: 480px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            right: 402px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .menu.show{
            display: none;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 178px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }
    }

    

    @media screen and (min-width:428px) and (max-width: 428px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }
    }

    @media screen and (min-width:375px) and (max-width: 393px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            right: 311px;
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }
    }

    @media screen and (min-width:412px) and (max-width: 412px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            right: 332px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }
        .robot img {
            display: none    ;
         }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
    }

    @media screen and (min-width:412px) and (max-width: 414px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            right: 335px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }
        .robot img {
            display: none    ;
         }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 180px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .menu{
            display: none;
        }
    }

    @media screen and (min-width:415px) and (max-width: 440px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 591px;
            right: 347px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }
        .robot img {
            display: none    ;
         }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 180px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .menu{
            display: none;
        }
    }

    @media screen and (min-width:320px) and (max-width: 320px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 452px;
            right: 242px; /* Add some space from the right side */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 117px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 0px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 164px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 54px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }

         .menu{
            display: none;
         }
    }

    

    @media only screen and (max-width:375px){
        .menu-toggle {
            display: inline-block;
            font-size: 30px;
            background-color: #0db0c9;
            border: none;
            cursor: pointer;
            position: fixed;
            background-color: #0db0c9;
            border-radius: 50%;
            top: 576px;
            /* right: 298px; */
            width: 60px; /* Set a fixed size for the button */
            height: 60px; /* Set a fixed size for the button */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 296px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot {
            display: none;
            opacity: 0;
            transform: translateY(-20px); /* Start slightly offscreen */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .chatbot.show {
            display: block;
            top: 190px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .icon-one img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .menu-toggle img{
            width: 35px;
            height: 35px;
        }
        .icon-one {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 30px;
            position: relative;
            right: 14px;
            bottom: 5px;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Make sure to show the menu when toggled */
        .menu.show {
            display: flex;
            flex-direction: column;
            gap: 10px;
            top: 270px;
            width: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); 
        }

        .chatbot.show {
            display: block;
            top: 170px;
            width: 60px;
            height: 60px;
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Slide back to position */
        }
        .robot img {
            display: none    ;
         }
    }

    


/* -----------------------------Menubar-media-queary-end-----------------------------------------------*/
/* --------------------------------------------------------------------------------------*/




/* -----------------------------Section-2-Start-------------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* .section-2{
    width: auto;
    height: 1000px;
    background: rgb(34,153,170);
    background: linear-gradient(90deg, rgba(34,153,170,1) 0%, rgba(1,12,36,1) 100%);
}



.section-2 .section-2-firstpage{
    margin-left: 10%;
    padding-top: 6%;
}

.section-2 .section-2-firstpage h1{
    font-size: 56px;
    color: white;
}

 .section-2 .section-2-firstpage p{
    color: white;
} 

.phone-number-email{
    padding-top: 27px;
    width: 20px;
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap;
}

.phone-number{
    color: white;
    font-size: 25px;
    margin-right: 50px;
    background-color: #010c24;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.email{
    color: white;
    font-size: 25px;
    margin-right: 50px;
    background-color: #010c24;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.icone-height{
   margin-top: 5px;
   margin-left: 5px;
}

.youtube{
    width: 80%;
    height: 300px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.robot img{
    position: absolute;
    width: auto;
    height: 800px;
    right: 300px;
    top: 366px;
}  */

.section-2 {
    width: auto;
    height: 779px;
    background: rgb(34, 153, 170);
    background: linear-gradient(90deg, rgba(34, 153, 170, 0.9) 0%, rgba(1, 12, 36, 1) 100%);
}

.section-2 .section-2-firstpage {
    padding-top: 4%;
    height: 100%;
}

.section-2 .section-2-firstpage h1 {
    font-size: 54px;
    color: white;
}

.section-2 .section-2-firstpage .main-paragraph {
    color: white;
    width: 600px;
    font-size: 15px;
}

.phone-number-email {
    padding-top: 27px;
    width: 20px;
    align-items: center;
    gap: 20px;
    /* flex-wrap: wrap; */
}

.phone-number {
    color: white;
    font-size: 19px;
    margin-right: 50px;
    background-color: #010c24;
    padding-left: 29px;
    padding-right: 29px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.phone-number span {
    font-style: normal;
    font-family: 'Poppins';
    letter-spacing: 2px;
}

.email span {
    font-size: 24px;
    font-family: 'Poppins';
}

.email {
    color: white;
    margin-right: 50px;
    font-size: 25px;
    background-color: #010c24;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 8px;
    padding-bottom: 15px;
}

.email-i{
    padding-top: 11px;
    padding-bottom: 11px;
}

.email a {
    text-decoration: none;
    color: inherit;
}
.phone-number-email{
    display: flex;
    justify-content: start;
}

.phone{
    display: flex;
    justify-content: center;
}


.robot img {
    width: auto;
    height: 700px;
    display: block;
    margin-top: 79px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.youtube {
    width: 590px;
    height: 254px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.youtube-2 {
    width: 585px;
    height: 254px;
    background-color: white;
    padding-left: 0px;
    position: relative;
    overflow: hidden;
}

.phone-number-email .swiper{
    margin-left: 0px;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}




/* Parent div for the particle canvas */

.particle-home {
    position: absolute;
    width: 247px;
    height: 500px;
    top: 290px;
    overflow: hidden;
    right: 0px;
}


/* Particle canvas styling */

.particle-Canvas {
    width: auto;
    /* Make sure the canvas stretches to the full width of the parent */
    height: 100%;
    /* Make the canvas take up the full height of the parent div */
    position: absolute;
    /* Position it absolutely within the container */
    top: 0;
    left: 0;
    scale: 1.9;
    z-index: 1;
    /* Make sure the particles appear above any other content if needed */
    /* opacity: 50%; */
}


/* -----------------------------Section-2-End---------------------------------------------*/

/* --------------------------------------------------------------------------------------*/



/* -----------------------------Section-2-Animation---------------------------------------*/

/* --------------------------------------------------------------------------------------*/

.right-to-left {
    opacity: 0;
    transform: translateX(50px);
    /* Start off-screen to the right */
    animation: fadeInRight 2s ease-out forwards;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
        /* Initial position */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        /* End position */
    }
}

.fadeIn-Left {
    animation-name: fadeInLeft;
    animation-duration: 2s;
    /* Increase duration */
    animation-timing-function: ease-out;
    /* Smooth out the animation */
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(1);
    }
}

.phone-number {
    opacity: 0;
    /* transform: translateX(-50px); */
    /* Start from the left */
    animation: fadeInLeft 1.5s ease-out forwards 0s;
    /* No delay for phone number */
}

.email {
    opacity: 0;
    /* transform: translateX(-50px); */
    /* Start from the left */
    animation: fadeInLeft 1.5s ease-out forwards 0.5s;
    /* Add delay for email */
}

.youtube {
    opacity: 0;
    /* transform: translateX(-50px); */
    /* Start from the left */
    animation: fadeInLeft 1.5s ease-out forwards 1s;
    /* Add delay for YouTube */
}


/* Keyframes for fade-in from left */

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        /* Offscreen to the left */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        /* Original position */
    }
}


/* -----------------------------Section-2-Animation-End------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* -----------------------------Media queary section-2------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* Responsive Adjustments */

@media only screen and (max-width: 768px){
    .robot img {
        display: none;
    }
}

@media only screen and (min-width:526px) and (max-width: 768px) {
    .section-2 {
        width: auto;
        height: 542px;
    }
    .robot img {
        width: auto;
        height: 400px;
        z-index: 1;
        position: absolute;
        top: 232px;
        right: 59px;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 30px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 27px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 13px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 16px;
        padding-bottom: 17px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 229px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 214px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 18px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }

    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}

@media only screen and (max-width:820px){
    .section-2-firstpage .youtube {
        height: 244px;
    }
}

@media screen and (min-width:320px) and (max-width: 320px){
    .section-2 {
        width: auto;
        height: 388px;
    }
    .robot img {
        display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 13px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 9px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 11px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 87%;
        text-align: justify;
        font-size: 9px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}
@media screen and (max-width: 320px) {
    .section-2 {
        width: auto;
        height: 423px;
    }
    .robot img {
     display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 21px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 9px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
    .menu{
        display: none;
    }
}

@media screen and (min-width:320px) and (max-width: 359px){
    .section-2 {
        width: auto;
        height: 423px;
    }
    .robot img {
     display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 21px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 9px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
    .menu{
        display: none;
    }
}

@media screen and (min-width:360px) and (max-width: 393px){
    .section-2 {
        width: auto;
        height: 423px;
    }
    .robot img {
     display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 21px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 9px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
    .menu{
        display: none;
    }
}

@media screen and (min-width: 393px) and (max-width: 412px) {
    .section-2 {
        width: auto;
        height: 427px;
    }
    .robot img {
        display: none;
    }

    .menu{
        display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 23px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 12px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}



@media screen and (min-width:412px) and (max-width: 440px){
    .section-2 {
        width: auto;
        height: 427px;
    }
    .robot img {
        display: none;
    }

    .menu{
        display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 23px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 100%;
        text-align: justify;
        font-size: 12px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}

@media screen and (min-width:450px) and (max-width: 526px){
    .section-2 {
        width: auto;
        height: 427px;
    }
    .robot img {
        display: none;
    }

    .menu{
        display: none;
    }

    .section-2-firstpage .section-2-text h1 {
        font-size: 25px;
    }

    .phone-number,
    .email {
        width: 100%;
        /* Make each block full width */
        display: flex;
        justify-content: center;
    }
    .section-2 .section-2-firstpage {
        margin-left: 16px;
        padding-top: 0%;
        height: 100%;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .section-2 .section-2-firstpage .main-heading {
        font-size: 23px;
        margin-top: 0px;
        margin-bottom: 6px;
    }
    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-2-firstpage .youtube {
        width: 100%;
        height: 205px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 180px;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .section-2 .section-2-firstpage .main-paragraph {
        color: white;
        width: 87%;
        text-align: justify;
        font-size: 12px;
    }
    .custom-padding {
        padding-left: 0px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 2px;
    }
    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}



@media screen and (min-width: 768px) and (max-width: 834px) {
   
 .section-2 {
        width: auto;
        height: 527px;
    }

   .robot img {
    display: none;
  }

    .contact-section {
        text-align: center;
        margin-top: 30px;
    }

    .contact-section h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .phone-number {
        color: white;
        font-size: 14px;
        margin-right: 50px;
        background-color: #010c24;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 11px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 15px;
        background-color: #010c24;
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .section-2-firstpage .particle-home-second {
        display: none;
    }
    .particle-home .particle-Canvas {
        display: none;
    }
    .particle-home {
        display: none;
    }
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
    .menu-toggle{
        display: none;
    }
  .Experts{
    margin-bottom: 10px;
}
 
    
}

/*newly added*/
@media screen and (min-width: 834px) and (max-width: 884px) {
    .section-2 {
        width: auto;
        height: 590px;
    }

    .robot img {
        width: auto;
        height: 385px;
        z-index: 1;
        position: absolute;
        top: 289px;
        right: 40px;
    }

    .section-2 .section-2-firstpage h1 {
        font-size: 45px;
        margin-top: 5px;
        margin-bottom: 10px;
        width: 600px;
    }

    .section-2 .section-2-firstpage .main-heading {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .section-2 .section-2-firstpage .main-paragraph {
        font-size: 16px;
        width: 100%;
        text-align: justify;
        color: white;
    }

    .section-2-firstpage .youtube {
        width: 100%;
        height: 230px;
    }

    .section-2-firstpage .youtube-2 {
        width: 100%;
        height: 230px;
    }

    .email {
        font-size: 20px;
        padding: 10px 20px;
        width: 220px;
        background-color: #010c24;
    }

    .phone-number {
        font-size: 16px;
        padding: 15px 20px;
    }

    .phone-number span,
    .email span {
        font-size: 14px;
        font-family: 'Poppins';
    }

    .particle-home,
    .particle-home-second {
        display: none;
    }

    .fadeInLeft {
        animation: none;
    }

    .menu-toggle {
        display: none;
    }
    .Experts{
    margin-bottom: 10px;
}
 
}



@media screen and (min-width: 884px) and (max-width: 991px) {
    .section-2 {
        width: auto;
        height: 500px;
    }
    .robot img {
        width: auto;
        height: 380px ;
        z-index: 1;
        position: absolute;
        top: 210px;
        right: 90px;
    }
   
 .section-2-firstpage .youtube {
    width: 100%;              /* Reduce width slightly to create inner margin */
    height: 245px;
    background-color: white;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto; /* Top margin and horizontal centering */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .phone, .email {
        background-color: #010c24;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        
      
        text-align: center;
    }
    .phone span, .email span {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    }
    .section-2 .section-2-firstpage {
        padding-top: 1%;
        height: 100%;
    }
    .section-2-firstpage .particle-home-second,
    .particle-home .particle-Canvas,
    .particle-home,
    .fadeInLeft {
        display: none;
        animation: none;
    }
    .Experts{
    margin-bottom: 10px;
}
 
}

@media screen and (min-width: 991px) and (max-width: 1024px) {
    .section-2 {
        width: auto;
        height: 500px;
    }
    .robot img {
        width: auto;
        height: 380px ;
        z-index: 1;
        position: absolute;
        top: 202px;
        right: 90px;
    }
   
 .section-2-firstpage .youtube {
    width: 100%;              /* Reduce width slightly to create inner margin */
    height: 245px;
    background-color: white;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto; /* Top margin and horizontal centering */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .phone, .email {
        background-color: #010c24;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        
      
        text-align: center;
    }
    .phone span, .email span {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    }
    .section-2 .section-2-firstpage {
        padding-top: 1%;
        height: 100%;
    }
    .section-2-firstpage .particle-home-second,
    .particle-home .particle-Canvas,
    .particle-home,
    .fadeInLeft {
        display: none;
        animation: none;
    }
    .Experts{
    margin-bottom: 10px;
}
 
}
@media screen and (min-width: 1024px) and (max-width: 1118px) {
    .section-2 {
        width: auto;
        height: 500px;
    }
    .robot img {
        width: auto;
        height: 380px ;
        z-index: 1;
        position: absolute;
        top: 219px;
        right: 90px;
    }
   
 .section-2-firstpage .youtube {
    width: 100%;              /* Reduce width slightly to create inner margin */
    height: 245px;
    background-color: white;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto; /* Top margin and horizontal centering */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .phone, .email {
        background-color: #010c24;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        
      
        text-align: center;
    }
    .phone span, .email span {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    }
    .section-2 .section-2-firstpage {
        padding-top: 1%;
        height: 100%;
    }
    .section-2-firstpage .particle-home-second,
    .particle-home .particle-Canvas,
    .particle-home,
    .fadeInLeft {
        display: none;
        animation: none;
    }
    .Experts{
    margin-bottom: 10px;
}
 
}

@media screen and (min-width: 1118px) and (max-width: 1280px) {
    .section-2 {
        width: auto;
        height: 500px;
    }
    .robot img {
        width: auto;
        height: 380px ;
        z-index: 1;
        position: absolute;
        top: 205px;
        right: 90px;
    }
   
 .section-2-firstpage .youtube {
    width: 100%;              /* Reduce width slightly to create inner margin */
    height: 245px;
    background-color: white;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto; /* Top margin and horizontal centering */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

    .section-2-youtube .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .phone, .email {
        background-color: #010c24;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        
      
        text-align: center;
    }
    .phone span, .email span {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    }
    .section-2 .section-2-firstpage {
        padding-top: 1%;
        height: 100%;
    }
    .section-2-firstpage .particle-home-second,
    .particle-home .particle-Canvas,
    .particle-home,
    .fadeInLeft {
        display: none;
        animation: none;
    }
    .Experts{
    margin-bottom: 10px;
}
 
}
@media screen and (min-width:1280px) and (max-width: 1920px) {

    .section-2 {
        width: auto;
        height: 530px;
    }
    .robot img {
        width: auto;
        height: 478px;
        z-index: 1;
        position: absolute;
        top: 139px;
        right: 187px;
    }

    .side-pattern img{
        display: none;
    }

    .section-4 .paragraph-card{
        margin-left: -45px;
    }
    .section-2 .section-2-firstpage h1 {
        font-size: 39px;
        margin-top: 1px;
        margin-bottom: 0px;

    }
    /* .phone-number span {
        font-style: normal;
        font-family: 'Poppins';
        letter-spacing: 2px;
        font-size: 15px;
    }
    .email span {
        font-size: 14px;
        font-family: 'Poppins';
    }
    .email {
        color: white;
        margin-right: 0px;
        font-size: 20px;
        background-color: #010c24;
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    } */
      .phone, .email {
        background-color: #010c24;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        
      
        text-align: center;
    }
    .phone span, .email span {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .section-2-youtube .phone-number-email {
        padding-top: 0px;
    }
    .section-2 .section-2-firstpage {
        padding-top: 1%;
        height: 100%;
    }
    /* Parent div for the particle canvas */

.particle-home {
    position: absolute;
    width: 125px;
    height: 530px;
    top: 167px;
    overflow: hidden;
    right: 0px;
}


/* Particle canvas styling */

.particle-home .particle-Canvas {
    width: auto;
    /* Make sure the canvas stretches to the full width of the parent */
    height: 70%;
    /* Make the canvas take up the full height of the parent div */
    position: absolute;
    /* Position it absolutely within the container */
    top: 0;
    left: 0;
    scale: 1.9;
    z-index: 1;
    /* Make sure the particles appear above any other content if needed */
    /* opacity: 50%; */
}
.Experts{
    margin-bottom: 10px;
}
 
    /* Animation-none */
    .fadeInLeft {
        animation: none;
        /* Disable animation on mobile devices */
    }
}


/* -----------------------------Nav-Section-2-End---------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* -----------------------------Nav-Section-4---------------------------------------------*/
/* --------------------------------------------------------------------------------------*/

/* Main Section Styling */
.section-4 {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0; /* Remove left-right padding, we control via .container */
    position: relative;
    overflow: hidden;
}

/* Container to limit width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Side Image Pattern (absolute positioned inside section) */
.side-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 0;
}

.side-pattern img {
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Paragraph card */
.paragraph-card {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.paragraph-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.paragraph-card h1 {
    font-size: 26px;
    margin-bottom: 18px;
}

.paragraph-card p {
    font-size: 15px;
    text-align: justify;
}

/* Card Container */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Individual Cards */
.card-one, .card-two {
    flex: 1 1 280px;
    max-width: 350px;
}

/* Arrow spacing fix */
.card-one img,
.card-two img {
    margin: 10px 0;
}

/* Card Body */
.card-body-one {
    background: linear-gradient(90deg, rgba(34,153,170,1) 0%, rgba(1,12,36,1) 100%);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body-one h1 {
    text-align: center;
    color: white;
    font-size: 22px;
    margin-bottom: 14px;
}

.card-body-one h5 {
    text-align: center;
    color: #0db0c9;
    font-size: 15px;
    background-color: white;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.card-body-one p {
    color: white;
    text-align: justify;
    font-size: 13.5px;
    margin-bottom: 18px;
}

.card-body-one a {
    text-align: center;
    display: inline-block;
    background-color: white;
    padding: 8px 18px;
    text-decoration: none;
    color: #0db0c9;
    border-radius: 18px;
    margin: 0 auto;
}

/* -----------------------------Section-4-Animation-----------------------------------------*/
/* -----------------------------------------------------------------------------------------*/


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animated-arrow {
    animation: bounce 2s infinite;
}



/* -----------------------------Section-4-Animation-end--------------------------------------*/
/* -----------------------------------------------------------------------------------------*/

/* -----------------------------Section-4-Media-queary-----------------------------------*/
/* -----------------------------------------------------------------------------------------*/

/* Hide side image on mobile */
@media (max-width: 768px) {
    .side-pattern {
        display: none;
    }
}

@media (max-width: 1024px) {
  .paragraph-card {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card-container {
    justify-content: center;
    gap: 20px;
  }

  .card-one, .card-two {
    max-width: 360px;
    width: 100%;
  }
}

/* Hide side image on screens smaller than 1024px */
@media (max-width: 1024px) {
  .side-pattern {
    display: none !important;
  }
}

/* Hide arrow images in mobile */
@media only screen and (max-width: 768px) {
    .card-one img,
    .card-two img {
        display: none !important;
    }
}

/* Mobile adjustments */
@media only screen and (max-width: 768px) {
    .section-4 {
        padding: 30px 10px;
    }

    .paragraph-card {
        padding: 10px;
        width: 100%;
    }

    .paragraph-card h1 {
        font-size: 20px;
    }

    .paragraph-card p {
        font-size: 13.5px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card-one, .card-two {
        flex: none;
        width: 100%;
        max-width: 340px;
    }

    .card-body-one {
        padding: 14px;
    }

    .card-body-one h1 {
        font-size: 18px;
    }

    .card-body-one h5 {
        font-size: 13px;
        padding: 7px;
    }

    .card-body-one p {
        font-size: 12.5px;
    }

    .card-body-one a {
        font-size: 12px;
        padding: 7px 14px;
    }
}


/* -----------------------------Section-4-Media-queary-end-----------------------------------*/
/* -----------------------------------------------------------------------------------------*/



/* -----------------------------Nav-Section-5---------------------------------------------*/
/* --------------------------------------------------------------------------------------*/

/* -----------------------------Nav-Section-5---------------------------------------------*/
.section-five {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(90deg, rgba(1,12,36,1) 0%, rgba(34,153,170,1) 100%);
    padding: 20px 0;
    overflow: hidden;
}

.section-five .robot-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-five .robot-main img {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    top: -100px;
    margin-bottom: -230px;
}

.mission {
    padding: 40px 20px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    text-align: center;
    height: 100%; 
}

.mission a {
    color: #0db0c9;
    text-decoration: none;
}

.mission img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.mission h1 {
    color: white;
    font-size: 22px;
    margin: 10px 0;
}

.mission p {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    max-width: 500px;
}

.divider-one {
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-one .vr-1 {
    width: 3px;
    background-color: white;
    height: 200px;
}

/* -----------------------------Responsive Queries-----------------------------------------*/

@media (max-width: 1199px) {
    .mission p {
        max-width: 400px;
        font-size: 13px;
    }

    .section-five .robot-main img {
        max-width: 320px;
        top: -80px;
    }
}

@media (max-width: 991px) {
    .section-five .robot-main img {
        max-width: 280px;
        top: -60px;
    }

    .divider-one .vr-1 {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .section-five .robot-main img {
        display: none;
    }

    .divider-one {
        display: none;
    }

    .mission h1 {
        font-size: 18px;
    }

    .mission p {
        font-size: 12px;
        max-width: 90%;
    }

    .mission img {
        width: 70px;
    }
}

@media (max-width: 575px) {
    .mission {
        padding: 30px 10px;
    }

    .mission p {
        font-size: 11px;
    }

    .mission h1 {
        font-size: 16px;
    }
}

/* -----------------------------Nav-Section-5-media-queary-end----------------------------*/
/* --------------------------------------------------------------------------------------*/


/* -----------------------------Section-six------------------------------------------------*/
/* --------------------------------------------------------------------------------------*/

.section-six{
    width: auto;
    height:832px;
}

.second-service{
   padding-top: 127px;
}

.main-iot-card{
    margin-left: 0px;
}

.side-pattern-three img{
    position: absolute;
    right: 0px;
    width: 150px;
    top: 1816px;
}

.second-main-iot-card{
    margin-bottom: 60px;
    padding-top: 50px;
}

.section-six h5{
    color: #666;
    opacity: 50%;
}

.our-service-six p{
    color: #666;
    opacity: 50%;
}


.our-service-six h1{
    font-size: 70px;
    color: #021748;
}

.our-service-six h5,
.our-service-six h1,
.our-service-six p {
    margin: 10px;
}

.section-six .our-service-six {
    margin-top: 100px;
}

.iot{
    width: 400px;
    height: 170px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background: rgb(14,61,68);
    background: linear-gradient(0deg, rgba(14,61,68,1) 0%, rgba(34,153,170,1) 100%);
}

/* .i-p{
    margin-right: 100px;
} */

.iot-icone img{
    width: auto;
    height: 70px;
    margin-right: 15px;
}
.iot p{
    width: 334px;
    font-size: 12px;
    color: white;
    font-family: "Poppins", sans-serif;

}
.iot h1{
    font-size: 25px;
    color: white;
    margin-left: 83px;
}

.iot a{
    color: #0db0c9;
    text-decoration: none;
}



/* -----------------------------Section-six-end-------------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* -----------------------------Section-six-media-queary----------------------------------*/
/* --------------------------------------------------------------------------------------*/
@media screen and (min-width:360px) and (max-width:393px){

    .section-six{
        width: auto;
        height:auto;
    }

    .second-service {
        padding-top: 0px; 
    }

    .section-six .our-service-six h5{
        font-size: 13px;
    }
    .main-iot-card{
        margin-left: 0px;
        padding-top: 10px;
    }
    
    .side-pattern-three img{
        position: absolute;
        right: 0px;
        width: 150px;
        top: 1816px;
        display: none;
    }
    
    .section-six h5{
        color: #666;
        opacity: 50%;
    }
    
    .our-service-six p{
        color: #666;
        opacity: 50%;
        font-size: 8px;
    }
    
    
    .our-service-six h1{
        font-size: 25px;
        color: #021748;
    }
    
    .our-service-six h5,
    .our-service-six h1,
    .our-service-six p {
        margin: 10px;
    }
    .second-main-iot-card {
        margin-bottom: 0px;
        padding-top: 0px;
    }
    
    
    .section-six .our-service-six {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    
    .iot{
        width: auto;
        height: auto;
        margin-left: 27px;
        margin-right: 0px;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
        background: rgb(14,61,68);
        background: linear-gradient(0deg, rgba(14,61,68,1) 0%, rgba(34,153,170,1) 100%);
    }

    .iot-card-main-team{
        display: flex;
    }

    
    .iot-icone img{
        width: auto;
        height: 40px;
        margin-right: 15px;
    }
    .iot p{
        width: 100%;
        font-size: 8px;
        color: white;
        margin-left: 0px;
    }
    .iot h1{
        font-size: 18px;
        color: white;
        margin-left: 56px;
    }
    
    .iot a{
        color: #0db0c9;
        text-decoration: none;
    }
    
}

@media screen and (min-width:480px) and (max-width:1040px){

    .section-six{
        width: auto;
        height:auto;
    }

    .second-service {
        padding-top: 0px; 
    }

    .section-six .our-service-six h5{
        font-size: 13px;
    }
    .main-iot-card{
        margin-left: 0px;
        padding-top: 10px;
    }
    
    .side-pattern-three img{
        position: absolute;
        right: 0px;
        width: 150px;
        top: 1816px;
        display: none;
    }
    
    .section-six h5{
        color: #666;
        opacity: 50%;
    }
    
    .our-service-six p{
        color: #666;
        opacity: 50%;
        font-size: 8px;
    }
    
    
    .our-service-six h1{
        font-size: 25px;
        color: #021748;
    }
    
    .our-service-six h5,
    .our-service-six h1,
    .our-service-six p {
        margin: 10px;
    }
    .second-main-iot-card {
        margin-bottom: 0px;
        padding-top: 0px;
    }
    
    
    .section-six .our-service-six {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    
    .iot{
        width: auto;
        height: auto;
        margin-left: 27px;
        margin-right: 0px;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
        background: rgb(14,61,68);
        background: linear-gradient(0deg, rgba(14,61,68,1) 0%, rgba(34,153,170,1) 100%);
    }

    .iot-card-main-team{
        display: flex;
    }

    
    .iot-icone img{
        width: auto;
        height: 40px;
        margin-right: 15px;
    }
    .iot p{
        width: 100%;
        font-size: 8px;
        color: white;
        margin-left: 0px;
    }
    .iot h1{
        font-size: 18px;
        color: white;
        margin-left: 56px;
    }
    
    .iot a{
        color: #0db0c9;
        text-decoration: none;
    }

}

@media screen and (min-width:412px) and (max-width:428px){

    .section-six{
        width: auto;
        height:auto;
    }

    .second-service {
        padding-top: 0px; 
    }

    .section-six .our-service-six h5{
        font-size: 13px;
    }
    .main-iot-card{
        margin-left: 0px;
        padding-top: 10px;
    }
    
    .side-pattern-three img{
        position: absolute;
        right: 0px;
        width: 150px;
        top: 1816px;
        display: none;
    }
    
    .section-six h5{
        color: #666;
        opacity: 50%;
    }
    
    .our-service-six p{
        color: #666;
        opacity: 50%;
        font-size: 8px;
    }
    
    
    .our-service-six h1{
        font-size: 25px;
        color: #021748;
    }
    
    .our-service-six h5,
    .our-service-six h1,
    .our-service-six p {
        margin: 10px;
    }
    
    
    .section-six .our-service-six {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    
    .iot{
        width: auto;
        height: auto;
        /* margin-left: 27px; */
        margin-right: 0px;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
        background: rgb(14,61,68);
        background: linear-gradient(0deg, rgba(14,61,68,1) 0%, rgba(34,153,170,1) 100%);
    }

    .iot-card-main-team{
        display: flex;
    }

     .section-six .second-main-iot-card{
        margin-top: 10px;
        display: flex;
        margin-top: 10px;
    }
    
    .iot-icone img{
        width: auto;
        height: 40px;
        margin-right: 15px;
    }
    .iot p{
        width: 100%;
        font-size: 8px;
        color: white;
        margin-left: 0px;
    }
    .iot h1{
        font-size: 18px;
        color: white;
        margin-left: 56px;
    }
    
    .iot a{
        color: #0db0c9;
        text-decoration: none;
    }
    
}


@media only screen and (max-width: 932px){
    .side-pattern-three img{
        display: none;
    }
    .main-iot-card {
        margin-left: 0px;
    }

    .section-six{
        width: auto;
        height:auto;
    }

    .second-service {
        padding-top: 0px; 
    }

    .section-six .our-service-six h5{
        font-size: 13px;
    }
    .main-iot-card{
        margin-left: 0px;
        padding-top: 10px;
    }
    
    .side-pattern-three img{
        position: absolute;
        right: 0px;
        width: 150px;
        top: 1816px;
        display: none;
    }
    
    .section-six h5{
        color: #666;
        opacity: 50%;
    }
    
    .our-service-six p{
        color: #666;
        opacity: 50%;
        font-size: 8px;
    }
    
    
    .our-service-six h1{
        font-size: 25px;
        color: #021748;
    }
    
    .our-service-six h5,
    .our-service-six h1,
    .our-service-six p {
        margin: 10px;
    }
    
    
    .section-six .our-service-six {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    
    .iot{
        width: auto;
        height: 139px;
        /* margin-left: 27px; */
        margin-right: 0px;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
        background: rgb(14,61,68);
        background: linear-gradient(0deg, rgba(14,61,68,1) 0%, rgba(34,153,170,1) 100%);
    }

    .iot-card-main-team{
        display: flex;
    }

     .section-six .second-main-iot-card{
        margin-top: 10px;
        display: flex;
        margin-top: 10px;
    }
    
    .iot-icone img{
        width: auto;
        height: 40px;
        margin-right: 15px;
    }
    .iot p{
        width: 100%;
        font-size: 9px;
        color: white;
        margin-left: 0px;
    }
    .iot h1{
        font-size: 13px;
        color: white;
        margin-left: 56px;
    }
    
    .iot a{
        color: #0db0c9;
        text-decoration: none;
    }
}


@media only screen and (max-width:1920px){
    .side-pattern-three img{
       display: none;
    }
}

/*---------------------- New updations--------------------*/

@media screen and (max-width: 1255px) and (min-width: 1040px) {
  .section-six .row.d-flex.justify-content-center {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 20px;
  }

  .section-six .row.d-flex.justify-content-center > div {
    width: 35% !important;
    min-width: 0;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-six .row.d-flex.justify-content-center > div p {
  font-size: 10px !important;
  line-height: 1.3 !important;
  margin-bottom: 10px;
}



  .section-six .row.d-flex.justify-content-center > div p a:hover {
    text-decoration: underline;
  }

  .section-six .row.d-flex.justify-content-center > div h1 {
    font-size: 18px !important;
    margin-bottom: 6px;
  }

  .iot {
    width: 100% !important;
    margin: 0%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 797px) {
  .section-six .row.d-flex.justify-content-center {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    
  }

  .section-six .row.d-flex.justify-content-center > div {
    width: 32.2% !important;
    margin-bottom: 15px;
  }

  .section-six .row.d-flex.justify-content-center > div p {
    font-size: 8px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px;
  }

  .section-six .row.d-flex.justify-content-center > div h1 {
    font-size: 16px !important;
    margin-bottom: 5px;
  }

  .iot {
    width: 100% !important;
  }
}


/* -----------------------------Section-six-media-end----------------------------------*/
/* --------------------------------------------------------------------------------------*/




/* -----------------------------Section-Seven---------------------------------------------*/
/* --------------------------------------------------------------------------------------*/

.section-seven{
    width: auto;
    height: 1300px;
    background: rgb(1,12,36);
    background: linear-gradient(0deg, rgba(1,12,36,1) 0%, rgba(34,153,170,1) 100%);
}

.ct-main{
    padding-top: 150px;
}

.ct-message-card {
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    height: auto;
    left: 0;
    position: relative;
    z-index: 4;
}


.ct-message-card h1{
    color: white;
    font-size: 28px;
    text-align: center;
    
}

.ct-message-card p{
    color: rgb(255, 255, 255);
    text-align: justify;
    font-size: 18px;
    font-style: italic;
    font-weight: 100;
    padding: 10px;
}

.head-paragraph {
    background-color: #2299AA;
    padding: 20px;
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    border-radius: 10px;
}

.ct-image {
    position: relative; 
}

.ct-image img {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 2;
}

.back-squar {
    background-color: #0db0c9;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    position: absolute;
    top: -23px; 
    left: 425px;
    z-index: 1;
}

.ct-name-info{
    position: relative;
}

.ct-name-info{
    background-color: #2299AA;
    position: absolute;
    width: 400px;
    top: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
    right: -100px;
    z-index: 3;
}

.ct-name-info h1,
.ct-name-info p{
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.ct-name-info p{
    font-size: 15px;
}

/* Slider for experts in main page */

.slider-experts{
    padding-top:160px;
}

.slider-container {
    width: 90%;
    overflow: hidden;
    position: relative;

  }
  
  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
/* Slider css end */


  .profile-card {
    min-width: 220px; 
    margin: 0 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
  }
  
  
  .profile-card img {
    width: 100px;
    height: 100px; 
    object-fit: cover; 
    border-radius: 50%; 
    margin-bottom: 10px; 
  }
  
  .profile-card h3 {
    font-size: 14px;
    margin: 5px 0;
    color: white;
  }
  
  .profile-card p {
    font-size: 10px; 
    color: #fff; 
  }

  .profile-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #ffffff; 
    font-size: 24px; 
  }
  
  .profile-card a:hover {
    color: #005582; 
  }
  
.Experts{
    background-color: #2299AA;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    /* position: relative;
    left: -270px; */
    display: flex;
    justify-content: center;
}

.Experts-card{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Experts-card .rd-me{
    margin-top: 20px;
}

.Experts-card h1{
    margin-top: 0px;
    font-size: xx-large;
}

.Experts-card a{
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: #0E3D44;
    border-radius: 10px;
}

.container-fluid{
    padding-top: 20px;
}

.Experts-image{
    margin-left: 100px;
}
.Experts-image h1,
.Experts-image p{
    text-align: center;
    font-size: 15px;
    color: white;
    margin: 0px;
}

.Experts-image a{
    font-size: 30px;
    height: 0px;
}

.Experts-image h1{
    margin-top: 10px;

}



@media screen and (min-width:820px) and (max-width:820px){

   .section-seven {
        height: 100%;
    }
    .slider-container {
        margin-top: 268px;
    }
 .back-squar{
        display: none;
    }

}

@media screen and (min-width: 932px) and (max-width: 1400px) {
    .section-seven {
        height: auto; 
    }

    .ct-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .ct-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .ct-image img {
        max-width: 400px; 
        height: auto;
    }

    .ct-name-info {
        position: relative; 
        top: 0;
        right: 0;
        width: 100%; 
        max-width: 400px; 
        margin-top: 10px; 
    }

    .back-squar {
        display: none; 
    }
}


@media only screen and (max-width: 932px) {
    .section-seven {
        height: auto;
    }

    .ct-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding-top: 20px;
    }
      .ct-message-card {
        width: 90%; 
        max-width: 500px; 
        margin: 0 auto; 
        position: relative; 
        left: 0;
        top: 0; 
    }

    .ct-image img {
        width: 200px;
        height: 200px;
        margin: 10px;
        z-index: 2;
    }

    .ct-name-info {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        margin-top: 10px;
    }

    .ct-name-info h1,
    .ct-name-info p {
        font-size: 12px;
    }

    .back-squar {
        display: none;
    }
   
}


/* -----------------------------Section-Seven-End-------------------------------------------*/
/* ----------------------------------section-8------------------------------------------------------*/

    .section-eight{
        width: auto;
        height: 500px;
    }
    .eminent-title{
        position: relative;
        left: -260px;
        margin-top: 120px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .eminent-title-head{
        width: 494px;
        background-color: #0db0c9;
        color: white;
    }

    .eminent-title-tail{
        text-align: end;
        margin: 10px;
    }

    .eminent-title h1{
        text-align: end;
        margin: 10px;
    }


    .eminent-circle{    
        overflow: hidden;
        position: relative;
        left:256px;
    }


    .circle{
        position: relative;
        right: -244px;
        margin-top: 30px;
        background-color: #0db0c9;
        border-radius: 100%;
        width: 344px;
        height: 300px;
    }

    /* card */

    .testimonial-slider {
        position: relative;
        overflow: hidden;
        left: 105px;
        width: 100%;
        max-width: 872px;
        margin: 0 auto;
        padding-top: 156px;
      }
    
      .testimonial-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 300%;
      }
    
      .testimonial-container {
        flex: 0 0 33.333%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        padding: 0 20px;
      }
    
      .testimonial-container.active {
        opacity: 1;
      }
    
      .testimonial-wrapper {
        gap: 0px;
        display: flex;
      }
    
      .profile-image-column {
        display: flex;
        flex-direction: column;
        line-height: normal;
        width: 24%;
        margin-left: 0;
      }
    
      .profile-image-wrapper {
        border-radius: 20px;
        background-color: rgba(221, 239, 240, 1);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-self: stretch;
        align-items: center;
        justify-content: center;
        width: 178px;
        height: 178px;
        margin: auto -67px auto 0;
        padding: 0 16px;
      }
    
      .profile-image {
        aspect-ratio: 1;
        object-fit: contain;
        object-position: center;
        width: 150px;
        border-radius: 20px;
      }
    
      .content-column {
        display: flex;
        flex-direction: column;
        line-height: normal;
        width: 76%;
        margin-left: 20px;
      }
    
      .content-box {
        border-radius: 20px;
        background-color: rgba(35, 188, 196, 1);
        box-shadow: 3px -4px 10px rgba(0, 0, 0, 0.25);
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        padding: 2px 0;
      }
    
      .content-inner {
        border-radius: 20px;
        background-color: rgba(255, 255, 255, 1);
        z-index: 10;
        display: flex;
        gap: 17px;
        flex-wrap: wrap;
        padding: 60px 60px 60px 60px;
      }
    
      .testimonial-text {
        display: flex;
        flex-direction: column;
        align-items: start;
        font-family: Helvetica, sans-serif;
        color: rgba(34, 153, 170, 1);
        font-weight: 700;
        flex-grow: 1;
        flex-basis: 0;
        width: fit-content;
      }
    
      .author-name {
        font-size: 20px;
        letter-spacing: 2px;
        text-transform: uppercase;
      }
    
      .visit-date {
        font-size: 16px;
        letter-spacing: 1.6px;
        margin-top: 7px;
      }
    
      .testimonial-quote {
        color: rgba(1, 12, 36, 1);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 1.2px;
        align-self: stretch;
        margin-top: 19px;
        font-style: italic;
      }
    
      .read-more {
        color: rgba(34, 153, 170, 1);
        cursor: pointer;
      }
    
      .fixed-navigation {
        /* position: relative;
        right: 564px;
        bottom: 184px;
        width: 10%;
        max-width: 1200px; */
        margin-top: 164px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-content: space-between;
        pointer-events: none;
        z-index: 100;
      }
    
      .fixed-nav-prev{
        /* position: absolute;
        left: 1650px;
        top: 60px; */
        margin: 10px;
        background: rgba(0, 0, 0, 0.9);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: background-color 0.3s ease;
      }
      .fixed-nav-next {
        /* position: absolute; */
        margin: 10px;
        left: 1650px;
        background: rgba(0, 0, 0, 0.9);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: background-color 0.3s ease;
      }
    
      .fixed-nav-prev:hover,
      .fixed-nav-next:hover {
        background: rgba(35, 188, 196, 1);
      }
    
      .arrow-left,
      .arrow-right {
        border: solid white;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 6px;
      }
    
      .arrow-left {
        transform: rotate(135deg);
      }
    
      .arrow-right {
        transform: rotate(-45deg);
      }

      .divider-bar{
        background: rgb(1,12,36);
        background: linear-gradient(270deg, rgba(1,12,36,1) 0%, rgba(34,153,170,1) 100%);
        height: 60px;
        /* margin: 10px 0; */
        width: 100%;
      }
    


/* -----------------------------Section-8-End-------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/



/* -----------------------------Section-8-media----------------------------------------*/
/* ----------------------------------------------------------------------------------------*/



@media screen and (min-width:1180px) and (max-width:1180px){

/* 
    .fixed-navigation {
        position: relative;
        right: 830px;
        bottom: 184px;
        width: 10%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 100;
      } */

    .testimonial-slider {
        left: 80px;
    }
}

@media only screen and (max-width: 991px){

    .testimonial-track {
        margin-bottom: 20px;
    }

    .testimonial-quote {
        align-self: center;
      } 

      .testimonial-container {
        padding-right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

    .section-eight {
        width: auto;
        height: 100%;
    }
    
    .testimonial-slider {
        left: 116pxpx;
        padding-top: 0px;
    }
    
    .eminent-title {
        margin-top: 23px;
    }
    .profile-image-column {
        margin-left: 67px;
        margin-bottom: 20px;
    }
    .content-inner {
        padding: 20px;
    }
    .testimonial-wrapper {
        width: 282px;
    }
    
    .author-name {
        font-size: 15px;
    }
    .visit-date {
        font-size: 11px;
    }
    .testimonial-quote {
        font-size: 9px;
    }
    .section-eight .circle {
        display: none;
    }
    
        .fixed-navigation {
            display: none;
        }
        .section-nine .hr {
            display: none;
        }
    
        .slide {
            flex: 0 0 75%;
        }

        .section-nine {
            height: 100%;
        }

}


@media (max-width: 991px) {
    .testimonial-container {
      padding-right: 20px;
    }
    .testimonial-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
    .profile-image-column {
      width: 100%;
    }
    .profile-image-wrapper {
      margin-top: 29px;
    }
    .content-column {
      width: 100%;
    }
    .content-box {
      max-width: 100%;
    }
    .content-inner {
      padding-left: 20px;
    }
    .testimonial-text {
      max-width: 100%;
    }
    .testimonial-quote {
      max-width: 100%;
    }
    .fixed-navigation {
      padding: 0 20px;
    }
  }
@media screen and (min-width:1920px) and (max-width:1920px){
    /* .fixed-navigation {
        position: relative;
        right: 830px;
        bottom: 184px;
        width: 10%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 100;
      } */

    .section-eight .circle{
        position: relative;
        right: -249px;
        margin-top: 30px;
        background-color: #0db0c9;
        border-radius: 100%;
        width: 344px;
        height: 300px;
    }
    .section-eight .eminent-circle{    
        overflow: hidden;
        position: relative;
        left:209px;
    }
@media only screen and(max-width:768px){
    .testimonial-container {
        padding-right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
}
    
}

@media only screen and (max-width:1920px){
    .eminent-circle{
        display: none;
    }
    .fixed-navigation{
        margin-left: 100px;
    }
}

/* -----------------------------Section-8-media-end-------------------------------------*/
/* ----------------------------------------------------------------------------------------*/





/* -----------------------------Section-Nine-----------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/

.section-nine{
    width: auto;
    height: 600px;
    background: rgb(34,153,170,0.1);
    
}

.tec-main h2{
    color: #2299AA;
}

.section-nine .hr{
    color: #000;
    background-color: #000;
    width: 50%;
    position: relative;
    /* left: 488px; */
}

.slider-logo {
    padding-top: 146px;
    width: 50%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.slider-track {
    display: flex;
    animation: scroll 35s linear infinite; /* Adjust duration as needed */
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.slide {
    flex: 0 0 21%; /* This controls how many slides are visible */
    text-align: center;
    margin: 0 -50px;
    box-sizing: border-box;
}

.slide img {
    width: 40%;
    height: auto;
    display: block;
}

/* -----------------------------Section-eight-end-------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/

/* -----------------------------Section-Nine-media-----------------------------------------*/
/* ----------------------------------------------------------------------------------------*/

@media only screen and (min-width:820px){
    .slide {
        flex: 0 0 30%;
        text-align: center;
        margin: 0 -50px;
        box-sizing: border-box;
    }

    .section-nine{
        height: 100%;
    }

    .slider-logo{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width:786px){
.section-eight {
    width: auto;
    height: 100%;
}

.testimonial-slider {
    left: 0px;
    padding-top: 0px;
}

.eminent-title {
    margin-top: 23px;
}
.profile-image-column {
    margin-left: 67px;
    margin-bottom: 20px;
}
.content-inner {
    padding: 20px;
}
.testimonial-wrapper {
    width: 282px;
}

.author-name {
    font-size: 15px;
}
.visit-date {
    font-size: 11px;
}
.testimonial-quote {
    font-size: 9px;
}
.section-eight .circle {
    display: none;
}

    .fixed-navigation {
        display: none;
    }
    .section-nine .hr {
        display: none;
    }

    .slide {
        flex: 0 0 75%;
    }
    .slider-logo {
        left: 18px;
        padding-top: 10px;

    }
    .section-nine {
        height: 100%;
    }

}


/* -----------------------------Section-eight-media-end-------------------------------------*/
/* ----------------------------------------------------------------------------------------*/



/* -----------------------------Section-ten-------------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/

.section-ten{
    width: auto;
    height: 925px;
    background: rgb(1,12,36);
    background: linear-gradient(0deg, rgba(1,12,36,1) 0%, rgba(34,153,170,1) 100%);
}

.section-ten h1{
    padding-left: 95px;
    font-weight: 200;
    font-size: 25px;
    color: white;
}

.container-socialmedia-feed{
    padding-top: 16px;
    padding-bottom: 40px;
}

.social-feed-container3{
    width: 90%; /* Adjust width as needed */
    height: auto;
    margin: 0 auto;
    background-color: #1a73e8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Hide any overflow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
    margin-bottom: 10px;
}


.social-feed-container {
    width: 90%; /* Adjust width as needed */
    height: auto; /* Allow the height to adjust dynamically */
    min-height: 600px; /* Set a minimum height if needed */
    margin: 0 auto;
    background: rgb(22,90,237);
    background: linear-gradient(180deg, rgb(22, 90, 237) 0%, rgba(247,247,247,1) 100%);    
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Hide any overflow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
}

.linkedin-feed iframe {
    width: 100%;
    height: 600px; /* Set height to fully fill the container */
    border: none; /* Remove border for a cleaner look */
}

.instagram-feed iframe {
    width: 100%;
    height: 593px; /* Set height to fully fill the container */
    border: none; /* Remove border for a cleaner look */
}

.instagram-feed{
    width: 100%;
    height: 600px;
}

.overlay h1{
    position: absolute;
    z-index: 1;
    margin-top: 450px;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 15px;
    padding-bottom: 10px;
    background-color: #1a73e8;
}

.overlay-two h1{
    position: absolute;
    z-index: 1;
    margin-top: 450px;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 15px;
    padding-bottom: 10px;
    background-color: #FFAA77;
}


.social-feed-container2 {
width: 90%; /* Adjust width as needed */
height: auto; /* Allow the height to adjust dynamically */
min-height: 600px; /* Set a minimum height if needed */
margin: 0 auto;
background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow: hidden; /* Hide any overflow */
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 10px;
}


.feed-header {
font-size: 24px;
color: white;
margin-bottom: 15px;
text-align: center;
}

.facebook-feed {
background-color: white;
border-radius: 8px;
overflow: hidden;
}   

.background-molecule img{
    position: relative;
    bottom: 245px;
    right: 262px;
    z-index: 0;
}
.background-molecule-2 img{
    position: absolute;
    margin-left: 1669px;
}
/* -----------------------------Section-ten-end---------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/



/* -----------------------------Section-ten-media-------------------------------------------*/
/* ----------------------------------------------------------------------------------------*/

@media only screen and (max-width:1920px){
    .background-molecule-2 img{
        position: absolute;
        margin-left: 1077px;
    }
    .social-feed-container {
        /* width: 350px;
        height: 450px; */
        min-height: 0px;
    }
    .section-ten {
        width: auto;
        height: 100%;
    }
    .background-molecule img {
        display: none;
    }
    .social-feed-container2 {
        /* width: 350px;
        height: 450px; */
        min-height: 0px;
    }
    .social-feed-container3 {
        /* width: 350px;
        height: 450px; */
        min-height: 0px;
    }
    .custom-padding-social-media{
        padding-left: 10%;

    }
    .background-molecule-2{
        display: none;
    }

    .background-molecule{
        display: none;
    }
}

@media only screen and (max-width:786px){
    .social-feed-container {
        width: 350px;
        height: 450px;
        min-height: 0px;
    }
    .section-ten {
        width: auto;
        height: 100%;
    }
    .background-molecule img {
        display: none;
    }
    .social-feed-container2 {
        width: 350px;
        height: 450px;
        min-height: 0px;
    }
    .social-feed-container3 {
        width: 350px;
        height: 450px;
        min-height: 0px;
    }
    .custom-padding-social-media{
        padding-left: 5%;

    }
    .background-molecule-2{
        display: none;
    }

    .background-molecule{
        display: none;
    }

}


/* -----------------------------Section-ten-media-end---------------------------------------*/
/* ----------------------------------------------------------------------------------------*/


/* -----------------------------Footer----------------------------------------------------*/
/* --------------------------------------------------------------------------------------*/

.section-3 {
    width: auto;
    height: 468px;
}

.footer-link .footer-li {
    line-height: 3;
}

.footer-logo img {
    width: auto;
    height: 90px;
    margin-bottom: 29px;
}

.footer-link .footer-link-text {
    align-items: end;
}

.footer-li li {
    line-height: 3;
}

.footer-border {
    width: auto;
    height: 2px;
    background-color: #000000;
    margin-top: 35px;
}

.footer-container .footer-col-padding {
    padding-left: 10%;
}

.footer-icone i {
    margin-right: 20px;
}

.footer-icone-container .footer-paragraph {
    padding-right: 22%;
}

.footer-icone-container .footer-icone {
    padding-left: 12%;
}

.footer-li-style li:nth-child(1) a {
    color: #000000;
    font-weight: bold;
}

.footer-li-style li:nth-child(3) a {
    color: #000000;
    font-weight: bold;
}

.email-page-one a{
    color: #0db0c9;
}

.footer-logo .footer-li-middle {
    line-height: 0.4;
}

.footer-li img {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.footer-li img:hover {
    filter: invert(100%);
}

.footer-icone i {
    color: #666;
    /* Default color */
    transition: transform 0.3s ease, color 0.3s ease;
    /* Smooth transition for scale and color */
    margin-right: 15px;
    /* Spacing between icons */
    cursor: pointer;
    /* Pointer cursor for interactivity */
}

.footer-icone i:hover {
    transform: scale(1.2);
    /* Scale up on hover */
    color: #007bff;
    /* Change color on hover (example: blue) */
}




/* -----------------------------Footer end------------------------------------------------*/
/* --------------------------------------------------------------------------------------*/


/* Responsive Adjustments */

@media (max-width: 768px) {
    .section-3 {
        width: auto;
        height: 361px;
    }
    .footer-paragraph p {
        width: 100%;
        font-size: 9px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 2%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-li {
        font-size: 15px;
    }
    .footer-icone-container .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 79px;
        margin-bottom: 5px;
    }
}

@media (max-width: 390px) {
    .section-3 {
        width: auto;
        height: 868px;
    }
    .footer-logo {
        width: 400px;
        height: 100px;
    }
    .footer-logo img {
        width: auto;
        height: 100px;
    }
    .footer-container {
        justify-content: center;
        align-items: center;
    }
    .footer-heading h1 {
        font-size: 20px;
    }
    .footer-list li {
        line-height: 3;
    }
    .footer-link li a {
        list-style: none;
        text-decoration: none;
        color: #000;
    }
    .footer-icone-container .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 63px;
        margin-bottom: 5px;
    }
    .footer-logo img {
        width: auto;
        height: 60px;
        margin-bottom: 29px;
    }
    .footer-container .footer-responsive-padding {
        padding-bottom: 210px;
    }
    .footer-container .footer-col-padding {
        padding-left: 0%;
    }
    .footer-icone i {
        width: 5px;
        height: 5px;
        margin-right: 35px;
    }
    .footer-icone-container .footer-icone {
        padding-left: 10%;
    }
}

@media (max-width: 320px) {
    /* section-3 */
    .footer {
        width: auto;
        height: 743px;
    }
    .footer-logo .footer-li-middle li p {
        width: 100%;
        font-size: 10px;
    }
    .footer-col-padding .footer-li li {
        font-size: 10px;
    }
    .footer .footer-paragraph p {
        width: 100%;
        font-size: 8px;
        text-align: center;
        padding-left: 48px;
        margin-bottom: 5px;
    }
}

@media only screen and (min-width: 820px) and (max-width: 1180px) {
    .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 2%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-col-padding {
        font-size: 14px;
    }
}


/* tab */

@media (max-width: 840px) {
    .footer-paragraph p {
        width: 100%;
        font-size: 8px;
        text-align: center;
        padding-left: 53px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 2%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-li {
        font-size: 15px;
    }
}

@media only screen and (min-width: 800px) and (max-width:820px) {
    .section-3 {
        width: auto;
        height: 361px;
    }
    .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 6%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-col-padding {
        font-size: 15 px;
    }
}

@media only screen and (min-width: 1114px) and (max-width:1114px) {
    .section-3 {
        width: auto;
        height: 361px;
    }
    .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 6%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-col-padding {
        font-size: 15 px;
    }
}


@media only screen and (min-width: 884px) and (max-width:884px) {
    .section-3 {
        width: auto;
        height: 361px;
    }
    .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 6%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-col-padding {
        font-size: 15 px;
    }
}

@media screen and (min-width:1280px) and (max-width: 1280px) {
    .section-3 {
        width: auto;
        height: 361px;
    }
    .footer-paragraph p {
        width: 100%;
        font-size: 10px;
        text-align: center;
        padding-left: 78px;
        margin-bottom: 5px;
    }
    .footer-container .footer-col-padding {
        padding-left: 6%;
    }
    .footer-logo .footer-li-middle {
        line-height: 0.4;
        font-size: 11px;
    }
    .footer-container .footer-col-padding {
        font-size: 15 px;
    }
}


/* cursour style */

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(34, 153, 170, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    z-index: 1000;
}

.custom-cursor.hover {
    width: 60px; /* Expand size */
    height: 60px;
    background-color: rgba(34, 153, 170, 0.2); /* Add light background */
    border-color: rgba(34, 153, 170, 0.6);
}



/* Search dropdown style in homepage. */

/* Search Results Dropdown */
.search-results {
    position: absolute;
    background-color: rgba(34, 153, 170, 0.9); /* Slight transparency */
    border: 1px solid #ccc; /* Optional: Add a border for separation */
    border-radius: 5px; /* Rounded corners */
    max-width: 100%; /* Slightly smaller width than the input */
    z-index: 1000; /* Ensure it appears above other elements */
    margin-top: 50px; /* Space below the search input */
    left: 40%; /* Center the dropdown */
    transform: translateX(-50%); /* Adjust for centering */
    color: white; /* Matches the placeholder and text color */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
}

.result-item {
    padding: 10px; /* Spacing for each dropdown item */
    cursor: pointer; /* Indicate clickability */
}

.result-item:hover {
    background-color: rgba(27, 124, 139, 0.9); /* Slightly darker and transparent hover */
}

.result-item a {
    text-decoration: none; /* Remove underline */
    color: white; /* Match the text color */
    display: block; /* Ensure clickable area spans the full width */
}

@media (max-width: 768px) {
    .search-results {
        max-width: 100%;
        left: 5px;
        transform: none;
        margin-top: 50px;
    }
}

/* Search dropdown style in homepage ENDS. */