/* =========================
   1. COMMON CODE 
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Righteous&display=swap');

:root {
    --primary-color: #01509A;
    --secondary-color: #F2F6FA;
    --accent-color: #FF9500;
    --text-color: #333333;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
    --primary-font: 'Righteous', cursive;
    --secondary-font: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--secondary-font);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, .primary-text {
    font-family: var(--primary-font);
}

p, .secondary-text {
    font-family: var(--secondary-font);
}

.primary-color {
    color: var(--primary-color);
}

.complementary-bg-clr {
    background-color: #F2F6FA;
}

ul {
    list-style-type: disc; 
}

ul li::marker {
    color: rgb(4, 0, 0);   
    font-size: 25px; 
}

/* ================================================================
   2. INDEX CSS CODE - Home Page Styles
   ================================================================ */

.container h2{
    font-size: 2rem;
    color: #333333;
    margin-bottom: 50px;
    text-align: center;
}
.container h2{
    font-size: 1rem;
    color: #715bb7;
    margin-bottom: 20px;
}

/* Hero Video Styles */
.hero-video {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: brightness(0.3) sepia(1) hue-rotate(160deg) saturate(150%);
}   
.hero-header {
  position: relative;
  height: 100vh; 
  overflow: hidden;
}
.hero-content p {
    position: absolute;
    bottom: 4%;
    left: 37.5%;
    transform: translate(-50%, -50%);
    color: rgb(197, 193, 193);
    z-index: 1;
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 50px;
    width: 55%;
}
.hero-content h5 {
    position: absolute;
    bottom: 30%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 1;
    text-align: left;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 50%;
}
.btn-fill-primary {
    background-color: #ffffff;
    font-size: 1.5rem;
    left: 10%;
    position: absolute;
    bottom: 7%;
    width: 20%;
}
.btn-fill-primary:hover {
    background-color: #01509A;
}
.container h3{
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
}
#main-header, #main-heading, #main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  background: transparent; 
  transition: background 0.3s ease, padding 0.3s ease;
  z-index: 1000;
}

#main-header.scrolled {
  background: #01509A;  
  opacity: 10;
  padding: 10px 30px;   
}
#main-header.scrolled .nav-link:hover, #main-heading.scrolled .nav-link:hover, #main-head.scrolled .nav-link:hover {
  color: #01509a !important;
}
#main-heading.scrolled {
  background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);;  
  opacity: 10;
  padding: 10px 30px;   
}
#main-head.scrolled {
  background: rgb(0 54 112);
  opacity: 10;
  padding: 10px 30px;   
}
/* Products Section */
          .products {
            padding: 1rem;
            background: #f4f6ff;
         } 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0rem;
        }
         .products-grid {
            display: grid;
            grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
            margin-top: 1px;
        } 
        .product-card {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 1rem;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0, 119, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.8), transparent);
            transition: left 0.6s ease;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .store-heading h4{
            position: absolute;
            text-align: left;
            font-size: 2rem;
            font-weight: bold;
            margin-left: 8rem;
            color: #01509A;
            margin-top: 4rem;
        }
        .store-heading p {
            color: #000000;
            margin-bottom: 2rem;
            line-height: 1.2;
            margin-left: 8rem;
            margin-top: 7rem;
            max-width: 260px;
        }
        .image-container {
            position: absolute;
            display: inline-block;
        }
        .store-img{
            width: 25rem;    
            height: 15rem;
            display: flex;
            border-radius: 8px;
            opacity: 25%;
            position: absolute;
            margin-left: 2rem;
        }
        .product-features {
            list-style: none;
        }

        .product-features li {
            padding: 0.5rem 0;
            color: #4a5568;
            position: relative;
            text-align: left;
            left: 50%;
        }
        
        .product-features li::before {
            content: '✓';
            position: fixed;
            left: 50%;
            color: #01509A;
            font-weight: bold;
        }
        .product-button {
            position: absolute;
            top: 5rem;
            right: 5rem;
        }
        .product-button {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #01509A;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 65rem;
        }
        .product-button::after {
            content: '→'; /* Unicode arrow character */
            margin-left: 15px;
            font-size: 20px;
        }
        .product-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(118,75,162,0.3);
        }
.navbar-toggler-icon {
  display: none;
}
/* Main Layout */
.main-div {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
/* Navbar */
.nav-link {
    color: var(--white);
    transition: color 0.3s ease;
}
.navbar-nav{
    gap: 20px;
}
.navbar-logo img {
     width: auto;
    max-height: 60px;
}
.nav-btn {
    color: var(--white);

}
.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px 0; 
}
  
.navbar-brand img {
    width: auto;
    max-height: 60px; 
}
.nav-link:hover, .nav-btn:hover{
    color: #01509A;
    border-radius: 10px;
    background-color: var(--light-gray);
}
/* Hero Section */
.hero-row {
    align-items: center;
}

.hero-content {
    padding-right: 0px; 
}

.hero-heading {
    font-size: clamp(44px, 5vw, 65px); 
    line-height: 1.1;
    margin-bottom: 12px; 
    color: var(--primary-color);
}

.hero-sub-heading {
    font-size: clamp(36px, 4vw, 54px); 
    line-height: 1.2;
    margin-bottom: 25px; 
    color: var(--primary-color);
}

.hero-description {
    font-size: 20px;
    color: #999;
    margin-bottom: 25px; 
    font-family: var(--secondary-font);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: space-between;
    max-width: 540px;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: black;
    margin-top: 5%;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

/* Links section */
.footer-links {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
}
.footer-heading {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #ff8800;
}

.link-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap:15px;
}

.link-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background-color: white;
    color: #0055a4;
    border-radius: 50%;
}
.footer-contact {
    flex: 1 1 250px;
}
.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}
.social-icons a {
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}
.social-icons svg {
    width: 24px;
    height: 24px;
    fill: #01509A; 
    transition: transform 0.2s ease-in-out, fill 0.2s;
}
.social-icons a:hover svg {
    fill: #ff6600; 
    transform: scale(1.1);
}
/* ===== Mobile Sidebar Menu (Corrected + Improved) ===== */
@media (max-width: 767.98px) {
  #main-header {
    background: #01509A;
    padding: 10px 16px;
    box-shadow: none;
  }
  body{
    padding-top: 50px;
  }
  .navbar-toggler-icon {
    display: block;
    width: 45px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    cursor: pointer;
  }
  .collapse {
    display: block !important;
  }
  .navbar-toggler {
    cursor: pointer;
    font-size: 28px;
    color: #01509A;
    z-index: 1001;
    position: relative;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    background-color: #000000;
    padding: 25px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  #menu-toggle:checked ~ .navbar-collapse {
    right: 0;
  }
  .close-btn {
    font-size: 28px;
    color: #fff;
    text-align: right;
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 20px;
  }
  .nav-link, .nav-btn {
    color: #fff !important;
    font-size: 18px;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: all;
  }
  /* prevent page content from being covered incorrectly: ensure hero content stacks and centers */
    .btn-fill-primary,
    .store-heading h4,
    .product-button,
    .store-img {
        position: relative;
        left: auto ;
        transform: none ;
        margin: 0.75rem auto ;
        width: 90% ;
        text-align: center ;
    }
   .hero-content h5{
    position: relative;
    margin: 6.75rem auto;
    left: auto;
    transform: none;
    font-size: 13px;
    line-height: 1.4;
    max-width: 250px;
   }
  .store-heading h4 {
    font-size: 1.6rem;
    margin-top: 1.25rem;
  }
  .product-features li {
    left: 0;
    position: relative;
    padding-left: 1.4rem;
  }
  .product-features li::before {
    position: absolute;
    left: 0.25rem;
  }
  .product-card {
    border-radius: 14px;
    padding: 1rem;
    margin: 0.9rem 0;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
  }
  .product-button {
    right: auto;
    top: auto;
    left: 2rem;
    text-align: center;
  }
  .footer-content {
    padding: 1.5rem 1rem;
    gap: 18px;
  }
  .hero-video{
    height: 100%;
  }
  .hero-header{
    height: 100%;
  }
.hero-description {
    font-size: 17px;
    color: #999; 
    font-family: var(--secondary-font);
    margin-left: 20px;
}
.footer-logo{
    flex: 0;
    margin-bottom: 0;
}
.footer-links{
    flex: 0;
    margin-bottom: 0;
}
.footer-contact{
    flex: 0;
}
.hero-content p {
        bottom: 0;
        left: 0;
        transform: 0;
        color: 0;
        z-index: 0;
        text-align: 0;
        font-size: 0rem;
        margin-bottom: 0;
        width: 0;
    }
}
.nav-link:hover, .nav-btn:hover{
    color: #01509A;
    border-radius: 10px;
    background-color: var(--light-gray);
}
.nav:hover{
    background-color: #ffedd9;
    color: #FF8C00;
    transform: translateY(-2px);
}
.nav{
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 25px;
    padding: 20px 30px; 
    border-radius: 6rem;
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    transition: all 0.3s ease;
    border: none;
    top: 30rem;
    position: absolute;
    right: 40px;
}
.btn-doc {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 22px;
  padding: 18px 36px;
  border-radius: 6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 35%;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 45px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-doc:hover {
  background: linear-gradient(135deg, rgb(242, 255, 0) 0%, rgb(102, 126, 234) 100%);
  color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}
.footers{
    color: black;
    transition: color 0.3s ease;
}
.footers:hover{
    color: #01509A;
}
.link-item a{
    text-decoration: none;
}
/* ================================================================
   3. FEATURES MYSTORE CSS CODE - MyStore Features Page
   ================================================================ */
/* Main Layout */
.main-div1 {
        background: linear-gradient(113deg, rgba(0,54,112,0.95) 100%, rgba(0,92,185,0.9) 0%, rgba(0,142,255,0.85) 30%);
        width: 100%;
        /* height: 100vh; */
        /* padding-bottom: 50px; */
        overflow: hidden;
        margin-bottom: 0px;
        margin-bottom: 0 !important; 
}

/* Mobile Brand Image */
@media (max-width: 767.98px) {
    .navbar-brand1 img {
        max-height: 50px; 
        
    }
}
/* Navbar link hover */
.nav-link-nav1:hover, 
.nav-link-nav1.active, 
.nav-btn1:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-row1 {
    align-items: center;
}

.hero-content1 {
    padding-right: 0px; 
}

.hero-heading1 {
    font-size: clamp(44px, 5vw, 65px);
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-top: 7rem;
    color: var(--white);
}

.hero-sub-heading1 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-description1 {
    font-size: 20px;
    color: #d9d9d9;
    max-width: 540px;
    margin-bottom: 25px;
    font-family: var(--secondary-font);
}

.hero-features1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: space-between;
    max-width: 540px;
}

.feature-item1 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-icon1 {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.feature-text1 {
    margin: 0;
    font-size: 12px;
    color: #fff;
}

.hero-cta1 {
    margin-top: 50px;
}
.trial-btn1 {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    padding: 8px 24px;
    border-radius: 10px;
    margin-top: 3.5rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    vertical-align: middle;
    position: relative;
    top: -20px;
}
.trial-btn1:hover {
    background-color: #000000;
    color: var(--white);
    transform: translateY(-3px);
}
.hero-image-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(0,54,112,0.7), rgba(0,142,255,0.3));
    padding: 15px;
    margin-top: 5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.hero-image-container1::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,142,255,0.4), rgba(0,54,112,0.1));
    filter: blur(60px);
    z-index: 1;
    animation: glowEffect 6s ease-in-out infinite alternate;
}

/* Main image styling */
.hero-image1 {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    width: 90%;
    transform: scale(1);
    transition: all 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}
/* Dashboard image inside */
.dashboard-image1 {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin-top: 1rem;
}
#features1 {
    background-color: none;
    margin-bottom: 40px; 
}
.section-heading1 h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-top: 0;          
    margin-bottom: 2rem;     
    padding-top: 0;          
    line-height: 1.2;        
}
.section-heading1 {
    margin-top: 2rem;        
    padding-top: 0;          
    text-align: center;     
}

.section-heading1 h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.section-heading1 p {
    font-size: 18px; 
    color: #999;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid1 {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 70px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.features-grid1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 350px 150px 0 0;
    border-color: #c2d5e7 transparent transparent transparent;
    z-index: 0;
    border-radius: 10px;
}

.features-grid1::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 350px 150px;
    border-color: transparent transparent #c2d5e7 transparent;
    z-index: 0;
    border-radius: 10px;
}

.features-row1 {
    display: flex;
    justify-content: space-between;
    gap: 40px; 
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.features-row1:last-child {
    margin-bottom: 0;
}

.feature-card1 {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px; 
    flex: 1;
    transition: all 0.3s ease;
}

.feature-card1:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.feature-card-icon {
    width: 60px; 
    height: 60px;
    margin-bottom: 25px; 
    filter: brightness(0) saturate(100%) invert(53%) sepia(54%) saturate(6208%) hue-rotate(2deg) brightness(102%) contrast(106%);
    transition: filter 0.3s ease;
}

.feature-card1:hover .feature-card-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(206deg) brightness(95%) contrast(80%);
}

.feature-card1 h5 {
    color: var(--primary-color);
    font-size: 22px; 
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card1 p {
    font-size: 16px; 
    color: #999;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Inventory Section */
#inventory1 {
    margin-bottom: 80px; 
    background-color: #f2f6fa;
    padding: 5% 5%; 
 }
 
 .inventory1-steps {
    background-color: #FFF;
    padding: 4%; 
    border-radius: 20px;
 }

.inventory-heading1 {
    text-align: left;
    margin-bottom: 60px; 
}

.inventory-heading1 h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.inventory-heading1 p {
    font-size: 20px; 
    margin: 0;
}

.step-card1 {
    background-color: #f2f6fa;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f2f6fa;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.step-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-image1 {
    padding: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFEDD9;
}

.step-image1 img {
    width: auto;
    max-width: 10%;
}

.step-content1 {
    padding: 40px; 
    position: relative;
    background-color: #f2f6fa;
}

.step-badge1 {
    margin-bottom: 20px;
    position: relative; 
  }
.step-content1 h5 {
    font-size: 22px; 
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px; 
}

.step-content1 p {
    font-size: 16px; 
    color: #999;
    margin-bottom: 0;
    line-height: 1.7; 
}

#stocks1 {
    background-color: #fff;
    margin: 5%; 
 }

.stock-points1 {
    margin-top: 48px;
}

.stock-point1 {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    align-items: center;
}
.settings-container1 {
    display: flex;
    border: 1px solid #FF8C00;
    border-radius: 20px;
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.settings-icon1 {
    background: #FF8C00;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-content1 {
    flex-grow: 1;
    padding: 10px;
}

.settings-content1 p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.settings-content1 p:before {
    content: "•";
    margin-right: 8px;
    
}
.purchase
{
    margin-top: 4.5rem;
    padding-left: 50px;
    align-items: center;
}

/* seo styles begin  */
#seo1
{
    padding: 5%;
    background-color: #f2f6fa;
}
.main-seo1
{
    padding: 4%;
    background-color: #fff;
    border-radius: 20px;
}
.section-divider1 {
    height: 1px;
    width: 75%;
    margin: 60px auto;
    background: linear-gradient(to right, 
        #FFFFFF 16%, 
        #01509A 50%, 
        #FFFFFF 82%);
    border: none;
}


/* Shipping Section Styles */
#shipping1 {
    padding: 5%; 
    background-color: var(--white);
    margin-bottom: 40px;
}

.main-shipping1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 60px 40px;
}

.shipping-text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.shipping-text1 h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.shipping-text1 p {
    width: 70%;
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin: 0 auto;
}

.main-shipping1 img {
    max-width: 100%;
    height: auto;
    display: block;
}

#shipping .col-md-6 img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%; 
}

#shipping .col-md-6 {
    padding: 0 15px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
#inventory .col-md-4
{
    padding: 20px;
}
 
.Email-content1
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.email-img
{
    width: 25%;
}
/* Payments */
#payment1
{
    background-color: #f3f6fa;
    padding: 5%;
}
.payment-text1
{
    margin-bottom: 40px;
}
.payment-1-icon-content1
{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.payment-btn1
{
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

/* promotion-img */

#promotion-img1
{
    background-color: #fff;
    padding: 5%;
}

/* Footer */
.footer1 {
    background-color: #0055a4;
    color: white;
    margin-top: auto;
}

.footer-content1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Logo and tagline section */
.footer-logo1 {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
}

.footer-logo1 img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

/* Links section */
.footer-links1 {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
}

.footer-heading1 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #FFC685;
}

.link-item1 {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap:15px;
}

.link-item1 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background-color: white;
    color: #0055a4;
    border-radius: 50%;
}

/* Contact section */
.footer-contact1 {
    flex: 1 1 250px;
}

/* Copyright bar */
.copyright-bar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

.social-icons1 a {
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.social-icons1 svg {
    width: 24px;
    height: 24px;
    fill: #01509A; 
    transition: transform 0.2s ease-in-out, fill 0.2s;
}

.social-icons1 a:hover svg {
    fill: #ff6600; 
    transform: scale(1.1);
}
/* Form Section */

.complementary-bg-clr
{
    background-color: #F2F6FA;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content1 {
        flex-direction: column;
    }
    
    .copyright-bar1 {
        flex-direction: column;
    }
    
    .social-icons1 {
        margin-top: 0.8rem;
    }
}
@media (max-width: 767.98px) {
    .main-div1 {
        background: #FFFFFF !important;
        background-image: none !important;
        padding-top: 0;
        margin-top: 0;
    }
    #main-head {
        background: #014080;
        padding: 10px 16px;
        box-shadow: none;
    }
    .hero-content1 {
        padding: 15px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .hero-image-container1 {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .hero-row1 .col-md-6:last-child {
        display: none !important;
    }
    .hero-row1 .col-md-6:first-child {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .hero-heading1 {
        font-size: 32px;
        margin-top: 2rem;
        color: #333333;
    }

    .hero-sub-heading1 {
        font-size: 26px;
    }
    .hero-description1 {
        font-size: 16px;
        color: white;
    }
    .hero-cta1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .trial-btn1 {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        padding-top: 10rem;
    }
}
@media (max-width: 575.98px) {
.hero-heading1 {
font-size: 32px;
margin-top: 3rem;

}
.hero-sub-heading1 {
    font-size: 26px;
   
}
.hero-description1 {
    font-size: 16px;
}
.trial-btn1 {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    padding: 14px 28px;
}
.navbar-collapse {
    width: 90%;
    max-width: 300px;
}
}
@media (max-width: 991.98px) {
    .features-grid1::before,
    .features-grid1::after {
        display: none;
    }
    .section-divider {
        margin: 30px auto;
    }
}
@media (max-width: 767.98px) {
    .purchase {
        margin-top: 2rem;
        padding-left: 0;
    }
    
    .stock-point1 {
        gap: 10px;
        margin-bottom: 20px;
    }

    .settings-container {
        flex-direction: column;
    }
    
    .settings-icon {
        padding: 15px;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .inventory-process .process-card {
        margin-bottom: 30px; 
    }
    
    .stock-features, .rewards-features, .seo-features {
        margin-bottom: 30px;
    }
    
    .settings-container {
        max-width: 100%; 
    }
    
    .shipping-header h2 {
        font-size: 28px; 
    }
    
    .shipping-content img {
        width: 100%; 
        height: auto;
    }
 }
 
 @media (max-width: 575.98px) {
    #inventory, #seo, #shipping {
        padding: 30px 15px; 
        
    }
    
    #stocks {
        margin: 30px 15px;
    }
    
    .inventory-steps, .main-seo {
        padding: 25px 15px;
    }
    
    .section-header h2 {
        font-size: 24px; 
    }
    
    .section-divider {
        margin: 30px auto; 
    }
 }

@media (max-width: 1199.98px) {
    #hero1 {
        padding: 80px 0 90px;
        background: #014080;;
    }
    
    #features1, #inventory1 {
        padding: 110px -18px;
    }
    
    .features-grid1 {
        padding: 60px;
    }
}

@media (max-width: 991.98px) {
    .features-row1 {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-card1 {
        width: 100%;
    }
    
    .trial-btn1 {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .main-div1 {
        background: linear-gradient(110deg, var(--secondary-color) 65%, var(--primary-color) 65%);
    }
    
    #hero1 {
        padding: 60px 0 70px;
    }
    
    #features1, #inventory1 {
        padding: 90px 0;
    }
}
@media (max-width: 767.98px) {
    .main-div1 {
        background: linear-gradient(150deg, var(--secondary-color) 75%, var(--primary-color) 75%);
    }
    #hero1 {
        padding: 50px 0 60px;
    }
    #features1, #inventory1 {
        padding: 70px 0;
    }
    .hero-content1 {
        text-align: center;
        margin-bottom: 50px;
    }
    .hero-image-container1 {
        order: 2; 
        margin-bottom: 10;
        position: relative;
        z-index: 5; 
    }
    .hero-image1 {
        position: absolute;
        z-index: 5; 
    }
    .hero-description1 {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features1 {
        justify-content: space-around;
        gap: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    .feature-card1 {
        width: 100%;
        margin-bottom: 0; 
    }
    .feature-card1:last-child {
        margin-bottom: 0;
    }
    .features-grid1 {
        padding: 50px 30px; 
    }
    .features-row1 {
        flex-direction: column;
        gap: 30px; 
    }
    .section-heading1, .inventory-heading1 {
        margin-bottom: 40px;
    }
    #inventory1 {
        padding: 40px 20px;
    }
    .inventory-steps1 {
        padding: 30px 20px;
    }
}
@media (max-width: 575.98px) {
    .navbar-container1 {
        border-radius: 12px;
        margin-top: 0px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .navbar {
        padding: 12px 16px;
    }
    #hero1 {
        padding: 0px 0 0px;
    }
    .hero-row1 {
        margin-left: 0;
        margin-right: 0;
    }
    #features1, #inventory1 {
        padding: 0px 10px;
    }
    .hero-heading1 {
        font-size: 38px;
    }
    
    .hero-sub-heading1 {
        font-size: 32px;
    }
    
    .hero-description1 {
        font-size: 16px;
    }
    .hero-features1 {
        flex-direction: column;
        gap: 20px;
    }
    .trial-btn1 {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        justify-content: center;
    }
    .section-heading1 h2, 
    .inventory-heading1 h2 {
        font-size: 32px;
    }
    .features-grid1 {
        padding: 30px 20px;
    }
    .feature-card1 {
        padding: 25px 20px;
    }
    .step-image1, .step-content1 {
        padding: 25px 20px;
    }
    .step-image1 img {
        max-width: 100%;
    }
    .col-md-6 .seo-img {
        height: auto;
        width: 100%;
    }
}
@media (max-width: 400px) {
.hero-heading1 {
font-size: 28px;
padding-top: 35px;
}
.hero-sub-heading1 {
    font-size: 24px;
}
.navbar-collapse {
    width: 85%;
}
}
@media (max-width: 1199.98px) {
    .shipping-text1 h2 {
        font-size: 36px;
    }
    
    .shipping-text1 p {
        width: 80%;
    }
}
@media (max-width: 991.98px) {
    .main-shipping1 {
        padding: 50px 30px;
    }
    .shipping-text1 h2 {
        font-size: 32px;
    }
    .shipping-text1 p {
        width: 90%;
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    #shipping {
        padding: 40px 20px;
    }
    .main-shipping {
        padding: 40px 20px;
    }
    
    .shipping-text h2 {
        font-size: 28px;
    }
    
    .shipping-text p {
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    #shipping {
        padding: 30px 15px;
    }
    
    .main-shipping {
        padding: 30px 15px;
    }
    
    .shipping-text {
        margin-bottom: 30px;
    }
    .shipping-text h2 {
        font-size: 24px;
    }
    
    .shipping-text p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .main-shipping {
        padding: 25px 10px;
    }
    
    .shipping-text h2 {
        font-size: 22px;
    }
    .footer-contact1{
        flex: 0;
    }
    .footer-links1{
        flex: 0;
        margin-bottom: 0;
    }
    .footer-logo1{
        flex: 0;
        margin-bottom: 0;
    }
}
/* ================================================================
   4. USERGUIDE MYSTORE CSS CODE - MyStore User Guide Page
   ================================================================ */

.main-div2 {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;

} 
    /* Navbar */
.navbar {
    height: 80px;
    padding: 2rem;
    background-color: #014080;
}
.nav-link-nav2{
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-brand2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;   
    height: 60px;
    margin-right: 20px;            
    margin-left: auto; 
}
  
.navbar-brand2 img {
    width: auto;
    height: 60px; 

}
  
@media (max-width: 767.98px) {
    .navbar-brand2 img {
        max-height: 50px; 
    }
}

.nav-link-nav2:hover, .nav-link-nav2.active, .nav-btn2:hover {
    color: var(--primary-color);
}


 /* Hide radio buttons */
    input[type="radio"] {
      display: none;
    }

    /* Sidebar */
.sidebar2 {
      position: fixed;
      top: 80px;
      left: 0;
      width: 200px;
      height: calc(100vh - 80px);
      background: #f3f7fa;
      padding: 10px;
      overflow-y: auto;
      border-right: 1px solid #ddd;
}
.sidebar2 summary{
      list-style: none;
      background: #F2F6F7;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 7px 20px;
      font-size: smaller;
      margin: 0;
    }
.sidebar2 summary::-webkit-details-marker {
      display: none;
    }
.sidebar2 summary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    /* Arrow icon */
.arrow2 {
      border: solid rgb(141, 141, 141);
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 3px;
      transform: rotate(-45deg);
      transition: transform 0.3s;
      margin-right: 15px;
    }
details[open] .arrow2 {
      transform: rotate(45deg);
    }

    /* Submenu items */
.submenu2 {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: smaller;
    }
.submenu2 label {
      display: block;
      padding: 0.75rem 2rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
      border-left: 3px solid transparent;
      font-weight: 500;
      background-color: #F2F6F7;
    }
    .submenu2 label:hover {
      background: rgba(102, 126, 234, 0.1);
      border-left-color: #01509A;
      border-radius: 10px;
    }


    /* Content area */
.content2 {
  margin-left: 200px;
  padding: 20px;
  /* background: #f8fafc; */
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
.section {
    display: none;
    background: rgb(255, 255, 255);
    height: 100%;
    padding: 20px;
    border-radius: 20px;
}

    /* Show selected content */ 
    #dashboard:checked ~ .content2 #dashboard,
    #products:checked ~ .content2 #products,
    #stock:checked ~ .content2 #stock,
    #collection:checked ~ .content2 #collection,
    #brand:checked ~ .content2 #brand,
    #allorder:checked ~ .content2 #allorder,
    #payments:checked ~ .content2 #payments,
    #refund:checked ~ .content2 #refund,
    #failedorder:checked ~ .content2 #failedorder,
    #offerlist:checked ~ .content2 #offerlist,
    #loyaltylist:checked ~ .content2 #loyaltylist,
    #customer:checked ~ .content2 #customer,
    #vendor:checked ~ .content2 #vendor,
    #blog:checked ~ .content2 #blog,
    #product:checked ~ .content2 #product,
    #order:checked ~ .content2 #order,
    #menu:checked ~ .content2 #menu,
    #slider:checked ~ .content2 #slider,
    #shipping-delivery:checked ~ .content2 #shipping-delivery,
    #user:checked ~ .content2 #user{
      display: block;
    }
.section h2 {
        /* color: #01509A; */
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    font-family: 'Montserrat';
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 2px;
}
.section h1 {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    color: #2d3748;
    margin: 25px 0 15px 0;
    padding: 12px 0;
}

.section p {
    line-height: 1.6;
    font-size: 16px;
    margin-left: 40px;
    text-align: justify;
}
    #menu-toggle {
      display: none;
    }
    #menu-toggle:checked + label {
      display: block;
    }
    /* Desktop view */
@media (max-width: 768px) {
      .sidebar2 {
        left: -250px;
        
      }
      #menu-toggle:checked ~ .sidebar2 {
        left: 0;
      }
      .menu-btn2 {
        display: block;
      }
      .content3 {
        margin-left: -60px !important;
        margin-top: 50px;
        
      }
    }
    /* When checked → hide menu button */
    #menu-toggle:checked{
      display: none;
    }
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 900;
    }

    #menu-toggle:checked ~ .overlay {
      opacity: 1;
      visibility: visible;
    }

    /* Sidebar higher priority */
    .sidebar2 {
      z-index: 1000;
    }
    .head2 {
      color: #01509A;
      font-size: 1rem;
      padding: 0;
    }
    ul {
      list-style-type: disc; 
    }

    ul li::marker {
      color: rgb(4, 0, 0);   
      font-size: 25px; 
    }


/* ================================================================
   5. FEATURE MYBOOK CSS CODE - MyBook Features Page
   ================================================================ */
     /* Main Layout */
/* Main container with curved split background */
.main-div4 {
  background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
  padding: 140px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}
.hero-heading4 {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

.hero-description4 {
  font-size: 21px;
  color: #e8e8ff;
  max-width: 720px;
  text-align: center;
  margin-top: 25px;
  line-height: 1.6;
}

.hero-features4 {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin-top: 60px;
}

.feature-item4 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.feature-item4:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(118, 75, 162, 0.3), 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.7));
}

.feature-text4,
.feature-text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.hero-image4 {
  width: 570px;
  height: 570px;
  border-radius: 30px;
  border: 10px solid rgba(255,255,255,0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease, border-radius 0.6s ease;
}
.dashboard-image4{
    border-radius: 10px;
    width: 100%;
    height: 70%;
}
/* ======= Responsive ======= */
@media (max-width: 992px) {
  #hero4 {
    padding: 60px 20px;
  }

  #hero4::after {
    width: 100%;
    height: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
    opacity: 0.8;
  }

  .hero-row4 {
    flex-direction: column;
  }

  .hero-content4 {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-heading4 {
    font-size: 40px;
  }

  .hero-image-container4 {
    width: 100%;
    margin-top: 40px;
  }

  .hero-features4 {
    justify-content: center;
  }
}
#features4 {
    background-color: none;
    margin-bottom: 40px; 
    /* margin-top: 100px; */
    padding-top: 50px;
}

.section-heading4 {
    text-align: left;
    margin-bottom: 30px;
}

.section-heading4 h2 {
    font-size: 40px; 
    /* color: var(--primary-color); */
}

.section-heading4 p {
    font-size: 18px; 
    color: #999;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid4 {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 70px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.features-grid4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 350px 150px 0 0;
    border-color: #705cba transparent transparent transparent;
    z-index: 0;
    border-radius: 10px;
}

.features-grid4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 350px 150px;
    border-color: transparent transparent #705cba transparent;
    z-index: 0;
    border-radius: 10px;
}

.features-row4 {
    display: flex;
    justify-content: space-between;
    gap: 40px; 
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.features-row4:last-child {
    margin-bottom: 0;
}

.feature-card4 {
    background-color: var(--white);
    border-radius: 12px;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
    flex: 0 0 220px;
    height: 220px;
    transition: all 0.3s ease;
}

.feature-card4:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.feature-card-icon4 {
    width: 60px; 
    height: 70px;
    margin-bottom: 20px; 
    filter: brightness(0) saturate(100%) invert(53%) sepia(54%) saturate(6208%) hue-rotate(2deg) brightness(102%) contrast(106%);
    transition: filter 0.3s ease;
    height: 50px;
}

.feature-card4:hover .feature-card-icon4 {
    filter: invert(44%) saturate(686%) hue-rotate(238deg) brightness(92%) contrast(90%)
}

.feature-card4 h5 {
    color: #705cba;
    font-size: 20px; 
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card4 p {
    font-size: 16px; 
    color: #6a6767;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Pricing Plan Styles */
#inventory4 {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.inventory4 {
  max-width: 1200px;
}

.inventory-heading4 {
  text-align: center;
  margin-bottom: 60px;
}

.inventory-heading4 .primary-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: popins;
  margin-bottom: 15px;
}

.inventory-heading4 .secondary-text {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto;
}

.inventory-steps4 {
  display: flex;
  align-items: stretch;
}

.step-card4 {
  background: white;
  border-radius: 20px;
  padding: 0;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 3px solid transparent;
}

.step-card4:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.step-card4.popular-plan {
  border: 3px solid #10b981;
}

.step-card4.popular-plan:hover {
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 45px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 10;
}

.step-image4 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 30px;
  text-align: center;
}

.plan-header {
  color: white;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-display {
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 5px;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.billing-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.step-content4 {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.step-badge4 {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-content4 h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.step-content4 > p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 10px 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid #e2e8f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.popular-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.popular-btn:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .inventory-heading4 .primary-text {
    font-size: 2rem;
  }
  
  .inventory-heading4 .secondary-text {
    font-size: 1rem;
  }
  
  .step-card4.popular-plan {
    margin-bottom: 30px;
  }
  
  .step-card4.popular-plan:hover {
    transform: translateY(-10px);
  }
  
  .price {
    font-size: 2.8rem;
  }
  
  .col-md-4 {
    margin-bottom: 30px;
  }
}

/* Inventory Section */
#inventory4 {
    margin-bottom: 40px; 
    background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
    /* padding: 5% 5%;  */
    padding-top: 5%;
    padding-bottom: 7%;
 }
 
 .inventory-steps4 {
    background-color: #FFF;
    padding: 4%; 
    padding-bottom: 2%;
    border-radius: 20px;
 }

.inventory-heading4 {
    text-align: left;
    margin-bottom: 60px; 
}

.inventory-heading4 h2 {
    font-size: 40px;
    color: #ffffff;
}

.inventory-heading4 p {
    font-size: 20px; 
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.step-card4 {
    background-color: #f2f6fa;
    border-radius: 16px;
    overflow: hidden;
    height: 97%;
    border: 1px solid #f2f6fa;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 3px solid #10b981;
}

.step-card4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-image4 {
    padding: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFEDD9;
}

.step-image4 img {
    width: auto;
    max-width: 100%;
}

.step-content4 {
    padding: 44px; 
    position: relative;
    background-color: #f2f6fa;
}

.step-badge4 {
    margin-bottom: 20px;
    position: relative; 
  }
.step-content4 h5 {
    font-size: 22px; 
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px; 
}

.step-content4 p {
    font-size: 16px; 
    color: #999;
    margin-bottom: 0;
    line-height: 1.7; 
}

#stocks4 {
    background-color: #fff;
    margin: 5%; 
 }

.stock-points4 {
    margin-top: 48px;
}

.stock-point4 {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    align-items: center;
}
.settings-container4 {
    display: flex;
    border: 1px solid #FF8C00;
    border-radius: 20px;
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.settings-icon4 {
    background: #FF8C00;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-content4 {
    flex-grow: 1;
    padding: 10px;
}

.settings-content4 p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.settings-content4 p:before {
    content: "•";
    margin-right: 8px;
    
}
/* seo styles begin  */
#seo4
{
    padding: 5%;
    background-color: #f2f6fa;
}
.main-seo4
{
    padding: 4%;
    background-color: #fff;
    border-radius: 20px;
}
.section-divider4 {
    height: 1px;
    width: 75%;
    margin: 60px auto;
    background: linear-gradient(to right, 
        #FFFFFF 16%, 
        #01509A 50%, 
        #FFFFFF 82%);
    border: none;
}


/* Shipping Section Styles */
#shipping4 {
    padding: 5%; 
    background-color: var(--white);
    margin-bottom: 40px;
}

.main-shipping4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 60px 40px;
}

.shipping-text4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.shipping-text4 h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.shipping-text4 p {
    width: 70%;
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin: 0 auto;
}

.main-shipping4 img {
    max-width: 100%;
    height: auto;
    display: block;
}
.Email-content4
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.email-img4
{
    width: 25%;
}


@media (max-width: 767.98px) {
    #promotion-img4 {
        padding: 40px 20px;
    }
    
    #promotion-img4 img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    #promotion-img4 {
        padding: 30px 15px;
    }
    #shipping .col-md-6 img {
        max-width: 100%; 
    }
}

/* Payments */
#payment4
{
    background-color: #f3f6fa;
    padding: 5%;
}
.payment-text4
{
    margin-bottom: 40px;
}
.payment-1-icon-content4
{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.payment-btn4
{
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

/* promotion-img */

#promotion-img4
{
    background-color: #fff;
    padding: 5%;
}

/* Footer */
.footer4 {
    background-color: #6e65c6;
    color: white;
    margin-top: auto;
}

.footer-content4 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Logo and tagline section */
.footer-logo4 {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
}

.footer-logo4 img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}
/* Links section */
.footer-links4 {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
}

.footer-heading4 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #FFC685;
}

.link-item4 {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap:15px;
}

.link-item4 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background-color: white;
    color: #0055a4;
    border-radius: 50%;
}

/* Contact section */
.footer-contact4 {
    flex: 1 1 250px;
}

/* Copyright bar */
.copyright-bar4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

.social-icons4 a {
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.social-icons4 svg {
    width: 24px;
    height: 24px;
    fill: #01509A; 
    transition: transform 0.2s ease-in-out, fill 0.2s;
}

.social-icons4 a:hover svg {
    fill: #ff6600; 
    transform: scale(1.1);
}
/* Form Section */

.complementary-bg-clr
{
    background-color: #F2F6FA;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .copyright-bar {
        flex-direction: column;
    }
    
    .social-icons {
        margin-top: 0.8rem;
    }
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .main-div4 {
        background: var(--secondary-color); 
    }

    .hero-content4 {
        padding-right: 15px;
        padding-left: 15px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-description4,
    .hero-features4 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features4 {
        justify-content: center;
        gap: 30px;
    }

    /* Fix for feature cards on mobile */
    .features-row4 {
        margin-bottom: 30px; 
    }
    
    .feature-card4 {
        margin-bottom: 30px; 
        width: 100%;
    }
    
    .feature-card4:last-of-type {
        margin-bottom: 0;
    }
    #payment4 {
        padding: 40px 20px;
    }
    
    .payment-text4 {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .payment-text4 h2 {
        font-size: 28px;
    }
    
    .payment-text4 p {
        font-size: 16px;
    }
    
    .payment-btn4 {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
    
    .payment-1-content4 p {
        text-align: center;
    }
    
    .payment-1-icon-content4 {
        justify-content: center;
    }
    
    .col-md-6 img {
        max-width: 100%;
        height: auto;
    }
    .footer-content4 {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .footer-logo4, .footer-links4, .footer-contact4 {
        flex: 1 1 100%;
    }
    
    .footer-logo4 {
        text-align: center;
    }
    
    .footer-logo4 p {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .footer-logo4 img {
        margin: 0 auto 15px;
        display: block;
    }
    
    .footer-heading4 {
        text-align: center;
        font-size: 18px;
    }
    
    .link-item4 {
        justify-content: center;
    }
    
    .copyright-bar4 {
        padding: 15px;
        text-align: center;
        gap: 15px;
    }
}

/* Additional fixes for inventory section on smaller screens */
@media (max-width: 575.98px) {
    
    #payment4 {
        padding: 30px 15px;
    }
    
    .payment-text4 h2 {
        font-size: 24px;
    }
    
    .payment-text4 p {
        font-size: 14px;
    }
    
    .payment-1-content4 p {
        font-size: 14px;
    }
    
    .payment-1-icon-content4 p {
        font-size: 14px;
    }

    #inventory4 {
        padding: 40px 10px;
    }
    
    .inventory4 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .step-card4 {
        margin-bottom: 20px;
    }

    .shipping-text4 p {
        width: 100%;
    }
}

/* Ensure proper stacking on mobile for features-grid */
@media (max-width: 991.98px) {
    .features-grid4::before,
    .features-grid4::after {
        display: none; 
    }
    
    .section-divider4 {
        margin: 30px auto;
    }
}

/* Additional purchase section fixes */
@media (max-width: 767.98px) {
    .purchase {
        margin-top: 2rem;
        padding-left: 0;
    }
    
    .stock-point4 {
        gap: 10px;
        margin-bottom: 20px;
    }

    .settings-container4 {
        flex-direction: column;
    }
    
    .settings-icon4 {
        padding: 15px;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .inventory-process .process-card {
        margin-bottom: 30px; 
    }
    
    .stock-features4, .rewards-features4, .seo-features4 {
        margin-bottom: 30px;
    }
    
    .settings-container4 {
        max-width: 100%; 
    }
    
    .shipping-header4 h2 {
        font-size: 28px; 
    }
    
    .shipping-content4 img {
        width: 100%; 
        height: auto;
    }
 }
 
 @media (max-width: 575.98px) {
    #inventory4, #seo4, #shipping {
        padding: 30px 15px; 
    }
    
    #stocks4 {
        margin: 30px 15px;
    }
    
    .inventory-steps4, .main-seo4 {
        padding: 25px 15px;
    }
    
    .section-header4 h2 {
        font-size: 24px; 
    }
    
    .section-divider4 {
        margin: 30px auto; 
    }
 }

@media (max-width: 1199.98px) {
    #hero4 {
        padding: 80px 0 90px;
    }
    
    #features4, #inventory4 {
        padding: 110px 0;
    }
    
    .features-grid4 {
        padding: 60px;
    }
}

@media (max-width: 991.98px) {
    .features-row4 {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-card4 {
        width: 100%;
    }
    
    .trial-btn4 {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .main-div4 {
        background: linear-gradient(110deg, var(--secondary-color) 65%, var(--primary-color) 65%);
    }
    
    #hero4 {
        padding: 60px 0 70px;
    }
    
    #features4, #inventory4 {
        padding: 90px 0;
    }
}

@media (max-width: 767.98px) {
    .main-div4 {
        background: linear-gradient(150deg, var(--secondary-color) 75%, var(--primary-color) 75%);
    }
    
    #hero4 {
        padding: 50px 0 60px;
    }
    
    #features4, #inventory4 {
        padding: 70px 0;
    }
    
    .hero-content4 {
        padding-right: 0;
        order: 1; 
        text-align: center;
        margin-bottom: 50px; 
        margin-top: 0; 
    }
    
    .hero-image-container4 {
        order: 2; 
        margin-bottom: 0;
        position: relative;
        z-index: 5; 
    }
    .hero-image4 {
        position: relative;
        z-index: 5; 
    }
    
    .hero-description4 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features4 {
        justify-content: space-around;
        gap: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta4 {
        display: flex;
        justify-content: center;
    }
    
    .feature-card4 {
        width: 100%;
        margin-bottom: 0; 
    }
    
    .feature-card4:last-child {
        margin-bottom: 0;
    }
    
    .features-grid4 {
        padding: 50px 30px; 
    }
    
    .features-row4 {
        flex-direction: column;
        gap: 30px; 
    }
    
    .section-heading4, .inventory-heading4 {
        margin-bottom: 40px;
    }
    
    #inventory4 {
        padding: 40px 20px;
    }
    
    .inventory-steps4 {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .navbar-container4 {
        border-radius: 12px;
        margin-top: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .navbar4 {
        padding: 12px 16px;
    }
    
    #hero4 {
        padding: 40px 0 50px;
    }
    
    .hero-row4 {
        margin-left: 0;
        margin-right: 0;
    }
    
    #features4, #inventory4 {
        padding: 60px 10px;
    }
    
    .hero-heading4 {
        font-size: 38px;
    }
    
    .hero-sub-heading4 {
        font-size: 32px;
    }
    
    .hero-description4 {
        font-size: 16px;
    }
    
    .hero-features4 {
        flex-direction: column;
        gap: 20px;
    }
    
    .trial-btn4 {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        justify-content: center;
    }
    
    .section-heading4 h2, 
    .inventory-heading4 h2 {
        font-size: 32px;
    }
    
    .features-grid4 {
        padding: 30px 20px;
    }
    
    .feature-card4 {
        padding: 25px 20px;
    }
    
    .step-image4, .step-content4 {
        padding: 25px 20px;
    }
    
    .step-image4 img {
        max-width: 100%;
    }
    
    .col-md-6 .seo-img4 {
        height: auto;
        width: 100%;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 400px) {
    .hero-heading4 {
        font-size: 32px;
    }
    
    .hero-sub-heading4 {
        font-size: 28px;
    }
    
    .trial-btn4 {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .feature-card-icon4 {
        width: 50px;
        height: 50px;
    }
    
    .feature-card4 h5 {
        font-size: 20px;
    }
    
    .inventory-heading4 h2,
    .section-heading4 h2 {
        font-size: 28px;
    }
    
    .inventory-heading4 p {
        font-size: 16px;
    }
}
@media (max-width: 1199.98px) {
    .shipping-text4 h2 {
        font-size: 36px;
    }
    
    .shipping-text4 p {
        width: 80%;
    }
}

@media (max-width: 991.98px) {
    .main-shipping4 {
        padding: 50px 30px;
    }
    
    .shipping-text4 h2 {
        font-size: 32px;
    }
    
    .shipping-text4 p {
        width: 90%;
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    #shipping {
        padding: 40px 20px;
    }
    
    .main-shipping4 {
        padding: 40px 20px;
    }
    
    .shipping-text4 h2 {
        font-size: 28px;
    }
    
    .shipping-text4 p {
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    #shipping {
        padding: 30px 15px;
    }
    
    .main-shipping4 {
        padding: 30px 15px;
    }
    
    .shipping-text4 {
        margin-bottom: 30px;
    }
    
    .shipping-text4 h2 {
        font-size: 24px;
    }
    
    .shipping-text4 p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .main-shipping4 {
        padding: 25px 10px;
    }
    
    .shipping-text4 h2 {
        font-size: 22px;
    }
}



/* ================================================================
   6. USERGUIDE MYBOOK CSS CODE - MyBook User Guide Page
   ================================================================ */


.main-div5 {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
} 
    /* Navbar */
.navbar {
    height: 80px;
    padding: 2rem;
}
.nav-link-nav5 {
    color: var(--white);
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-brand5 {
    display: flex;
    align-items: center;
    justify-content: flex-start;  
    height: 60px;
    margin-right: 20px;            
    margin-left: auto; 
}
  
.navbar-brand5 img {
    width: auto;
    height: 60px; 

}
.nav-btn5{
    color: var(--white);
}
  
@media (max-width: 767.98px) {
    .navbar-brand5 img {
        max-height: 50px; 
    }
}

.nav-link-nav5:hover, .nav-btn5:hover {
    color: var(--primary-color);
}
.sidebar5 {
      position: fixed;
      top: 80px; 
      left: 0;
      width: 220px;
      height: calc(100vh - 80px);
      background: #f3f7fa;
      padding: 10px;
      overflow-y: auto;
      border-right: 1px solid #ddd;
}
summary{
      list-style: none;
      background: #F2F6F7;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 7px 20px;
      font-size: smaller;
      margin: 0;
    }
summary::-webkit-details-marker {
      display: none;
    }
summary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    /* Arrow icon */
.arrow5 {
      border: solid rgb(141, 141, 141);
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 3px;
      transform: rotate(-45deg);
      transition: transform 0.3s;
      margin-right: 15px;
    }
details[open] .arrow5 {
      transform: rotate(45deg);
    }

    /* Submenu items */
.submenu5 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: smaller;
}

.submenu5 label {
  display: block;
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-weight: 500;
  background-color: #F2F6F7;
}

.submenu5 label:hover {
  background: rgba(102, 126, 234, 0.1);
  border-left-color: #01509A;
  border-radius: 10px;
}

/* Active menu item */
.submenu5 label.active {
  background-color: rgba(102, 126, 234, 0.1);
  border-left-color: #01509A;
  border-radius: 10px;
}

/* Panels hidden by default */
.panel {
  display: none;
  padding: 1rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
}

/* Show active panel */
.panel.active {
  display: block;
}
    
    /* Show selected content */
    #dashboard:checked ~ .conten2 #dashboard,
    #product:checked ~ .content2 #product,
    #consumption:checked ~ .content2 #consumption,
    #productions:checked ~ .content2 #productions,
    #stock-transfer:checked ~ .content2 #stock-transfer,
    #adjustments:checked ~ .content2 #adjustments,
    #material-request:checked ~ .content2 #material-request,
    #stock-inbound:checked ~ .content2 #stock-inbound,
    #inventory-setup:checked ~ .content2 #inventory-setup,
    #sale:checked ~ .content2 #sale,
    #customer:checked ~ .content2 #customer,
    #loyalty-group:checked ~ .content2 #loyalty-group,
    #sale-setup:checked ~ .content2 #sale-setup,
    #purchase-order:checked ~ .content2 #purchase-order,
    #grn:checked ~ .content2 #grn,
    #invoice:checked ~ .content2 #invoice,
    #supplier:checked ~ .content2 #supplier,
    #payment:checked ~ .content2 #payment,
    #receipt:checked ~ .content2 #receipt,
    #contra:checked ~ .content2 #contra,
    #expense:checked ~ .content2 #expense,
    #ledger:checked ~ .content2 #ledger,
    #journal:checked ~ .content2 #journal,
    #bank-account:checked ~ .content2 #bank-account,
    #bank-reconciliations:checked ~ .content2 #bank-reconciliations,
    #donor:checked ~ .content2 #donor,
    #reports:checked ~ .content2 #reports,
    /* #all-in-one-report:checked ~ .content2 #all-in-one-report, */
    #company:checked ~ .content2 #company,
    #admin-user:checked ~ .content2 #admin-user,
    #configuration:checked ~ .content2 #configuration,
    #user-guide:checked ~ .content2 #user-guide{
      display: block;
    }
    /* Desktop view */
    @media (max-width: 768px) {
      .sidebar5 {
        left: -250px;
        
      }
      .content5 {
        margin-left: -60px !important;
        margin-top: 50px;
        
      }
    }
    /* Sidebar higher priority */
    .sidebar5 {
      z-index: 1000;
    }
    .three-line {
      color: #01509A;
      font-size: 1rem;
      text-align: center;
      padding: 0;
    }
    .head {
      color: #01509A;
      font-size: 1rem;
      padding: 0;
    }
    ul {
      list-style-type: disc; 
    }

    ul li::marker {
         color: rgb(157 157 157);  
         font-size: 25px; 
    }


    .dash-sec p {
        all:unset;
        padding-left: 3rem;
        font-size: 14px;
        font-family: var(--secondary-font);
        line-height: 2;
        margin: 1rem 0;
    }

    .col-md-5 {
        position: sticky;
        top: 0;
        height: 100vh; /* lock right column to full viewport */
        display: flex;
        flex-direction: column;
    }

    .video-section,
    .image-section {
        flex: 1; /* each takes 50% */
    }


    .video-section{
        margin-bottom: 2rem;
    }

    .video-section iframe,
    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* keeps ratio, fills nicely */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid rgb(209, 194, 158)
    }

    .prod-sec p {
        padding-left: 0.5rem;
        font-size: 14px;
        font-family: var(--secondary-font);
        line-height: 2;
        margin: 1rem 0;
    }

    .prod-sec li {
        line-height: 1.5;
        font-size: 14px;
        margin-left: 0px;
        text-align: justify;
    }

    .prod-sec h4 {
        all:unset;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 16px;
        font-weight: 700;
    }

    .prod-sec ul, .prod-sec ol {
        margin: 1rem 0;
        padding-left: 2rem;
    }

    .sidebar-myb{
        all:unset;
        position: fixed;
        top: 80px;
        left: 10px;
        width: 220px;
        height: calc(100vh - 80px);
        background: #f3f7fa;
        padding: 10px;
        overflow-y: auto;
        border-right: 1px solid #ddd;
    }

    .mybook-dash{
        margin-left: 30px;
    }

    .mybook-dash h2{
        font-size: 20px;
    }

    .section-prod {
        margin-left: 20px;
    }

    .section-prod h2{
        margin-left: 0.5rem;
        font-size: 20px;
        color: blue;
    }

    /* .mybook-dash:active {
        background-color: blue;
    } */

    .modal {
    display: none;
    position: fixed;
    z-index: 0;
    left: 135px;
    top: 50px;
    width: 89%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  /* Modal image */
  .modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    margin-left: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* Close button */
  .close {
    position: absolute;
    top: 40px;
    right: 70px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #bbb;
  }