@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

:root {
    --primary-color: #b1d4f1;
    --overlay-color: #e6dcd3;
    --black-color: #141414;
    --front-color: #f1ddcf;
    --white-color: #ffffff;
    --menu-speed: 1.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: fit-content;
    font-family: "Noto Serif Bengali", serif;
    font-family: "Mooli", sans-serif;
    overflow-x: hidden;
    background-color: var(--primary-color);
    scroll-behavior: smooth;

}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.main {
    width: 100%;
    overflow-x: hidden;
    height: 100vh;
}

/* ANIMATIONS-------------------------------------------------------------------------------- */

/* Navbar------------------------------------------------------------------------------------- */
.navbar {
    width: 100%;
    height: 6em;
    padding: 2em;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Right Side Logo------------------------------------------------------------------- */
.logo img {
    cursor: pointer;
    width: 7rem;
    height: auto;
    transition: all 0.4s ease-in-out;
}

.logo img:hover {
    scale: 1.2;
}

/* MENU STYLES----------------------------------------------------------------------------- */
.menu-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.menu-wrap .toggler {
    position: absolute;
    z-index: 999999;
    cursor: pointer;
    width: 5.5em;
    height: 5em;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: fixed;
    z-index: 9999;
    width: 4.5em;
    height: 4.5em;
    padding: 1em;
    background: transparent;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line------------------------------------------------------------------------------ */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 999;
    top: -10px;
    width: 150%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down---------------------------------------------------------------------------- */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation--------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X----------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked------------------------------------------------------------- */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu----------------------------------------------------------------------------------- */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    z-index: 999;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
    background-position: center;
    background-size: cover;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul {
    margin-top: 5em;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 2.2em;
    padding: 0.1em;
    margin-left: -20em;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
    letter-spacing: 7px;
    transition: 0.4s ease-in-out;
}

.menu-wrap .menu>div>div>ul>li>a:hover {
    letter-spacing: 0;
    text-shadow: 0.5px 0.5px 1px var(--black-color);
}

/* Menu Part End-------------------------------------------------------------------------------- */




/* Cinematic Layer Up--------------------------------------------------------------------------- */
/* Opening Overlay Animations--------------------------------------------------------------- */
.open .layer:nth-child(2) {
    background: var(--black-color);
    z-index: 1;
    animation-delay: 1s;
}

@keyframes open {
    0% {
        transform: scaleY(1)
    }

    100% {
        transform: scaleY(0);
    }
}

/* ANIMATIONS-------------------------------------------------------------------------------- */
.open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10000;
}

.open .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: top;
    animation: open 1s ease-in-out forwards;
}

.open .layer:nth-child(1) {
    background: var(--front-color);
    z-index: 2;
}



/* Landing Page Content------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 1em 5em;
    height: calc(100vh - 6em);
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side Contents---------------------------------------------------------------------------- */
.banner-text {
    position: absolute;
    top: 8%;
    left: 5%;
    max-width: 48em;
}

/* Heading Content------------------------------------------------------------------------------ */
.banner-text h2 {
    position: relative;
    margin: 0;
    padding: 0;
    margin-bottom: 0.5em;
    text-align: center;
    display: inline-block;
    transform-origin: left;
    color: var(--black-color);
    transform: scaleX(0);
    font-size: 3.5em;
    animation-delay: 1.5s;
    animation: revealTextReverse 1s ease-in-out forwards;
}

.banner-text h2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    width: 110%;
    height: 100%;
    transform-origin: right;
    animation: revealText 1s ease-in-out forwards;
    animation-delay: 1.5s;
}

/* Paragraph Content--------------------------------------------------------------------------- */
.banner-text p {
    color: var(--black-color);
    opacity: 0;
    font-weight: 500;
    text-align: justify;
    font-size: 1.2em;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
}

/* Button Part------------------------------------------------------------------------------------ */


#container {

    width: 100%;
    margin: 0 auto;
    justify-content: start;
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 3s;
}

.button {
    position: absolute;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    width: 150px;
    margin-top: 2em;
    border-radius: 0.5em;
    border: 2px solid #000000;
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1em;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.button a {
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
}

#button-2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#button-2 a {
    position: relative;
    transition: all .35s ease-Out;
}

#slided {
    width: 100%;
    height: 100%;
    left: -400px;
    background: var(--black-color);
    position: absolute;
    transition: all .35s ease-Out;
    bottom: 0;
}

#button-2:hover #slided {
    left: 0;
}

#button-2:hover a {
    color: var(--primary-color);
}



/* Landing Page Right Side Image-------------------------------------------------------------   */
.images {
    margin-left: 50em;
    margin-top: -22em;
    list-style: none;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.images:hover {
    transform: translateY(-1em);
}

.list {
    list-style: none;
    position: absolute;
}

.bulb {
    position: inherit;
    opacity: 0;
    width: 28em;
    height: 20em;
    box-shadow: 1px 1px 5px 2px var(--black-color);
    border-radius: 0.5em;
    transition: all 0.4s ease-in-out;
    animation: fadeIn 1s linear forwards;
    animation-delay: 4s;
}

.bulb:hover {
    transform: translateY(-5%);
}

.list:nth-child(4) {
    animation: xfade 16s 0s infinite;
}

.list:nth-child(3) {
    animation: xfade 16s 4s infinite;
}

.list:nth-child(2) {
    animation: xfade 16s 8s infinite;
}

.list:nth-child(1) {
    animation: xfade 16s 12s infinite;
}

@keyframes xfade {
    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    92% {
        opacity: 0;
    }
}

/* Text Reveal Animations----------------------------------------------------------------------- */
@keyframes revealText {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0)
    }
}

@keyframes revealTextReverse {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1)
    }
}

/* Fade In Animation---------------------------------------------------------------------------- */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade In Animation End-----------------------------------------------------------------------*/

/* Part After Landing Page--------------------------------------------------------------------- */
.sec-01,
.sec-02 {
    margin: 1em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 4em;
    color: var(--black-color);
}

.mid-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-title {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.mid-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-content .mid-images {
    position: relative;
    width: 45em;
    height: 25em;
    z-index: -999;
    overflow: hidden;
}

.mid-content .mid-images img {
    z-index: -999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5em;
}

.mid-content .text-box {
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    color: var(--overlay-color);
    backdrop-filter: blur(20px);
    padding: 0.5em;
    max-width: 35em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
    transform: translate(-3em, 2em);
}

.mid-content>.text-box>p {
    padding: 1em;
    font-size: 1.2em;
    text-align: justify;
}

.mid-content>.text-box>a {
    text-decoration: none;
    cursor: pointer;
    padding: 0.5em 1.5em;
    font-size: 1em;
    outline: none;
    border: none;
    border-radius: 0.5em;
    background-color: var(--primary-color);
}



.media-icons {
    margin-top: 2em;
}

.media-icons a {
    color: var(--black-color);
    font-size: 1.5em;
    margin: 0.5em;
    transition: all 0.5s ease-in-out;
}

.media-icons a:hover {
    text-shadow: 0px 0px 5px var(--black-color);
}

.section-title {
    font-size: 3em;
    margin: 0.5em;
}

.info-title {
    font-size: 2em;
    margin-bottom: 0.5em;
}


/* Bottom Slider===================================================== */
.wrapper {
    width: 100%;
    position: relative;
    perspective: 500px;
    margin: 4em 0;
}

.sLider {
    position: relative;
    width: 70%;
    height: 80vh;
    margin: 0 auto;
    overflow: visible;
    perspective: 500px;
    background: var(--primary-color);
}

.slide {
    text-align: center;
    width: 100%;
    height: 100%;
    animation-name: slideList;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    transition-timing-function: ease-in-out;
    position: absolute;
    bottom: 0px;
    transform-origin: bottom;
    transform: rotateX(90deg);
    opacity: 0;
    border-radius: 0.8rem;
}

.slide1 {
    background-image: url(./Assets//Images//Working//Image\ -\ 47.JPG);
    background-position: center;
    background-size: cover;
    animation-delay: 0s;
    z-index: 5;
}

.slide2 {
    background-image: url(./Assets//Images//Working//Image\ -\ 36.JPG);
    background-position: center;
    background-size: cover;
    animation-delay: 4s;
    z-index: 4;
}

.slide3 {
    background-image: url(./Assets//Images//Working//Image\ -\ 45.JPG);
    background-position: center;
    background-size: cover;
    animation-delay: 8s;
    z-index: 3;
}

.slide4 {
    background-image: url(./Assets//Images//Working//Image\ -\ 31.JPG);
    background-position: center;
    background-size: cover;
    animation-delay: 12s;
    z-index: 2;
}

.slide5 {
    background-image: url(./Assets//Images/Working//IMG_1919\ \(1\).JPG);
    background-position: center;
    background-size: cover;
    animation-delay: 16s;
    z-index: 1;
}

@keyframes slideList {
    0% {
        transform: rotateX(-90deg);
        opacity: 0;
        transform-origin: top
    }

    3% {
        transform: rotateY(0deg);
        opacity: 1;
        z-index: 6
    }

    18% {
        transform: rotateX(0deg);
        opacity: 1;
        z-index: 6
    }

    23% {
        transform: rotateX(90deg);
        opacity: 0;
        transform-origin: bottom
    }

    100% {
        transform: rotateX(90deg);
        opacity: 0;
        transform-origin: bottom
    }
}

@-webkit-keyframes slideList {
    0% {
        -webkit-transform: rotateX(-90deg);
        opacity: 0;
        -webkit-transform-origin: top
    }

    3% {
        -webkit-transform: rotateY(0deg);
        opacity: 1;
        z-index: 6
    }

    18% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
        z-index: 6
    }

    23% {
        -webkit-transform: rotateX(90deg);
        opacity: 0;
        -webkit-transform-origin: bottom
    }

    100% {
        -webkit-transform: rotateX(90deg);
        opacity: 0;
        -webkit-transform-origin: bottom
    }
}



/*optional*/

.slideContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5)
}










/* Footer Part Start---------------------------------------------------------------------------------- */
.footer {
    width: 100%;
    background-color: #141414;
    color: var(--primary-color);
    padding: 2em 4em;
}

.footer-logo img {
    cursor: pointer;
    width: 7em;
    transition: all 0.4s ease-in-out;
}

.footer-logo img:hover {
    scale: 1.2;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-content {
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
}

.footer-menu {
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    align-items: center;
    display: inline-block;
    margin-top: 1em;
    margin-right: 3em;
    color: var(--primary-color);
}

.footer-menu li:last-child {
    margin-right: 0;
}

.footer-menu a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.footer-menu a:hover {
    color: var(--overlay-color);
    text-shadow: 0px 0px 5px var(--overlay-color);
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin-top: 1em;
    display: inline-block;
    margin-right: 2em;
}

.social-icons li:last-child {
    margin-right: 0;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5em;
    transition: all 0.4s ease-in-out;
}

.social-icons a:hover {
    color: var(--overlay-color);
    text-shadow: 0px 0px 8px var(--overlay-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--front-color);
    font-size: 0.8em;
}

.footer-bottom p a {
    text-decoration: none;
    color: var(--front-color);
}

.footer-bottom p a:hover {
    color: var(--primary-color);
}

/* Footer Part End------------------------------------------------------------------------------- */

@media only screen and (min-width:200px) and (max-width:321px) {

    /* CSS styles for extra small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 6em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 4em;
        height: 2em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 3.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 6.5em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.5em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    .hero {
        width: 100%;
        height: 120vh;
        margin: 0;
        padding: 0.5em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text h2 {
        margin: 0;
        padding: 0;
        font-size: 2em;
        margin-bottom: 1em;
        margin-top: -2.5em;
    }

    .banner-text p {
        max-width: 18em;
        margin: 0;
        padding: 0;
        font-size: 1em;
        margin-bottom: 1em;
        margin-top: 14em;
        animation-delay: 3s;
    }

    .container {
        margin: 0;
        padding: 0;
        margin-left: 20em;
        margin-top: 1em;
    }


    /* Button Part------------------------------------------------------------------------------------ */


    .button {
        margin-left: 0em;
        margin-top: -0.1em;
        margin-bottom: 2em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: -19em;
        margin-top: -35em;
    }

    .bulb {
        width: 19em;
        height: 14em;
        animation-delay: 2s;
    }

    /* Annimation Parts============================= */

    .mid-body {
        width: 100%;
        margin: 0;
        padding: 0.5em;
    }


    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        margin: 0em;
        flex-direction: column;
        padding: 0;
        margin-top: -1em;

    }

    .mid-content {
        flex-direction: column;
        gap: 1em;
    }

    .mid-content .mid-images {
        width: 100%;
        height: 15em;
    }

    .mid-content .text-box {
        max-width: 100%;
        transform: translate(0em, 0em);
    }

    .mid-content>.text-box>p {
        padding: 0.5em;
        font-size: 1em;
        text-align: justify;
    }

    .section-title {
        font-size: 1.5em;
        margin: 0.5em;
        margin-top: 1.5em;
    }

    .info-title {
        font-size: 1.4em;
        font-weight: 500;
        margin-bottom: 0.5em;
    }

    .wrapper {
        margin: 1em 0;
    }

    .sLider {
        width: 100%;
        height: 50vh;
    }

    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 10em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width:321px) and (max-width:376px) {

    /* CSS styles for extra small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 6em;
        padding: 0.8em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1em;
        width: 5em;
        height: 3em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 3.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 9em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 1.8em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    .hero {
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0.5em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text h2 {
        margin: 0;
        padding: 0;
        font-size: 2em;
        margin-bottom: 1em;
        margin-top: -2.5em;
    }

    .banner-text p {
        max-width: 21em;
        margin: 0;
        padding: 0;
        font-size: 1em;
        margin-bottom: 1em;
        margin-top: 15em;
        animation-delay: 3s;
    }

    .container {
        margin: 0;
        padding: 0;
        margin-left: 20em;
        margin-top: 1em;
    }


    /* Button Part------------------------------------------------------------------------------------ */


    .button {
        margin-left: 0;
        margin-top: -0.1em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: -21em;
        margin-top: -41em;
    }

    .bulb {
        width: 21em;
        height: 15em;
        animation-delay: 2s;
    }

    /* Annimation Parts============================= */

    .mid-body {
        width: 100%;
        margin: 0;
        padding: 0.5em;
    }


    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        margin: 0em;
        flex-direction: column;
        padding: 0;
        margin-top: 0em;

    }

    .mid-content {
        flex-direction: column;
        gap: 1em;
    }

    .mid-content .mid-images {
        width: 99%;
        height: 18em;
    }

    .mid-content .text-box {
        max-width: 100%;
        transform: translate(0em, 0em);
    }

    .mid-content>.text-box>p {
        padding: 0.5em;
        font-size: 1em;
        text-align: justify;
    }

    .section-title {
        font-size: 1.8em;
        margin: 0.5em;
        margin-top: 0.5em;
    }

    .info-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .wrapper {
        margin: 1em 0;
    }

    .sLider {
        width: 100%;
        height: 50vh;
    }

    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 10em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 1em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width:377px) and (max-width:426px) {

    /* CSS styles for extra small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 6em;
        padding: 1em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 5em;
        height: 3em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.8em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 3.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 10em 18em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 2em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    .hero {
        width: 100%;
        height: 88vh;
        margin: 0;
        padding: 0.2em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        width: 95%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 1em;
    }

    .banner-text h2 {
        padding: 0;
        font-size: 2em;
        margin-bottom: 1em;
        margin-top: -2em;
        margin-left: 0;
        margin-right: 0;
    }

    .banner-text p {
        max-width: 24em;
        padding: 0 1em;
        font-size: 1em;
        margin-left: -1.5em;
        margin-bottom: 1em;
        margin-top: 18em;
        animation-delay: 3s;
    }

    .container {
        margin: 0;
        padding: 0;
        margin-left: 20em;
        margin-top: 1em;
    }


    /* Button Part------------------------------------------------------------------------------------ */


    .button {
        margin-left: 1em;
        margin-top: -0.1em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: -23em;
        margin-top: -35em;
    }

    .bulb {
        width: 23em;
        height: 17em;
        animation-delay: 2s;
    }

    /* Annimation Parts============================= */

    .mid-body {
        width: 100%;
        margin: 0;
        padding: 0.5em;
    }


    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        margin: 0em;
        flex-direction: column;
        padding: 0.5em;
        margin-top: 1em;

    }

    .main-title {
        font-size: 1.3em;
        margin-bottom: 0.5em;
    }

    .mid-content {
        flex-direction: column;
        gap: 1em;
    }

    .mid-content .mid-images {
        width: 100%;
        height: 18em;
    }

    .mid-content .text-box {
        max-width: 100%;
        transform: translate(0em, 0em);
    }

    .mid-content>.text-box>p {
        padding: 0.5em;
        font-size: 1em;
        text-align: justify;
    }

    .section-title {
        font-size: 1.8em;
        margin: 0.5em;
        margin-top: -1em;
    }

    .info-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .wrapper {
        margin: 0 auto;
    }

    .sLider {
        width: 92%;
        height: 45vh;
    }

    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 10em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 426px) and (max-width:597px) {

    /* CSS styles for extra small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 6em;
        padding: 1em 2em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1em;
        width: 5em;
        height: 3em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.5em;
        left: 1.01em;
        width: 4em;
        height: 3.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 6em 13em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.5em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    .hero {
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0.5em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text h2 {
        margin: 0;
        padding: 0;
        font-size: 2.5em;
        margin-bottom: 1em;
        margin-top: -2em;
    }

    .banner-text p {
        max-width: 34em;
        margin: 0;
        padding: 0;
        font-size: 1em;
        margin-bottom: 1em;
        margin-top: 20em;
        animation-delay: 3s;
    }

    .container {
        margin: 0;
        padding: 0;
        margin-left: 20em;
        margin-top: 1em;
    }


    /* Button Part------------------------------------------------------------------------------------ */


    .button {
        margin-left: 0em;
        margin-top: -0.1em;
        animation-delay: 4s;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: -28em;
        margin-top: -28em;
    }

    .bulb {
        width: 28em;
        height: 18em;
        animation-delay: 2s;
    }

    /* Annimation Parts============================= */

    .mid-body {
        width: 100%;
        margin: 0;
        padding: 0em;
        overflow-x: hidden;
    }


    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        margin: 0em;
        flex-direction: column;
        padding: 0;
        margin-top: 2em;

    }

    .main-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .mid-content {
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 1em;
    }

    .mid-content .mid-images {
        max-width: 34em;
        height: 20em;
    }

    .mid-content .text-box {
        max-width: 34em;
        transform: translate(0em, 0em);
    }

    .mid-content>.text-box>p {
        padding: 0.5em;
        font-size: 1em;
        text-align: justify;
    }

    .section-title {
        font-size: 1.8em;
        margin: 0.5em;
        margin-top: 0em;
    }

    .info-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .wrapper {
        margin: 1em 0;
    }

    .sLider {
        width: 92%;
        height: 70vh;
    }

    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 10em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5em 3em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1.2rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 1em;
        font-weight: 500;
        text-align: center;
    }

    .footer-bottom p a:hover {
        color: var(--primary-color);
    }


}

@media only screen and (min-width: 598px) and (max-width:769px) {


    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        position: relative;
        width: 100%;
        padding: 1em;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: absolute;
        right: 1rem;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        width: 5em;
        height: 4em;
        top: 1em;
        left: 1em;
        opacity: 0;
    }

    .menu-wrap .hamburger {
        position: fixed;
        width: 4em;
        height: 4.5em;
        top: 0.5em;
        left: 1em;
    }

    .menu-wrap .menu>div>div>ul {
        margin-top: 5em;
    }

    .menu-wrap .menu>div>div>ul>li {
        font-size: 1.8em;
        padding: 0.05em;
        margin-left: -12em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    /* Landing Page Content------------------------------------------------------------------------- */
    .hero {
        position: relative;
        height: fit-content;
        flex-direction: row;
    }

    /* Left Side Contents---------------------------------------------------------------------------- */
    .banner-text {
        position: absolute;
        top: 8%;
        left: 5%;
        max-width: 26em;
    }

    /* Heading Content------------------------------------------------------------------------------ */
    .banner-text h2 {
        font-size: 2em;
    }

    /* Paragraph Content--------------------------------------------------------------------------- */
    .banner-text p {
        font-size: 1em;
    }

    /* Button Part------------------------------------------------------------------------------------ */

    .button {
        margin-left: 0em;
        font-size: 0.8em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: 25em;
        margin-top: 4em;
        list-style: none;
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .bulb {
        width: 17em;
        height: 15em;
    }

    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        width: 100%;
        margin: 0em;
        margin-top: 0em;
        flex-direction: row;
        padding: 0.5em 4em;
    }

    .main-title {
        margin-top: 2em;
        font-size: 1.5em;
    }

    .mid-content {
        position: relative;
        flex-direction: row;
        width: 100%;
        padding: 0 0.5em;
    }

    .mid-content .mid-images {
        width: 40em;
        height: 20em;
    }

    .mid-content:nth-child(1) .mid-images {
        width: 80vw;
        height: 20em;
    }

    .mid-content:last-child .mid-images {
        width: 80vw;
        height: 20em;
    }

    .mid-content .text-box {
        max-width: 40%;
        transform: translate(-2em, 2em);
    }

    .mid-content>.text-box>p {
        font-size: 0.8em;
        text-align: justify;
    }

    .media-icons {
        margin-top: 2em;
    }

    .section-title {
        font-size: 2em;
        margin-top: 0.2em;
    }

    .mid-container {
        margin-left: 2em;
    }

    .info-title {
        font-size: 1em;
        margin-bottom: 0.5em;
    }

    .media-info {
        width: 25em;
        margin-left: 2em;
    }

    .media-info li {
        font-size: 1em;
    }

    /* .mid-images:last-child {
        max-width: 20em;
        margin-right: 2em;
    } */

    .wrapper {
        margin: 3em 0;
    }

    .sLider {
        width: 92%;
        height: 70vh;
    }

    /* Footer Part Start---------------------------------------------------------------------------------- */
    .footer {
        padding: 1em;
    }

    .footer-logo img {
        width: 8em;
    }

    .footer-content {
        margin: 1em 0;
        gap: 1em;
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer-menu li {
        margin-top: 0em;
        margin-right: 0em;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2em;
        justify-content: space-evenly;
        align-items: center;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 1em;
    }

    .footer-bottom p a {
        text-decoration: none;
        color: var(--front-color);
    }

    .footer-bottom p a:hover {
        color: var(--primary-color);
    }

    /* Footer Part End------------------------------------------------------------------------------- */


}


@media only screen and (min-width: 769px) and (max-width:1024px) {


    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        padding: 1em;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        width: 5em;
        height: 4em;
        top: 2em;
        left: 1.8em;
        opacity: 0;
    }

    .menu-wrap .hamburger {
        position: fixed;
        width: 4em;
        height: 4.5em;
        top: 1.5em;
        left: 1.5em;
    }

    .menu-wrap .menu>div>div>ul {
        margin-top: 4em;
    }

    .menu-wrap .menu>div>div>ul>li {
        font-size: 1.8em;
        padding: 0.15em;
        margin-left: -15em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    /* Landing Page Content------------------------------------------------------------------------- */
    .hero {
        position: relative;
        height: fit-content;
        flex-direction: row;
    }

    /* Left Side Contents---------------------------------------------------------------------------- */
    .banner-text {
        position: absolute;
        top: 8%;
        left: 5%;
        max-width: 35em;
    }

    /* Heading Content------------------------------------------------------------------------------ */
    .banner-text h2 {
        font-size: 2.2em;
    }

    /* Paragraph Content--------------------------------------------------------------------------- */
    .banner-text p {
        font-size: 1em;
    }

    /* Button Part------------------------------------------------------------------------------------ */

    .button {
        font-size: 0.8em;
        margin-left: 0em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: 35em;
        margin-top: 2.5em;
        list-style: none;
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .bulb {
        width: 22em;
        height: 15em;
        animation-delay: 2.5s;
    }

    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        width: 100%;
        margin: 0em;
        margin-top: 0em;
        flex-direction: row;
        padding: 0.5em 4em;
    }

    .main-title {
        margin-top: 2em;
        font-size: 1.5em;
    }

    .mid-content {
        flex-direction: row;
    }

    .mid-content .mid-images {
        width: 50em;
        height: 22em;
    }


    .mid-content .text-box {
        max-width: 28em;
        transform: translate(-2em, 2em);
    }

    .mid-content>.text-box>p {
        font-size: 1em;
        text-align: justify;
    }

    .media-icons {
        margin-top: 3em;
    }

    .section-title {
        font-size: 2em;
        margin-top: 0.2em;
    }

    .mid-container {
        margin-left: 2em;
    }

    .info-title {
        font-size: 1.2em;
        margin-bottom: 0.5em;
    }

    .mid-images:last-child {
        max-width: 30em;
        margin-right: 0em;
    }

    .wrapper {
        margin: 3em 0;
    }

    .sLider {
        width: 70%;
        height: 80vh;
    }

    /* Footer Part Start---------------------------------------------------------------------------------- */
    .footer {
        padding: 1em;
    }

    .footer-logo img {
        width: 8em;
    }

    .footer-content {
        margin: 1em 0;
        gap: 1em;
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer-menu li {
        margin-top: 0em;
        margin-right: 0em;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2em;
        justify-content: space-evenly;
        align-items: center;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 1em;
    }

    .footer-bottom p a {
        text-decoration: none;
        color: var(--front-color);
    }

    .footer-bottom p a:hover {
        color: var(--primary-color);
    }

    /* Footer Part End------------------------------------------------------------------------------- */


}

@media only screen and (min-width: 1025px) and (max-width:1440px) {

    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        padding: 1em;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 2rem;
        top: 1.5em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        width: 6.5em;
        height: 5em;
        top: 2em;
        left: 1.5em;
        opacity: 0;
    }

    .menu-wrap .hamburger {
        position: fixed;
        width: 4.5em;
        height: 4.5em;
        top: 1.5em;
        left: 1.5em;
    }

    .menu-wrap .menu>div>div>ul {
        margin-top: 4em;
    }

    .menu-wrap .menu>div>div>ul>li {
        font-size: 2.2em;
        padding: 0.2em;
        margin-left: -18em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    /* Landing Page Content------------------------------------------------------------------------- */
    .hero {
        position: relative;
        height: fit-content;
        flex-direction: row;
    }

    /* Left Side Contents---------------------------------------------------------------------------- */
    .banner-text {
        position: absolute;
        margin-top: 7vh;
        left: 5%;
        max-width: 45em;
    }

    /* Heading Content------------------------------------------------------------------------------ */
    .banner-text h2 {
        font-size: 3em;
    }

    /* Paragraph Content--------------------------------------------------------------------------- */
    .banner-text p {
        font-size: 1.3em;
    }

    /* Button Part------------------------------------------------------------------------------------ */

    .button {
        font-size: 1em;
        margin-left: 0em;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: 50em;
        margin-top: 7em;
        list-style: none;
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .bulb {
        width: 30em;
        height: 20em;
        animation-delay: 3.5s;
    }

    /* Part After Landing Page--------------------------------------------------------------------- */
    .sec-01,
    .sec-02 {
        width: 100%;
        margin: 0em;
        margin-top: 0em;
        flex-direction: row;
        padding: 0.5em 4em;
    }

    .main-title {
        margin-top: 2em;
        font-size: 1.5em;
    }

    .mid-content {
        flex-direction: row;
    }

    .mid-content .mid-images {
        width: 45em;
        height: 25em;
    }


    .mid-content .text-box {
        max-width: 35em;
        transform: translate(-2em, 2em);
    }

    .mid-content>.text-box>p {
        font-size: 1.3em;
        text-align: justify;
    }

    .media-icons {
        margin-top: 3em;
    }

    .media-icons a {
        font-size: 2em;
    }

    .section-title {
        font-size: 3em;
        margin-top: 0.2em;
    }

    .mid-container {
        margin-left: 2em;
    }

    .info-title {
        font-size: 2em;
        margin-bottom: 0.5em;
    }

    .mid-images:last-child {
        max-width: 30em;
        margin-right: 0em;
    }

    .wrapper {
        margin: 3em 0;
    }

    .sLider {
        width: 70%;
        height: 80vh;
    }

    /* Footer Part Start---------------------------------------------------------------------------------- */
    .footer {
        padding: 1em;
    }

    .footer-logo img {
        width: 8em;
    }

    .footer-content {
        margin: 2em 1em;
        display: flex;
        justify-content: space-between;
    }

    .footer-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        gap: 2em;
    }

    .footer-menu li {
        margin-top: 1em;
        margin-right: 0em;
    }

    .footer-menu li a {
        font-size: 1.2em;
    }

    .social-icons li a {
        font-size: 1.5em;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5em;
        justify-content: space-evenly;
        align-items: center;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 1em;
    }

    .footer-bottom p a {
        text-decoration: none;
        color: var(--front-color);
    }

    .footer-bottom p a:hover {
        color: var(--primary-color);
    }
}

@media only screen and (min-width: 1441px) and (max-width:2561px) {


    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 98%;
        height: fit-content;
        padding: 4em;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        width: 18rem;
        right: 2.5rem;
        top: 1.5em;
    }


    /* MENU STYLES----------------------------------------------------------------------------- */

    .menu-wrap .toggler {
        position: fixed;
        width: 10em;
        height: 10em;
        left: 2.5em;
        top: 2em;
        opacity: 0;
    }

    .menu-wrap .hamburger {
        position: fixed;
        width: 7.5em;
        height: 8em;
        left: 2.5em;
        top: 2em;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger>div {
        height: 4px;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -25px;
        height: 4px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 25px;
    }

    .menu-wrap .menu>div>div>ul {
        margin-top: 10em;
    }

    .menu-wrap .menu>div>div>ul>li {
        font-size: 4.2em;
        padding: 0.2em;
        margin-left: -17em;
    }

    .menu-wrap .menu>div>div>ul>li>a {
        letter-spacing: 10px;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    /* Landing Page Content------------------------------------------------------------------------- */
    .hero {
        top: 6%;
    }
    /* Left Side Contents---------------------------------------------------------------------------- */
    .banner-text {
        top: 8%;
        max-width: 88em;
    }

    /* Heading Content------------------------------------------------------------------------------ */
    .banner-text h2 {
        font-size: 6em;
    }

    /* Paragraph Content--------------------------------------------------------------------------- */
    .banner-text p {
        font-size: 2.8em;
    }

    /* Button Part------------------------------------------------------------------------------------ */

    .button {
        margin-left: 0em;
        font-size: 2.5em;
        height: 100px;
        width: 350px;
    }

    /* Landing Page Right Side Image-------------------------------------------------------------   */
    .images {
        margin-left: 95em;
        margin-top: -42em;
    }

    .bulb {
        width: 55em;
        height: 40em;
    }

    /* Fade In Animation End-----------------------------------------------------------------------*/

    /* Part After Landing Page--------------------------------------------------------------------- */

    .main-title {
        font-size: 4.5em;
    }

    .mid-content {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mid-content .mid-images {
        width: 78em;
        height: 50em;
        border-radius: 1em;
    }

    .mid-content .text-box {
        max-width: 68em;
        border-radius: 1em;
        transform: translate(-4em, 6em);
    }

    .mid-content>.text-box>p {
        font-size: 2.5em;
    }

    .media-icons {
        margin-top: 8em;
    }

    .media-icons a {
        font-size: 4em;
        margin: 1.5em;
    }

    .mid-content .mid-images:last-child {
        width: 70em;
        height: 45em;
        margin-right: 0em;
    }

    .sec-03 {
        padding-bottom: 5em;
    }

    .section-title {
        font-size: 6em;
        margin: 1em;
    }

    .info-title {
        font-size: 4em;
        margin-bottom: 0em;
    }

    .wrapper {
        margin: 8em 0;
    }

    .sLider {

        width: 80%;
        height: 80vh;
    }

    .sLider .sLide {
        border-radius: 1.5em;
    }







    /* Footer Part Start---------------------------------------------------------------------------------- */
    .footer {
        width: 100%;
        background-color: #141414;
        color: var(--primary-color);
        padding: 2em 4em;
    }

    .footer-logo img {
        width: 15em;
    }

    .footer-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .footer-content {
        margin: 2em 0;
        display: flex;
        justify-content: space-between;
    }


    .footer-menu li {
        margin-top: 3em;
    }

    .footer-menu li:last-child {
        margin-right: 0;
    }

    .footer-menu a {
        font-size: 2.5em;
    }

    .social-icons li {
        font-size: 2em;
        margin-top: 1.5em;
    }

    .footer-bottom {
        display: flex;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-bottom p {
        margin: 1em 3em;
        font-size: 2.5em;
    }

    /* Footer Part End------------------------------------------------------------------------------- */
}