:root {
  --colorPrimary: #b22222;
  --colorSecondary: #7d3535;
  --colorbglight: #ecf6fd;
  --colorwhite: #ffffff;
  --colordark: #262626;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
}

.about-banner {
    position: relative;
    width: 100%;
    height: 400px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 5px;
}

.breadcrumb {
    background: #E44D26;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-banner {
        height: 300px;
    }
    .banner-overlay {
        left: 5%;
        padding: 15px 20px;
    }
    h1 {
        font-size: 28px;
    }
    p {
        font-size: 14px;
    }
}
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.about-content {
    width: 55%;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    position: relative;
    margin-bottom: 15px;
}

.about-content h2 span {
    color: maroon;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: maroon;
    margin-top: 5px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

blockquote {
    font-size: 18px;
    color: maroon;
    font-style: italic;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid maroon;
    background: #fdf2f2;
    display: flex;
    align-items: center;
}

.quote-icon {
    font-size: 24px;
    margin-right: 5px;
    color: maroon;
}

.about-image {
    width: 40%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/* Satisfaction Guarantee Box */
.guarantee {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: maroon;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.guarantee span {
    font-size: 24px;
    font-weight: 800;
    display: block;
    color: white;  /* Ensuring the number "100%" remains white */
}

.guarantee p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: white;  /* Ensuring "Satisfaction Guarantee" text is also white */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .about-content,
    .about-image {
        width: 100%;
    }

    .about-content h2::after {
        margin: 5px auto;
    }

    blockquote {
        text-align: center;
        justify-content: center;
    }

    .about-image {
        margin-top: 20px;
    }
}
.about-section {
    padding: 60px 10%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.play-button span {
    color: #FF5722;
    font-size: 18px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
}

.highlight {
    color: #E44D26;
    border-bottom: 3px solid #E44D26;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.number {
    font-size: 40px;
    font-weight: 700;
    color: #E44D26;
}

.text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
    }

    .play-button {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .stats {
        justify-content: center;
    }
}
.founder-section {
    background-color: #000; /* Black background */
    padding: 50px 0;
    color: #fff;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.founder-image {
    position: relative;
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
}

.founder-overlay h3 {
    font-size: 20px;
    margin: 0;
    color: #ff0000; /* Red color for the name */
}

.founder-overlay p {
    font-size: 14px;
    color: #fff;
}

.founder-content {
    max-width: 600px;
}

.founder-heading {
    font-size: 36px;
    font-weight: bold;
    color: #ff0000; /* Red heading */
    position: relative;
    display: flex;
    align-items: center;
}

.quote {
    font-size: 50px;
    color: #ff0000;
    margin-left: 10px;
}

.founder-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd; /* Light grey text */
}

/* 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: #d32f2f; /* 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: #d32f2f; /* 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: #d32f2f;
}

/* 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: #d32f2f;
}

/* 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;
}
}
.heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.heading span {
    color: maroon; /* Making "BELIEVE US?" maroon */
}
