﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Inter', sans-serif;
}

body {
    background: #21252A;
    color: #c4cfde;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    margin: auto;
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    border-radius: 10px;
    background: #21252A;
    box-shadow: 8px 8px 20px #191b1e, -8px -8px 20px #2c3137;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index:100;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h2 {
    color: #c4cfde;
}

body.light .logo h2 {
    color: #232323;
}

.logo span {
    color: #e40246;
}

nav {
    order: 1;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: #c4cfde;
    font-size: 15px;
    font-weight: 500;
    transition: .4s;
}
nav ul li a i {
    margin-right: 5px;
    color: #c4cfde;
    transition: .3s;
}

.mode {
    order: 2;
}

.mode i {
    color: #c4cfde;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    cursor: pointer;
}

body.light {
    background: #EDF1F4;
    color: #000;
}

body.light header {
    background: #EDF1F4;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

body.light .logo span {
    color: #cc0202;
}

body.light nav ul li a {
    color: #000;
}

body.light .mode i {
    color: #000;
}

body.light .menu-icon i {
    color: #000;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    font-size: 14px;
    font-weight: 600;
    color: #c4cfde;
    cursor: pointer;
}

.social-links2 {
    display: none;
}

main {
    max-width: 900px;
    margin: auto;
}

section {
    margin: 150px auto;
    scroll-margin-top: 100px;
}

.ransh-section {
    scroll-margin-top: 150px;
    max-width: 100%;
}

.home-container {
    display: flex;
    justify-content: space-between;
    /* gap:80px; */
}

.ransh-section-header h5 {
    padding-top: 60px;
    color: #878e99;
    margin-bottom: 10px;
}

body.light .left-container h1,
body.light .left-container span {
    color: black;
}

.left-container h1 {
    font-size: 45px;
    color: white;
    margin-bottom: 0px;
}

.left-container span {
    color: #ff014f;
}

.left-container h2 {
    color: white;
    font-size: 30px;
    font-family: "General Sans", sans-serif;
    margin-bottom: 30px;
}

body.light .left-container h2 {
    color: #E10C4E;
}

.left-container p {
    max-width: 500px;
    color: #878e99;
    font-size: 15px;
}

body.light .left-container p {
    color: #393939;
}

.logo div {
    background: #d50202;
    color: white;
    font-weight: 900;
    padding: 2px 4px;
    border-radius: 2px 8px 2px 8px;
    font-size: 16px;
    font-family: orbitron;
    letter-spacing: 1px;
}

.social-links {
    margin-top: 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.social-links-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links-content p {
    display: inline-block;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #74767a;
}

.social-links-content a,
.social-links2 .social-links-content a {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #212428;
    box-shadow: 5px 5px 10px #191b1e, -5px -5px 10px #2c3137;
    color: #878e99;
    transition: .3s ease;
}

.social-links-content a i {
    font-size: 14px;
}

body.light .social-links .social-links-content a {
    background: #f1f3f5;
    box-shadow: 4px 4px 8px #d6d9dc, -4px -4px 8px #ffffff;
    color: #444;
}

.social-links2 {
    display: none;
}

.btn1 {
    background: #ff014f;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.btn1 a {
    color: white;
    font-weight: 600;
}

.img-box {
    width: 240px;
    border-radius: 8px;
    box-shadow: 8px 8px 16px #1a1e22, -8px -8px 16px #30363c;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* body.light .img-box {
    box-shadow: 8px 8px 16px #e1e1e1, -8px -8px 16px #ffffff;
} */
body.light .img-box {
    box-shadow: 10px 10px 22px rgba(207, 214, 221, 0.85),
                -10px -10px 22px rgba(255, 255, 255, 0.95);
}



.img-box img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.about-section {
    max-width: 100%;
    padding: 50px 0px;
    scroll-margin-top: 150px;
}

.about-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-heading h1 {
    text-align: center;
    font-size: 22px;
    color: #D6DADD;
    margin-bottom: 30px;
    display: none;
}

.left-about {
    width: 320px;
    height: 350px;
    background: linear-gradient(135deg, #252B30, #4d5257);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 8px;
    box-shadow: 8px 8px 16px #1a1e22, -8px -8px 16px #30363c;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.light .left-about {
    background: linear-gradient(135deg, #fbfeff, #e3e6e8);
    box-shadow: 8px 8px 16px #d1d5db79, -8px -8px 16px #d1d5db75;
}

.img-box2 {
    width: 250px;
    border-radius: 12px;
}

.img-box2 img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.right-about h2 {
    font-size: 22px;
    color: #D6DADD;
    margin-bottom: 20px;
    font-weight: 700;
}

body.light .right-about h2 {
    color: #2e2e2f;
}

.right-about p {
    max-width: 530px;
    color: #878e99;
    margin-bottom: 20px;
    font-size: 15px;
}

body.light .right-about p {
    color: #393939;
}

.btn2 {
    margin-top: 20px;
    background: #ff014f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.btn2 a {
    display: block;
    padding: 12px 28px;
    color: white;
    font-weight: 700;
}

.skill-section {
    max-width: 100%;
    scroll-margin-top: 160px;
}

.skill-section h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 22px;
    color: #D6DADD;
}

body.light .skill-section h1 {
    color: #2e2e2f;
}

.skill-content {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 3%;
    flex-wrap: wrap
}

.skills-card {
    flex-basis: 31%;
    background: linear-gradient(60deg, #1a1c1e, #21262c8f);
    padding: 20px;
    border-radius: 2px 15px 2px 15px;
    box-shadow: 3px 3px 5px #292d32, -3px -3px 5px #292d32;
    transition: .5s;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

body.light .skills-card {
    background: linear-gradient(60deg, #f5f7f9, #e9edf1);
    box-shadow: 4px 4px 8px #d6d9dc, -4px -4px 8px #ffffff;
}

.skills-card h3 {
    color: #acb2b6;
    margin-bottom: 10px;
}

body.light .skills-card h3 {
    color: #414142;
}

.skills-card h3 span {
    margin-right: 10px;
}

.skills-card p {
    color: #959ba5;
    font-size: 15px;
}

body.light .skills-card p {
    color: #393939;
}

.project-section {
    max-width: 100%;
    scroll-margin-top: 110px;
}

.project-section h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 22px;
    color: #D6DADD;
}

body.light .project-section h1 {
    color: #2e2e2f;
}

.project-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
}

.project-item {
    flex-basis: 32%;
    margin-top: 30px;
    background: linear-gradient(135deg, #1a1c1e, #464f5a);
    padding: 20px;
    border-radius: 2px 15px 2px 15px;
    box-shadow: 8px 8px 20px #191b1e, -8px -8px 20px #2c3137;
    transition: .4s;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

body.light .project-item {
    background: linear-gradient(135deg, #f6f3f3, #eef1f4);
    box-shadow: 4px 4px 8px #d6d9dc, -4px -4px 8px #ffffff;
}

.project-item img {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
}

.project-item h3 {
    color: #e2e3e3;
    font-size: 18px;
}

body.light .project-item h3 {
    color: #414142;
}

.project-item h6 {
    color: #c50128;
    margin-bottom: 5px;
    letter-spacing: .5px;
}

body.light .project-item h6 {
    color: #0768DE;
}

.live-demo {
    display: none;
}

.tech-btn {
    display: none;
}

.year {
    display: none;
}

.about-project {
    display: none;
}

.github {
    display: none;
}

.stop-scroll {
    overflow: hidden;
}

.overlay-section {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(15, 15, 15, 0.42);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transform: scale(0, 0);
}

.showoverlay {
    transform: scale(1, 1);
}

.overlay-container {
    width: 65%;
    height: 90vh;
    /* max-width:1000px; */
    border-radius: 12px;
    overflow: auto;
}


/* .overlay-container::-webkit-scrollbar{
  width:5px;
}

.overlay-container::-webkit-scrollbar-thumb{
  background:rgb(244, 237, 237);
  border-radius:10px;
}

.overlay-container::-webkit-scrollbar-track{
  background:transparent;
}  */

.overlay-img {
    position: relative;
    background-color: white;
    overflow: hidden;
}

.overlay-img img {
    width: 100%;
    display: block;
}

.overlay-img span {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 25px;
    color: black;
    cursor: pointer;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-details {
    padding: 30px;
    width: 100%;
    background: rgb(6, 6, 6);
    display: flex;
    justify-content: center;
    gap: 5%;
}

.overlay-details-left {
    flex-basis: 65%;
    color: white;
}

.overlay-details-left h5:nth-child(1) {
    color: rgb(2, 44, 255);
    font-size: 12px;
    letter-spacing: 1px;
}

.overlay-details-left h2 {
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.overlay-details-left b {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.overlay-details-left p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height:1.6;
    letter-spacing: .5px;
    color: #b8aeae;
}
.overlay-details-left h4{
    margin-bottom:10px;
    color: white;
}
.overlay-details-left ul{
    padding-left: 15px;
}
.overlay-details-left ul li{
    list-style: disc;
    color: #b8aeae;
    margin-bottom: 8px;
}
.overlay-details-right {
    flex-basis: 30%;
    color: white;
}

.overlay-visit-website {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.overlay-visit-website a {
    color: black;
    font-size: 13px;
    background: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: 400ms;
    cursor: pointer;
}

.overlay-visit-website a i {
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}

.overlay-tech {
    margin-top: 20px;
}
.overlay-techs{
    display: flex;
    flex-wrap: wrap;
}
.overlay-techs span {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
    font-size: 12px;
    padding: 4px 10px;
    background: #5755558d;
    border-radius: 3px;
}

.overlay-year {
    margin-top: 20px;
}

.overlay-year span {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #a79292;
}

.about-project {
    display: none;
}

.blog-section {
    max-width: 100%;
    scroll-margin-top: 120px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header p {
    color: #9aa0a6;
    font-size: 16px;
    margin-bottom: 10px;
}

.blog-header h2 {
    color: #D6DADD;
    font-size: 22px;
}

body.light .blog-header p {
    color: #525253;
}

body.light .blog-header h2 {
    color: #2e2e2f;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 3%;
    flex-wrap: wrap;
}

.blog-card {
    flex-basis: 31%;
    overflow: hidden;
    background: linear-gradient(135deg, #050505, #3f464f);
    border-radius: 3px 15px 3px 15px;
    box-shadow: 8px 8px 20px #191b1e, -8px -8px 20px #2c3137;
    transition: .4s;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

body.light .blog-card {
    background: linear-gradient(135deg, #f6f3f3, #eef1f4);
    box-shadow: 4px 4px 8px #d6d9dc, -4px -4px 8px #ffffff;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    display: block;
    /* transition:.5s; */
}


/* .blog-card:hover img{
  transform: scale(1.02,1.02);
} */

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background:rgba(241, 210, 210, 0.162);
    backdrop-filter: blur(5px);
    color: #ebedf1;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 5px;
}

.blog-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    color: #e2e3e3;
    font-size: 18px;
    margin-bottom: 10px;
}

body.light .blog-content h3 {
    color: #414142;
}

.blog-content p {
    font-size: 14px;
    color: #959ba5;
}

body.light .blog-content p {
    color: #393939;
}

.blog-content a {
    /* display: block; */
    margin-top: auto;
    font-size: 20px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: flex-end;
}

body.light .blog-content a {
    color: #393939;
}

.blog-content a span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #61616146;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

/* contact */

.contact-section {
    max-width: 900px;
    scroll-margin-top: 170px;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading p {
    color: #9aa0a6;
}

body.light .contact-heading p {
    color: #525253;
}

.contact-heading h2 {
    color: #D6DADD;
    margin-top: 5px;
    font-size: 22px;
}

body.light .contact-heading h2 {
    color: #2e2e2f;
}

.contact-form {
    display: flex;
    gap: 30px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right {
    flex: 1;
}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: none;
    outline: none;
    background: #1f2429;
    color: #c4cfde;
    border-radius: 3px 15px 3px 15px;
    box-shadow: 6px 6px 20px #090b0c90, -6px -6px 20px #2a3038;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.112), 10px 10px 24px #14181d, -10px -10px 24px #2a3038;
}

body.light .contact-form input,
body.light .contact-form textarea {
    background: #ecf2f9;
    color: #444;
    box-shadow: 6px 6px 14px #d6d9dc, -6px -6px 14px #ffffff;
    transition: .3s;
}

body.light .contact-form input:focus,
body.light .contact-form textarea:focus {
    box-shadow: 0 0 0 2px rgba(174, 204, 251, 0.385), 8px 8px 18px #d0d3d6, -8px -8px 18px #ffffff;
}

.submit-btn {
    display: block;
    margin: 30px auto;
    padding: 12px 28px;
    background: #ff004f;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}

.submit-btn:active {
    transform: scale(0.98, 0.97);
}

.form-msg {
    text-align: center;
    margin-top: 30px;
    color: #8df58d;
    font-family: 'Courier New', Courier, monospace;
    opacity: 0;
    transition: .4s;
}

.footer-section {
    max-width: 100%;
    background: linear-gradient(135deg, #0f1215, #040506);
    margin-top: 100px;
}

.footer-wrapper {
    margin: auto;
    max-width: 1000px;
    padding: 50px 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    border-bottom: 1px solid rgb(47, 46, 46);
}

.footer-brand {
    flex: 1;
    text-align: start;
}

.footer-brand h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fefefe;
}

.footer-brand p {
    color: rgb(124, 124, 124);
    line-height: 1.6;
    max-width: 300px;
    font-size: 14px;
}

.footer-nav,
.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-nav {
    align-items: center;
}

.footer-nav h4,
.footer-contact-heading h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: rgb(251, 233, 236);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav a {
    text-decoration: none;
    color: rgb(124, 124, 124);
    font-size: 14px;
    transition: 0.3s;
    text-align: start;
    width: max-content;
    line-height: 2;
}

.footer-contact-heading p {
    margin-bottom: 10px;
    color: rgb(124, 124, 124);
    font-size: 14px;
}

.touch-content {
    line-height: 2.5;
}

.touch-content a {
    display: inline-block;
    font-size: 14px;
    color: rgb(124, 124, 124);
    text-decoration: none;
    transition: .4s;
}
.touch-content i {
    margin-right: 8px;
    color: rgb(124, 124, 124);
}

.touch-links {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.touch-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #0a0a0a;
    box-shadow: 5px 5px 10px #101010, -5px -5px 10px #151515;
    color: #8c8f94;
    transition: .3s ease;
}

.touch-links a i {
    font-size: 18px;
}

.footer-bottom {
    max-width: 900px;
    margin: auto;
    font-size: 14px;
    color: #d2cece;
    padding: 10px 0px 10px 0px;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-size: 13px;
    display: inline-block;
    color: #767676;
}

.copyright i {
    font-size: 12px;
    display: inline-block;
    color: #5d5c5c;
}

.blog2-section {
    margin: 150px auto 0px;
    max-width: 900px;
}
.blog2-img-container {
    width: 100%;
    height: 450px;
    background: url("/IMAGES/Js.jpg");
    background-position:top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 10px 10px 24px #27272edd, -10px -10px 24px #22272d8f;
}
.blog1-img-container{
    background: url("/IMAGES/improve\ web\ design.jpg");
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
}
.blog3-img-container{
    background: url("/IMAGES/my\ journey3.jpg");
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
}
body.light .blog2-img-container {
    box-shadow:none;
}

.blog2-img-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.overlay-heading-content {
    margin-top: 40px;
    color: white;
    padding-left: 50px;
}

.blog2-img-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgb(222, 214, 214);
}

.blog2-img-overlay h1 {
    max-width: 550px;
    font-family: "Schibsted Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.overlay-profile {
    margin-bottom: 50px;
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.profile-photo {
    width: 60px;
    height: 60px;
    background-color: rgba(218, 227, 230, 0.975);
    border-radius: 50%;
    background-image: url("../../IMAGES/Ransh_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.profile-name h2 {
    font-size: 20px;
}

.profile-name p {
    font-size: 13px;
    margin-top: 2px;
    color: #dfd4d4;
}

.share-translate-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-right: 20px;
}

.share-translate-btn .share {
    display: inline-block;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(226, 226, 230);
    border-radius: 50%;
    color: rgb(19, 18, 18);
    font-size: 16px;
    cursor: pointer;
    transition: 300ms;
}

.translate {
    padding: 8px;
    background: rgb(226, 226, 230);
    border-radius: 8px;
    color: rgb(19, 18, 18);
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 300ms;
}

.language-select {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: rgb(19, 18, 18);
    transition: 300ms;
}

.language-select option {
    color: black;
}

.blog2-content {
    max-width: 800px;
    margin: 30px auto;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.blog2-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgb(227, 222, 222);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12pt;
}

body.light .blog2-content p {
    color: black;
}

hr {
    margin-top: 40px;
}

.blog2-content h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
}

body.light .blog2-content h2,
body.light .blog2-content h3,
body.light .blog2-content ul,
body.light .blog2-content ol {
    color: black;
}

.blog2-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
}

.blog2-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: rgb(227, 222, 222);
}

.blog2-content ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.blog2-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
    color: rgb(227, 222, 222);
}

.blog2-content ol li {
    margin-bottom: 8px;
    list-style: I;
}



.prev-next {
    max-width:800px;
    margin: 0px auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.prevbtn,
.nextbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    color: #d7dbe0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
    padding: 0;
    text-align: left;
}

.prevbtn span,
.nextbtn span {
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prevbtn i,
.nextbtn i {
    font-size: 14px;
    flex-shrink: 0;
    color: rgb(54, 54, 250);
}

.prevbtn:active,
.nextbtn:active {
    transform: scale(0.98, 0.97);
}

.prevbtn:disabled,
.nextbtn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

body.light .prevbtn,
body.light .nextbtn {
    color: #2e2e2f;
}


