@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;

}

.maintenance {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    cursor: none;
    background: linear-gradient(-45deg, #00c9ff, #92fe9d, #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;

    z-index: 1107657;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.maintenance h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.maintenance p {
    font-size: 1.25rem;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

a:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
label[for]:hover,
[onclick]:hover {
    cursor: url("hovercursor.png"), auto;
}

html::selection {
    padding: 20px;
    background: black;
    color: white;
    transition: all 0.5s ease;
    border-radius: 20px;
}

html,
body {
    cursor: url("cursor.png"), auto;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;

}

.whatsappchat {
    height: 80px;
    width: 80px;
    position: absolute;
    bottom: 4%;
    border: 1px solid black;
    right: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    z-index: 12;
}

.whatsappchat a i {
    color: #25D366;
    font-size: 3vw;
    text-shadow: 1px 1px 10px #25D366;
}

.whatsappchat a {
    color: #25D366;
}

.errormess {
    background-color: #dc3545;
    /* Red */
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.4);
    font-weight: bold;
    display: none;
    align-items: center;
    gap: 10px;
}

body {
    background: white;
}

.loader {
    z-index: 1111;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: black;
    display: flex;
    gap: 100px;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.loader video {
    height: 400px;
    border-radius: 50%;
    /* border: 2px solid white; */
}

#ltext {
    color: white;
    /* background: red; */
    transition: all 0.5s ease;
    opacity: 1;
    font-size: 2em;
}

nav {
    width: 100%;
    height: min-content;
    padding: 20px auto;
    /* position: sticky; */
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 11;
    background: rgba(0, 0, 0, 1);
}

#logo {
    height: 80%;
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* border: 2px solid black; */
    overflow: hidden;
}

#logo video {
    height: 120px;
    border-radius: 2em;
    transition: all 0.5s ease;
}

#logo video:hover {
    border-radius: 1em;
    transition: all 0.5s ease;
    scale: 1.5;
}

nav ul {
    display: flex;
    justify-content: center;
    /* background-color: rebeccapurple; */
    width: 42%;
    /* background: red; */

    padding: 30px;
    height: 80%;
}

ul li {
    margin: auto;
    list-style: none;
}

ul li a {
    position: relative;
    font-size: 2vw;
    font-family: "poppins", sans-serif;
    font-weight: 300;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 10px white;
}

ul li a::after {
    position: absolute;
    content: "";
    height: 3px;
    background: #f12711;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f12711, #f5af19);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f12711, #f5af19);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 0%;
    top: 100%;
    left: 0;
    /* transform: translate(-50%,-50%); */

}

.online {
    background-color: #28a745;
    /* Green for online */
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stnback {
    background: white;
}

ul li a:hover::after {
    width: 100%;
    transition: all 0.5s ease;
}

.has-dropdown {
    position: relative;
}

.shopdropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 15px;
    position: absolute;
    border-radius: 0.5rem;
    border: 2px solid turquoise;
    top: 100%;
    left: -10%;
    gap: 10px;
    width: 250px;
    flex-direction: column;
    background: rgb(4, 4, 4);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}

#chevrondown {
    font-size: 1.4vw;
}

.has-dropdown:hover #chevrondown {
    rotate: 180deg;
    transition: all 0.2s ease-in;
}

.has-dropdown:hover .shopdropdown {
    display: flex;
    max-height: 600px;
    gap: 30px;
    padding: 30px;
    opacity: 1;
    pointer-events: auto;
}

.has-dropdown:hover .shopdropdown a {
    font-size: 20px;
}

.shopdropdown:hover {
    display: flex;
}

.ctn {
    width: 23%;
    background: transparent;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    /* border: 1px solid black; */
}

.ctn button {
    height: 3.4em;
    width: 10em;
    font-weight: 800;
    border-radius: 30px;
    outline: none;
    border: none;
    background-image: radial-gradient(circle 708px at 0% 3.4%, rgb(255, 222, 36) 14.5%, rgba(249, 69, 28, 1) 71.8%);
    box-shadow: 1px 1px 20px rgb(255, 222, 36), 1px 1px 20px rgba(249, 69, 28, 1);
}

.ctn button:hover {
    /* transform: translate(-10px, -5px); */
    box-shadow: 1px 1px 10px rgb(255, 255, 255), 1px 1px 80px rgb(77, 255, 0);
    transform: translate(0px, -10px);
    transition: all 0.5s ease;
}

.mobnavigation {
    display: none;
}

#xmark {
    position: absolute;
    right: 10%;
    color: white;
    top: 5%;
    font-size: 8vw;
}

.mobnav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    background: rgb(0, 0, 0);
    z-index: 20;
    align-items: center;
    width: 55%;
}

.mobnav ul {
    margin-top: 50%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobnav ul a {
    font-size: 25px;
}



.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* overflow: scroll; */
}

.c1l {
    width: 100%;
}

.c1l img {
    object-fit: cover;
}


.cont1 {
    height: 100%;
    width: 100%;
    display: flex;
    position: relative;
    top: 0;
    overflow: hidden;
    background: red;
    border: 2px solid black;
}

.c1l {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("vibrant-watercolor-paintings-messy-desk-showcase-artist-creativity-generated-by-ai.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* https://img.freepik.com/free-vector/doodle-school-stationery-seamless-pattern-design_107791-9605.jpg?t=st=1746157497~exp=1746161097~hmac=b2bd134d6ff772742e54b0fe046d36c3a93ff95fcca5b0eae541d7488d890eef&w=826 */
.c1l img {
    object-fit: cover;
    margin: auto;
}
.swiper-container-wrapper {
      width: 100%;
      padding: 40px 0;
      background-color: #fff;
    }

    .swiper {
      width: 90%;
      max-width: 1200px;
      height: 300px;
      margin: auto;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      height: 250px;
      flex-direction: column;
    }

    .swiper-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .swiper-slide p {
      margin: 5px 0;
      font-size: 18px;
      font-weight: bold;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #000;
    }

    @media screen and (max-width: 768px) {
      .swiper {
        height: 250px;
      }
    }
.c1r {
    height: 100%;
    width: 100%;
    background: rgb(255, 255, 255);
    /* background: linear-gradient(30deg, #FC466B 0%, #3F5EFB 100%); */
    position: absolute;
    top: 30%;
    border-top: 3px solid black;
    border-top-right-radius: 5%;
    border-top-left-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0%;
}

.c1rcontent {
    position: absolute;
    top: 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 80%;
}

.c1rcontent h1 {
    font-family: "Playfair", serif;
    font-size: 5vw;
    /* text-shadow: 0 0 5px #ffffff, 0 0 10px #4f5afc; */
    /* background: linear-gradient(30deg, #FC466B 0%, #3F5EFB 100%); 
    -webkit-background-clip: text; */
    color: rgb(0, 0, 0);
    text-shadow: 1px 1px 10px rgb(41, 16, 16);
    /* animation: textShadowBlackBG infinite 4s ease alternate-reverse; */
}


.c1rcontent span {
    font-size: 30px;
    color: yellow;
}

.c1rcontent h3 {
    font-family: "Roboto Mono", monospace;
    font-size: 2vw;

    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    color: black;
}

.ordernow {
    height: 100px;
    display: flex;
    gap: 200px;
    position: absolute;
    bottom: 40%;
}

.ordernow button {
    border: 0.2px solid black;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4vw;
    border-radius: 10px;
    text-align: center;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    background: black;
    color: white;
    /* background-image: radial-gradient(circle 708px at 0% 3.4%, rgb(255, 222, 36) 14.5%, rgba(249, 69, 28, 1) 71.8%); */
    box-shadow: 1px 1px 50px #FC466B, 1px 1px 40px #3F5EFB;
    width: 10vw;
    padding: 25px 25px;
    animation: ordernowbut 2s infinite alternate-reverse;
    cursor: pointer;
}

.ordernow button:nth-child(1) {
    border: none;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    color: black;
}

.ordernow button:nth-child(2) {
    border: none;
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    color: black;
}

@keyframes ordernowbut {
    from {
        box-shadow: 1px 1px 10px #FC466B, 1px 1px 20px #3F5EFB;
    }

    to {
        box-shadow: 1px 1px 30px #00C9FF, 1px 1px 20px #92FE9D;
    }
}

.ordernow button:hover {
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s ease;
    box-shadow: 1px 1px 50px rgb(3, 255, 91);
}

.buttonhover:hover {
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.5s ease;
    box-shadow: 1px 1px 50px rgb(3, 255, 91);
}

.cont2 {
    height: 80%;
    width: 100%;
    display: flex;
    background: white;
    /* background: linear-gradient(90deg, #fcff9e 0%, #c67700 100%); */
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.cont2 h1 {
    font-weight: 500;
    font-size: 5vw;
}

.cont2 p {
    background: #000000;
    color: white;
    width: 60%;
    font-size: 1.5vw;
    border-radius: 20px;
    /* line-height: 30px; */
    margin: 3vw auto;
    padding: 30px;
}

.amazon img,
.flipcart img {
    height: 200px;
}

.cont3 {
    font-size: 2vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    justify-content: space-around;
}


/* Footer*/
footer {
    height: auto;
    width: 100%;
    text-align: center;
    display: flex;
    gap: 0;
    flex-direction: column;
    color: white;
    z-index: 15;
    background: rgb(0, 0, 0);
}

.sociallinks {
    /* background-color: red; */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sociallinks a i {
    padding: 30px;
    color: white;
}

#copyright {
    padding: 30px;
    font-family: "poppins", sans-serif;
    /* background: rebeccapurple; */
}

#copyright a {
    text-decoration: none;
    color: turquoise;
}
.implinks{
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.implinksmain{
    margin-top: 30px;
    width: 100%;
    display: inline-flex;
    text-align: center;
    justify-content: space-around;
}
.implinksleft{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.implinkscenter{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.implinksright{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.implinkscenter a,.implinksleft a,.implinksright a{
    text-decoration: none;
    color: white;
}
/* Stationery CSS */
#sbody {
    background-image: url('https://img.freepik.com/free-vector/hand-draw-doodle-school-work-set-design_1035-20349.jpg?t=st=1746190689~exp=1746194289~hmac=87710cac646a2bc6e6161a1c5f4371b3cb8f4c870324a8ae3fa52c88fca1f5cd&w=826');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    font-family: sans-serif;
    padding: 2rem;
    margin: 0;
    padding: 0;
}

.shero {
    /* height: 100vh; */
    margin: 3vw auto;
    overflow: hidden;
}

.sc1 {
    background: rgba(255, 255, 255, 0.5);
    /* -webkit-backdrop-filter: blur(5px); */
    backdrop-filter: blur(5px);
    text-align: center;
    width: 100%;
    overflow: scroll;
    height: 100%;
    display: flex;
    padding: 5rem 1rem;
}

.stanh1parent {
    text-align: center;
    background: black;
    width: max-content;
    margin: auto;
    border-radius: 2rem;
}

#stah1 {
    text-align: center;
    margin: 2rem auto;
    margin: auto;
    background-image: radial-gradient(circle 404px at 20.3% 15.9%, rgba(0, 79, 255, 1) 0%, rgba(0, 240, 255, 1) 90%);
    -webkit-background-clip: text;
    backdrop-filter: blur(3px);
    color: transparent;
    padding: 20px;
    border-radius: 2rem;
    width: max-content;
    word-break: normal;
    /* position: absolute; */

}

.sc1c {
    border: 2px solid black;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    min-height: 300px;
}

.sc1ch1 {
    padding: 10px;
    border-radius: 20px;
    color: yellow;
    background: black;
    margin-bottom: 10px;
}

.bg-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    color: white;
    width: 100%;
    height: 100%;
}

.bg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: blur(1.4px);
    z-index: 0;
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid;
}

.sc1s {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.itemshead {
    background-color: black;
    width: max-content;
    margin: 40px auto;
    border-radius: 20px;
    font-size: 5vw;
}

.itemshead h1 {
    padding: 15px;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
    background-image: linear-gradient(69.2deg, rgba(77, 143, 251, 1) 35.3%, rgba(202, 51, 255, 1) 100.3%);
    width: 90vw;
    margin: auto;
    overflow: scroll;
}

.card-containercover {
    content: "";
    height: 55%;
    width: 94vw;
    border-radius: 3rem;
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    top: 70%;
    left: 50%;
}

.card {
    width: 200px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 0 0 10px;
}

.card button {
    padding: 8px 12px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Nuthan Medicals CSS */
#nbody {
    background: url("https://img.freepik.com/free-vector/science-objects-icons-seamless-pattern_1308-158261.jpg?t=st=1746190985~exp=1746194585~hmac=8c0ed6b0149d8b80ff00ad1c601982c5a9efdde6cc2ea19054a98dd9de680ab1&w=826");
}

#stahn1 {
    margin: 3vw auto;
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    padding: 20px;
    color: black;
    font-size: 5vw;
    border-radius: 10px;
}

.nitemscover {
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /* background-color: red; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#nitems {
    margin: auto;
    height: 80%;
    width: 100%;
    /* background: rebeccapurple; */
    display: grid;
    gap: 30px;
    place-items: center;
    padding: 30px;
    grid-template-columns: repeat(auto-fill, 13rem);
    border-radius: 20px;
    border: 2px solid black;
}

.controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.medcard {
    margin: auto;
    width: 200px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.medcard h3 {
    margin: 0 0 10px;
}

.medcard button {
    padding: 8px 12px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

input,
select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
    min-width: 200px;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.medicine-list {
    list-style: none;
    padding: 0;
    max-height: 600px;
    overflow-y: auto;
}

.medicine-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.medicine-list li:last-child {
    border-bottom: none;
}

.medicine-list li span {
    font-weight: bold;
}

.nitemsh1cover {
    background-color: black;
    width: max-content;
    padding: 20px;
    margin: 30px auto;
    border-radius: 2rem;
}

#nitemsh1 {
    width: max-content;
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.mainheading {
    background: black;
    color: white;
    font-size: 2vw;
    width: max-content;
    margin: 1vw auto;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 3vw;
}

/* ====== ABOUT SECTION STYLES ====== */

.abthero {
    padding: 40px 20px;
    background: #f4f4f4;
}

.abthero h1 {
    font-size: 2.5rem;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    background: #000;
    color: turquoise;
    width: max-content;
    border-radius: 2rem;
    font-family: 'Playfair Display', serif;
}

.abtcont1 {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abtcont1 section {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.abtcont1 section:hover {
    transform: translateY(-5px);
}

.abtcont1 h2 {
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.abtcont1 p,
.abtcont1 li {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.abtcont1 ul {
    list-style-type: disc;
    padding-left: 25px;
    margin: 15px 0;
}

.abtcont1 ul li {
    margin-bottom: 8px;
}

/* Privacy html Styling */
.prvcyhero{
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 90%;
    /* text-align: center; */
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
}
.prvcyhero h1{
    font-size: 2.5rem;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    background: #000;
    color: turquoise;
    width: max-content;
    border-radius: 2rem;
    font-family: 'Playfair Display', serif;
}
.prvcyhero p{
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ///////////// */

@media (min-width:280px) and (max-width:700px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsappchat {
        right: 5%;
        bottom: 5%;
    }

    .whatsappchat a i {
        color: #25D366;
        font-size: 7vw;
        text-shadow: 1px 1px 10px #25D366;
    }

    nav h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 24px;
    }

    .mobnav .ctn {
        display: flex;
        gap: 30px;
        margin-top: -20px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    p {
        font-size: 16px;
    }

    .loadingtext {
        text-align: center;
    }

    #menu {
        display: block;
    }

    nav ul {
        display: none;
    }

    nav .ctn {
        display: none;
    }

    .mobnavigation {
        display: flex;

    }

    #logo {
        height: 8em;
        width: 7.2rem;
        /* background: red; */
    }


    .shopdropdown {

        /* max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    /* border-radius: 0.5rem; */
        /*    border: 2px solid turquoise; */
        /* gap: 10px;
    flex-direction: column;
    background: rgb(4, 4, 4);
    z-index: 200;
    opacity: 0;
    pointer-events: none; */
    }

    .has-dropdown {
        position: relative;
    }

    .has-dropdown:active #chevrondown {
        rotate: 180deg;
        transition: all 0.2s ease-in;
    }

    .has-dropdown:active .shopdropdown {
        display: flex;
        /* max-height: 600px; */
        /* top: 100%; */
        left: -218%;
        max-width: 170px;
        position: absolute;
        gap: 30px;
        padding: 30px;
        opacity: 1;
        pointer-events: auto;
    }

    #logo video {
        border-radius: 1rem;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobnavigation #menu {
        color: white;
        font-size: 10vw;
    }

    #loadingtext {
        font-size: 20px;
    }

    .cont1 {
        height: 100%;
    }

    .c1r {
        height: 80%;
    }

    .cont1 .c1r .c1rcontent {
        /* position: absolute; */
        top: 2rem;
        height: 50%;
    }

    .cont1 .c1r .c1rcontent h1 {
        font-size: 14vw;
    }

    .cont1 .c1r .c1rcontent span {
        font-size: 4vw;
        font-weight: 200;
    }

    .cont1 .c1r .c1rcontent h3 {
        font-size: 4vw;
    }

    .ordernow {
        width: 100%;
        height: 20%;
        position: absolute;
        bottom: 36vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* background-color: red; */
        justify-content: center;
        /* 👈 Center the entire group */
        gap: 20px;
        /* optional spacing between buttons */
    }

    #onl,
    #onr {
        width: 6rem;
        margin: 0;
        /* remove auto margin */
    }

    .cont2 {
        height: 50%;
        display: flex;
        justify-content: space-around;
    }

    .cont2 h1 {
        font-size: 10vw;
        text-align: center;
        /* margin: 20px auto; */
    }

    .cont2 p {
        background: #000000;
        color: white;
        width: 90%;
        font-size: 3.4vw;
        border-radius: 20px;
        /* line-height: 30px; */
        /* margin: 0.2vw auto; */
        padding: 30px;
    }

    .cont3 {
        display: flex;
        flex-direction: column;
        margin: 50px 20px;
    }

    .cont3 h1 {
        font-size: 8vw;
    }

    .cont3 img {
        height: 100px;
    }

    .map {
        height: 50%;
    }

    .map iframe {
        margin: 30px auto;
        height: 100%;
        width: 90%;
    }

    .abthero {
        padding: 0px;
        background: #f4f4f4;
    }

    .abthero h1 {
        font-size: 2rem;
        padding: 15px;
    }

    .abtcont1 section {
        padding: 20px;
        text-align: center;
        width: 100%;
    }

    .abtcont1 h2 {
        font-size: 1.5rem;
    }

    .abtcont1 p,
    .abtcont1 li {
        font-size: 0.95rem;
    }

    /* Mobile Stationery Setting */
    #stah1 {
        font-size: 1.5rem;
        border-radius: 0.2em;
    }

    .stantionerylanding {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }

    .sc1c {
        height: 200px;
        /* Reduce card height on smaller screens */
    }
#sitemssearch{
display:flex;
 flex-direction: column;
    justify-content:center;
    align-items:center;
    gap:30px;
}
    .mainheading {
        background: black;
        color: white;
        width: max-content;
        margin: auto;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 3vw;
    }
    .prvcyhero h1{
    font-size: 4vw;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    background: #000;
    color: turquoise;
    width: max-content;
    border-radius: 2rem;
    font-family: 'Playfair Display', serif;
}
}
