@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: #e9f1fa;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #232629;
    /* Dark background */
    color: #ffffff;
    /* Default light text */
}

body.dark-mode .navbar {
    background-color: #232629;
    /* Dark navbar background */
}

body.dark-mode .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.851);
    /* Dark color */
}

body.dark-mode .navbar .navbar-brand {
    color: #ffffff;
    /* Light text for navbar brand */
}

body.dark-mode .navbar .nav-link {
    color: #ffffff;
    /* Light text for navbar links */
}

body.dark-mode .navbar .nav-link:hover {
    color: #62aaed !important;
    /* Change hover color for visibility */
}

body.dark-mode .card {
    background-color: #495057;
    /* Dark card background */
    border-color: #6c757d;
    /* Darker border */
}

body.dark-mode .card-header {
    background-color: #6c757d;
    /* Darker header for card */
    color: #ffffff;
    /* Light text for card header */
}

body.dark-mode .card-body {
    color: #ffffff;
    /* Light text for card body */
}

/* Adjust dropdown menu for dark mode */
body.dark-mode .dropdown-menu {
    background-color: #232629;
    border: 1px solid #5d656dc3;
    /* Dark dropdown background */
    color: #ffffff;
    /* Light text for dropdown items */
}

body.dark-mode .dropdown-item {
    color: #ffffff;
    /* Light text for dropdown items */
}

body.dark-mode .dropdown-item:hover {
    background-color: #6c757d;
    /* Darker background on hover */
    color: #000000;
    /* Black text on hover for visibility */
}

body.dark-mode .navbar .nav-link,
body.dark-mode .navbar-brand {
    color: #ffffff;
    /* Force light text */
}

body.dark-mode .card-header,
body.dark-mode .card-body {
    color: #ffffff !important;
    /* Force light text */
}


#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    margin: 10px 15px;
    font-size: 30px;
    background-color: #004a98;
    color: white;
    border-radius: 100%;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
}

#backToTop:hover {
    scale: 1.03;
}

.dark-mode #backToTop {
    background-color: white;
    padding: 0;
    font-size: 40px;
    color: #62aaed;
}




#searchResults {
    max-height: 300px;
    overflow-y: auto;
}

#searchResults::-webkit-scrollbar {
    width: 8px;
}

#searchResults::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

#searchModalLabel {
    color: #004a98;
}

/* .dark-mode #searchModalLabel {
    color: #62aaed;
} */








/* General Navbar Styles */
.navbar {
    color: black;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    height: 60px;
    background: #e9f1fa;
}

.navbar-brand span {
    color: black;
}

.navbar-nav .nav-link {
    position: relative;
    /* Necessary for positioning the underline */
    color: black;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
    /* Remove default underline */
}

.navbar-nav .nav-link:hover {
    color: #004a98;
    /* Changes text color on hover */
    transition: color 0.3s ease;
    /* Smooth transition for color */
}

/* Underline Effect - Only for non-dropdown links */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    /* Creates the line */
    position: absolute;
    left: 50%;
    /* Start from the center */
    bottom: -2px;
    /* Space between text and underline */
    width: 0;
    /* Initially hidden */
    height: 2px;
    /* Thickness of the underline */
    background-color: #376eb9;
    /* Color of the underline */
    transition: width 0.3s ease, left 0.3s ease;
    /* Smooth animation */
    transform: translateX(-50%);
    /* Center alignment */
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
    /* Expand underline to full width */
    left: 50%;
    /* Reset left position for full width */
    /* transform: translateX(0); */
    /* Remove centering */
}

.navbar .dropdown-item {
    font-size: 16.5px;
    color: black
        /* Adjust the size as needed */
}

.navbar .dropdown-item:hover {
    background-color: #004a98 !important;
    /* Background color on hover */
    color: white !important;
    /* Text color on hover */
}

.active-banner {
    color: #004a98 !important;
}

.active {
    color: #004a98 !important;
    background-color: transparent !important;
}

body.dark-mode .active,
.active-dark {
    color: #62aaed !important;
}











/* Annimation effact global */

/* Keyframes for fade-in and slide-up effect */
@keyframes zoomInText {
    0% {
        opacity: 0;
        transform: scale(0.5);
        /* Start smaller */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* Zoom in to original size */
    }
}

.animate-text {
    opacity: 0;
    transform: scale(0.5);
    /* Start small */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* Smooth transition */
}

.animate-text.visible {
    opacity: 1;
    transform: scale(1);
    /* Zoom to normal size */
}


/* two classs  */
/* Keyframes for zoom-in and fade-in effect */
@keyframes zoomInFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
        /* Start smaller */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* Zoom in to original size */
    }
}

/* Apply the animation to hero-section_* classes and para class */
.he-hd,
.fst-letter,
.snd-letter,
.para {
    opacity: 0;
    /* Start hidden */
    transform: scale(0.5);
    /* Start smaller */
    animation: zoomInFadeIn 1s ease forwards;
    /* Apply animation */
}

/* To stagger the appearance of elements */
.he-hd:nth-child(1),
.fst-letter:nth-child(1),
.snd-letter:nth-child(1),
.para:nth-child(1) {
    animation-delay: 0.1s;
    /* Add delay */
}

.he-hd:nth-child(2),
.fst-letter:nth-child(2),
.snd-letter:nth-child(2),
.para:nth-child(2) {
    animation-delay: 0.2s;
    /* Add delay */
}

.he-hd:nth-child(2),
.fst-letter:nth-child(2),
.snd-letter:nth-child(2),
.para:nth-child(3) {
    animation-delay: 0.3s;
    /* Add delay */
}

/* Continue as necessary for more children */






/* ******************** Navbar start ************************** */




/* Dropdown Animation for Desktop */

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        background-color: #e9f1fa;
        top: 83%;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Offcanvas Sidebar for Mobile (Dark Mode) */
@media (max-width: 991.98px) {
    .offcanvas {
        background-color: #343a40;
        /* Dark background */
    }

    .offcanvas-header {
        border-bottom: 1px solid #ccc;
    }

    .offcanvas-title {
        color: white;
    }

    .navbar-nav .nav-item .nav-link {
        color: white;
        font-size: 18px;
    }

    .offcanvas .dropdown-menu {
        border: none;
        /* Hide border */
    }

    .offcanvas .dropdown-item {
        font-size: 13px;
        /* Adjust the size as needed */
    }

    .offcanvas .dropdown-item:hover {
        background-color: #376eb9;
        /* Change to red on hover */
        color: white;
        /* Keep text color white for contrast */
    }
}














/* Search Modal */
.modal-body input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

.modal-body button {
    margin-left: 10px;
}

.box-wrapper {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.dotted-list li {
    color: black;
}

/* Dark mode styles */
.dark-mode .box-wrapper {
    background-color: #333;
    color: white;
    border-color: #444;
}

.dark-mode .dotted-list li {
    color: white;
}

.dark-mode .gradient-text1 {
    /* Change the gradient to be more suitable for dark mode */
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .security-img {
    /* Optionally, adjust image styling for dark mode */
    filter: brightness(0.8);
    /* Darkens the image slightly */
}

/* Dark mode styles */
.dark-mode .box-wrapper1 {
    background-color: #333;
    color: white;
    border-color: #444;
}

.dark-mode .card-detail-gray,
.dark-mode .card-detail-grayl {
    color: #ccc;
    /* Lighter text for better readability in dark mode */
}

.dark-mode .gradient-text3,
.dark-mode .gradient-text4 {
    color: #ffcc00;
    /* Adjust the gradient or text color for dark mode */
}

.dark-mode .abc li {
    color: #87cefa;
    /* Change the list item color to a lighter blue in dark mode */
}



/* Dark mode styles */
.dark-mode .box-wrapper2 {
    background-color: #333;
    color: white;
    border-color: #444;
}

.dark-mode .msg-img {
    filter: brightness(0.8);
    /* Darken the image slightly in dark mode */
}

.dark-mode .form-label {
    color: #ccc;
    /* Lighter text for form labels */
}

.dark-mode .form-control {
    background-color: #555;
    color: white;
    border: 1px solid #888;
    /* Adjust form border color in dark mode */
}




/* resource */

/* Dark mode styles */
.dark-mode .resources-section {
    background-color: #232629;
    color: white;
}

.dark-mode .detail-p {
    color: white;
    /* Lighter text for better readability in dark mode */
}

.dark-mode .color-for-dark-theme {
    color: #62aaed !important;
}

.dark-mode .resources-header h2,
.dark-mode .resources-header a {
    color: #62aaed;
    /* Adjust header text and link color for dark mode */
}

.resource-card h3 {
    color: #004a98;
}

.dark-mode .resource-card {
    background-color: #00000027;
    color: white;
    border: 1px solid #00000027;
}

.dark-mode .resource-card h3 {
    color: #62aaed;
    /* Adjust heading color in dark mode */
}

.dark-mode .resource-card p {
    color: white;
    /* Lighter text color for card description */
}

.dark-mode .dd {
    background-color: #ffcc00;
    color: #333;
    /* Adjust button colors */
}

.dark-mode .modal {
    background-color: #555;
    color: white;
}

.dark-mode .modal-content button {
    background-color: #ffcc00;
    color: #333;
}


/* Dark mode styles for modal */
.dark-mode .modal {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darken the modal background */
}

.dark-mode .modal-content {
    background-color: #444;
    /* Darken the content background */
    color: white;
    border: 1px solid #555;
}

.dark-mode .modal-content p {
    color: #ccc;
    /* Lighter text for better readability */
}

.dark-mode .modal-content button {
    background-color: #ffcc00;
    /* Button color in dark mode */
    color: #333;
    /* Button text color */
    border: none;
    padding: 10px;
    cursor: pointer;
}

.dark-mode .modal-content button:hover {
    background-color: #ffd700;
    /* Slight hover effect for button */
}




/* Dark mode styles for the card */
.dark-mode .card-sec {
    background-color: #495057;
    /* Dark background for the card */
    color: white;
    /* Ensure text is white */
    border: 1px solid #444;
    /* Optional border for contrast */
}

.dark-mode .card-sec img {
    filter: brightness(0.8);
    /* Slightly darken the image */
}

.dark-mode .card-sec .card-content h3 {
    color: #62aaed;
    /* Set a contrasting color for the heading */
}

.dark-mode .card-sec .card-content p {
    color: white;
    /* Lighter color for paragraph text */
}

.dark-mode .card-sec .learn-more a {
    color: #ffcc00;
    /* Change the "Learn More" link color */
}

.dark-mode .card-sec .learn-more span {
    color: #ffcc00;
    /* Arrow color to match the link */
}



/* 2 cards */
/* Default text color */
p {
    color: inherit;
    /* Inherit from parent by default */
}

/* Dark mode text color */
.dark-mode p {
    color: #ffffff;
    /* Makes text white in dark mode */
}





/* Default text color */
.gradient-text {

    background: inherit
}

/* Dark mode text color */
/* Ensure this applies to all p tags with gradient-text inside dark mode */
.dark-mode p.gradient-text {
    font-size: 14px;
    background: linear-gradient(90deg, #4a9bc4, #4a43af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s infinite linear;
}
















/* ******************** Navbar end ************************** */
/* ******************** Hero-section start ************************** */
.hero-section {
    background-image: url('../img/bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_index {
    background-image: url('../img/banner-new/homw-ban.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */

}

.hero-section_about {
    background-image: url('../img/banner/Group172.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_arenas {
    background-image: url('../img/banner/Group182.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}


.hero-section_contact {
    background-image: url('../img/banner/Group184.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_custom {
    background-image: url('../img/custom-sign/ban2.jpeg');
    /* vedio*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_enter {
    background-image: url('../img/enterprise/enter.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_olap {
    background-image: url('../img/bg-img.png');
    /* vedio*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_pkt {
    background-image: url('../img/banner/pkt_pros_banner.gif');
    /* vedio*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_policy {
    /* background-image: url('../img/policy/ban.gif'); */
    /* vedio*/
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_regu {
    background-image: url('../img/banner/Group181.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_reso {
    background-image: url('../img/banner/Group183.png');
    /* pic */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_serv {
    background-image: url('../img/banner/Group179.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_web {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

/* product pages banners */
.hero-section_how {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_am {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_ctm {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_l7 {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_cs {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}

.hero-section_si {
    background-image: url('../img/Web/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
    /* background-size: contain; */
}










.he-hd {
    text-shadow: 4px 4px 3px rgb(167, 158, 158, 0.5);
    font-weight: 600;
    font-size: 30px;
}

.fst-letter {
    font-size: 25px;
    text-shadow: 4px 4px 3px rgb(167, 158, 158, 0.5);
}

.other-letter {
    font-size: 20px;
    text-shadow: 4px 4px 3px rgb(167, 158, 158, 0.5);
}

.he-hd1 {
    width: 66%;
}

.snd-letter {
    font-size: 16px;
    text-shadow: 4px 4px 3px rgb(167, 158, 158, 0.5);
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .he-hd {
        font-size: 2px;
        /* Smaller font size */
    }

    .fst-letter {
        font-size: 2px;
        /* Smaller font size */
    }

    .other-letter {
        font-size: 16px;
        /* Smaller font size */
    }

    .he-hd1 {
        width: 100%;
        /* Adjust width for mobile */
    }

    .snd-letter {
        font-size: 14px;
        /* Smaller font size */
    }
}

/* hero main font */

.other1-letter {
    font-size: 13px;
    text-shadow: 4px 4px 3px rgb(167 158 158 / 50%);
}

.learn-btn {
    background-color: #376eb9;
    border: 1px solid white;
    font-size: 13px;
    border-radius: 7px;
    padding: 4px 23px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.1);
    /* background-color: #000000; */

}


.learn-btn {
    background-color: #376eb9;
    border: 1px solid rgb(190, 187, 187);
    font-size: 13px;
    border-radius: 7px;
    padding: 4px 23px;
    box-shadow: 0 4px 6px rgba(251, 250, 250, 0.1),
        0 6px 20px rgba(254, 252, 252, 0.1);
    /* background-color: #000000; */

}

.animated-border-btn {
    position: relative;
    font-size: 15px;
    padding: 5px 23px;
    /* color: #fff; */
    background: linear-gradient(to bottom, #124886 0%, #0c5692 99%, #1063ac 100%, #4e8dbd 100%);
    /* background: black; */
    /* border: none; */
    /* cursor: pointer; */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(251, 250, 250, 0.1),
        0 6px 20px rgba(254, 252, 252, 0.1);
}

.animated-border-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 7px;
    box-sizing: border-box;
    /* animation: border-animation 3s linear infinite; */
    /* background: linear-gradient(to bottom, #124886 0%,#0c5692 99%,#1063ac 100%,#4e8dbd 100%); */
    /* color: white; */
}



/* mobile */






/* Vlayrian system text */
/* Default text color */
.ms-2 {
    color: inherit;
    /* Keeps it responsive to parent color */
    align-self: flex-end;
    /* font-weight: bold; */
    /* font-size: 25px; */
    /* height: 100px; */

}

/* Dark mode text color */
.dark-mode .ms-2 {
    color: #ffffff;
    /* Makes text white in dark mode */
}




@media (max-width: 768px) {

    /* Adjust the max-width as needed */
    .ms-2 {
        font-size: 0.8em;
        /* Adjust the font size for mobile */
    }
}








/* ******************** Hero-section end ************************** */

/* ******************** 3rd-section start ************************** */

.detail-p {
    font-size: 19px;
}

.box {
    border: 2px solid black;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gradient-text {
    font-size: 14px;
    background: linear-gradient(90deg, #104d6c, #0044ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s infinite linear;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}



/* Mobile styles */
@media (max-width: 767px) {
    .hero-section_index {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 3vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_about {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_pkt {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_arenas {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_contact {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_custom {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_enter {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_olap {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_policy {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_regu {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_reso {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_serv {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_web {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section_pkt {
        height: 25vh;
        /* Reduce height for mobile */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align content to the top */
        padding-top: 5vh;
        /* Space between navbar and heading */
        padding-left: 10px;
        padding-right: 10px;
    }

    .he-hd {
        font-size: 15px;
        /* Smaller heading for mobile */
        margin-top: 0;
        /* Bring heading closer to top */
    }

    .fst-letter {
        font-size: 12px;
        /* Adjust text size */
    }

    .other-letter {
        font-size: 9px;
        /* Ensure smaller size for smaller screens */
    }

    .he-hd1 {
        width: 70%;
        /* Ensure text stays within banner */
        margin-top: 10px;
        /* Adjust spacing below heading */
    }

    .snd-ph {
        width: 70%;
    }

    .snd-letter {
        font-size: 10px;
        /* Smaller text for secondary paragraph */
    }

    .other1-letter {
        font-size: 8px;
    }

    .ps-lg-5,
    .ps-2,
    .ms-lg-3,
    .pt-5,
    .pb-5 {
        padding: 0 !important;
        /* Remove excessive padding for mobile */
    }

    .mt-5 {
        margin-top: 0px !important;
        /* Reduce margin */
    }

    .learn-btn {
        padding: 6px 12px;
        /* Small button size for mobile */
        font-size: 12px;
        /* Smaller text on button */
    }
}




/* ******************** 3rd-section end ************************** */

/* ******************** card-section ************************** */

.box-wrapper {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);


}

.security-img {
    /* width: 100%; */
    /* max-width: 190px !important; */
    height: 210px;
}

@media (max-width: 992px) {
    .security-img {
        width: 100% !important;
    }
}

.gradient-text1 {
    font-size: 18.5px;
    background: linear-gradient(90deg, #104d6c, #0044ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: gradient-animation 3s infinite linear; */
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.card-detail {
    font-size: 12px;
}

.dotted-list {
    list-style-type: none;
    padding-left: 12px;
}

.dotted-list li {
    font-size: 12.5px;
    position: relative;
    padding-left: 13px;
    margin-bottom: 10px;
}

.dotted-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    /* background-color: black; */
    border-radius: 50%;
}

/* ******************** product-offer-section ************************** */

.box-wrapper1 {
    line-height: 38px;
    background-color: lightgray;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
    margin: 10px;
}


/* if error COMMENT THIS */
.gradient-text3 {
    font-size: 27px !important;
    background: linear-gradient(90deg, #030111, #3b5fc2, #607cc7, #becef7);
    -webkit-background-clip: text;
    /* For Chrome */
    -webkit-text-fill-color: transparent;
    /* For Chrome */
    background-clip: text;
    /* For Firefox */
    color: transparent;
    /* Fallback color for older browsers */
    animation: gradient-animation 3s infinite linear;
}

.card-detail-gray {
    font-size: 15px;
    color: black;
}

.card-detail {
    font-size: 16px;
}


.abc li::marker {
    font-size: 16px;
    color: #182a5f;
}

/* .gradient-text4 {
    font-size: 19px !important;
    background: linear-gradient(90deg, #030111, #3b5fc2, #607cc7,#becef7);
    color: #0044ff;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s infinite linear;
} */



html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}






/* INDEXXXXX */


/* WHY VSI */


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
    }

    to {
        transform: translateX(0);
    }
}

.vedio {
    width: 65%;

}

/* .vedio:hover div {
    transform: scale(1.05);
    transition: transform 0.5s;
  } */

/* General responsive rules */
.content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.text-section,
.video-section {
    flex: 1;
    min-width: 300px;
    /* Ensure they don't shrink too small */
    padding: 20px;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .vedio {
        width: 100%;

    }

    .text-section,
    .video-section {
        width: 100%;
        padding: 10px;
    }

    .vedio h2 {
        font-size: 2em;
    }
}

@media (max-width: 400px) {
    .vedio h2 {
        font-size: 1.8em;
        margin: 60px auto;
    }

    .text-section {
        padding: 5px;
    }
}




/* ----- CARDS -------- */

/* Typing animation for More Insights */
/* .typing-animation {
    font-size: 2.5em;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid;
    width: 0;
    animation: typing 3s steps(13) infinite, blink 0.3s step-end infinite;
  } */

/* Typing effect */
/* @keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 16ch; 
    }
  } */

/* Blinking cursor effect */
@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: black;
    }
}


/* Card Styling */
.card1 {
    border: 1px solid #004a98;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

    max-width: 90px;
    /*  remove this if want previous*/



    transform:
        rotateX(0deg) rotateZ(0deg);
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow:
        /* 1px 1px 0 1px #f9f9fb, */
        -1px 0 28px 0 rgba(34, 33, 81, 0.01),
        28px 28px 28px 0 rgba(34, 33, 81, 0.25);
    transition:
        .4s ease-in-out transform,
        .4s ease-in-out box-shadow;

    &:hover {
        transform:
            translate3d(0px, -16px, 0px) rotateX(15deg) rotateZ(0deg);
        box-shadow:
            /* 1px 1px 0 1px #f9f9fb, */
            -1px 0 28px 0 rgba(34, 33, 81, 0.01),
            54px 54px 28px -10px rgba(34, 33, 81, 0.15);
    }














    /* transform:
    perspective(800px)
    rotateY(25deg) scale(0.9)
    rotateX(10deg);
  filter: blur(2px);
  opacity: 0.5;
  transition: 0.6s ease all;

  &:hover {
    transform:
      perspective(800px)
      rotateY(-15deg)
      translateY(-50px)
      rotateX(10deg)
      scale(1);
    filter: blur(0);
    opacity: 1;
  } */


















}

.dark-mode .card1 {
    border: 1px solid #62aaed;
    box-shadow:
        /* 1px 1px 0 1px #f9f9fb, */
        -1px 0 28px 0 #62aaed00,
        28px 28px 28px 0 #62aaed07;

    &:hover {
        transform:
            translate3d(0px, -16px, 0px) rotateX(15deg) rotateZ(0deg);
        box-shadow:
            /* 1px 1px 0 1px #f9f9fb, */
            -1px 0 28px 0 #62aaed03,
            54px 54px 28px -10px #62aaed1d;
    }
}

.card1:hover {
    transform: scale(1.05);

}

.card-image {
    height: 55% !important;
    overflow: hidden;
    width: 100%;
    /* Full width for the container */
    height: 200px;
    /* Set a fixed height for the image container */
    overflow: hidden;
    /* Hide any overflow if the image is larger than the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container while maintaining aspect ratio */
    border-radius: 10px;
    /* Optional: rounded corners */
    transition: transform 0.3s ease;
}

.card-text h5 {
    color: #004a98;
    font-weight: bold;
}

.card-text {
    padding: 30px;
    height: 50%;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .card1 {
        width: 100%;
        margin-bottom: 20px;
    }
}





.dark-mode h2.container {
    color: #62aaed !important;
}

.dark-mode .gradient-text {
    background: linear-gradient(90deg, #ff8a00, #e52e71) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

/* .dark-mode .card-text h4 {
    color: #ffcc00;
} */

.container5 {
    color: #62aaed;
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.dark-mode p.container5 {
    color: #62aaed !important;
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .container5 {
        color: #62aaed;
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }

    .dark-mode p.container5 {
        color: #62aaed !important;
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }

    .dark-mode p.container6 {
        color: white !important;
        width: 90%;
        text-align: center;
        margin: 0 auto;
        font-size: 16px;
    }

    .para {
        font-size: 16px;
        /* Smaller font size for mobile screens */
        padding-bottom: 30px;
    }
}

.card-text p {
    padding-top: 1px;
}




.more-insight {
    padding-left: 600px;
}






/* ===========end =========== */

@media only screen and (max-width: 768px) {
    .box-wrapper1-form {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .gradient-text3-form {
        font-size: 1.5rem;
    }

    .abc-form li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media only screen and (min-width: 769px) {
    .box-wrapper1-form {
        padding-left: 50px;
        padding-right: 50px;
        text-align: left;
    }

    .gradient-text3-form {
        font-size: 2rem;
    }

    .abc-form li {
        font-size: 1rem;
        line-height: 1.6;
    }
}


.box-wrapper1-form {
    padding: 20px;
    background-color: #d0e4f8;
    margin: 20px;
    border-radius: 10px;
    text-align: left
}

.dark-mode .box-wrapper1-form {
    background-color: rgba(34, 33, 33, 0.5);

}

.gradient-text3-form {
    text-align: center;
    color: #004a98;
    font-weight: 600;
}

.dark-mode .gradient-text3-form {
    color: #62aaed;
    font-weight: 600;
    /* text-align: center; */
}

/* Text Color for Light Mode */
.text-color-form {
    color: black;
}

.dark-mode.text-color-form {
    color: black;
}

.dark-mode .gradient-text4-form li {
    color: white;
}

/* Dark Mode Styling */
.dark-mode .text-color-form {
    /* color: #ffcc00 !important; */
    /* color: #ff8a00; */
    background: white !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

/* </style> */






/* SCroll */
/* Keyframes for global fade-in and slide-up effect */





/* Underlines */
h1,
h3,
h4:not(.team-card h4),
h5,
h6 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    /* Space between heading and line */
    margin-bottom: 20px;
    /* Space below heading */
    text-align: center;
    /* Ensures headings can be centered */
}

h1::after,
h3::after,
h4:not(.team-card h4)::after,
h5::after,
h6::after {
    content: '';
    position: absolute;
    left: 50%;
    /*Start the line from the center */
    bottom: 0;
    transform: translateX(-50%);
    /* Centers the line under the heading */
    width: 100%;
    height: 3px;
    /* Adjust thickness of the shadow line */
    background: linear-gradient(to right, rgba(0, 0, 0, 0), currentColor 50%, rgba(0, 0, 0, 0));
    /* Color of the line matches the heading */
}

.contact-detail::after {
    background: none;
}



h2:not(.carousel-inner h2, .blue-tag-line h2) {
    position: relative;
}

h2:not(.carousel-inner h2, .blue-tag-line h2)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    /* Adjust thickness of the shadow line */
    max-width: 100%;
    /* Makes sure the line doesn’t go beyond the heading */
    width: 70%;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), currentColor 50%, rgba(0, 0, 0, 0));
    /* Color of the line matches the heading */
    pointer-events: none;
    /* Ensures no impact on element interaction */
}

h2:not(.carousel-inner h2, .blue-tag-line h2) {
    display: block;
    /* Keep block display to ensure no layout change */
}

.flow-chart-heading {
    font-size: 30px;
    color: #004a98;
    font-weight: 600;
}

.dark-mode .flow-chart-heading {
    color: #62aaed;
}

.dark-mode .flow-chart img {
    box-shadow: 0 0.5rem 1rem #62aaed26 !important;
}

.flow-chart {

    img,
    video {
        transition: 0.3s ease;
        /* cursor: zoom-in !important; */
        background-color: #e9f1fa;
    }

    /* img:hover {
        scale: 1.02;
    } */
}

.flow-chart-modal {
    color: #004a98;
    user-select: none;
    background-color: #e9f1fa;

    h2 {
        font-weight: 600;
    }
}

.dark-mode .flow-chart-modal {
    color: #004a98;

    h2 {
        color: #004a98 !important;
    }

    button,
    button:hover {
        background-color: transparent;
    }
}

/* .flow-chart-modal video::-webkit-media-controls-volume-slider { */
video::-webkit-media-controls-volume-slider {
    display: none;
}

/* .flow-chart-modal video::-webkit-media-controls-mute-button { */
video::-webkit-media-controls-mute-button {
    display: none;
}

.feature-card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    text-align: center;
    padding: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    height: 100%;
}

.dark-mode .feature-card {
    border-color: #62aaed;
}

.feature-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-card .title {
    font-size: 22px;
    font-weight: 500;
}

.feature-card .title-prod {
    font-size: 20px;
    font-weight: 500;
}

.feature-card p:last-child {
    color: #515151;
}

.dark-mode .feature-card p:last-child {
    color: #adadad
}


.dark-mode .feature-card .icon img {
    filter: invert(53%) sepia(89%) saturate(1193%) hue-rotate(189deg) brightness(109%) contrast(86%);
}

.feature-card h5 {
    color: #004a98;
}

.dark-mode .feature-card h5 {
    color: #62aaed;
    font-weight: 600;
}

.row-equal-height {
    display: flex;
    flex-wrap: wrap;
}

.feature-card .row-equal-height>div {
    display: flex;
}

.readmore {
    color: #004a98;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 10px;
    flex-direction: row;
    cursor: pointer;
    background-color: transparent;
    /* border: 1px solid red; */
    margin: 0 30px;
    width: 30%;
    outline: none;
    align-items: center;
}

.readmore:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

.dark-mode .readmore {
    /* background-color: #495057; */
    color: #62aaed;
}

.main-heading {
    font-size: 40px !important;
}

@media (max-width: 575px) {
    .main-heading {
        font-size: 25px !important;
    }
}

.middle-card-container {
    border: #004a98 1px solid;
    background-color: #00499815;
    display: flex;
    align-items: stretch;
    width: 70%;
    margin: 30px auto;
    transition: 0.3s;
    overflow: hidden;
}

.dark-mode .middle-card-container {
    border: #62aaed 1px solid;
    background-color: #00000015;
}

/* .middle-card-container:hover {
    scale: 1.02;
} */

.middle-card-container .image-box {
    width: 30%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middle-card-container .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.middle-card-container .text-box {
    width: 75%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.middle-card-container .card-title {
    padding-top: 25px;
    color: #004a98;
    font-weight: 600;
}

.dark-mode .middle-card-container .card-title {
    color: #62aaed;
}

.middle-card-container .card-text {
    font-size: 20px;
    text-align: justify;
    margin: 0;
    padding-top: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .middle-card-container {
        /* flex-direction: column; */
        /* align-items: center; */
        width: 96%;
    }

    .middle-card-container .image-box {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .middle-card-container {
        flex-direction: column;
        align-items: center;
        width: 95%;
    }

    .middle-card-container .image-box,
    .middle-card-container .text-box {
        width: 100%;
    }

    .middle-card-container .image-box {
        aspect-ratio: 1;
    }

    .custom-bullet li {
        font-size: 16px !important;
    }

    .custom-bullet {
        width: 95%;
    }
}

.custom-bullet {
    list-style: none;
    padding: 0;
    /* margin: 0; */
    margin-top: 20px;
}

.custom-bullet li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 8px;
    font-size: 20px;
}

.custom-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.dark-mode .custom-bullet li::before {
    filter: invert(61%) sepia(80%) saturate(1257%) hue-rotate(182deg) brightness(98%) contrast(89%);
}

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dark-mode .loader-wrapper {
    background: #232629 !important;
}

.loader-size {
    margin-top: -200px;
    width: 350px;
}

.contact-btn-float {
    position: fixed;
    width: 50px;
    height: auto;
    bottom: 27%;
    right: 0px;
    color: #FFF;
    text-align: center;
    font-size: 35px;
    box-shadow: -2px 2px 3px #9999994f;
    z-index: 100;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
}

.contact-btn-float i {
    color: white;
    transition: 0.3s ease;
}

.contact-btn-float i:hover {
    scale: 1.07;
}

.contact-btn-float .whatsapp {
    background-color: #25d366;
}

.contact-btn-float .email {
    background-color: #5cbdea;

    i {
        color: white;
        font-size: 33px;
    }

    img {
        margin-top: -7px;
        width: 35px;
    }
}

.dark-mode .contact-btn-float {
    box-shadow: 2px 2px 3px #000000;
}


/* @import url(https://fonts.googleapis.com/icon?family=Material+Icons);

@-webkit-keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

@keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

.floating-container {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    margin: 35px 25px;
}

.floating-container:hover {
    height: 300px;
}

.floating-container:hover .floating-button {
    box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
    -webkit-transform: translatey(5px);
    transform: translatey(5px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.floating-container:hover .element-container .float-element:nth-child(1) {
    -webkit-animation: come-in 0.4s forwards 0.2s;
    animation: come-in 0.4s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
    -webkit-animation: come-in 0.4s forwards 0.4s;
    animation: come-in 0.4s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
    -webkit-animation: come-in 0.4s forwards 0.6s;
    animation: come-in 0.4s forwards 0.6s;
}

.floating-container .floating-button {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #2cb3f0;
    bottom: 0;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.floating-container .float-element .material-icons {
    vertical-align: middle;
    font-size: 16px;
}

.floating-container .float-element:nth-child(1) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}

.floating-container .float-element:nth-child(2) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

.floating-container .float-element:nth-child(3) {
    background: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
} */