	/* Google Fonts */
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
    @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
    * {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif !important;
      box-sizing: border-box;
      scroll-behavior: smooth;
      scroll-padding-top: 2rem;
      list-style: none !important;
      text-decoration: none !important;
    }
    *::selection {
      background: var(--main-color);
      color: #fff;
    }
    :root {
      --main-color: #f67768;
      --text-color: #1e1c2a;
      --bg-color: #fff;
     
      --big-font: 3.5rem;
      --h2-font: 1.8rem;
      --p-font: 0.9rem;
    }
    section {
      padding: 50px 10%;
    }
    body {
      color: var(--text-color);
      background: var(--bg-color);
    }
    header {
      position: fixed;
      width: 100%;
      top: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg-color);
      padding: 8px 100px;
      box-shadow: 0 0.5rem 50rem rgba(0, 0, 0, 0.1);
    }
    .logo img {
      width: 52px !important;
      color: var(--main-color) !important;
      margin-right: 12px !important;
    }
    .logo, .logo h2{
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--main-color) !important;
      }
    .navbars {
      display: flex;
    }
    .navbars.active {
      top: 100%;
    }
    .navbars a {
      font-size: 1rem !important;
      padding: 10px 20px !important;
      color: var(--text-color) !important;
      font-weight: 500 !important;
    }
    .navbars a:hover {
      color: var(--main-color) !important;
    }
    #menu-icon {
      font-size: 2rem;
      cursor: pointer;
      display: none;
    }
    .home {
      width: 100%;
      min-height: 100vh;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
      gap: 1.5rem;
      background-image: url(../Asset/background.png);
      background-size: cover;
    }
    .home-img {
      display: flex;
      justify-content: center;
    }
    .home-img img {
      width: 80%;
    }
    .home-text h1 {
      line-height: 3.8rem;
      font-size: var(--big-font);
      color: var(--main-color);
    }
    .home-text p {
      font-size: 1.2rem;
      margin: 1rem 0 1rem;
    }
    .btn {
      display: inline-block;
      background: var(--main-color);
      padding: 10px 20px;
      border-radius: 0.5rem;
      color: #fff;
    }
    .btn:hover {
      background: #f64e3c;
    }
    .about {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      align-items: center;
    }
    .about-img img {
      max-width: 80%;
      border-radius: 0.5rem;
    }
    .about-text span {
      color: var(--main-color);
      font-weight: 500;
      font-size: 1.2rem;
    }
    .about-text h2 {
      font-size: var(--h2-font);
    }
    .about-text p {
      text-align: justify;
      margin: 0.8rem 0 1.8rem;
    }
    .testimonial{
      margin: auto;
      text-align: center;
    }
    .snip1533 {
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
      color: #9e9e9e;
      display: inline-block;
      font-family: Arial, sans-serif;
      font-size: 16px;
      margin: 35px 10px 10px;
      max-width: 310px;
      min-width: 250px;
      position: relative;
      text-align: center;
      width: 100%;
      background-color: #ffffff;
      border-radius: 5px;
      border-top: 5px solid #d2652d;
    }
    
    .snip1533 *,
    .snip1533 *:before {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: all 0.1s ease-out;
      transition: all 0.1s ease-out;
    }
    
    .snip1533 figcaption {
      padding: 13% 10% 12%;
    }
    .snip1533 figcaption span{
      margin: auto;
      color: #f3ca10;
      text-align: center;
    }
    
    .snip1533 figcaption:before {
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      color: #d2652d;
      content: "\f10e";
      font-family: 'FontAwesome';
      font-size: 32px;
      font-style: normal;
      left: 50%;
      line-height: 60px;
      position: absolute;
      top: -30px;
      width: 60px;
    }
    
    .snip1533 h3 {
      color: #3c3c3c;
      font-size: 20px;
      font-weight: 300;
      line-height: 24px;
      margin: 10px 0 5px;
    }
    
    .snip1533 h4 {
      font-weight: 400;
      margin: 0;
      opacity: 0.5;
    }
    
    .snip1533 blockquote {
      font-style: italic;
      font-weight: 300;
      margin: 0 0 20px;
    }
    
    .heading {
      text-align: center;
    }
    .heading span {
      color: var(--main-color);
      font-weight: 500;
      font-size: 1.2rem;
    }
    .heading h2 {
      font-size: var(--h2-font);
    }
    .menu-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, auto));
      gap: 1.5rem;
      align-items: center;
    }
    .box {
      position: relative;
      margin-top: 2rem;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 0.5rem;
      box-shadow: 0 2px 4px rgb(4 64 54 / 10%);
      padding: 10px;
    }
    .box-img {
      width: 200px;
      height: 200px;
    }
    .box-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
    .box h2 {
      font-size: 1.2rem;
    }
    .box h3 {
      font-size: 1rem;
      font-weight: 400;
      margin: 4px 0 10px;
    }
    .box span {
      font-size: var(--p-font);
      font-weight: 500;
    }
    .box .bx {
      position: absolute;
      right: 0;
      top: 0;
      font-size: 20px;
      background: var(--main-color);
      border-radius: 0 0.5rem 0 0.5rem;
      padding: 5px 8px;
    }
    .box .bx:hover {
      background: #ffa400;
    }
    .servives-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, auto));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .s-box {
      text-align: center;
    }
    .s-box img {
      width: 60px;
    }
    .s-box h3 {
      margin: 4px 0 10px;
    }
    .connect {
      display: flex;
      align-items: center;
      justify-content: space-around;
    }
    .connect-text span {
      color: var(--main-color);
      font-weight: 500;
      font-size: 1.2rem;
    }
    .connect-text h2 {
      font-size: var(--h2-font);
    }
    .contact {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, auto));
      gap: 1.5rem;
    }
    .contact-box h3 {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      font-weight: 500px;
    }
    .social {
      display: flex;
      margin-top: 1.5rem;
    }
    .social i {
      font-size: 20px;
      margin-right: 1rem;
      color: var(--text-color);
    }
    .social i:hover {
      color: var(--main-color);
    }
    .contact-box li a {
      color: var(--text-color);
    }
    .contact-box li a:hover {
      color: var(--main-color);
    }
    .address {
      display: flex;
      flex-direction: column;
    }
    .address i {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
    .address span {
      margin-left: 1rem;
    }
    .copyright {
      padding: 20px;
      text-align: center;
    }

  .fixedButton{
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 50%;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-align: center;
  }

    @media (max-width: 921px) {
      header {
        padding: 14px 41px;
      }
      :root {
        --big-font: 3rem;
        --h2-font: 1.7rem;
      }
    }
    @media (max-width: 768px) {
      section {
        padding: 50px 8%;
      }
      #menu-icon {
        display: initial;
        color: var(--text-color);
      }
      header .navbars {
        position: absolute;
        top: -400px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: center !important;
        background: var(--bg-color);
        box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
        transition: 0.2s ease;
      }
      .navbars a {
        padding: 1.5rem;
        display: block;
        background: var(--bg-color);
      }
      #darkmode {
        position: absolute;
        top: 1.4rem;
        right: 2rem;
      }
    }
    @media (max-width: 715px) {
      header {
        padding: 10px 16px;
      }
      .home {
        padding-top: 4rem;
        grid-template-columns: 1fr;
        background-image: url();
      }
      .about {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .about-img {
        order: 2;
      }
    }
    @media (max-width: 515px) {
      .connect {
        flex-direction: column;
      }
      .connect .btn {
        margin-top: 1rem;
      }
    }
    @media (max-width: 450px) {
      :root {
        --big-font: 2rem;
        --h2-font: 1.4rem;
      }
      .home-text {
        padding-top: 4rem;
      }
    }
