* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  body, html {
    font-family: Arial, sans-serif;
    /* overflow-x: hidden; */
  }
  .hero {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
      z-index:1;
       
  }
  header {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    padding: 0px 35px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(0,0,0,0.1); 
    z-index: 1000; 
  }

  header .logo img {
    height: 90px;
    width: 96%;
  }

  header .btn {
    padding: 16px 20px;
    background: rgb(174, 174, 192);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    font-size: 15px;
  }
  header .btn:hover {
    background: #e65c00;
  }
  .consultation-form {
    width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: absolute;
    top: 120px;  
    right: 40px;
  }
  .consultation-form h3 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .consultation-form input,
  .consultation-form select {
    width: 100%;
    padding: 18px;
    margin: 8px 0;
    margin-bottom: 7px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  .consultation-form button {
    background: #575764;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;

  }
  .consultation-form button:hover {
    background: blue;
  }
  .consultation-form .privacy {
    font-size: 13px;
    margin-top: 20px;
    color: #555;
  }

  
.popup {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); 

}
.hero-content{
  position: absolute;
 margin-top: -39%;
    padding: 8px 78px;
}
.multi-calc-section {
    padding: 10px 20px;
    background: #f4f6fb;
    text-align: center;
    font-family: Arial, sans-serif;
    border-radius: 15px;

}

.calc-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.calc-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: bold;
}

.tab-btn.active {
  background: #007bff;
  color: #fff;
}

.calc-content {
     display: none;
    max-width: 400px;
    margin: auto;
    /* background: #fff; */
    padding: 0px;
    border-radius: 12px;
    /* box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1); */
    text-align: left;

}

.calc-content.active {
  display: block;
}

.calc-content label {
  font-weight: 600;
  display: block;
  margin: 10px 0 5px;
  color: #333;
}

.calc-content input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
}

.calc-content button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.calc-content button:hover {
  background: #0056b3;
}

.popup-content {
  margin: 0% auto; 
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.close {
     position: absolute;
    right: 10px;
    top: 65px;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}



.about {
  padding: 80px 60px;
  background: #f5f6f8;
  font-family: Arial, sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  width: 50%;
}

.small-title {
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: bold;
  color: #ff5e14;
  margin-bottom: 15px;
}

.about-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
}

.about-text h1 span {
  color: #ff5e14;
}

.desc {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
}

.desc2 {
  margin-top: 15px;
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  width: 90%;
}

.about-btn {
  margin-top: 30px;
  padding: 15px 28px;
  background: #222;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ff5e14;
}

.about-image {
  width: 50%;
  text-align: right;
}

.about-image img {
  width: 90%;
}

.stats {
  width: 100%;
  font-family: Arial, sans-serif;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-box {
  text-align: center;
  padding: 50px 20px;
}

.stat-box h2 {
  font-size: 48px;
  margin: 15px 0 5px;
  font-weight: 800;
}

.stat-box p {
  font-size: 16px;
  color: #777;
}

.icon {
  width: 70px;
  opacity: 0.8;
}

/* colors */
.light {
  background: #f2f2f2;
}

.white {
  background: #ffffff;
}

.orange {
  background: #ff5e14;
  color: #fff;
}
.orange img{
  width: 50px;
}
.orange p {
  color: #fff;
}

.dark {
  background: #4a4a4a;
  color: #fff;
}

.dark p {
  color: #ddd;
}


.Sector{
  padding: 0px 0px;
  background: #fff;
  font-family: Arial, sans-serif;
}


.Sector-container{
  display: flex;
  align-items: stretch;   
  gap: 60px;
}


.Sector-image{
  flex: 1;
}

.Sector-image img{
  width: 105%;
  height: 100%;         
  object-fit: cover;
  /* border-radius: 10px; */
}


.Sector-text{
padding: 45px 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.sector_small-title{
      letter-spacing: 3px;
    font-size: 18px;
    font-weight: bold;
    color: #ff5e14;
    margin: 0px 26px;
    margin-bottom: 15px;

}


.Sector-text h1{
      font-size: 38px;
    margin: 0px 26px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sector_desc, .sector_desc2{
      color: #666;
    line-height: 1.7;
    margin: 0px 26px;
    margin-bottom: 20px;
    width: 85%;
}


.Sector-text ul{
  columns: 2;
      margin: 0px 26px;
  margin-bottom: 20px;
}

.Sector-text ul li{
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.Sector-text ul li::before{
  content: "✔";
  color: #ff5e14;
  position: absolute;
  left: 0;
}


.sector-btn{
  width: fit-content;
  padding: 15px 30px;
      margin: 0px 26px;
  background: #ff5e14;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: .3s;
}

.sector-btn:hover{
  background: #e04e0b;
}

/* Section */
.services{
  padding:80px 0;
  background:#f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

.containerr{
  width:90%;
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.section-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.section-subtitle{
  color:#777;
  max-width:700px;
  margin:0 auto 50px;
  line-height:1.6;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px 30px;
}

/* Card */
.service-card{
  background:#fff;
  text-align:left;
  transition:0.3s;
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.service-card h3{
  font-size:22px;
  margin:18px 20px 10px;
}

.service-card p{
  color:#666;
  font-size:15px;
  line-height:1.6;
  margin:0 20px 15px;
}

/* Learn more link */
.service-card a{
  display:inline-block;
  margin:0 20px 20px;
  font-weight:600;
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

.service-card a span{
  margin-left:8px;
  font-size:20px;
}

.service-card:hover{
  transform:translateY(-8px);
}




/* .services{
    padding:50px 10%;
    background:#f5f5f5;
    text-align:center;
}

.services h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.subtitle{
    color:#666;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
} */

/* .card{
    background:white;
    padding:35px 25px;
    border-radius:6px;
    text-align:left;
    transition:0.3s;
    box-shadow:0 0 0 rgba(0,0,0,0);
    border:1px solid #eee;
} */

/* .card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
} */

.icon{
    font-size:35px;
    color:#ff5e14;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
    margin-bottom:10px;
    position:relative;
}

.card h3::after{
    content:"";
    width:40px;
    height:3px;
    background:#ff5e14;
    position:absolute;
    bottom:-8px;
    left:0;
}

.card p{
    margin-top:18px;
    color:#777;
    line-height:1.6;
}

/* SLIDER */
.slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.slider{
    display:flex;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
    padding:20px 10px;
}

/* each card width so 4 visible */
.card{
    min-width:23%;
    background:white;
    padding:35px 25px;
    border-radius:6px;
    text-align:left;
    border:1px solid #eee;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* arrows */
.arrow{
    position:absolute;
    width:45px;
    height:45px;
    border:none;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    z-index:10;
}

.left{ left:-50px; }
.right{ right:-50px; }

.arrow:hover{
    background:#ff5e14;
    color:white;
}





/* PROJECTS SECTION */
.projects{
    background:#ff5e14;
    padding:80px 10%;
    color:white;
    text-align:center;
}

.projects h1{
    font-size:44px;
    font-weight:800;
}

.projects .sub{
    margin:15px 0 50px;
    opacity:0.9;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.project-card{
    display:flex;
    background:#eee;
    border-radius:6px;
    overflow:hidden;
}

.project-card img{
    width:50%;
    object-fit:cover;
}

.project-info{
    width:50%;
    background:#e9e9e9;
    color:#333;
    padding:35px;
    text-align:left;
}

.project-info span{
    color:#ff5e14;
    font-weight:bold;
    font-size:12px;
    letter-spacing:2px;
}

.project-info h3{
    margin:15px 0;
    font-size:24px;
}

.project-info .date{
    color:#777;
    margin-bottom:20px;
}

.project-info a{
    text-decoration:none;
    font-weight:bold;
    color:#333;
}







.how-it-works {
  text-align: center;
  padding: 70px 20px;
  background: #fdf7f6;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
  position: relative;
      margin-top: 40px;
}

.step {
  cursor: pointer;
  text-align: center;
  position: relative;
}

.step .circle {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step .circle.active {
  background: black;
  color: white;
}

.step p {
  margin-top: 10px;
  font-size: 16px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
     left: 88%;
    width: 62px;
    height: 3px;
  background: #ccc;
  transition: background 0.3s ease;
}
.step-image img {
  width: 300px;
  height: auto;
  transition: all 0.5s ease-in-out;
}
.how-it-works h2{
  margin-bottom: 12px;
  font-size: 30px;
}



.footer{
    background:#111;
    color:#fff;
    padding-top:60px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap:40px;
}

.footer-col h2.logo{
    color:#ff5a0e;
    font-size:28px;
    margin-bottom:15px;
}

.footer-col h3{
    margin-bottom:20px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    width:40px;
    height:3px;
    background:#ff5a0e;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-col p{
    color:#bbb;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin:20px 0;
    color:#bbb;
    cursor:pointer;
    transition:0.3s;
}

.footer-col ul li:hover{
    color:#ff5a0e;
}

.socials{
    margin-top:20px;
}

.socials i{
    background:#ff5a0e;
    padding:10px;
    margin-right:10px;
    cursor:pointer;
    color: white;
}

.subscribe-input{
    width:100%;
    padding:12px;
    border:none;
    margin-top:20px;
    background:#222;
    color:#fff;
}

.subscribe-btn{
    width:100%;
    padding:12px;
    border:none;
    background:#ff5a0e;
    color:#fff;
    margin-top:15px;
    cursor:pointer;
    font-weight:bold;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #333;
    margin-top:50px;
    padding:20px;
    color:#aaa;
}

.why-us{
  background:url("./image/about_bg.png") center/cover no-repeat fixed;
  padding:60px 8%;
  position:relative;
  color:white;
}
.why-us::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.75)
  );
  z-index:0;
}

.why-overlay{
  position:relative;
  z-index:1;
  backdrop-filter: blur(2px);
}

.why-content{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.why-content h2{
  font-size:48px;
  margin-bottom:10px;
}
.why-tag{
  opacity:0.8;
  margin-bottom:60px;
}

/* Glass strip */
.feature-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.feature{
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  padding:35px 25px;
  border-radius:18px;
  transition:0.4s;
}

.feature:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.15);
}

.feature span{
  font-size:40px;
  font-weight:bold;
  color:#ff6b00;
}

.feature h3{
  margin:10px 0;
}




.process{
    padding:30px 0;
    margin-bottom: 35px;
    background:#f5f6fa;
    font-family: Arial, Helvetica, sans-serif;
}

.process-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns: 1fr 1.3fr;
    gap:50px;
    align-items:center;
}

/* LEFT SIDE */
.small-title{
    color:#ff5a0e;
    font-weight:bold;
    margin-bottom:10px;
}

.process-left h2{
    font-size:44px;
    color:#0c1e40;
    margin-bottom:20px;
}

.desc{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.services-btn{
    background:#ff5a0e;
    color:#fff;
    border:none;
    padding:14px 28px;
    font-weight:bold;
    cursor:pointer;
}

/* RIGHT CARDS */
.process-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.p-card{
    background:#fff;
    padding:30px;
    position:relative;
    border-bottom:4px solid #ff5a0e;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.p-card i{
    font-size:35px;
    color:#ff5a0e;
    margin-bottom:15px;
}

.p-card h3{
    color:#0c1e40;
    margin-bottom:10px;
}

.p-card p{
    color:#666;
    line-height:1.6;
}

.number{
    position:absolute;
    right:20px;
    top:20px;
    background:#ff5a0e;
    color:#fff;
    padding:8px 12px;
    font-weight:bold;
    border-radius:5px;
}

.section-divider{
    width:100%;
    height:1px;
    background:#e5e5e5;
}

/* CTA SECTION */
.consulation-section{
    background-image: url("./image/contact.png");
    /* background-size: cover; */
    background-position: center;
    /* background-attachment: fixed; */
    height: 445px;
    position: relative;
    display: flex;
    align-items: center;
        margin: 90px;
    margin-top: 50px;
    width: 82%;
    border-radius: 10px 10px 10px 10px;
}

/* Dark overlay */
/* .consulation-overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
} */

/* Content */
.consulation-content{
    max-width: 750px;
    padding: 63px;
    margin-top: 85px;
    color: #fff;
}

.consulation-small{
    /* color: #ff5a0e; */
    /* letter-spacing: 3px; */
    /* margin-bottom: 10px; */
        width: 30%;
    border: 1px solid #ff5a0e;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px 30px 30px 30px;
    margin: 0px 0px 20px 0px;
    padding: 7px 20px 7px 20px;
}

/* Heading */
.consulation-content h2{
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Paragraph */
.consulation-desc{
    color: #ddd;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Button */
.consulation-btn{
    background: #ff5a0e;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.consulation-btn:hover{
    background: #ff7a33;
    transform: translateY(-3px);
}




.ticker-wrapper{
  background:#111;
  padding:30px 0;
  overflow:hidden;
}

.ticker{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  margin:10px 0;
}

.ticker-track{
  display:inline-block;
  animation:tickerMove 25s linear infinite;
}

.ticker.reverse .ticker-track{
  animation:tickerMoveReverse 25s linear infinite;
}

.ticker span{
  display:inline-block;
  margin:0 40px;
  font-size:22px;
  font-weight:600;
  color:#fff;
  letter-spacing:1px;
  position:relative;
}

.ticker span::after{
  content:"";
  width:8px;
  height:8px;
  background:#ff6b00;
  border-radius:50%;
  position:absolute;
  right:-24px;
  top:50%;
  transform:translateY(-50%);
}

@keyframes tickerMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes tickerMoveReverse{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}


.faq-section{
  padding:50px 0;
  background:#f5f5f5;
}

.faq-wrapper{
  width:90%;
  max-width:1212px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

.faq-image img{
  width:100%;
  max-width:450px;
}

.faq-content{
  flex:1;
}

.small-tag{
  color:#f4a62a;
  font-weight:700;
  letter-spacing:2px;
}

.faq-content h2{
  font-size:42px;
  margin:10px 0 30px;
}

.faq-content h2 span{
  color:#f4a62a;
}

.faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:6px;
  padding:18px 20px;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:26px;
}

.faq-item.active .faq-question::after{
  content:"−";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-answer p{
  margin-top:15px;
  color:#666;
  line-height:1.6;
}



@media(max-width:1024px){
    .card{ min-width:48%; } 
}
@media(max-width:992px){
  .services-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:900px){
    .project-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        flex-direction:column;
    }

    .project-card img,
    .project-info{
        width:100%;
    }
     .faq-wrapper{
    flex-direction:column;
        gap: 30px;
  }
}
@media(max-width:768px){
.consultation-form {
    width: 323px;
    padding: 14px;
    top: 100px;
    right: 34px;
}

    .services h1{
        font-size:32px;
    }
     .consulation-section{
           margin: 21px;
    margin-top: 0px;
    width: 89%;
    }
    .consulation-content h2{
        font-size: 28px;
    }
    .consulation-desc{
        font-size: 16px;
    }
    .hero-content {
    position: relative;
    margin-top: -43%;
    padding: 8px 35px;
}
.about {
    padding: 25px 16px;
}

.about-container {
  flex-direction: column;
}
.about-text {
    width: 98%;
}
.about-text h1 {
    font-size: 27px;
    font-weight: 600;
}
.about-image img {
    width: 150%;
}
.stats-container {
    display: block;
}
.Sector-container {
  flex-direction: column;
      gap: 0px
}
.Sector-image img {
    width: 100%;
}
.Sector-text {
    padding: 20px 0px;
}

.Sector-text h1 {
    font-size: 18px;
    margin-bottom: 10px;
}
.how-it-works {
    padding: 35px 20px;
}
.steps {
  flex-direction: column;
}
.stat-box {

    padding: 24px 12px;
}
.icon {
    margin-bottom: 0px;
}
 .step:not(:last-child)::after{
    display:none;
  }
  .process-container {
    display: block;
  }
  .process-left h2 {
    font-size: 19px;
    margin-bottom: 7px;
}
.process-right {
  display: block;
}
.why-us {
    padding: 30px 5%;
}
.why-content h2 {
    font-size: 31px;
}
.why-tag {
    margin-bottom: 30px;
}
.feature {
    padding: 16px 11px;
}
.services {
    padding: 35px 0;

}
.section-title {
    font-size: 26px;
}
.section-subtitle {
    margin: 0 auto 21px;
}
.feature span {
    font-size: 30px;
}
.consulation-content {
    padding: 10px;
    margin-top: 44px;
}
.consulation-small {
    width: 58%;
}
.footer-container {
  display: block;
}
   .faq-wrapper{
    flex-direction:column;
        gap: 30px;
  }
  .faq-content h2 {
    font-size: 23px;
    margin: 10px 0 17px;
}
.faq-section {
    padding: 30px 0;
}.footer {
    padding-top: 30px;
}
.footer-col{
  margin-bottom: 30px;
}

}


@media(max-width:600px){
    .card{
       min-width:95%;
       }
     .services-grid{
    grid-template-columns:1fr;
  }
}
