  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
}
.container-grid {
  max-width: 1250px;
  margin: 0 auto;
}
p { font-size:16px;line-height:1.5em;color:#727272; }
h2{ font-size:45px;line-height:1.2em;color:#3E3C56; }
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #0b33a800;
  transition: background 0.3s ease;
}
.header.scrolled {
  background: #1b1b2f;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
.logo img {
  height: 45px;
  width: auto;
        display: flex;
}
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
.nav ul li a:hover, .nav ul li a.active {
    background: linear-gradient(90deg, #2974BA 0%, #78B833 100%);
    -webkit-background-clip: text;
    color: transparent;
}
.nav a.contact-btn {
    display: none;
}
.contact-btn {
  background: linear-gradient(90deg, #3269f0, #7bc83f);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}
.contact-btn:hover {
  opacity: 0.9;
}
.toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
/*--------------------------------------------------------------------------------*/
/*===========================footer-========================================*/
/*------------------------------------------------------------------------------*/
.acme-footer {
    background-color: #1b1b2f; 
    color: #fff; 
    font-size: 16px;
}
.cont-grid {
    max-width: 1250px;
    padding: 60px 0px; 
    margin: 0 auto; 
}
.main-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 40px; 
}
.footer-col h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    display: block; 
}
.footer-col p {
    color: #fff;
}
.info-box {
    padding-right: 20px;
}

.info-box .logo-footer {
    display: flex; 
    align-items: center;
    margin-bottom: 20px;
}

.info-box .logo-footer img {
    width: 180px; 
    height: auto;
    margin-right: 10px;
}
.info-box .logo span {
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: -5px; 
}
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px; 
}
.social-links a {
    color: #fff;
    font-size: 26px;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #F49A34;
}
.useful-links-box {
    display: flex;
    flex-direction: column;
}

.links-grid {
    display: flex;
    gap: 50px; 
}
.links-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.links-grid ul li {
    margin-bottom: 10px;
}
.links-grid ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    border-bottom: 1px solid #444455; 
    display: inline-block;
    padding-bottom: 2px;
}
.links-grid ul li a:hover {
    color: #F49A34;
}
.contact-box a {
    border-bottom: none !important; 
    padding-bottom: 0 !important;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.contact-item i {
    font-size: 16px;
    margin-right: 10px;
    margin-top: 3px; 
    color: #ffffff; 
}
.contact-item p,
.contact-item a {
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}
.contact-item p:hover{color:#F49A34;}
.contact-item a:hover { color:#F49A34;}

.bottom-bar {
    background-color: #000; 
    text-align: center;
    padding: 15px 20px;
}
.bottom-bar p {
    color: #fff; 
    font-size: 14px;
    margin: 0;
    line-height: 1;
}
.bottom-bar a {
    color: #fff; 
}
/*=============================hero section ================*/

.hero-sec {
  background-color: #1732A4;
  background-image: url("images/white-shape-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 100px 20px;
  color: #fff;margin-bottom: 25px;
}

.container-grid {
  /*max-width: 1250px;
  margin: 0 auto;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Left content */
.hero-sec-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-sec-heading {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.hero-sec-para {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
  color: #f0f0f0;
}
/* Common initial state for all hero elements */
.hero-sec-heading,
.hero-sec-para,
.hero-sec-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

/* Keyframes for smooth up animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered timing for nicer effect */
.hero-sec-heading {
  animation-delay: 0.2s;
}
.hero-sec-para {
  animation-delay: 0.4s;
}
.hero-sec-btn {
  animation-delay: 0.6s;
}


.hero-sec-btn {
  background-image: linear-gradient(90deg, #2974BA 0%, #78B833 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
  display: block;
    max-width: fit-content;
}

.hero-sec-btn:hover {
  background-image: linear-gradient(90deg, #78B833 0%, #2974BA 100%);
}

/* Right side image */
.hero-sec-right img {
    width: 100%;
    border-radius: 10px;
    display: block;
    margin-top: 22px;
    margin-bottom: -151px;
    z-index: 1;
    position: relative;
}
.transform svg {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    fill: #fff;
    stroke: #ffffff;
}
.transform {
    transform: rotate(180deg);
}
/*===============================value time section=================*/
.vule-time {
    padding: 80px 0px; 
    text-align: center;  
}
.vule-time-container {
    max-width: 1250px; 
    margin: 0 auto; 
}
.vule-time-header {
    margin-bottom: 60px;
}

.vule-time-header h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #3E3C56; 
}

.vule-time-header p {
    font-size: 16px;
    color: #666666; 
    max-width: 700px;
    margin: 0 auto; 
    line-height: 1.6;
}
.vule-time-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 40px; 
    margin-top: 40px;
}

.vule-time-feature-item {
    text-align: center; 
    padding: 15px;
}
.vule-time-icon {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 45px;
    color: #ff9933; 
}
.vule-time-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3E3C56; 
}
.vule-time-text {
    font-size: 16px;
    color: #727272; 
    line-height: 1.7;
    padding: 0 10px; 
}
/*=====================================LANDLORD SECTION ==========================================*/
.landlord {
    padding: 0px 0 0 0; 
}

.landlord-cont-grid {
    max-width: 1250px; 
    margin: 0 auto;
    padding: 0 0px;
}
.landlord-header {
    text-align: center;
    margin-bottom: 50px;
}
.landlord-heading {  }
.landlord-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 20px;
    margin-bottom: 0; z-index: 2;
    position: relative;
}
.landlord-grid-item {
    position: relative;
    padding: 0 0px;
}
.landlord-card {
    background-color: white;
    padding: 50px 70px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1); 
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.landlord-icon-img {
    height: 100px; 
    margin-bottom: 20px;
}
.landlord-icon-img img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}
.landlord-title {
    font-size: 24px;
    font-weight: 700;
    color: #3E3C56;
    margin-bottom: 10px;
}
.landlord-text {
    
}
.landlord-work {
    position: relative;
    background-color: #6C62FF;
    color: white;
    padding: 170px 20px 120px 20px;
    margin-top: -90px;
    border-radius: 0 0 8px 8px;
    text-align: left;
    overflow: hidden;
    background-image: url("images/bg-img-1.png"); 
    z-index: 1;transition: all 0.3s ease;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.landlord-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); transition: all 0.3s ease;
}
.landlord-work-content {
    max-width: 705px;
    margin: 0 auto;
    text-align: center !important;
    position: relative; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;gap:10px;
}

.landlord-work-heading {
    margin-bottom: 15px; color: #fff;
    line-height: 1.3;
}
.landlord-work-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff; max-width: 600px;
    line-height: 1.5;
}
.landlord-work-btn {
    display: inline-block;
    background-color: white;
    color: #6C62FF;
    text-decoration: none;
    font-weight: 600; 
    padding: 12px 30px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.landlord-work-btn:hover {
    background-color: #f0f0f0;
}
.landlord-work-girl {
    position: absolute;
    bottom: 0;
    right: 50px; 
    height: 100%; 
    max-height: 450px; 
    transform: translateY(10px); 
    z-index: 1; 
}
.landlord-work-graphics {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 200px;
    height: 100px;
    z-index: 1;
}
/*=========================OUR SERVICE=============================*/
.osa {
    padding: 80px 0px;
    text-align: center;
}
.osa-container {
    max-width: 1250px;
    margin: 0 auto;
}
.osa-header {
    margin-bottom: 50px;
}
.osa-heading {
    
    margin: 0;
}
.osa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.osa-card {
    background-color: #e6e6e6; 
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center; 
    min-height: 280px; 
    display: flex;
    flex-direction: column;
}
.osa-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); transition: all 0.3s ease;
}
.osa-card-dark {
    background-color: #3b3a5b;
    color: #ffffff; 
}
.osa-icon { font-size: 30px; margin-bottom: 15px;color: #ff9933; }
.osa-card-dark .osa-icon {color: #ff9933; }
.osa-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;color: #3E3C56; 
}
.osa-card-dark .osa-title { color: #ffffff; }
.osa-text { font-size: 16px;line-height: 1.6; color: #3b3a5b;}
.osa-card-dark .osa-text {color: #e0e0e0;}









.whatsapp-btn {
    background-color: #1bd741;
    color: white;
    padding: 7px 8px;
    text-decoration: none;
    margin-top: 20px;
    align-items: center;
    display: flex;
    gap: 10px;
    border-radius: 50%
}

.whatsapp-btn,.whatsapp-btn .icon-what {
    font-size: 30px
}

.whatfixed {
    position: fixed;
    left: 24px;
    bottom: 55px;
    z-index: 999
}

.acme_links>ul>li:hover a {
    color: #71b23f
}

@keyframes video-out {
    to {
        top: -30px;
        right: -30px;
        bottom: -30px;
        left: -30px;
        opacity: 0
    }
}

.whatsapp-btn:before {
    content: "";
    position: absolute;
    box-shadow: 0 0 20px #1bd741;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    animation-duration: 2s;
    border-radius: 50%;
    opacity: 0;
    animation-name: video-out;
    opacity: 1;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}




/*------------------------------------------------------------------------------------------------------------------------*/
/* ======================================================================1024px Tablet=================================== */
/*------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
  .container {padding: 12px 15px;  }
  .nav a.contact-btn {display: block;}
  #btn-c { display: none;}
  .nav ul { gap: 15px;}
  section.hero-sec {margin-bottom: 0px;}
  .hero-sec-heading {font-size: 42px; }
  .container-grid { gap: 35px;}
  .main-footer-content {grid-template-columns: 1fr 1fr; padding:0px 20px}
  .contact-box {grid-column: span 2; }
  .vule-time-features-grid {grid-template-columns: 1fr 1fr;gap: 30px;}
  .landlord-grid {grid-template-columns: 1fr 1fr;}
  .landlord-work-girl { right: 20px;  max-height: 280px;}
  .landlord-work-content {max-width: 500px;}
  .osa-grid { grid-template-columns: repeat(2, 1fr);gap: 25px;    }
}
/*------------------------------------------------------------------------------------------------------------------------*/
/* ===================================767px  Mobile================================ */
/*-------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
  h2{font-size: 28px;}
  .toggle {display: flex;}
      .nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 70%;
        background: linear-gradient(90deg, #F3F6FD 0%, #D8E2F2 100%);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
        display: none;
    }
    .nav ul li a{
        color: #000;
    }
  .nav.active {display: flex;}
  .nav ul { flex-direction: column; align-items: left;gap: 20px;  }
  .nav ul li a {font-size: 16px;}
  .toggle.open span:nth-child(1) {transform: rotate(45deg) translateY(7px);}
  .toggle.open span:nth-child(2) { opacity: 0; }
  .toggle.open span:nth-child(3) {transform: rotate(-45deg) translateY(-7px);  }
  .container-grid { grid-template-columns: 1fr; text-align: left;  }
  .hero-sec-right img {margin: 0 auto;  }
  .hero-sec-heading {font-size: 36px;  }
  .hero-sec-para {margin: 0 auto 25px;}
  .main-footer-content {  grid-template-columns: 1fr;gap: 20px; margin-bottom: -30px;}
  .contact-box { grid-column: span 1; }
  .footer-col {margin-bottom: 0px;}
  .info-box { padding-right: 0; }
  .links-grid { grid-template-columns: 1fr; gap: 15px; }
  .vule-time { padding: 40px 20px 20px 20px;}
  .vule-time-features-grid {grid-template-columns: 1fr; gap:0px; }
  .landlord-grid { grid-template-columns: 1fr; }
  header.landlord-header { margin-bottom: 10px;}
  .landlord-cont-grid { padding: 0px 20px;}
  .landlord-grid-item {margin-bottom: 20px; }
  .landlord-work-girl {display: none;}
  .landlord-work {text-align: center;padding: 40px 20px;margin-top: 0;}
  .osa {padding: 45px 20px;  }.osa-header { margin-bottom: 40px;}
  .osa-grid { grid-template-columns: 1fr;gap: 20px; }
  .osa-card {min-height: auto; }
  section.hero-sec {margin-bottom: 0px;padding: 100px 20px 70px 20px;}
.logo img {
    height: 35px;
}


}
