 *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            margin: 0;
            font-family: Raleway, sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;f
            color: #666565;
            background-color: #effdf5;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            position: relative;
            margin: 0;
        }

        a {
            color: #666565 !important;
        }

        a:hover {
            color: green !important;
        }

        p {
            color: #666565;
        }

        .success-message {
            display: none;
            color: green;
            padding: 10px;
            border: 1px solid green;
            margin-top: 10px;
        }

        .show {
            display: block;
        }

        /*Header Starts*/
        header {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            left: 0;
            transition: left 0.3s ease-in-out;
        }

        header img {
            width: 100%;
            object-fit: cover;
            height: 800px;
            padding: 0px 2px;
            position: relative;
            transform: translateX(-100%);
            animation: slideIn 1s forwards;
        }

        .hero_img::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* 50% dark overlay */
            z-index: 1;
        }

        .hero_img>* {
            position: relative;
            z-index: 2;
            /* Ensures text appears above the dark overlay */
        }

        nav {
            width: 100%;
            height: auto;
            position: fixed;
            z-index: 1;
            transition: opacity 0.3s ease, visibility 0.3s;
        }

        .active {
            color: green !important;
        }

        .logo {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
            width: 30%;
            height: auto;
            float: left;
            animation: slideDown 0.8s ease-out forwards;
            position: relative;
            /* Ensures proper stacking */
        }

        .logo img {
            width: 100px;
            height: 90px;
            object-fit: contain;
            filter: sepia(100%) hue-rotate(50deg) saturate(500%);
        }

        .logo-text {
            margin: 0;
            font-size: 2.5rem;
            position: relative;
            right: 2.5rem;
            font-weight: 700;
            white-space: nowrap;
            color: #bac2ba;
        }

        .green-m {
            color: green;
            /* Pleasant green shade */
            display: inline-block;
            /* Ensures proper spacing */
            font-weight: bold;
            font-size: 3rem;
            text-shadow: 0 0 3px rgba(0, 200, 0, 0.3);
        }

        .menu {
            width: 70%;
            height: auto;
            margin-top: 4rem;
            float: left;
            text-transform: uppercase;
            animation: slideIn 0.8s ease-out forwards;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .menu ul {
            padding: 0;
            margin: 0;
            float: right;
        }

        .menu ul li {
            float: left;
            list-style: none;
            padding-left: 2rem;
        }

        .menu ul li a {
            font-weight: 600;
            transition: all 0.3s ease;
            color: #bac2ba !important;
        }

        .menu ul li a:hover {
            color: green !important;
            display: block;
            transform: translateY(-2px);
        }

        /* Mobile menu styles */
        /* Hamburger Menu (Hidden on Desktop) */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            float: right;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 5px 0;
            transition: 0.4s;
        }

        /* Desktop menu styles */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            text-transform: uppercase;
        }




        /* Initial navbar style */
        #main-nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 0;
            background: transparent;
            z-index: 1000;
            transition: transform 1s ease-in-out;
        }

        #main-nav.slide-out {
            transform: translateX(-100%);
        }

        /* Scrolled navbar style */
        #main-nav.scrolled {
            background: rgb(27 55 47 / 90%);
            box-shadow: 0px 0px 5px 10px rgb(27 55 47 / 90%);
            padding: 10px 0;
        }

        /* Logo and navigation items */
        #main-nav.scrolled .logo-text {
            color: rgb(247, 231, 231) !important;
            /* Light text on dark background */
        }

        #main-nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        #main-nav.scrolled ul li a {
            transition: all 0.3s ease;
            color: rgb(247, 231, 231) !important;
            /* Light text on dark background */
        }

        #main-nav.scrolled ul li a:hover {
            transition: all 0.3s ease;
            color: green !important;
            /* Light text on dark background */
        }

        .header-overlay {
            position: absolute;
            top: 3rem;
            left: 0;
            width: 100%;
            height: 650px;
            /* Match image height */
            pointer-events: none;
            /* Allows clicks to pass through */
        }

        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

        .header_left {
            width: 65%;
            height: auto;
            float: left;
            pointer-events: auto;
            padding: 35rem 0 0 13rem;
            order: 1;
            /* Forces to top */
        }

        .header_right img {
            width: 70%;
            height: 600px;
            object-fit: cover;
            display: block;
            margin: 0px auto;
        }

        .header_left p {
            font-size: 3rem;
            line-height: 2.5rem;
            margin: 0;
            font-weight: 700;
            color: #d3dad6;
            grid-row: 2;
            /* Places the <p> in the bottom row */
        }

        #main-nav.scrolled ul li .active {
            color: green;
        }

        /*Header Ends*/

        /*Main Starts*/
        .main {
            width: 100%;
            height: auto;
            padding: 4rem 0 4rem 0;
            animation: fadeIn 2s ease-out;
            position: relative;
            /* Ensures proper stacking */

        }

        .centered-heading {
            text-align: center !important;
            width: 100%;
        }

        .centered-heading span {
            display: inline-block;
            border-bottom: 2px solid green;
            padding-bottom: 5px;
            /* Optional: adds space between text and underline */
        }

        .main_left {
            width: 70%;
            height: auto;
            float: left;
        }

        .main_left h3 {
            border-bottom: 1px solid #ccc;
            padding-bottom: 2rem !important;
        }

        .main_right {
            width: 30%;
            height: auto;
            float: left;
            padding: 9rem 0.5rem 0 2rem;
        }

        .main_right img {
            width: 100%;
            height: 310px;
            object-fit: contain;

        }

        .main_left img {
            width: 400px;
            float: right;
            height: 250px;
            margin-left: 0.5rem;
        }

        /*Slider Starts*/
        .hero-slider {
            height: 125vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #000;
            /* fallback if no image */
        }

        .hero-content {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .slides {
            flex: 1;
            position: relative;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            padding: 4rem;
            color: white;
            display: none;
        }

        .hero-slide.active {
            display: block;
            animation: fade 1s ease-in-out;
        }

        .header_left {
            max-width: 600px;
        }

        .header_right {
            width: 35%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            position: absolute;
            /* z-index: 99999999999; */
            z-index: 100;
            right: 0;
            margin-top: 14rem !important;
        }

        /* .header_right img {
  width: 80%;
  height: auto;
} */

        @keyframes fade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }



        /*Slider Ends*/
        /*Main Ends*/
        /*Our Features Starts*/
        .our-features {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Creates 3 equal-width columns */
            gap: 20px;
            /* Adds space between packages */
            padding: 20px;
            /* Optional: adds inner spacing */
            animation: fadeIn 2s ease-out;
            position: relative;
            /* Ensures proper stacking */

        }

        .packages {
            /* border: 1px solid green; */
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 10px 12px 16px 18px rgba(5, 143, 23, 0.1);
            transition: all 0.3s ease;
            /* Smooth transition for hover effects */
            border: 1px solid #ddd;
            padding-bottom: 2rem;
            /* Lighter default border */
            /* Remove float and width properties as they're not needed with grid */
        }

        .packages:hover {
            transform: translateY(-5px);
            /* Lift up slightly */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            /* Stronger shadow */
            border-color: #4caf50;
            /* Highlight border color - change to your brand color */
            background-color: #f9f9f9;
            /* Slight background change */
        }

        .packages:hover li {
            transform: translateX(5px);
            transition: transform 0.2s ease;
        }

        .packages:hover h3 {
            color: #2e7d32;
            /* Darker shade of green */
            /* text-decoration: underline; */
        }

        .packages h3,
        h5 {
            text-align: center;
        }

        .pakage_centered-heading {
            grid-column: 1 / -1;
            /* Makes the heading span all columns */
            text-align: center;
            /* Centers the heading text */
        }

        .pakage_centered-heading span {
            display: inline-block;
            border-bottom: 2px solid green;
            padding-bottom: 5px;
        }

        .packages ul {
            flex: 1;
            /* Makes all lists equal height */
            margin: 0;
            padding: 0 0 0 20px;
        }

        .packages ul li {
            margin-bottom: 5px;
            list-style-type: none;
            position: relative;
            padding-left: 15px;
        }

        .packages ul li::before {
            content: "\f105";
            color: green;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
            position: absolute;
            left: 0;
        }

        /*Our Features Ends*/
        /*Client Area Starts*/
        .cleint-area {
            width: 100%;
            height: auto;
            text-align: center;
            margin-top: 4rem;
        }

        .cleint-div {
            width: 70%;
            height: auto;
            margin: 0px auto;
            display: block;
        }

        .square_div {
            width: 100%;
            height: auto;
            align-items: center !important;
            padding: 1rem 0;
        }

        .cleint-div .square_div .square {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #ccc;
            box-shadow: 8px 4px 4px 8px rgba(5, 143, 23, 0.1);
        }



        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 230px;
        }

        .slide {
            min-width: 100%;
            padding: 40px;
            background: white;
        }

        .slide-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .slide h2 {
            color: #333;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .slide p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .slide ul {
            margin-left: 20px;
            margin-bottom: 20px;
            color: #666;
        }

        .slide .author {
            font-weight: bold;
            text-align: right;
            color: #333;
            font-style: italic;
            text-align: center;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(5, 143, 23, 0.1);
        }

        .slider-dot.active {
            background: green;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.7);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .slider-btn:hover {
            background: white;
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        /*Cleint Area Ends*/
        /*App Section Starts*/
        .app-section {
            width: 100%;
            height: auto;
            margin: 5rem 0;
            padding: 5rem 0;
            background-color: #b7e0b8;
            font-size: 1.7rem;
            background-image:
                linear-gradient(rgb(83 127 70 / 90%), rgb(124 211 143 / 40%)), url('../images/device.jpg');
            background-position: center top;
            background-repeat: no-repeat;
            background-size: cover;
        }

        #app-section {
            display: block !important;
        }

        .app-section-mobile {
            display: none;
        }

        .slide-content p {
            color: #180a0a;
        }

        .app-section h2 {
            text-align: left !important;
            color: #fff;
        }

        .app-section_left {
            width: 50%;
            height: auto;
            float: left;
        }

        .app-section_left p {
            color: #fff !important;
        }

        .app-properties {
            width: 100%;
            height: 100px;
            border: 2px solid #b7e0b8;
            border-radius: 20px;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-align: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* Vertical centering */
            align-items: center;
            /* Horizontal centering */
            cursor: pointer;
            transition: background 0.5s;
        }

        .app-properties:hover {
            background-color: #3e8e41;
            border: transparent;
        }

        .app-section_right {
            width: 50%;
            height: auto;
            float: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* .app-section_right img{
  height: 500px;
  position: relative;
  margin-left:20rem;
  margin-top:5rem;
} */
        .slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            margin-left: 0;
            margin-top: 5rem;
            overflow: hidden;
            transform: translateX(-100%);
            animation: slideIn 1s forwards;
        }

        .app-section-mobile .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .app-section-mobile .iphone {
            display: none;
            width: 100%;
        }

        /* .iphone{
  width:70%;
  height: 500px;
  background-image: url('../images/iphone-1.webp');
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  margin-left:20rem;
  margin-top:5rem;
} */
        .iphone {
            width: 100%;
            height: 100%;
            /* background-image: url('../images/iphone-1.webp');
  background-repeat: no-repeat;
  background-position: center center; */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .iphone img {
            object-fit: cover;
            display: block;
            margin-top: 2.3rem;
            margin-left: 18.2rem;
            margin-right: auto;
        }

        .iphone.active {
            opacity: 2;
        }

        /* .iphone img{
  object-fit: contain;
  display: block;
  margin-top:0.6rem;
  margin-left: 6rem;
  margin-right: auto;
} */
        /*App Section Ends*/
        /*Contact Starts*/
        .contact-area {
            width: 100%;
            height: auto;
            text-align: center;
            margin-top: 4rem;
            display: grid;
            gap: 20px;
        }

        .contact-area ul {
            flex: 1;
            /* Makes all lists equal height */
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-area ul li {
            float: left;
            list-style: none;
            text-align: left !important;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-area ul li i {
            width: 50px;
            height: 50px;
            border: 1px solid green;
            float: left;
            font-size: 2rem;
            border-radius: 50%;
            background-color: #2e7d32;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.6rem;
        }

        .contact-area ul li i:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
            background-color: #3e8e41;
        }

        .contact-area ul li::before {
            content: "";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
            position: absolute;
            left: 0;
        }

        .phone-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .phone-item .numbers {
            display: flex;
            flex-direction: column;
        }

        /* Map section styles */
        .map-section {
            position: relative;
            height: 70vh;
            margin: 20px;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .view-map-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: #4caf50;
            color: white !important;
            padding: 10px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            z-index: 100;
        }

        .view-map-btn:hover {
            background: #3e8e41;
        }

        .contact-form-section {
            width: 100%;
            padding: 20px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .form-group select {
            height: 40px;
        }

        .submit-wrapper {
            text-align: center;
            width: 100%;
        }

        .submit-btn {
            background: #4caf50;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s;
            display: inline-block;
            width: 20%;
        }

        .submit-btn:hover {
            background: #3e8e41;
        }


        .submit-btn_slider {
            background: #4caf50;
            color: white !important;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s;
            display: inline-block;
            width: 28%;
        }

        .submit-btn_slider:hover {
            background: #3e8e41;
            text-decoration: none;
            color: #fff !important;
        }

        /*Contact Ends*/

        /*Footer Starts*/
        footer {
            width: 100%;
            height: 50px;
            background: rgb(27 55 47 / 90%);
            box-shadow: 0px -5px 10px 0px rgb(27 55 47 / 90%);
            ;
            margin-top: 5rem;
            color: #fff;
            text-align: center;
            padding: 2rem 0 0;
        }

        @media (max-width: 1200px) {
            .hero-slider {
                height: 120vh;
            }
        }

        /*Footer Ends*/
        @media (max-width: 1100px) {
            .hero-slider {
                height: 60vh;
            }

            .header_left {
                padding: 35rem 0 0 6rem;
            }

            #main-nav ul {
                list-style: none;
                display: flex;
                gap: 0.5rem;
            }

            .nav-links.menu-open {
                max-height: 1000px;
                opacity: 1;
                position: relative;
                right: -12rem !important;
                top: -1rem !important;
            }
        }

        @media (max-width: 950px) {
            .logo-text {
                font-size: 1.5rem;
            }

            header img {
                width: 100%;
                height: 60vh;
            }

            .header_left {
                width: 100%;
                padding: 10rem 0 0 3rem;
            }

            .header_left p {
                /* color:rgb(36, 34, 34) !important; */
                color: white !important;
            }

            .header_right {
                display: none;
            }

            header img {
                width: 100% !important;
            }

            .header_right img {
                width: 100%;
                object-fit: cover;
            }

            .header_left p {
                line-height: 3rem;
            }

            .hero-slide {
                padding: 5rem 0 0;
            }

            /*Main Starts*/
            .main_left {
                width: 100%;
            }

            .main_right {
                width: 100%;
            }

            /*Main Ends*/
            .our-features {
                grid-template-columns: repeat(1, 1fr) !important;
            }

            .packages ul {
                padding: 0 0 20px 20px;
            }

            .map-section {
                height: 50vh;
                margin: 10px;
            }

            .contact-area ul li {
                width: 100% !important;
                align-items: flex-end;
                justify-content: left;
            }

            .contact-container {
                flex-direction: column;
            }

            .contact-form-section {
                width: 100%;
                border-right: none;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .submit-btn {
                width: 100%;
            }

            /* .app-section_left {
                width: 100%;
                height: auto;
            } */

            /* .app-section_right {
                display: none;
            } */

            .app-section h2 {
                font-size: 2.2rem;
            }

            .app-properties {
                font-size: 2rem;
            }

            .hero-slider {
                /* height: 50vh; */
            }

            .cleint-div {
                width: 100%;
            }

            .slider {
                height: 400px;
            }

            /* .app-section {
                height: 60vh;
            } */

            .slider-container {
                width: 100%;
                margin-left: 0 !important;
            }

            #main-nav ul {
                list-style: none;
                display: flex;
                gap: 0.5rem;
            }

            .nav-links.menu-open {
                max-height: 1000px;
                opacity: 1;
                position: relative;
                right: -5rem !important;
                top: -1rem !important;
            }

            .logo {
                margin-left: -2rem;
            }

            .iphone img {
                margin-left: 10.2rem;
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .main_right {
                padding: 2rem 0.5rem 0 1rem;
            }

            .menu {
                width: 100%;
                margin-top: 2rem;
            }

            .app-section-mobile {
                display: none;
            }

            #app-section {
                display: block !important;
            }

            .hamburger {
                display: block;
                position: absolute;
                right: 0 !important;
                top: -9rem;
            }

            .iphone img {
                object-fit: cover;
                display: block;
                margin-top: 2.3rem;
                margin-left: 6.2rem;
                margin-right: auto;
            }

            .app-section-mobile .iphone.active {
                display: block;
            }

            .slider-container {
                transform: none;
                animation: none;
                margin-top: 1rem;
            }

            .nav-links {
                position: absolute;
                top: 0;
                left: 0;
                z-index: -999;
                width: 100%;
                background: white;
                flex-direction: column;
                border-radius: 10px;
                padding: 0.8rem 0 !important;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }

            .main_left img {
                width: 100%;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                display: block;
                margin: 0;
                float: none !important;
                padding: 10px 20px;
            }

            /* .app-section {
                height: 90vh;                
            } */

            .menu ul li {
                float: none;
                padding: 10px 0;
                text-align: center;
                padding-left: 0;
            }

            #main-nav.scrolled ul li a {
                transition: all 0.3s ease;
                color: rgb(65 60 60) !important;
            }

            .submit-btn_slider {
                width: 40%;
            }

            .hero-slider {
                height: 50vh;
            }

            /* Hamburger animation */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        @media (max-width: 600px) {
            .hero-slider {
                height: 100vh;
            }

            .app-section_right {
                width: 100%;
            }

            #app-section {
                /* display: none !important; */
            }

            .app-section-mobile {
                display: block !important;
            }

            .app-section_left h2 {
                text-align: center !important;
            }

            .app-section_left {
                width: 100%;
                text-align: center;
            }

            .iphone img {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-slide {
                padding: 20rem 0 0;
            }
        }

        @media(max-width:380px) {
            .hero-slide {
                padding: 8rem 0 0;
                font-size: 0rem;
            }

        }

        @keyframes slideIn {
            to {
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }