:root {
  --colorPrimary: #ff4d00;
  --colorSecondary: #013920 ;
  --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: #ff6f00;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ff6f00;
    margin-top: 5px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

blockquote {
    font-size: 18px;
    color: #ff6f00;
    font-style: italic;
    font-weight: 600;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid #ff6f00;
    background: #fdf2f2;
    display: flex;
    align-items: center;
}

.quote-icon {
    font-size: 24px;
    margin-right: 5px;
    color: #ff6f00;
}

.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: #ff6f00;
    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: #ff5e00; /* Making "BELIEVE US?" #ff5e00 */
}
.profile-section {
    display: flex;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    align-items: center;
}
.profile-content {
    width: 60%;
    padding: 30px;
    color: #333;
}
.profile-image {
    width: 40%;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-content h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.profile-content h2 span {
    color: #FF6F00;
}
.profile-content h3 {
    margin: 5px 0;
    color: black;
    font-size: 20px;
    font-weight: bold;
}
.profile-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

section.team {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.team h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.team h2 span.black {
  color: #000;
}

.team h2 span.red {
  color: #FF6F00;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  background: #fff;
}

.team-info h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.team-info p {
  margin: 0;
  color: #FF6F00;
  font-size: 14px;
  font-weight: 500;
}

/* Make the top 3 cards larger */
.leadership .team-card {
  width: 300px;
  transform: scale(1.05);
}

.leadership .team-card img {
  height: 330px;
  object-fit: cover;
}

.leadership .team-info h3 {
  font-size: 20px;
  font-weight: 700;
}

.leadership .team-info p {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .leadership .team-card {
    width: 90%;
    transform: none;
  }
}

/* Single Profile Section */
.team.single-profile {
  background-color: #f5f5f5;
  padding: 100px 20px;
}

.profile-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 60px 50px;
  transition: all 0.3s ease;
}

.profile-box:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.profile-container {
  display: flex;
  align-items: left;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.profile-content {
  flex: 1;
  min-width: 340px;
}

.profile-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.profile-content h4 {
  font-size: 18px;
  color: #FF6F00;
  font-weight: 600;
  margin-bottom: 25px;
}

.profile-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.profile-content .expertise h5 {
  font-size: 17px;
  color: #000;
  margin-bottom: 10px;
}

.profile-content .expertise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-content .expertise li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: inline-block;
  margin-right: 8px;
}

.profile-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-image img {
  width: 380px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .profile-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .profile-image img {
    width: 280px;
  }

  .profile-content {
    text-align: center;
  }

  .profile-content .expertise ul {
    grid-template-columns: 1fr;
  }
}

/* Global Section Style */
.leadership {
  background: #faf8f6;
  padding: 100px 0;
  color: #2d0a0a;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.leadership::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 111, 0, 0.05), transparent 60%);
  z-index: 0;
}

.leadership-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Founder Section */
.founder .leadership-content {
  order: 1;
}
.founder .leadership-image {
  order: 2;
}

/* Shilpa Section */
.shilpa {
  flex-direction: row;
}

/* Glass Content Box */
.leadership-content {
  flex: 1 1 50%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(255, 111, 0, 0.15);
  border: 1px solid rgba(255, 111, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(255, 111, 0, 0.25);
}

/* Headings */
.leadership-content h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #3a0a0a;
}

.leadership-content h2 span {
  color: #FF6F00;
}

.leadership-content h3 {
  font-size: 1.8rem;
  color: #FF6F00;
  margin-bottom: 8px;
  font-weight: 600;
}

.designation {
  color: #FF6F00;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Text */
.leadership-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: #FF6F00;
  border-left: 4px solid #FF6F00;
  padding-left: 15px;
  margin-top: 25px;
}

/* Image Frame */
.image-glass {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(145deg, #fff, #f1eaea);
  box-shadow: 0 0 35px rgba(255, 111, 0, 0.25);
  transition: 0.4s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-glass:hover {
  transform: scale(1.03);
  box-shadow: 0 0 55px rgba(255, 111, 0, 0.4);
}

.image-glass img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

/* Expertise Box */
.expertise-box {
  background: #fff;
  border-left: 4px solid #FF6F00;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 25px rgba(255, 111, 0, 0.08);
}

.expertise-box h4 {
  color: #FF6F00;
  font-weight: 600;
  margin-bottom: 10px;
}

.expertise-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-box ul li {
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .leadership-container,
  .leadership-container.shilpa {
    flex-direction: column;
    text-align: center;
  }

  .image-glass {
    height: auto;
  }

  .image-glass img {
    width: 300px;
    height: 300px;
  }

  .leadership-content {
    padding: 35px;
  }
}

