@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');


.hero-section {
  background: url('images/IFM_.jpg') no-repeat center center;
  background-size: cover; /* makes the full image visible */
  background-repeat: no-repeat;
  background-position: center center;
  padding: 150px 20px;  /* enough space for content */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  height:100vh;
   --ff-poppins: "Poppins", sans-serif;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 700px;
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;

}

.hero-content .subtitle,
.hero-content h1,
.hero-content .description {
  text-align: center; /* Override any justify setting */
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 45px;

}

.hero-content .description {
  font-size: 16px;
  margin-bottom: 25px;
}
.hero-btn {
  display: inline-block;
  background: #fff;
  color: #003e78;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ffc107;
  color: #000;
}

.hero-video-section {
  
  
  display: flex;
  justify-content: center;
  margin-top: -100px; /* Pull the video upward */
  z-index: 1;
  position: relative;
 
}

.video-wrapper {
  border: 8px solid #017dc1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 900px;
  /* Remove fixed height, use aspect ratio instead */
 aspect-ratio: 16 / 9;

  
}

.video-responsive {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Tablet adjustments */
@media (max-width: 992px) {
   .hero-section {
    margin-top: 80px;
    background-size: contain;
    background-position: top center;
    position: relative;
    padding: -100px;
  }

  .hero-section::before {
    display: none;
  }

  .hero-content h1 {
    position: relative;   /* Sticky is not ideal here; relative keeps normal flow */
    font-size: 18px;
    color: #ffffff;
    background-color: rgba(51, 51, 51, 0.5); /* cleaner opacity */
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    max-width: 90%;      /* responsive width */
    margin-top: -100%;
    line-height: 20px;

  }

  .hero-content .description {
    display: none;
  }

  .hero-btn {
    border: 0.5px solid rgba(0, 0, 0, 0.6);
  }
  .hero-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 20px;
    margin-top: -90%;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%; 
    border-width: 4px; /* thinner border on small screens if you prefer */
  }
}


@media (max-width: 468px) {
  .hero-section {
    margin-top: 80px;
    background-size: contain;
    background-position: top center;
    position: relative;
    /* padding: -100px; */
    height: 100px;
  }

  .hero-section::before {
    display: none;
  }

  .hero-content h1 {
    position: relative;   /* Sticky is not ideal here; relative keeps normal flow */
    font-size: 20px;
    color: #ffffff;
    background-color: rgba(51, 51, 51, 0.5); /* cleaner opacity */
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    max-width: 90%;      /* responsive width */
    margin-top: 20px;
  }

  .hero-content .description {
    display: none;
  }

  .hero-btn {
    border: 0.5px solid rgba(0, 0, 0, 0.6);
     padding: 8px 10px;
  }
  .hero-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    /* padding-inline: 20px; */
    /* margin-top: -130%; */
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%; 
    border-width: 4px; /* thinner border on small screens if you prefer */
  }
}





.smc-hero {
  background: url('https://u.cubeupload.com/arunima/5f4WhatsAppImage2025062.jpeg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.smc-overlay {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.smc-left {
  flex: 1;
  max-width: 45%;
  min-width: 280px;
}

.smc-logo {
  width: 130px;
  margin-bottom: 20px;
}

.smc-tagline {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.smc-heading {
  font-size: 32px;
  line-height: 1.4;
}

.smc-stats {
  flex: 1;
  max-width: 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  min-width: 280px;
}

.smc-stat-box {
  background: white;
  color: #014d3f;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.smc-stat-box h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #014d3f;
}

.smc-stat-box p {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .smc-overlay {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .smc-left, .smc-stats {
    max-width: 100%;
    width: 100%;
  }

  .smc-heading {
    font-size: 26px;
  }

  .smc-stat-box h2 {
    font-size: 28px;
  }

  .smc-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .smc-heading {
    font-size: 22px;
  }

  .smc-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 30%;
  }

  .smc-stat-box {
    padding: 20px 15px;
  }

  .smc-overlay {
    padding: 25px 20px;
  }

  .smc-logo {
    width: 100px;
  }
}


.brand-section-wrapper {
  margin-top: 80px;
  position: relative; /* Needed for absolute positioning of ::before */
  background-color: rgba(0, 0, 0, 0.6); /* fallback semi-transparent color */
  padding: 80px 20px 40px;
  text-align: center;
  font-family: var(--ff-poppins);
  overflow: hidden; /* Ensure blur stays inside */
}

.brand-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/cl1.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(1px); /* Adjust blur level */
  z-index: -1;
}

.brand-section-wrapperss{
   position: relative; /* Needed for absolute positioning of ::before */
  background-color: rgba(0, 0, 0, 0.6); /* fallback semi-transparent color */
  padding: 80px 20px 40px;
  text-align: center;
  font-family: var(--ff-poppins);
  overflow: hidden; /* Ensure blur stays inside */
}
.brand-section-wrapperss::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/cl12.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(1px); /* Adjust blur level */
  z-index: -1;
}


.brand-title {
  font-size: 2.5rem;
  color: white;
  font-weight: 600;
  line-height: 50px;
}
.ecps{
  color: white;
}
@media (max-width: 768px) {
  .brand-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #yy {
    font-size: 20px;
  }
}

/* Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrolling Bar */
.scrolling-bar {
  background-color: #017dc1;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.scrolling-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

.scrolling-item {
  flex: 0 0 auto;
  margin: 0 30px;
  font-size: 2rem;
  color: white;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scrolling-item {
    font-size: 1.2rem;
    margin: 0 20px;
  }

  .scrolling-bar {
    padding: 30px 0;
  }
}

/* CTA Section */
.ifm-cta-wrapper {
  background-color: #017dc1;
  color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
  margin-top: 80px;
}

.ifm-cta-text {
  max-width: 50%;
}

.ifm-cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 30px;
}

.ifm-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ifm-cta-button {
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.ifm-btn-primary {
  background-color: #6c9fff;
  color: #fff;
}

.ifm-btn-primary:hover {
  background-color: #4a88f1;
}

.ifm-btn-secondary {
  background-color: #fff;
  color: #000;
}

.ifm-btn-secondary:hover {
  background-color: #e6e6e6;
}

.ifm-cta-image {
  max-width: 40%;
}

.ifm-cta-image img {
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ifm-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .ifm-cta-text,
  .ifm-cta-image {
    max-width: 100%;
  }

  .ifm-cta-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .ifm-cta-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .ifm-cta-text h2 {
    font-size: 1.5rem;
  }

  .brand-title {
    font-size: 1.75rem;
    line-height: 28px;
    margin-top: -30px;

  }
}
/* Responsive adjustments for tablets and below */
@media (max-width: 900px) {
  .ifm-cta-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .ifm-cta-text,
  .ifm-cta-image {
    max-width: 100%;
  }

  .ifm-cta-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .ifm-cta-buttons {
    justify-content: center;
  }
}

/* Additional fixes for small phones like iPhone 6, iPhone 15, Galaxy S23 */
@media (max-width: 480px) {
  .ifm-cta-wrapper {
    padding: 30px 15px;
  }

  .ifm-cta-text h2 {
    font-size: 1.6rem;
  }

  .ifm-cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .ifm-cta-image img {
    border-radius: 20px;
  }

  .ifm-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.cleaning-services {
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px;
}

.service-box {
  background: #f3faff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border:.5px solid rgba(75, 128, 243, 0.411);
  overflow: hidden;
  max-width: 300px;
  flex: 1 1 300px;
  text-align: center;
  transition: transform 0.9s ease;
}

.service-box:hover {
  transform: scale(1.1);
}

.service-box img {
  width: 100%;
  height: 200px;
  display: block;
}

.service-box h3 {
  font-size: 20px;
  margin: 15px 10px 5px;
  color: #013e4d;
}

.service-box p {
  font-size: 14px;
  color: #555;
  padding: 0 15px 15px;
  line-height: 1.5;
}
.btncir{
  background-color: #4a88f1;
  padding: 10px;
  color: white;
}
.btncir:hover{
    background-color:#0047c2ce;;
}





.accordion {
    display: flex;
    flex-direction: column;
    --ff-poppins: "Poppins", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
}
.accordion h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}
.accordion-item {
    margin-top: 0px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h2 {
        font-size: 22px;
    }
    .ecps{
      font-size: 12px;
      margin-top: 10px;
      margin-bottom: -30px;
    }
    .cleaning-services{
      margin-left: 10px;
      margin-right: 10px;
    }
}




.fnb-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: left;  /* Center all inline content */
}

.fnb-image {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fnb-content h2 {
  font-size: 2rem;
  color: #014d3f;
  margin-bottom: 15px;
}

.fnb-content h3 {
  font-size: 1.3rem;
  color: #017dc1;
  margin-top: 20px;
  margin-bottom: 10px;
}

.fnb-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.fnb-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.fnb-content ul li {
  margin-bottom: 8px;
  color: #444;
}

.fnb-content ul li strong {
  color: #014d3f;
}
