@font-face {
    font-family: 'SF UI Text';
    src: url('../font/SFUIText-Medium.woff2') format('woff2'),
        url('../font/SFUIText-Medium.woff') format('woff'),
        url('../font/SFUIText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF UI Text';
    src: url('../font/SFUIText-Regular.woff2') format('woff2'),
        url('../font/SFUIText-Regular.woff') format('woff'),
        url('../font/SFUIText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #1A1A1A;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none
}

a,
button {
    display: inline-block
}

.btn:focus,
.form-control:focus,
button:focus {
    outline: 0;
    box-shadow: none
}

.header {
    position: absolute;
    width: 100%;
    padding: 20px 30px;
}

a:hover {
    color: unset !important;
}

a {
    text-decoration: unset !important;
}

.orange {
    color: #52DBCF;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 15px;
}

.header .nav-link:hover,
.nav-link:focus {
    color: #52DBCF !important;
}

.logo img {
    width: 180px;
}

.header1 a {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    color: #0B6E64;
    text-decoration: none;
    /* text-transform: uppercase; */
    /* letter-spacing: 4px; */
    transition: 0.5s;
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
    background-color: #52DBCF;
    border-radius: 10px;
}

.header1 a:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}


/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    left: -160px;
}

/* Optional: smooth animation */
.dropdown-menu {
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 20px;
    width: 900px;
}

.dropdown-item {
    line-height: 2;
}


.dropdown-menu .list-unstyled {
    columns: 2;
    /* split into 2 columns */
    -webkit-columns: 2;
    -moz-columns: 2;
}

.dropdown-menu .list-unstyled li {
    break-inside: avoid;
    /* keep items from breaking oddly */
}

.list-unstyled li a img {
    width: 25px;
}

/* Add your CSS for the active link here */
.nav-link.active {
    color: #52DBCF !important;
}

/*header sec end*/

/* scroll bar css start  */

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #4D4D4D;
}

body::-webkit-scrollbar-thumb {
    background-color: #52DBCF;
    border-radius: 20px;
    border: 1px solid #4D4D4D;
}

/* scroll bar css end  */

/* scroll to top css start  */
.progress-wrap {
    position: fixed;
    bottom: 90px;
    right: 40px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background-color: #52DBCF;
    border: 1.2px solid #000;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.progress-circle path {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 307.919, 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 10ms linear;
}

/* scroll to top css end  */

/* home css start */
.home1 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 200px 0px 60px 0px;
}

.home2 h6 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    font-family: "SF UI Text", sans-serif;
}

.home2 h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.home2 p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.home3 {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.home4 a {
    display: block;
    /* margin: 50px auto; */
    position: relative;
    overflow: hidden;
    width: 180px;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    border: 1px solid #52DBCF;
    background-color: #52DBCF;
    color: #fff;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    box-shadow: inset 0px 0px 3px #52DBCF;
}

.home4 a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(50%);
    width: 180px;
    height: 180px;
    border-radius: 25%;
    background-color: #fff;
    z-index: -1;
    transition: transform ease 1s;
}

.home4 a:hover {
    color: white;
    transition: color 0.1s ease;
    transition-delay: 0.2s;
}

.home4 a:hover::before {
    transform: translateY(-45%);
}

.home5 a {
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.home5 a:hover {
    background-color: #fff;
    color: #52DBCF;
    border: 1px solid #52DBCF;
}

.home6 {
    margin-top: 150px;
}

.home7 {
    padding: 80px 0px;
}

.home8 h2 {
    color: #52DBCF;
    font-size: 30px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
}

.home8 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.home9 {
    display: flex;
    gap: 50px;
}

.home10 {
    line-height: 2.5;
    padding-left: 0px;
}

.home10 li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.home12 {
    padding: 80px 0px;
    position: relative;
}

.home13 {
    justify-content: center;
    background-color: #0B6E64;
    padding: 60px 0px 40px 0px;
    width: 95%;
    margin: 0 auto;
    border-radius: 30px;
}

.home14 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
}

.home14 h4 {
    color: #52DBCF;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
}

.home15 {
    position: absolute;
    bottom: 0;
    left: 11%;
}

.home15 img {
    width: 400px;
    height: auto;
}

.home16 img {
    width: 30px;
}

.home16 h2 {
    color: #52DBCF;
    font-size: 20px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    width: 60%;
    margin: 20px 0px;
}

.home16 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    height: 100px;
    overflow: auto;
    scrollbar-width: none;
}

.home17 {
    padding: 80px 0px;
}

.home18 h4 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
}

.home18 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.home20 {
    position: relative;
    z-index: 1;
    padding: 80px 0px;
}

.home20::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 0;
    width: 250px;
    height: 700px;
    background-image: url(../images/pic10.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.home20::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 300px;
    height: 700px;
    background-image: url(../images/pic11.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.home20 .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #52DBCF;
    border: 1px solid #52DBCF;
    border-radius: 15px;
}

.home20 .nav-link {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #646464;
    border-radius: 15px;
    margin-bottom: 10px;
    text-align: left;
    width: 320px;
    padding: 18px 20px;
}

.home21 h4 {
    color: #52DBCF;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.home21 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.home22 {
    justify-content: center;
    margin-top: 50px;
}

.home23 {
    background-color: #F3F3F3;
    padding: 20px 40px;
    border-radius: 15px;
}

.home25 h2 {
    color: #1E1E1E;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.home25 p {
    color: #1E1E1E;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.home25 a {
    background-color: #52DBCF;
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    border: 1px solid #52DBCF;
    border-radius: 10px;
}

.home25 a:hover {
    border: 1px solid #000000;
    background-color: transparent;
}

.home26 {
    background-image: url(../images/pic13.png);
    position: relative;
    padding: 50px 20px;
    margin: 80px 0px;
}

.home26::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 5%;
    width: 600px;
    height: 800px;
    background-image: url(../images/pic14.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* z-index: -1; */
}

.home27 h4 {
    color: #52DBCF;
    font-size: 20px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.home27 h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    /* width: 90%; */
}

.home27 p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.home28 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home29 i {
    border: 1px solid #52DBCF;
    background-color: #52DBCF;
    border-radius: 20px;
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

.home30 {
    border-left: 2px solid #fff;
    padding: 0px 10px;
}

.home30 p {
    color: #52DBCF;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}

.home30 span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.home31 {
    padding: 100px 0px 60px 0px;
}

.home32 h4 {
    color: #52DBCF;
    font-size: 35px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.home32 p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.home33 {
    background-image: url(../images/pic21.png);
    background-repeat: repeat;
    background-size: 100% 100%;
    padding: 60px 0px;
}

.home34 h4 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.home34 h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.home34 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.home35 {
    display: flex;
    align-items: center;
}

.home35 img {
    margin-left: -15px;
}

.stars {
    color: #ffc107;
    /* yellow color */
    font-size: 24px;
}

.stars1 span {
    color: #fff;
    padding: 0px 2px;
    font-size: 14px;
}

.home36 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home37 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home37 p {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0px;
}

.home38 {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
}

.home39 h2 {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.home39 p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    height: 100px;
    overflow: auto;
    scrollbar-width: none;
}

.home39 h6 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.home40 {
    padding: 80px 0px;
}

.home41 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 70%;
}

.home41 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

/* home css end */

/* marquee css start  */
.marquee {
    overflow: hidden;
    /* hide the scrolling overflow */
    width: 100%;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee__group {
    display: flex;
    align-items: center;
}

.marquee__group span {
    margin: 0 1.5rem;
    white-space: nowrap;
    /* background: #000000; */
    color: white;
    padding: 4px 16px 4px 12px;
    border-radius: 6px;
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* marquee css end  */

/* about us css start  */
.about1 h6 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    font-family: "SF UI Text", sans-serif;
}

.about1 h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    font-family: "SF UI Text", sans-serif;
    /* width: 82%; */
}

.about1 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

/* about us css end  */

/* book editing css start  */
.edit1 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 120px 0px 60px 0px;
}

.edit2 h4 {
    color: #52DBCF;
    font-size: 20px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.edit2 h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.edit2 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.edit3 img {
    margin-bottom: -50px;
}

.edit4 {
    padding: 100px 0px 60px 0px;
}

.edit6 h2 {
    color: #52DBCF;
    font-size: 35px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
}

.edit6 p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.edit7 {
    background-image: url(../images/pic26.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 80px 0px;
}

.edit8 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}

.edit8 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.edit9 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.edit9 a {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    background-color: #52DBCF;
    text-decoration: none;
    color: #1A1A1A;
    border: 1px solid #52DBCF;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.edit9 a:hover {
    background-color: #fff;
}

.edit10 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.edit11 a {
    background-color: #52DBCF;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    padding: 10px 30px;
    border: 1px solid #52DBCF;
    border-radius: 10px;
}

.edit11 a:hover {
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.edit12 a {
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.edit12 a:hover {
    background-color: #fff;
}

.edit13 {
    padding: 80px 0px;
}

.edit15 h2 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 20px;
}

.edit15 h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.edit15 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.edit16 {
    display: flex;
    gap: 50px;
}

.edit17 {
    line-height: 2;
    padding-left: 0px;
}

.edit17 li {
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.edit18 {
    padding: 60px 0px 100px 0px;
}

.edit19 h2 {
    color: #52DBCF;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.edit19 p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 65%;
    margin: 0 auto;
}

.edit20 {
    margin-top: 30px;
}

.edit21 {
    background-color: #0B6E64;
    padding: 40px;
    border-radius: 10px;
}

.edit21 h4 {
    color: #52DBCF;
    font-size: 15px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin: 15px 0px;
}

.edit21 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    height: 130px;
    overflow: auto;
    scrollbar-width: none;
}

.edit22 {
    list-style: disc;
    padding-left: 20px;
}

.edit22 li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.edit23 {
    padding: 100px 0px 60px 0px;
}

.edit24 h2 {
    color: #52DBCF;
    font-size: 30px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.edit24 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.edit25 h4 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
}

.edit25 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

/* book editing css end  */

/* portfolio css start  */
.port1 {
    padding: 60px 0px;
}

.port3 {
    margin: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.port3 h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
}

.port3 a {
    color: #0B6E64;
    background-color: #52DBCF;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    padding: 10px 30px;
    border: 1px solid #52DBCF;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.port3 a:hover {
    background-color: #0B6E64;
    color: #fff !important;
    border-color: #0B6E64;
}

.port4 {
    text-align: center;
    margin-bottom: 20px;
}

.port4 h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-top: 20px;
}

/* portfolio css end  */


/* author css start  */

.authmargin {
    margin-top: 60px;
}

.auth1 {
    padding: 60px 0px;
}

.auth2 h4 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.auth2 h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.auth2 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.auth3 {
    background-color: #fff;
    border: 1px solid #52DBCF;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.auth3:hover {
    background-color: #52DBCF;
    color: #fff;
}

.auth3 h2,
.auth3 p {
    transition: color 0.3s ease;
    color: #fff;
}

/* Text styling */
.auth3 h2 {
    color: #52DBCF;
    font-size: 20px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.auth3 p {
    color: #1E1E1E;
    font-size: 17px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

/* Change h2 and p color to white on hover */
.auth3:hover h2,
.auth3:hover p {
    color: #fff;
}


.owl-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #52DBCF;
    border-radius: 50%;
    margin: 5px;
    display: block;
    opacity: 0.5;
    transition: 0.3s;
}

.owl-carousel .owl-dot.active span {
    opacity: 1;
    transform: scale(1.2);
}

.auth4 {
    background-image: url(../images/pic54.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0px;
    position: relative;
}

.auth4::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    height: 200px;
    background-image: url(../images/pic55.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.auth5 h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    line-height: 2;
}

.auth5 p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

.auth6 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.auth7 {
    background-image: url(../images/pic56.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0px;
    position: relative;
}

.auth7::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 400px;
    height: 260px;
    background-image: url(../images/pic57.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.auth8 h2 {
    color: #52DBCF;
    font-size: 50px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
}

.auth8 p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
}

.auth9 h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
}

.auth9 p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

/* author css end  */

/* publishing css start  */
.pub1 {
    padding: 60px 0px;
}

.pub3 h4 {
    color: #52DBCF;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.pub3 h2 {
    color: #fff;
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.pub3 p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 75%;
    margin: 0 auto;
}

.pub4 {
    margin-top: 50px;
    background-color: #fff;
    border: 1px solid #52DBCF;
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    /* smooth hover transition */
}

.pub4:hover {
    background-color: #52DBCF;
    color: #fff;
    cursor: pointer;
}

.pub4 h4 {
    color: #52DBCF;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    transition: color 0.4s ease;
}

/* Keep h4 orange OR white on hover */
.pub4:hover h4 {
    color: #fff;
    /* change to #52DBCF if you want it to stay orange */
}

.pub4 p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    font-family: "SF UI Text", sans-serif;
    height: 140px;
    overflow: auto;
    scrollbar-width: none;
    transition: color 0.4s ease;
}

.pub5 {
    list-style: disc;
    padding-left: 20px;
}

.pub5 li {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.pub6 h2 {
    color: #fff;
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    width: 65%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.pub6 p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    width: 65%;
    margin: 0 auto;
}

.pub7 h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
}

.pub7 h4 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.pub7 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.pub8 h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.pub9 {
    padding: 20px;
}

.pub9 h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 20px;
}

.pub9 h2 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 600;
    font-family: "SF UI Text", sans-serif;
}

.pub9 p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}


/* publishing css end  */

/* blogs css start  */
.blog1 {
    padding: 60px 0px;
}

.blog2 {
    margin: 20px 0px;
}

.blog2 h4 {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-top: 20px;
}

.blog2 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.blog2 h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

/* blogs css end  */

/* fiction detail css start  */
.bookshelf {
    text-align: center;
    padding: 60px 0;
}

.books {
    display: flex;
    justify-content: center;
    gap: 50px;
    /* tighter space */
    flex-wrap: wrap;
}

.book {
    position: relative;
    width: 180px;
    cursor: pointer;
    /* overflow: hidden; */
    /* keeps hover effect inside */
    border-radius: 6px;
}

/* Bestseller badge */
.best {
    position: absolute;
    top: -30px;
    /* moves slightly above the book */
    right: -50px;
    /* adjust to sit on corner */
    width: 100px;
    /* badge size */
    pointer-events: none;
    /* prevents interfering with hover */
}

.best img {
    width: 100%;
    height: auto;
    display: block;
}

.book img {
    width: 100%;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease;
}

/* Overlay info */
.book-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* centers text */
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.book-info h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
}

.book-info p {
    font-size: 12px;
    margin: 0;
    height: 150px;
    overflow: auto;
    scrollbar-width: none;
}

/* Hover effect only for books */
.book:hover img {
    transform: scale(1.1);
}

.book:hover .book-info {
    opacity: 1;
    transform: scale(1);
}

/* Shelf image stays at bottom */
.shelf {
    width: 100%;
    height: 250px;
    background: url("../images/pic106.png") no-repeat center;
    background-size: 100% 100%;
    margin-top: 20px;
}

/* fiction detail css end  */

/* contact css start */
.cont1 {
    padding: 60px 0px;
}

.cont2 label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.cont2 input {
    background-color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    color: #929292;
}

.cont3 {
    margin-top: 30px;
}

.cont3 button {
    background-color: #0B6E64;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.cont4 {
    margin: 20px 0px;
}

.cont4 h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.cont4 a {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.cont4 a:hover {
    color: #52DBCF !important;
}

.cont2 .form-select {
    max-width: 70px;
}

/* contact css end */

/* price page css start  */
.price1 {
    margin-top: 50px;
}

.price1 .nav {
    justify-content: center;
}

.price1 .nav-link {
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.price1 .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #000 !important;
    background-color: #52DBCF;
    border: 1px solid #52DBCF;
    border-radius: 10px;
}

.price2 {
    border: 2px solid #52DBCF;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: #52dbd01f;
}

.price2 h4 {
    color: #52DBCF;
    font-size: 25px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 20px;
}

.price2 p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.price2:hover {
    background: linear-gradient(180deg, #0B6E64, #52DBCF);
    border-color: #0B6E64;
    transition: all 0.4s ease-in-out;
}

.price2:hover h4,
.price2:hover p,
.price2:hover li {
    color: #fff !important;
}

.price2:hover .price5 a {
    background-color: #fff;
    color: #0B6E64;
    border-color: #fff;
    transition: all 0.3s ease-in-out;
}

.price2:hover .price6 a {
    border-color: #fff;
    color: #fff;
}

.price3 {
    padding-left: 0px;
    height: 280px;
    overflow: auto;
}

.price3::-webkit-scrollbar {
    width: 4px;
}

.price3::-webkit-scrollbar-track {
    background: #4D4D4D;
}

.price3::-webkit-scrollbar-thumb {
    background-color: #52DBCF;
    border-radius: 20px;
    border: 1px solid #4D4D4D;
}

.price3 li {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-family: "SF UI Text", sans-serif;
    line-height: 2.5;
}

.price4 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price5 a {
    background-color: #0B6E64;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    padding: 15px 30px;
    border: 1px solid #0B6E64;
    border-radius: 15px;
}

.price6 a {
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 15px;
}

/* price page css end  */

/* terms and condition css start */
.term1 h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
}

.term1 p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    text-align: center;
    width: 65%;
    margin: 0 auto;
    margin-top: 20px;
}

.term2 {
    padding: 60px 0px;
}

.term3 h2 {
    color: #52DBCF;
    font-size: 35px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.term3 h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.term3 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    margin-top: 10px;
}

.term4 {
    list-style: disc;
    padding-left: 15px;
}

.term4 li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.term4 li a {
    color: #52DBCF;
}


/* terms and condition css end */

/* testimonial css start */
.test1 {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.test2 {
    padding: 60px 0;
}

.test3 {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    position: relative;
    margin: 20px 0px;
}

.test4 {
    position: absolute;
    top: -30px;
    left: 20px;
}

.stars2 {
    color: #0B6E64;
    /* yellow color */
    font-size: 24px;
    text-align: end;
}

.test3 p {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-top: 20px;
}

.test3 h6 {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
}

/* testimonial css end */

/* footer css start */
.footer {
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0px 20px 0px;
}

.footer1 a img {
    width: 180px;
}

.footer2 {
    border-left: 1px solid #fff;
}

.footer2 p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 0;
    padding-left: 20px;
}

.footer3 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer4 {
    margin-top: 60px;
}

.footer5 h4 {
    color: #52DBCF;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.footer6 {
    list-style: disc;
    color: #fff;
    padding-left: 20px;
}

.footer6 li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
}

.footer7 h4 {
    color: #52DBCF;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.footer8 {
    color: #fff;
    padding-left: 0px;
}

.footer8 li {
    margin-bottom: 20px;
}

.footer8 li a {
    /* display: flex;
    gap: 10px; */
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.footer8 li a img {
    width: 15px;
    height: fit-content;
}

.footer9 h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    margin-bottom: 30px;
}

.footer10 input {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 10px;
    font-family: "SF UI Text", sans-serif;
}

.footer10 textarea {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 10px;
    font-family: "SF UI Text", sans-serif;
}

.footer11 button {
    background-color: #52DBCF;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid #52DBCF;
    border-radius: 10px;
    font-size: 16px;
    font-family: "SF UI Text", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer11 button:hover {
    background-color: transparent;
    color: #52DBCF;
    transform: translateY(-2px);
}

.footer12 {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.footer13 p {
    color: #fff;
    font-size: 14px;
    font-family: "SF UI Text", sans-serif;
}

.footer14 a {
    color: #fff;
    font-size: 14px;
    font-family: "SF UI Text", sans-serif;
}

.social {
    margin-top: 20px;
}

.social1 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0px;
}

.social1 li a {
    background-color: #52DBCF;
    color: #fff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #52DBCF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social1 li a:hover {
    background-color: #fff;
    color: #52DBCF;
}


/* footer css end */


