*{
    box-sizing:border-box;
}

html, body{
    margin:0;
    padding:0;
}

body {
  margin: 0;
  padding: 0;
  background-color: white
}


/* ===== Form Box (Desktop SAME) ===== */
.formimage{
    display: flex;
    justify-content: center;
}
.addd{
    font-size:25px
}
.sideimage img{
    width: 600px;
    height: 990px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 10px;

}

@media (max-width: 968px) {

    .formimage{
        flex-direction: column;
        align-items: center;
    }

    .sideimage img{
        width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .swal2-icon {
    width: 50px !important;
    height: 50px !important;
    margin: 20px auto !important;
}

.swal2-icon .swal2-success-ring {
    width: 50px !important;
    height: 50px !important;
}

.swal2-icon .swal2-success-fix {
    width: 50px !important;
    height: 50px !important;
}

}


.form-box{
    width:400px;
    background:#fff;
    padding-top:3px;
    padding-left: 30px;
    padding-right: 35px;
    padding-bottom: 25px;
    margin-left: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.form-box h2{
    text-align:center;
    margin-bottom:20px;
    background-color: #28a745;
    font-size: 2.5rem;
}

.form-box input,
.form-box textarea,
.form-box select{
    width:100%;
    padding:10px;
    margin-bottom:12px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:14px;
}

.form-box button{
    width:100%;
    padding:12px;
    background:#28a745;
    color:#fff;
    border:none;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
}

.form-box button:hover{
    background:#218838;
}

/* ===== 📱 Mobile + Tablet (ONLY GAP FIX) ===== */
@media (max-width:968px){
    body{
        margin:0;
        padding-left:25px;
        padding-right: 25px;
        background-color: #0f1b36;
    }

    .form-box{
        width:100%;
        margin:10px;             /* upar / niche gap khatam */
        border-radius:0;
    }
}

.main-header{
    /* max-width: 1650px; */
    position: sticky;
    top: 0;
    z-index: 999;

    width:100%;
    height:70px;
    background:#e7e2e2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    box-shadow:0 2px 5px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    background:#000000;
    
}

.header-org{
    background:#ff6600;color:#fff;padding-left: 13px;padding-right: 12px;border-radius:6px;text-decoration:none;font-weight:600;
}


/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-icon{
    width:40px;
    height:40px;
    background:#3b5bfd;
    color:#fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.logo-text span{
    font-weight:700;
    font-size:16px;
    color:#2b2b2b;
}

.logo-text small{
    font-size:13px;
    color:#3b5bfd;
    font-weight:600;
}

/* Right Side */
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.pro-btn{
    padding:8px 18px;
    border:1.5px solid #3b5bfd;
    color:#3b5bfd;
    border-radius:20px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.pro-btn:hover{
    background:#3b5bfd;
    color:#fff;
}

/* Icons */
.icon-box{
    width:38px;
    height:38px;
    border:1px solid #dcdcdc;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#3b5bfd;
}

.icon-box:hover{
    background:#f2f5ff;
}

.hero-content{
    text-align:center;
    z-index:2;
}

.hero-content h1{
    font-size:70px;
    color:#ffffff;
    font-weight:700;
    line-height:1.3;
    margin-top: 90px;
    margin-left: 90px;
    margin-right: 90px;
}



/* Tablet */
@media (max-width: 992px){
    .hero-content h1{
        font-size:50px;
    }

    .input-box{
        width:240px;
    }
}


.categories{
    width:100%;
    padding:80px 0;
    /* background:#fff; */
}

.cat-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    gap:20px;
    padding:0 20px;
}

/* Card */
.cat-card{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:20px 10px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    background:#fff;
}

.cat-card img{
    width:45px;
    margin-bottom:12px;
}

.cat-card p{
    font-size:14px;
    color:#1f2937;
    font-weight:500;
    line-height:1.4;
}

.cat-card:hover{
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
    transform:translateY(-3px);
}

/* =========================
   MEDIA QUERIES
========================= */

/* Large Tablet */
@media (max-width: 1024px){
    .cat-container{
        grid-template-columns:repeat(3, 1fr);
        padding-left: 45px;
        padding-right: 45px;
        height: 1100px;
    }
}

/* Tablet */
@media (max-width: 768px){
    .cat-container{
        grid-template-columns:repeat(2, 1fr);
    }
}


   
.pro-cta{
    width:100%;
    padding:80px 20px;
    /* background:#fff; */
    display:flex;
    justify-content:center;
    text-align:center;
}

.cta-content{
    max-width:1050px;
    max-height: 1100px;
    background-color: white;
    border-radius: 15px;

}
ol {
  list-style-type: decimal !important;
  padding-left: 20px;
}

ol li {
  margin-bottom: 15px;
}



/* Icon */
.cta-icon{
    width:60px;
    height:60px;
    margin:0 auto 25px;
    border-radius:12px;
    background:#eaf0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3b5bfd;
    font-size:28px;
}

/* Heading */
.cta-content h2{
    font-size:34px;
    color:#020101;
    margin-bottom:20px;
}

/* Text */
.cta-content p{
    font-size:16px;
    color:#050607;
    line-height:1.7;
    margin-bottom:35px;
}

/* Button */
.cta-btn{
    display:inline-block;
    padding:14px 30px;
    border:1.5px solid #3b5bfd;
    border-radius:8px;
    color:#3b5bfd;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cta-btn:hover{
    background:#3b5bfd;
    color:#fff;
}

/* =========================
   MEDIA QUERIES
========================= */

/* Tablet */
@media (max-width: 992px){
    .cta-content h2{
        font-size:28px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .pro-cta{
        padding:60px 15px;
    }

    .cta-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }

    .cta-content h2{
        font-size:22px;
    }

    .cta-content p{
        font-size:14px;
    }

    .cta-btn{
        padding:12px 24px;
        font-size:14px;
    }
}

.service-section{
    padding:0px 20px;
    /* background:#fff; */
    margin-left: 70px;
}

.section-title{
    font-size:20px;
    font-weight:600;
    margin:30px 0 15px;
    color:#fdfeff;
}

/* Horizontal row */
.service-row{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:10px;
}

.service-row::-webkit-scrollbar{
    height:6px;
}
.service-row::-webkit-scrollbar-thumb{
    background:#d1d5db;
    border-radius:10px;
}

/* Card */
.service-card{
    min-width:220px;
    cursor:pointer;
}

.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:10px;
}

.service-card p{
    margin-top:8px;
    font-size:14px;
    color:#fcfcfc;
}

/* Hover */
.service-card:hover img{
    opacity:0.9;
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .service-section{
        margin-left: 20px;
        padding: 0 15px;
        padding-left: 25px;
        padding-right: 35px;
    }

    .section-title{
        font-size: 40px;
    }

    .service-card{
        min-width: 200px;
    }

    .service-card img{
        height: 300px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .service-section{
        margin-left: 0;
        padding: 0 10px;
    }

    .section-title{
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .service-row{
        gap: 12px;
    }

    .service-card{
        min-width: 180px;
    }

    .service-card img{
        height: 120px;
    }

    .service-card p{
        font-size: 13px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .service-card{
        min-width: 160px;
    }

    .service-card img{
        height: 110px;
    }

    .service-card p{
        font-size: 12px;
    }
}



/* Section */
.service-section{
    padding:0 20px;
    margin-left:70px;
}

/* Title */
.section-title{
    font-size:20px;
    font-weight:600;
    margin:30px 0 15px;
    color:#fff;
}

/* Slider Row */
.service-row{
    display:flex;
    gap:16px;
    overflow:hidden;
    padding-bottom:10px;
    will-change:transform;
}

/* Card */
.service-card{
    min-width:220px;
    flex-shrink:0;
}

.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:10px;
}

.service-card p{
    margin-top:8px;
    font-size:14px;
    color:#fff;
}

/* ================= TABLET ================= */
@media (max-width: 991px){
    .service-section{
        margin-left:20px;
    }
    .service-card{
        min-width:180px;
    }
    .service-card img{
        height:250px;
    }
    .section-title{
        font-size:70px;
    }
    .service-card p{
        font-size:25px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 600px){
    .service-section{
        margin-left:0;
        padding:0 10px;
    }
    .service-card{
        min-width:150px;
    }
    .service-card img{
        height:100px;
    }
    .service-card p{
        font-size:130px;
    }
    .section-title{
        font-size:16px;
    }
}

.box{
    margin-left: 1.5rem;
    margin-right: 3.5rem;

    
}

.image img{
    width:73rem;
    height:25rem;
    border-radius:15px;
    margin-top: 3rem;
    margin-left: 100px;
    
}

@media (max-width: 600px){
    .image img{
        width:870px;
        height:500px;
        margin-left:0;
        margin-top:1.5rem;
        border-radius:10px;
    }
}
@media  (max-width: 991px){
    .image img{
        width:870px;
        height:500px;
        margin-left:5%;
        margin-top:2rem;
    }
}


/* footer  */


.footer-bottom{
    text-align:center;
    padding:15px;
    background:#000;
    font-size:13px;
    color:#aaa;
}

@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        padding:30px 20px;
        text-align:center;
    }

    .footer-box{
        margin-bottom:25px;
    }
}

.form-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e2ce67; /* Yellow background like image */
    border-radius: 50%;        /* Circular */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.form-btn img {
    width: 24px;   /* Icon size */
    height: 24px;
}

.form-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Responsive for tablets */
@media (max-width: 900px) {
    .form-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .form-btn img {
        width: 20px;
        height: 20px;
    }
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .form-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .form-btn img {
        width: 18px;
        height: 18px;
    }
}

.search-wrap{
  display: flex;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.location-box,
.search-box{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #bcd2ff;
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
}

.location-box{
  min-width: 260px;
  cursor: pointer;
}

.location-box .icon{
  font-size: 20px;
}

.location-box .text strong{
  display: block;
  font-size: 14px;
  color: #000;
}

.location-box .text small{
  font-size: 12px;
  color: #777;
}

.location-box .arrow{
  margin-left: auto;
  font-size: 12px;
  color: #555;
}

.search-box{
  flex: 1;
}

.search-box input{
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search-icon{
  font-size: 18px;
  color: #555;
}

@media (max-width: 600px) {
  .search-wrap{
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
  }

  .location-box,
  .search-box{
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .location-box{
    min-width: 100%;
  }

  .location-box .text strong{
    font-size: 13px;
  }

  .location-box .text small{
    font-size: 11px;
  }

  .search-box input{
    font-size: 13px;
  }
}


.swal-content h4{
  margin: 15px 0 10px;
  font-size: 16px;
  text-align: left;
}

.services-row{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.services-card{
  width: 140px;
  text-align: center;
  cursor: pointer;
}

.services-card img{
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.services-card p{
  font-size: 13px;
  margin-top: 6px;
}

.containers{
  max-width:1200px;
  margin:20px auto;
  display:flex;
  gap:20px;
}

/* LEFT */
.left-box{
  flex:3;
  background:#fff;
  padding:20px;
  border-radius:10px;
  margin-right: 600px;
  margin-left: 200px;
}

.location{
  font-size:14px;
  color:#555;
  margin-bottom:10px;
}
.location i{
  color:#2f6bff;
}

h1{
  font-size:24px;
  margin:10px 0;
}

.rating{
  color:#2f6bff;
  margin-bottom:20px;
}

.service-banner{
  background:#eef3ff;
  /* display:flex; */
  align-items:center;
  /* justify-content:space-between; */
  border-radius:12px;
  padding:20px;
  margin-bottom:20px;
}

.banner-text h2{
  color:#2f6bff;
}
.banner-text p{
  font-size:18px;
  font-weight:bold;
}

.service-banner img{
  max-width:220px;
}

h3{
  margin:15px 0;
}

.service-options{
  display:flex;
  gap:15px;
}

.option-card{
  background:#fff;
  /*border:1px solid #ddd;*/
  /*border-radius:10px;*/
  padding:5px;
  width:150px;
  text-align:center;
  cursor:pointer;
  transition:.3s;
}

.option-card:hover{
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.option-card img{
  /*width:60px;*/
  margin-bottom:10px;
  border-radius: 10px;
  
}

/* RIGHT */
.right-box{
    flex:1.2;
     position: fixed; 
     padding-left: 750px;
}


.cart-box{
  background:#fff;
  padding:25px;
  text-align:center;
  border-radius:10px;
  margin-bottom:15px;
}

.cart-box i{
  font-size:30px;
  color:#999;
  margin-bottom:10px;
}

.offer-box{
  background:#fff;
  padding:15px;
  border-radius:10px;
  margin-bottom:15px;
}

.offer-box p{
  margin-bottom:8px;
}

.why-box{
  background:#fff;
  padding:15px;
  border-radius:10px;
}

.why-box ul{
  margin-top:10px;
  list-style:none;
}

.why-box li{
  margin-bottom:8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .container{
    flex-direction:column;
  }

  .service-options{
    flex-wrap:wrap;
  }
}
.servicess-sections h2 {
    font-size: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
}
.servicess-sections{
    background: #fff;
    padding: 20px;
    margin-top: 0px;
    border-radius: 0px;
    border: 1px solid #e5e7eb;;
}

.service-sections{
  background:#fff;
  /* padding:20px; */
  margin-top:0px;
  border-radius: 0px;
}

.service-sections h2{
  margin-bottom:15px;
}

.service-cards{
  display:flex;
  justify-content:space-between;
  border:0px solid #e5e7eb;
  border-radius:12px;
  padding:15px;
  margin-bottom:15px;
  border-bottom: 1px solid #e5e7eb;
}

.service-left{
  width:70%;
}

.service-left h3{
  font-size:16px;
  margin-bottom:6px;
}

.rating{
  font-size:13px;
  color:#2563eb;
  margin-bottom:6px;
}

.rating span{
  color:#6b7280;
}

.price{
  font-weight:bold;
  margin-bottom:8px;
}

.service-left ul{
  padding-left:18px;
  font-size:13px;
  color:#374151;
  margin-bottom:8px;
}

.service-left ul li{
  margin-bottom:5px;
}

.show-more{
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
}

.service-right{
  width:50%;
  text-align:center;
  margin-top:30px;
}

.service-right img{
    width: 70%;
    border-radius: 10px;
    margin-bottom: 8px;
    margin-left: 30px;
}

.add-btn{
  background:#fff;
  border:1px solid #2563eb;
  color:#2563eb;
  padding:6px 18px;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
}

.service-right small{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#6b7280;
}

/* MOBILE */

.underline{
    text-decoration: none;
    color: inherit;
}


.review{
    background-color: white;
    margin-top: 20px;
    border-radius: 10px;
    /* padding-left: 60px; */
    margin-right: 100px;
    margin-left: 100px;
}

.cr-reviews-section{
    max-width: 1200px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.cr-title{
  margin-bottom:20px;
  padding-top: 30px;
  font-size: 25px;
}

.cr-wrapper{
  display:flex;
  gap:30px;
}

.cr-summary{
  width:30%;
}

.cr-score{
  font-size:28px;
  color:#f4b400;
}

.cr-score strong{
  color:#000;
}

.cr-bars{
  margin-top:10px;
}

.cr-bar-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin:8px 0;
}

.cr-bar{
  flex:1;
  height:6px;
  background:#ddd;
  border-radius:6px;
}

.cr-bar div{
  height:100%;
  background:#f4b400;
  border-radius:6px;
}

.cr-cards{
  width:70%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.cr-card{
  border:1px solid #e0e0e0;
  border-radius:10px;
  padding:15px;
}

.cr-user{
  display:flex;
  gap:10px;
  align-items:center;
}

.cr-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#e8f0ff;
  color:#2f6bff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.cr-stars{
  color:#f4b400;
  margin:8px 0;
}

.ccs-wrapper{
    /*max-width: 1100px;*/
    margin: 0px auto;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
}

.ccs-main-title{
  font-size:22px;
  margin-bottom:12px;
  padding-top: 20px;
}

.ccs-sub-title{
  font-size:16px;
  margin-top:18px;
  margin-bottom:0px;
  font-weight:600;
}

.ccs-text{
  font-size:14px;
  color:#555;
}

.ccs-list{
  margin-left:18px;
  font-size:14px;
  color:#555;
}

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

.ccs-bullets{
  margin-left:18px;
  font-size:14px;
  color:#555;
}

.ccs-bullets li{
font-size:14px;
}

.service-links{
  columns: 4;
  list-style: disc;
  padding-left: 20px;
}
.service-links li{
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.addddd{
        font-size:25px
    }



@media (max-width: 992px){
    .main-header{
        height: 120px;
    }
    
    .privacy-wrapper {
    width: 100%;
        /* max-width: 950px; */
        margin: 0px 0px;
        background: #ffffff;
        padding: 55px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);}

.privacy-title {
        /*text-align: center;*/
        font-size: 90px;
        margin-bottom: 35px;
        color: #1a1a1a;
        font-weight: bold;
}

.policy-block {
    margin-bottom: 30px;
}

.block-heading {
        font-size: 55px;
        color: #222222b5;
        margin-bottom: 10px;
        font-weight: bold;
        margin-top: 80px;
}

.sub-heading {
       font-size: 42px;
        color: #000000bf;
        margin-top: 35px;
        font-weight: bold;
}

.block-text {
        font-size: 35px;
        color: #666;
        line-height: 1.7;
}
    
    .addd{
    font-size:45px
}
    
    .addddd {
        font-size: 35px;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left:30px
    }
  .location {
        font-size: 1px;
        margin-bottom: 8px;
        color: white;
    }

    .city-banner-title{
  font-size: 50px;
}
    
h1 {
    font-size: 45px;
    margin: 10px 0;
}
h3 {
    font-size:35px;
}

.rating {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 6px;
}

.service-banner img {
    max-width: 420px;
}

.banner-text h2{
    font-size:42px;
  color:#2f6bff;
}
.banner-text p {
    font-size: 38px;
    font-weight: bold;
    padding-left: 30px;
    }

.option-card {
    padding: 5px;
    width: 180px;
}
.pp{ 
    font-size:30px;
}

.service-sections h2 {
        font-size: 50px;
        margin-bottom: 40px;
        margin-top: 40px;
        
    }
    
.banner-text h2 {
    font-size: 42px;
    color: #2f6bff;
    padding-left: 30px;
    margin-top: 1px;
    margin-bottom: 1px;
}
    
.shasa{
    display:flex;align-items:center;gap:10px;cursor:pointer;
}

.hsaasa{text-decoration:none;color:inherit;}
.service-left h3 {
    font-size: 36px;
    margin-bottom: 6px;
}

.price {
    font-weight: revert;
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.service-left ul li {
        margin-bottom: 5px;
        font-size: 28px;
        padding-bottom: 10px;
        padding-top: 0px;
    }
.service-right {
    width: 40%;
}

.service-right img {
    width: 80%;
    border-radius: 10px;
    margin-bottom: 8px;
    margin-top: 30px;
}

.add-btn {
    font-size: 30px;
}

.cat-card p{
    font-size:40px;
}
.cat-card img{
    width:50%;
    margin-bottom:12px;
}

.box {
    margin-top: 12rem;
}

.big-swal {
    min-height: 65vh !important;
    max-height: 65vh !important;
    display: flex;
    flex-direction: column;
}

/* content area */
.big-swal .swal2-html-container {
    flex: 1;
    overflow-y: auto;
}

.swal-content h4{
  font-size: 50px;
  text-align: left;
}
.services-card img{
  height: 250px;
}

.services-card {
    width: 30%;
}

.services-card p{
  font-size: 30px;
}

.review{
    background-color: white;
    margin-top: 0px;
    border-radius: 0px;
    /* padding-left: 60px; */
    margin-right: 0px;
    margin-left: 0px;
}

.cr-wrapper {
    display: block;
}

.cr-summary {
    width: 95%;
}

.cr-cards {
    width: 90%;
    display: block;
}

.cr-stars {
    font-size: 30px;
}

.cr-avatar {
    width: 76px;
    height: 76px;
    font-size: 40px;
}

.cr-bar-row {
    display: flex;
    font-size: 24px;
}

.cr-title {
    font-size: 50px;
}

.re4{
    font-size:30px;
}
.pps{
    font-size:25px;
}
.ccs-text {
    font-size: 32px;
    margin-bottom: 20px;
}
.ccs-sub-title {
    font-size: 36px;
}
.ccs-main-title {
    font-size: 47px;
}
.ccs-bullets {
    margin-left: 18px;
}
.ccs-list {
    font-size: 28px;
}

.ccs-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0px;
}
.ccs-list li {
    margin-top: 20px;
}
.ccs-bullets li{
font-size:28px;
margin-top: 13px;
margin-bottom: 13px;
}

.service-links li {
    font-size: 20px;
    color: #555;
    margin-bottom: 8px;
    font-weight: bold;
}



.service-options {
    display: flex;
    gap: 95px;
    margin-left: 40px;
}

.service-banner {
    background: #f4b400;
    /* display: flex; */
    align-items: center;
    /* justify-content: space-between; */
    /* border-radius: 12px; */
     padding: 0px; 
    margin-bottom: 20px;
}
.servicess-sections h2 {
    font-size: 50px;
    margin-bottom: 0px;
    margin-top: 30px;
}

.show-more{
  font-size:30px;
  color:#2563eb;
  text-decoration:none;
}

.contact-box {
        /*width: 750px;*/
        background: #fff;
        padding: 25px;
        /*margin: 50px auto;*/
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        /*height: 1200px;*/
}

.contact-box h2 {
       margin-bottom: 20px;
        color: #333;
        font-size: 80px;
        font-weight: bold;
        margin-top: 50px;
        padding-left: 60px;
}

.input-group {
    position: relative;
        margin-bottom: 20px;
        font-size: 50px;
}

.input-group i {
    position: absolute;
        left: 60px;
        top: 60px;
        color: #888;
}

.input-group input,
.input-group textarea {
    width: 100%;
        border: none;
        border-bottom: 1px solid #ccc;
        /* padding: 22px 20px 20px 50px; */
        padding-left: 150px;
        padding-top: 50px;
        outline: none;
        font-size: 50px;
        background: transparent;
}

.input-group textarea {
    resize: none;
    height: 70px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom: 1px solid #28a745;
}

.submit-btn {
    width: 100%;
        padding: 12px;
        background: #7ac70c;
        border: none;
        color: #fff;
        font-size: 45px;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 10px;
        transition: 0.3s;
}

.submit-btn:hover {
    background: #5ea408;
}

.about-section-v2 {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Dark Area */
.about-dark-area {
  background: #0b0b0b;
  color: #ffffff;
  padding: 100px 8%;
}

    .about-heading {
        font-size: 70px;
        margin-bottom: 25px;
        font-weight: bold;
    }

    .about-para {
        font-size: 35px;
        line-height: 1.8;
        color: #d0d0d0;
        /* max-width: 650px; */
        margin-bottom: 20px;
    }

/* Light Area */
.about-light-area {
  background: #f2f2f2;
  padding: 40px 8%;
}

/* Grid */
    .about-image-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

.about-image-layout img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
}

.about-image-wide {
  grid-column: span 3;
}

.bottom-sticky{
    position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #2f6bff;
        color: #fff;
        text-align: center;
        padding: 15px;
        font-size: 50px;
        font-weight: 600;
        z-index: 9999;
        cursor: pointer;
        height: 120px;
        margin-bottom: 5px;
}

}





.city-banner{
  position: relative;
  height: 420px;
  background-image: url("image/image1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* overlay */
.city-banner-shade{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.city-banner-content{
  position: relative;
  text-align: center;
  z-index: 2;
}

.city-banner-title{
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 10px;
}

.city-banner-text{
  font-size: 35px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.city-banner-btn{
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 35px;
    margin-top: 70px;
}

.city-status{
  color: #00ff7f;
  margin-left: 6px;
}
.city-status{
  color: #00ff7f;
  margin-left: 6px;
  animation: pulseDot 1s infinite;
}

@keyframes pulseDot{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.2;
  }
  100%{
    opacity: 1;
  }
}

.footer {
  background: #2f2d2d;
  padding: 60px 40px;
  border-top: 1px solid #eee;
  font-family: Arial, sans-serif;
}

.footer-container {
      display: flex;
    gap: 70px;
    padding-bottom: 80px;
}

.footer-col h4 {
font-size: 50px;
    margin-bottom: 15px;
    position: relative;
    color: #f7f4f4;
}

.footer-col h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #3b5bff;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer-col ul {
  list-style: none;
  padding-top: 50px;
}

.footer-col ul li {
  margin-bottom: 30px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 40px;
}

.footer-col ul li a:hover {
  color: #f5f2f28a;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1px;
}

.logo img {
  width: 220px;
}

.social-icons a {
  font-size: 40px;
  color: #3b5bff;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
    .footer-col ul li a {
  text-decoration: none;
  color: #b0a1a1;
  font-size: 33px;
}

.footer-col h4 {
  font-size: 35px;
}
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
