/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6; 
    color:#007acc;
    background: #f4f4f9;
}

/* Header */
.hero {
    background: url('https://images.pexels.com/photos/18488729/pexels-photo-18488729/free-photo-of-a-city-at-dusk.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}


.download-btn {
    background-color: #ff9800;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: rgb(124, 120, 120);
    color: #000000;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;

    height: 40px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #005fa3;
}



/* Navigation */
.navbar {
    background: #0b3f62;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    padding:  10px;
    background: #f9f9f9;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 0px;
    transition: transform 0.3s ease-in-out;
    
}



.feature {
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature1 {
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Bar */
#navbar {
    background-color: #007acc;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-list li {
    margin: 0 20px;
}

.nav-list a {
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 15px;
}

.nav-list a:hover {
    background-color: #005a87;
    border-radius: 5px;
}

/* Why TPTM Section */
#why-tptm {
    background-color: #f7f7f7;
    padding: 60px 65px;
    text-align: center;
}

#why-tptm h2 {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}


.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.why-tptm-text {
    font-size: 1.1rem;
    color: #333;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Adding some spacing between the features */
.feature-item:not(:last-child) {
    margin-bottom: 20px;
}

/* Footer */
#footer {
    background-color: #007acc;
    color: white;
    padding: 20px 0;
    text-align: center;
}

#footer p {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-list {
        flex-direction: column;
    }

    .nav-list li {
        margin: 10px 0;
    }
}

.feature h3 {
    font-size: 1.5rem;
    color: #007acc;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature p {
    font-size: 1.2rem;
    font-weight: 100;
    color: #050404;
    line-height: 1.5;
}

.feature1 h3 {
    font-size: 1.5rem;
    color: #007acc;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature1 p {
    font-size: 1.2rem;
    font-weight: 100;
    color: #050404;
    line-height: 1.5;
}

.navbar {
    display: block;
}

/* Hide the navbar for mobile view (screen sizes below 768px) */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}
/* Adding Colorful Backgrounds */
.feature:nth-child(1) {
    background: #f8f9fa;
    border-left: 5px solid #007acc;
}

.feature:nth-child(2) {
    background: #fff6e5;
    border-left: 5px solid #ffb107;
}

.feature:nth-child(3) {
    background: #e7f7f4;
    border-left: 5px solid #28a745;
}

.feature:nth-child(4) {
    background: #f1f8ff;
    border-left: 5px solid #17a2b8;
}

.feature1:nth-child(1) {
    background: #d6eaf8;  /* Soft sky blue */
    border-left: 5px solid #2e86c1;  /* Bright azure */
}

.feature1:nth-child(2) {
    background: #ffe8f6;  /* Pale pink */
    border-left: 5px solid #c2185b;  /* Raspberry pink */
}

.feature1:nth-child(3) {
    background: #f2f0fc;  /* Lavender */
    border-left: 5px solid #6a1b9a;  /* Deep purple */
}



.feature1:nth-child(4) {
    background: #f3f4ff;  /* Soft lilac */
    border-left: 5px solid #512da8;  /* Royal purple */
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    animation: slideUp 0.6s ease-out;
}
.feature1 {
    animation: slideUp 0.6s ease-out;
}

/* General Styles */
.cost-segregation-section {
    background: linear-gradient(135deg, #e8f4fa, #c6e6f5); /* Soft gradient background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    font-family: 'Arial', sans-serif;
    max-width: 1300px;
    margin: 40px auto;
    line-height: 1.8;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}



/* Heading Styles */
.heading {
    color: #007acc; /* White color for a clean and premium look */
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    text-align: center; /* Centered heading for emphasis */
}

/* Paragraph Styles */
.description {
    color: #2a4d69; /* White text for readability */
    font-size: 20px;
    line-height: 1.8;
    margin: 20px auto;
    max-width: 1100px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: justify;
}

/* Add subtle border effect */
.cost-segregation-section {
    border-left: 8px solid #76bbe9; /* Accent blue border */
    padding-left: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .cost-segregation-section {
        padding: 30px;
    }

    .heading {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .cost-segregation-section {
        padding: 20px;
    }

    .heading {
        font-size: 24px;
    }

    .description {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cost-segregation-section {
    animation: fadeIn 1s ease-in-out;
}



/* Process List */
.process-list {
    margin-top: 20px;
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #007acc;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.footer a {
    color: #007acc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Adjustments for mobile responsiveness */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
    }
}

/* General Section Styling */
.work-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #007acc;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Process Steps Container */
.process-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1200px; /* Fixed container width */
    margin-left: auto;
    margin-right: auto;
}

/* Process Step Box */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    background-color: #ffffff;
    border-left: 10px solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #333; /* Text color to improve contrast */
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Arrow Styling */
.arrow {
    font-size: 2rem;
    color: #cccccc;
    margin: 10px;
}

/* Step Number Styling */
.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #676363;
    margin-bottom: 10px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    width: 60px; /* Increased size for better visibility */
    height: 60px; /* Increased size */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

/* Step Title and Description */
.step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.step-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    text-align: justify; /* Center the description text */
}

/* Step Colors */
.step-color-1 {
    border-color: #4caf50;
    background-color: #e8f5e9;
}

.step-color-2 {
    border-color: #2196f3;
    background-color: #e3f2fd;
}

.step-color-3 {
    border-color: #ff9800;
    background-color: #fff3e0;
}

.step-color-4 {
    border-color: #ff5722;
    background-color: #ffebee;
}

.step-color-5 {
    border-color: #9c27b0;
    background-color: #f3e5f5;
}

.step-color-6 {
    border-color: #03a9f4;
    background-color: #e1f5fe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps-container {
        flex-direction: column;
        gap: 15px;
    }

    .arrow {
        display: none;
    }
}



/* Button styling */
a {
    text-decoration: underline;
    color: #007BFF;
    font-size: 1.1rem;
    font-weight: 700;
}

a:hover {
    color: #0056b3;
}



/* Quote Container Styling */
.quote-container {
    max-width: 800px;
    margin: 20px auto; /* Centers the container */
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
    color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  /* Quote Text */
  .quote {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Highlighted Text */
  .highlight {
    color: #66cc66; /* Green color for emphasis */
    font-weight: bold;
  }
  
  /* Source Text */
  .source {
    font-size: 1rem;
    margin-top: 10px;
    font-style: italic;
    color: #ccc;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .quote {
      font-size: 20px;
    }
  
    .quote-container {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .quote {
      font-size: 20px;
    }
  
    .source {
      font-size: 0.9rem;
    }
  }


  /* Content Wrapper Styles */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
  }
  
 
  
  /* Heading Styling */
 
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Paragraph Styling */

  
  /* Example Section Styling */
  .example {
   
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
  }
  
  .example ul {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 20px;
  }
  
  .example p{
    font-size: 20px;
  }
  .example li {
    margin: 5px 0;
    font-size: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
   
    h1 {
      font-size: 1.8rem;
    }
  
    h2 {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.6rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .container p {
      font-size: 0.95rem;
    }
  }
  
  

  /* Apply beige background only to the container */
/* Apply beige background only to the container */
.containerr {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background-color: rgb(248, 216, 179); /* Warm beige for a professional feel */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* More prominent shadow */
    border-radius: 12px;
    max-width: 1300px; /* Restrict width */
    font-family: 'Arial', sans-serif;
  }

  /* Main header */
  h1 {
    color: #323334; /* White color for a clean and premium look */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    text-align: center; /* Slight spacing for elegance */
  }

  /* Style the list of examples */
  .examples-listt {
    list-style-type: none;
    padding: 0;
  }

  /* Style each list item */
  .examples-listt li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f4f4f4;  /* Gradient background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    color: #222; /* Darker text for better readability */
    font-size: 1.2em; /* Slightly larger font */
    font-weight: 600; /* Bold */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Make the amount stand out */
  .amount {
    font-weight: bold;
    color: #d32f2f; /* Eye-catching red */
    font-size: 1.4em; /* Slightly larger */
  }

  /* Hover effect for list items */
  .examples-listt li:hover {
    transform: translateY(-3px); /* Subtle lift on hover */
    transition: all 0.3s ease-in-out;
    background:#1976d2; /* Brighter gradient */
    color: white;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .containerr {
      padding: 20px;
    }

    h1 {
      font-size: 2.2em;
    }

    .examples-listt li {
      font-size: 1em;
      padding: 15px;
    }

    .amount {
      font-size: 1.2em;
    }
  }
  

  /* General Footer Styling */
.footer {
    background-color: #0b3f62; /* Dark navy background */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 25px 20px; /* Increased padding for better spacing */
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 700px; /* Increased max-width for wider layouts */
    margin: 0 auto;
    padding: 10px; /* Added padding inside the container */
}

.footer-heading {
    font-size: 1.5rem; /* Slightly larger font for the heading */
    margin-bottom: 20px;
    font-weight: bold; /* Bold heading for emphasis */
}

.qr-container {
    margin: 25px 0;
}

.qr-code {
    max-width: 160px;
    width: 100%;
    height: auto;
    border: 3px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4); /* Enhanced shadow for better depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.qr-code:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5); /* Deeper shadow on hover */
}

.footer-contact {
    font-size: 1.1rem; /* Slightly larger font for readability */
    margin-top: 20px;
    line-height: 1.5; /* Increased line height for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 20px 15px; /* Adjusted padding for smaller devices */
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .qr-code {
        max-width: 130px; /* Reduced size for smaller screens */
    }

    .footer-contact {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 10px; /* Further reduced padding for very small screens */
    }

    .footer-heading {
        font-size: 1rem;
    }

    .qr-code {
        max-width: 100px;
    }

    .footer-contact {
        font-size: 0.9rem;
    }
}

/* Styling for the scanner section */
.scanner-section {
    margin-top: 30px;
    text-align: center;
}

.scanner-icon {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.scanner-text {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}




/* Accordion Animation (without initial animation on page load) */
@keyframes accordionEffect {
    0% {
        max-height: 0;
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        max-height: 300px; /* Adjust as needed */
        opacity: 1;
        transform: scaleY(1);
    }
}

.feature,
.feature1 {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
}

/* When the section is in view, apply the animation */
.feature.in-view,
.feature1.in-view {
    animation: accordionEffect 0.8s ease-in-out forwards;
}

/* Delay animation for each child */
.feature:nth-child(1).in-view,
.feature1:nth-child(1).in-view {
    animation-delay: 0.2s;
}
.feature:nth-child(2).in-view,
.feature1:nth-child(2).in-view {
    animation-delay: 0.4s;
}
.feature:nth-child(3).in-view,
.feature1:nth-child(3).in-view {
    animation-delay: 0.6s;
}
.feature:nth-child(4).in-view,
.feature1:nth-child(4).in-view {
    animation-delay: 0.8s;
}

/* Hover Effects */
.feature:hover,
.feature1:hover {
    transform: scale(1.05); /* Slightly enlarge the box */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Add a deeper shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

/* Change background color on hover */
.feature:hover {
    background-color: #e6f7ff; /* Light blue hover effect */
    
}
.feature1:hover {
    background-color: #fdecec; /* Light pink hover effect */
   
}




/* Style for section headings */
#why-tptm h2 {
    font-size: 2.5rem;
    color: #007acc; /* Retaining the primary color for the section header */
    margin-bottom: 40px;
    font-weight: bold; /* Make the section title bold */
}

/* Feature Title Styling (h3) */
.feature h3, .feature1 h3 {
    font-size: 1.6rem; /* Increase font size */
    color: #005a87; /* A contrasting color to make it stand out */
    font-weight: 600; /* Increase font weight */
    letter-spacing: 1px; /* Add some spacing between letters for better readability */
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effects for feature titles */
.feature h3:hover, .feature1 h3:hover {
    color: #003f5f; /* Darker shade for hover effect */
    transform: scale(1.05); /* Slightly enlarge the title on hover */
}

/* Adding Colorful Backgrounds to .feature and .feature1 */


/* Animation for the feature items */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature, .feature1 {
    animation: slideUp 0.6s ease-out;
}





/* General Styles */
.tpr-overview-container {
    background: linear-gradient(135deg, #e8f4fa, #c6e6f5); /* Smooth blue gradient */
    padding: 60px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Soft shadow for elevated look */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1300px;
    margin: 50px auto;
    line-height: 1.75;
    text-align: left; /* Left-aligned text for a more professional look */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
    border-left: 8px solid #005c99; /* Accent darker blue border */
}

/* Heading Styles */
.tpr-heading {
    color: #007acc; /* White color for a clean and premium look */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    text-align: center; /* Centered heading for emphasis */
}

/* Red Heading Styles */
.red-heading {
    color: #ff4c4c; /* Bold red for emphasis */
    font-size: 36px;
    font-weight: 600;
}

/* Paragraph Styles */
.tpr-description {
    color: #2a4d69; /* White text for readability */
    font-size: 20px;
    line-height: 1.8;
    margin: 20px auto;
    max-width: 1100px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: justify; /* Left-align text for better reading flow */
}

/* Red Text for Important Information */
.red-text {
    color: #ff4c4c;
    font-weight: bold;
}

/* Call to Action Text */
.tpr-cta {
    font-weight: normal;
    color: #ffffff;
}

/* CTA Link */
.tpr-link {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tpr-link:hover {
    color: #ff9800;
}

/* Underline Text */
.underline-text {
    text-decoration: underline;
}

/* List Styling */
.tpr-list {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0;
    font-size: 25px;
    color: #ffffff;
}

.tpr-example li {
    margin: 20px auto;
    max-width: 1100px;
    
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .tpr-overview-container {
        padding: 50px 20px;
    }

    .tpr-heading {
        font-size: 30px;
    }

    .tpr-description {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .tpr-overview-container {
        padding: 30px 15px;
    }

    .tpr-heading {
        font-size: 26px;
    }

    .tpr-description {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tpr-overview-container {
    animation: fadeIn 1s ease-in-out;
}




/* Expert Section Styling */
.expert-section {
    background: linear-gradient(135deg, #4a90e2, #6fa3d1); /* Soft gradient background */
    padding: 40px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Heading for Expert Section */
.section-heading {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}


.expert-container {
    display: flex;
    justify-content: row; 
    align-items: flex-start;
    gap: 0px; 
    max-width: 1300px;
    margin-bottom: 40px;
 
}

/* Expert Left Section (Image) */
.expert-left {
    flex: 1;
    text-align: center;
}

.expert-img {
    width: 270px;
    height: auto;
    border-radius: 8px;
}

/* Expert Right Section (Description) */
.expert-right {
    flex: 1;
    text-align: justify;
    color: #fff;
    max-width: 900px;
}

.expert-name {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.expert-bio {
    font-size: 18px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Books Section */
.books-container {
    display: flex;
    justify-content: row; 
    align-items: flex-start;
    gap: 0px; 
    max-width: 1300px;
    margin-bottom: 40px;
   
}

/* Book Left Section (Image) */
.book-left {
    flex: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.book-img {
    width: 340px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Book Right Section (Description) */
.book-right {
    flex: 1;
    text-align: justify;
    color: #fff;
}

.books-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
}

.book-description {
    font-size: 18px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .expert-container,
    .books-container {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Reduces the gap between sections on smaller screens */
    }

    .expert-right,
    .book-right {
        text-align: center;
    }

    .expert-name {
        font-size: 28px;
    }

    .expert-bio {
        font-size: 16px;
    }

    .book-img {
        width: 80%; /* Adjusts the image size on smaller screens */
    }

    .book-description {
        font-size: 16px;
    }
}




#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007acc;
    color: rgb(255, 252, 252);
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    display: none; /* Hidden by default */
    transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #080808;
}


