:root {
  --colorPrimary: #FF6F00;
  --colorSecondary: #1f493d	;
  --colorbglight: #ecf6fd;
  --colorwhite: #ffffff;
  --colordark: #262626;
}

.tv-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--white);
    overflow: hidden;
  }

  /* Video Wrapper */
  .tv-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
  }

  .tv-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  /* Mobile me aur zoom kara */
  @media (max-width: 768px) {
    .tv-video-wrapper iframe {
      width: 300%;
      height: 300%;
    }
  }

  .tv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: -1;
  }

  .tv-banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    margin: 0 15px;
  }

  .tv-banner h1 span {
    color: var(--bhagwa);
  }

  .tv-subtitle {
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    padding: 0 10px;
    color: var(--white);
  }

  /* Search Bar */
  .tv-search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 50px;
    z-index: 2;
    flex-wrap: wrap;
    max-width: 95%;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
  }

  .tv-search-bar input,
  .tv-search-bar select {
    border: 1px solid var(--bhagwa);
    padding: 10px 12px;
    margin: 5px;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
    transition: 0.3s;
  }

  .tv-search-bar input:focus,
  .tv-search-bar select:focus {
    border-color: var(--rich-green);
    box-shadow: 0 0 6px rgba(27, 94, 32, 0.4);
  }

  .tv-search-bar button {
    padding: 10px 20px;
    border: none;
    background: linear-gradient(135deg, var(--bhagwa), var(--rich-green));
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
    margin: 5px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
  }

  .tv-search-bar button:hover {
    background: linear-gradient(135deg, var(--rich-green), var(--bhagwa-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(27, 94, 32, 0.4);
  }

  /* Responsive Fixes */
  @media (max-width: 768px) {
    .tv-banner h1 {
      font-size: 1.8rem;
    }
    .tv-search-bar {
      flex-direction: column;
      border-radius: 20px;
    }
    .tv-search-bar input,
    .tv-search-bar select,
    .tv-search-bar button {
      width: 100%;
      border-radius: 10px;
    }
  }
/* 🔹 Responsive Design */
@media (max-width: 1024px) {
    .banner {
        height: 400px;
    }
    .banner h1 {
        font-size: 36px;
    }
    .search-box {
        bottom: 30px;
    }
    .search-box input {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 350px;
    }
    .banner h1 {
        font-size: 28px;
    }
    .search-box {
        flex-direction: column;
        padding: 8px 12px;
    }
    .search-box input {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .search-box button {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }
    .banner h1 {
        font-size: 24px;
    }
    .search-box {
        bottom: 20px;
    }
}

/* General Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
text-align: center;
}

/* Section Title */
.section-title {
font-size: 28px;
font-weight: bold;
margin: 20px 0;
}
.section-title span {
color:#ff6f00;
}

/* Project Cards Container */
.projects-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
/* Button Styles */
.view-details-btn {
background-color: #FF6F00;
color: white;
border: none;
padding: 8px 12px;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.view-details-btn:hover {
background-color: #FF6F00;
}

/* Buttons Container */
.buttons {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
}


/* Individual Project Card */
.project-card {
background: white;
width: 280px;
border-radius: 10px;
padding: 15px;
text-align: left;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
position: relative;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: scale(1.05);
}

/* Image */
.project-card img {
width: 100%;
height: 150px;
border-radius: 10px;
object-fit: cover;
}
/* 1. Style the buttons container to align items side-by-side */
.project-card .buttons {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: 15px; 
}

/* Ensure the main button takes up most of the space and is properly styled */
.project-card .view-details-btn {
    flex-grow: 1; 
    padding: 10px 15px;
    background-color: #FF6F00; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.arrow-btn {
  display: inline-block;
  padding: 10px 15px;
  background-color: #FF6F00;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.arrow-btn:hover {
  background-color: #FF6F00;
}

/* 2. Style for the specific arrow button */
.project-card .arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    padding: 0;
}

/* 3. Professional Hover Effect */
.project-card .arrow-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #000;
}
/* RERA Badge */
.rera-badge {
position: absolute;
top: 10px;
left: 10px;
background: #FF6F00;
color: white;
padding: 5px 10px;
font-size: 12px;
font-weight: bold;
border-radius: 5px;
}

/* Title & Developer */
h3 {
font-size: 18px;
margin: 10px 0 5px;
}
.developer {
color: #FF6F00;
font-size: 14px;
font-weight: bold;
}

/* Details List */
.details {
list-style: none;
padding: 0;
margin: 10px 0;
}
.details li {
font-size: 14px;
padding: 3px 0;
}

/* Price */
.price {
font-size: 16px;
font-weight: bold;
}

/* Arrow Button */
.arrow-btn {
background: #FF6F00;
color: white;
border: none;
padding: 8px 12px;
font-size: 18px;
border-radius: 50%;
cursor: pointer;
float: right;
}

/* View All Button */
.view-all {
margin: 20px;
}
.view-all-btn {
background: #FF6F00;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 20px;
}
.view-all-btn:hover {
background: #FF6F00;
}

/* Responsive Design */
@media (max-width: 768px) {
.projects-container {
  flex-direction: column;
  align-items: center;
}
}
/* Blog Section */
.blog-section {
width: 90%;
max-width: 1200px;
margin: auto;
padding: 30px 0;
}

/* Section Header */
.blog-header {
text-align: center;
margin-bottom: 20px;
}

.blog-header h2 {
font-size: 26px;
font-weight: bold;
display: inline-block;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}

.blog-header h2 span {
color: #FF6F00;
}


/* Blog Cards Container */
.blog-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px 0;
}

/* Blog Card */
.blog-card {
background: white;
width: 320px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
position: relative;
text-align: left;
}
.blog-card:hover {
transform: scale(1.05);
}

/* Blog Image */
.blog-card img {
width: 100%;
height: 180px;
object-fit: cover;
}

/* Link Badge */
.link-badge {
position: absolute;
top: 10px;
right: 10px;
background: #FF6F00;
padding: 8px;
border-radius: 5px;
}
.link-badge img {
width: 15px;
height: 15px;
}

/* Blog Content */
.blog-content {
padding: 15px;
}
.date {
font-size: 14px;
color: #999;
margin: 5px 0;
}
.admin {
color: #FF6F00;
font-weight: bold;
}
.blog-content h3 {
font-size: 16px;
font-weight: bold;
margin: 5px 0 10px;
}

/* Read More */
.read-more {
text-decoration: none;
color: black;
font-size: 14px;
font-weight: bold;
}
.read-more:hover {
text-decoration: underline;
}
:root {
    --maroon: #FF6F00; 
    --black: #000000;
    --dark-grey: #333333;
    --light-grey: #f0f0f0; 
    --white: #ffffff;
    --text-color: #555555;
    --maroon-dark: #FF6F00;
}

/* ------------------ HEADING STYLING ------------------ */

.section-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    padding-top: 20px;
}

.section-title .saffron-text {
    color: var(--saffron);
    margin-right: -4px;
}


.section-title .black-text {
    color: var(--black);
}

/* ------------------ BLOG SECTION LAYOUT (CAROUSEL) ------------------ */

.blog-posts-section {
    padding: 0 0 40px 0; 
    background-color: var(--white);
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-posts-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.blog-posts-container::-webkit-scrollbar {
    display: none;
}

/* ------------------ INDIVIDUAL CARD STYLING ------------------ */

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-title {
    position: absolute;
    top: 0;
    width: 100%;
    color: var(--white);
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 10px;
    line-height: 1.2;
}

.blog-card-content {
    padding: 15px;
    flex-grow: 1; 
}

.blog-date {
    font-size: 0.85em;
    color: var(--text-color);
    margin-bottom: 5px;
}

.blog-title {
    font-size: 1.15em;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-title .title-link {
    color: var(--maroon); 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.blog-title .title-link:hover {
    color: var(--maroon-dark);
    text-decoration: underline;
}

.blog-author {
    font-size: 0.8em;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: bold;
}

.blog-excerpt {
    font-size: 0.9em;
    color: var(--text-color);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ------------------ FOOTER & BUTTON STYLING ------------------ */

.blog-card-footer {
    background-color: var(--black);
    padding: 10px 15px;
    text-align: right;
    margin-top: auto; 
}

.read-more-btn {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--maroon);
}


/* ------------------ CAROUSEL NAVIGATION ------------------ */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-arrow, .view-all-button {
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-arrow {
    background-color: var(--maroon);
    color: var(--white);
    font-size: 1.2em;
}

.nav-arrow:hover {
    background-color: var(--maroon-dark);
}

.view-all-button {
    background-color: var(--black);
    color: var(--white);
    font-size: 0.9em;
}

.view-all-button:hover {
    background-color: var(--dark-grey);
}
/* Footer Navigation */
.blog-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin-top: 20px;
}
.arrow-btn {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
}
.view-all-btn {
background: #030803;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 20px;
cursor: pointer;
}
.view-all-btn:hover {
background: darkred;
}
/* Blog Title Clickable */
.blog-title {
text-decoration: none;
color: black;
display: block;
transition: color 0.3s ease-in-out;
}

.blog-title h3 {
margin: 10px 0;
font-size: 18px;
}

.blog-title:hover {
color: red;
}

/* Featured Developers Section */
.featured-developers {
text-align: center;
padding: 50px 0;
background-color: #f8f8f8;
}

.section-title {
font-size: 28px;
font-weight: 600;
color: #333;
margin-bottom: 30px;
text-transform: uppercase;
}

.section-title .highlight {
color: #FF6F00;
font-weight: 700;
}

.developers-container {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

.developers-container img {
max-height: 60px;
object-fit: contain;
transition: transform 0.3s ease;
}

.developers-container img:hover {
transform: scale(1.1);
}
:root {
    --primary-red: #FF6F00; /* The primary red accent color */
    --black: #000000;
    --text-color: #333333; /* Dark grey for the main text */
    --background-light: #f5f5f5; /* Light grey background */
}

/* ------------------ SECTION CONTAINER AND HEADING (No Changes) ------------------ */
.how-it-works-section {
    background-color: var(--background-light);
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.heading-container {
    margin-bottom: 50px;
}

.subtitle {
    font-size: 0.9em;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.title {
    font-size: 2.2em;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.title .red-text {
    color: var(--primary-red);
}

.underline {
    width: 100px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 5px auto 0;
}

/* ------------------ PROCESS TIMELINE LAYOUT (No Changes) ------------------ */

.process-timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-timeline-container::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--primary-red);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 100px;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 85px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-red);
    border-radius: 50%;
    z-index: 3;
}

/* ------------------ ICON BUBBLE STYLING (With Hover Animation) ------------------ */

.icon-bubble {
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    cursor: pointer; /* Change to pointer to indicate clickability/interactivity */
    
    /* --- ANIMATION PROPERTIES --- */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; /* Smooth transition */
}

.icon-bubble i {
    font-size: 28px;
    color: var(--primary-red);
    transition: color 0.3s ease; /* Smooth icon color change if you add it later */
}

/* --- HOVER EFFECT --- */
.icon-bubble:hover {
    transform: translateY(-10px) scale(1.05); /* Pop out and grow slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add a shadow to enhance the lifted effect */
    border-color: var(--primary-red); /* Keep border color the same or change if desired */
}

/* ------------------ LABEL STYLING (No Changes) ------------------ */

.label {
    margin: 0;
    font-size: 0.85em;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}
/* Why to Believe Us Section */
.why-believe-us {
text-align: center;
padding: 50px 0;
background-color: #f8f8f8;
}

.section-title {
font-size: 28px;
font-weight: 600;
color: black;
margin-bottom: 30px;
text-transform: uppercase;
}

.section-title .highlight {
color: #FF6F00;
font-weight: 700;
}

/* Box Container */
.belief-container {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

/* Individual Boxes */
.belief-box {
padding: 30px;
border-radius: 10px;
text-align: center;
width: 300px;
transition: transform 0.3s ease;
color: white;
}

.belief-box:hover {
transform: translateY(-5px);
}

/* Box Colors */
.blue {
background-color: #2E7DBC;
}
.light-blue {
background-color: #63C2DE;
}
.orange {
background-color: #D27D2D;
}

/* Icon Circle */
.icon-circle {
width: 80px;
height: 80px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 20px;
}

.icon-circle img {
width: 50px;
height: 50px;
}
/* Footer Container */
.propadda-footer {
background-color: #f8f8f8;
padding: 40px 0;
color: #000; /* Making all text black for visibility */
font-family: Arial, sans-serif;
}

/* Footer Columns */
.propadda-footer .footer-column {
width: 20%;
float: left;
padding: 0 15px;
}

/* Footer Headings */
.propadda-footer .footer-column h3 {
font-size: 16px;
font-weight: bold;
margin-bottom: 15px;
color: #FF6F00; /* Headings in red */
text-transform: uppercase;
}

/* Footer Links */
.propadda-footer .footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.propadda-footer .footer-column ul li {
margin-bottom: 8px;
}

.propadda-footer .footer-column ul li a {
color: #000 !important; /* Making text black */
text-decoration: none;
transition: color 0.3s ease;
}

.propadda-footer .footer-column ul li a:hover {
color: #FF6F00; /* Hover effect */
}

/* Contact Info */
.propadda-footer .footer-column p {
color: #000 !important; /* Making text visible */
margin-bottom: 5px;
font-size: 14px;
}

/* Footer Social Icons */
.propadda-footer .social-icons {
margin-top: 15px;
}

.propadda-footer .social-icons a {
display: inline-block;
margin-right: 10px;
color: #000;
font-size: 18px;
transition: color 0.3s ease;
}

.propadda-footer .social-icons a:hover {
color: #FF6F00;
}

/* Footer Bottom Section */
.propadda-footer .footer-bottom {
border-top: 1px solid #ddd;
padding: 15px 10%;
font-size: 14px;
text-align: center;
color: #000 !important; /* Making text visible */
}

/* Company Name & Rights */
.propadda-footer .footer-bottom .company-name {
font-weight: bold;
}

.propadda-footer .footer-bottom .rights {
font-size: 14px;
margin-top: 5px;
display: block;
}

/* Privacy Policy Link */
.propadda-footer .privacy-policy {
color: #000 !important; /* Making "Privacy Policy" visible */
text-decoration: none;
font-weight: bold;
}

.propadda-footer .privacy-policy:hover {
color: #FF6F00;
}

/* Responsive Design */
@media (max-width: 768px) {
.propadda-footer .footer-column {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
}


/* Responsive Design */
@media (max-width: 768px) {
.blog-container {
  flex-direction: column;
  align-items: center;
}
}
:root {
    --primary-red: #ff4d00;
    --background-light: #f7f7f7;
    --text-color: #555;
    --black: #000;
}

/* MAIN SECTION */
.how-it-works-section {
    background-color: var(--background-light);
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* HEADINGS */
.heading-container {
    margin-bottom: 50px;
}

.subtitle {
    font-size: 0.9em;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.title {
    font-size: 2.2em;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.title .red-text {
    color: var(--primary-red);
}

.underline {
    width: 100px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 5px auto 0;
}

/* PARAGRAPH */
.content {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #444;
    font-size: 1em;
    line-height: 1.6;
}

/* PREMIUM READ MORE BUTTON */
.read-more-btn {
    display: inline-block;
    padding: 10px 26px;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* chipka / pill */
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 77, 0, 0.3); /* premium glow */
    letter-spacing: 0.5px;
}

/* Hover Motion */
.read-more-btn:hover {
    background: #ff3a00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 8px 18px rgba(255, 77, 0, 0.4);
}
.sticky-read-btn {
    position: fixed;
    top: 50%;
    right: 20px; /* visible */
    transform: translateY(-50%) rotate(-90deg);
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all .3s ease;
    z-index: 99999;
    border: none;
    transform-origin: right center;
}

.sticky-read-btn:hover {
    background: var(--secondary);
    transform: translateY(-50%) rotate(-90deg) scale(1.06);
}

/* Mobile Fix */
@media(max-width: 600px) {
    .sticky-read-btn {
        right: 10px;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* --- Slide Panel --- */
.side-panel {
    position: fixed;
    top: 0;
    left: -500px;
    width: 500px;
    height: 100%;
    background: #ffffff;
    border-right: 4px solid var(--primary);
    box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
    transition: all .4s ease;
    padding: 30px 35px;
    overflow-y: scroll;
    z-index: 99998;
}

.side-panel.open {
    left: 0;
}

/* Close Button */
.close-panel {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    float: right;
    font-weight: 600;
    transition: .3s;
}

.close-panel:hover {
    background: var(--primary);
}

/* Content Styling */
.panel-content h2, .panel-content h3 {
    color: var(--secondary);
    font-weight: 700;
    margin-top: 25px;
}

.panel-content p, .panel-content span, .panel-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.panel-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.panel-content a:hover {
    color: var(--secondary);
}
