* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}
   /* Circular Scroll Progress Button */
  .circular-progress {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: conic-gradient(orangered 0deg, #cccccc67 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .circular-progress:hover {
    transform: scale(1.1);
  }

  .circular-progress::after {
    content: "";
    position: absolute;
    width: 44px;
    height: 44px;
    background: #444343;
    border-radius: 50%;
    z-index: 1;
  }

  .arrow-down {
    font-size: 22px;
    color: white;
    transition: transform 0.4s ease;
    z-index: 2;
    pointer-events: none;
  }

  .rotate-up {
    transform: rotate(180deg);
  }
.bulk-quote-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #1166c2; /* Dark Green */
    color: white;
    padding: 14px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 20px #1166c2;
    transition: all 0.3s ease;
    z-index: 1500;
}

.bulk-quote-btn:hover {
    background-color: #1166c2; /* Lighter green on hover */
    transform: scale(1.05);
    /* box-shadow: 0 10px 25px #1166c2; */
}
.infa{
    height: 100px;
    width: 100%;
    background-color: orangered;
    margin-top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infa h5{
    font-size: 55px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 10px;
    color: white;
    font-weight: 500;
}
  .mnav {
      overflow-x: hidden;
      position: fixed;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 100vw; 
      background-color: white;
      /* background: rgba(255, 255, 255, 0.1); */
      /* background-color: salmon; */
      backdrop-filter: blur(12px);
      border-radius: 0px;
      padding: 5px 19px;
      display: none;
      /* display: flex; */
      justify-content: space-between;
      align-items: center;
      z-index: 2000;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Logo */
    .gk-logo-unique img{
      height: 55px;
      width: auto;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
    }
    .gk-logo-uni{
      height: 40px;
      width: 100px;
      object-fit: contain;
      display: flex;
      align-items: center;
      /* justify-content: center; */
    }
    .gk-logo-uni h1{
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #373131;
      font-family: poppins, sans-serif;
    }
    /* Menu Button */
    .gk-burger-unique {
      width: 28px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .gk-burger-unique span {
      display: block;
      height: 4px;
      background:rgba(0, 0, 0, 0.81);
      border-radius: 3px;
      transition: 0.4s;
    }

    /* Overlay */
    .gk-overlay-unique {
      overflow: hidden;
      position: fixed;
      top: 0;
      left: -100vw;
      width: 100vw;
      height: 100%;
      /* background: rgba(0, 0, 0, 0.966); */
      background-color: orangered;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.5s ease;
      z-index: 1500;
    }

    .gk-overlay-unique.gk-show {
      left: 0;
    }

    /* Menu Links */
    .gk-menu-links {
      text-align: center;
    }

    .gk-menu-links a {
      display: block;
      font-size: 22px;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      margin: 20px 0;
      position: relative;
      transition: 0.3s;
    }

    .gk-menu-links a::after {
      content: "›";
      position: absolute;
      right: -25px;
      opacity: 0;
      transition: 0.3s;
    }

    .gk-menu-links a:hover {
      color: #00ffcc;
      transform: translateX(10px);
    }

    .gk-menu-links a:hover::after {
      opacity: 1;
      right: -15px;
    }

    /* Burger Animation */
    .gk-burger-unique.gk-active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
    .gk-burger-unique.gk-active span:nth-child(2) {
      opacity: 0;
    }
    .gk-burger-unique.gk-active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Content spacing */
    .gk-page-box {
      padding: 120px 20px;
      text-align: center;
    }

.whatsapp-float {
    position: fixed;
    bottom: 340px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
}
:root {
    --brand-color: orangered;
    --brand-light: orangered;
}
.butsti{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 24%;
}
/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup-content {
    height: 25%;
    width: 30%;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Buttons inside popup */
.download-btn {
  background-color: orangered;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0px;
  margin-top: 40px;
  margin-right: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: rgb(127, 34, 0);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Floating Button */
#chatbot-btn {
    position: fixed;
    bottom: 420px;
    right: 24px;
    background: var(--brand-color);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 999;
}
#chatbot-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Chatbot Window */
#chatbot {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: 95%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.chat-header {
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.chat-header .close-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Chat Body */
/* Chat Body */
.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px; /* Fixed max height for the chat area */
    min-height: 200px; /* Prevent it from collapsing too much */
    scroll-behavior: smooth; /* Smooth scrolling for new messages */
}

/* Optional - make scrollbar slim and modern */
.chat-body::-webkit-scrollbar {
    width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}
.chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
}

.message {
    display: flex;
    align-items: flex-start;
    margin: 8px 0;
}
.bot-msg, .user-msg {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
}
.bot-msg {
    background: #f1f1f1;
    color: #333;
    margin-left: 5px;
}
.user-msg {
    background: var(--brand-color);
    color: white;
    margin-left: auto;
    margin-right: 5px;
}
.msg-icon {
    flex-shrink: 0;
    margin-right: 5px;
}
.msg-icon svg {
    width: 18px;
    height: 18px;
}

/* Input Area */
.chat-input {
    display: flex;
    padding: 8px;
    border-top: 1px solid #ddd;
    background: #fff;
}
.chat-input input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}
.chat-input button {
    background: var(--brand-color);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
}
.chat-input button svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
@media (max-width: 600px) {
    .chat-window { width: 90%; right: 5%; }
}
   /* Mobiles (480px and below) */
@media only screen and (max-width: 480px) {
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
 
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Questrial", sans-serif;
   }
   /* html{
    scroll-behavior: smooth;
   } */
   body::-webkit-scrollbar{
       display: none;
   }
}
.desnavbar{
    height: 100px;
    width: 100%;
    background-color: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    position: fixed;   /* Fix the navbar */
    top: 0;            /* Stick it to the top */
    left: 0;           /* Align to left */
    z-index: 1000;     /* Keep it above all other elements */
}
.subdesnavbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.deslogo{
    height: 100%;
    width: 10%;
}
.deslogo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.deslinks {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.deslinks a {
    position: relative;
    text-decoration: none;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.737);
    padding: 5px 0;
}

.deslinks a:hover{
    color: black;
}

.desicons {
    height: 100%;
    width: 13%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.desicons img {
    height: 28%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.desicons img:hover {
    transform: scale(1.2);   /* zoom in */
    opacity: 0.8;            /* slight fade */
}
.ban{
    margin-top: 100px;
    height: 730px;
    width: 100%;
    background-image: url(../img/check2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

}
.subban{
    height: 100%;
    width: 100%;
    padding: 30px 50px;
    background-color: rgba(0, 0, 0, 0.777);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.subban h1{
    font-size: 60px;
    text-align: center;
    color: rgb(255, 255, 255);
}
.subban p{
    font-size: 26px;
    color: rgba(255, 255, 255, 0.715);
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    line-height: 35px;
}
.subban a{
    text-decoration: none;
    margin-top: 30px;
    padding: 10px 20px;
    color: white;
    background-color: orangered;
}
.subban a:hover{
    background-color: rgb(127, 34, 0);
    color: rgba(255, 255, 255, 0.74);
}
.heading{
    height: 300px;
    width: 100%;
    background-color: white;
}
.subheadings{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.products-division {
    width: 100%;
  text-align: center;
  padding: 50px 20px;
  background-color: white;
}

.products-division .main-heading {
  font-size: 45px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
}

.products-division .sub-heading {
  font-size: 20px;
  color: #555;
  font-weight: 500;
}
.rowpro{
    height: 550px;
    width: 100%;
    background-color: #ff4500;
    padding: 20px;
}
.subrowpro{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pros{
    height: 94%;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.pros2{
    height: 90%;
    width: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pros2 img {
    height: 20%;
    width: 20%;
    object-fit: contain;
    filter: invert(1);
    animation: bulge 2s ease-in-out infinite;
}

@keyframes bulge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); /* bulge size */
    }
}

.pcard{
  overflow: hidden;
    height: 100%;
    width: 24%;
    background-color:white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}
.pcard:hover{
    margin-bottom: 20px;
    transition: 0.2s ease-in;
}
.pcardshow{
    height: 60%;
    width: 100%;
}
.pcardshow img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.pcardcont{
  overflow: hidden;
    height: 45%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    
}
.pcardcont h2{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.pcardcont p{
    font-size: 16px;
    margin-top: 5px;

}
.pcardcont a{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff4500;
    text-align: center;
    color: white;
    text-decoration: none;
}
.large{
    height: 500px;
    width: 100%;
    margin-top: 130px;
    padding: 20px;
}
.sublarge{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ls1{
    height: 100%;
    width: 22%;
}
.ls1 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ls2{
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.ls2 h3{
    text-align: left;
    font-size: 46px;
    /* font-weight: 500; */
    /* margin-bottom: 30px; */
    color: rgba(0, 0, 0, 0.584);
}
.ls2 h2{
    text-align: left;
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: orangered;
}
.ls2 p{
    margin-top: 10px;
    font-size: 18px;
    text-align: justify;
    color: #333;
    line-height: 30px;
}



.laarge{
    height: 500px;
    width: 100%;
    margin-top: 130px;
    padding: 20px;
}
.sublaarge{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lss1{
    height: 100%;
    width: 22%;
}
.lss1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.lss2{
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.lss2 h5{
    text-align: right;
    font-size: 46px;
    /* font-weight: 500; */
    /* margin-bottom: 30px; */
    color: rgba(0, 0, 0, 0.584);
}
.lss2 h2{
    text-align:right;
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: orangered;
}
.lss2 p{
    margin-top: 10px;
    font-size: 18px;
    text-align: justify;
    color: #333;
    line-height: 30px;
}
.bro{
    height:700px;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bro img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ownpic{
    margin-top: 130px;
    height: 800px;
    width: 100%;
}
.ownpic img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.procrt{
    height: auto;
    width: 100%;
    padding: 20px;
}
.subprocrt{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: start;
    place-items: center;
}
.pics{
    margin-top: 130px;
    height: 500px;
    width: 100%;
    overflow: hidden;
}
.pics img{
    height: 100%;
    width: 100%;
}
.descontact{
    margin-top: 150px;
    height: 690px;
    width: 100%;
    background-color: rgb(255,255,255);
    padding: 20px;
}
.subcontact{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-container {
    height: 100%;
      width: 50%;
      max-width: 650px;
      padding: 40px;
      border-radius: 12px;
      /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-container:hover {
      transform: translateY(-5px);
      /* box-shadow: 0 12px 30px rgba(0,0,0,0.15); */
    }

    .contact-container h4 {
      text-align: center;
      margin-bottom: 7%;
      font-size: 38px;
      color: #222222e8;
      font-weight: 600;
    }

   .contact-container input,
.contact-container textarea,
.contact-container select {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}

.contact-container input:focus,
.contact-container textarea:focus,
.contact-container select:focus {
  border: 1px solid #ff4500;
  box-shadow: 0 0 6px rgba(255, 69, 0, 0.3);
}

    .row {
      display: flex;
      gap: 10px;
    }
    .row input {
      flex: 1;
    }

    .contact-container textarea {
      resize: none;
      height: 150px;
    }

    .contact-container button {
      width: 100%;
      padding: 14px;
      margin-top: 10px;
      background: linear-gradient(45deg, #ff4500, #ff6347);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-container button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(255,69,0,0.4);
    }
    .contactmg{
        height: 100%;
        width: 40%;
    }
    .contactmg img{
        object-fit: contain;
        height: 100%;
        width: 100%;
        animation: bulge 2s infinite ease-in-out;
    }
    @keyframes bulge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Bulge size */
    }
    100% {
        transform: scale(1);
    }
}
    .abou{
        margin-top: 130px;
        height: 700px;
        width: 100%;
        background-color: #ff4500;
        margin-bottom: 130px;
        padding: 20px;
    }
    .subabou{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px 0px;
    }
    .subabou h4{
        /* font-size: 3; */
        font-size: 45px;
        text-align: center;
        color: white;
        font-weight: 500;
        text-transform: capitalize;
    }
    .subabou h2{
        margin-top: 15px;
        font-size: 30px;
        font-weight: 200;
        color:white;
    }
    .subabou p{
        font-size: 18px;
        text-align: center;
        margin-top: 50px;
        color: white;
        text-transform: capitalize;
        line-height: 35px;
    }
    .subabou a{
        padding: 10px 30px;
        margin-top: 50px;
        background-color:white;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.758);
        font-weight: 500;
    }
    .subabou a:hover{
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    }
    .map{
        margin-top: 130px;
        height: 500px;
        width: 100%;
    }
    .map iframe{
        height: 100%;
        width: 100%;
    }
    .modern{
        margin-top: 80px;
        height: auto;
        width: 100%;
        /* background-color: #641717; */
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      .faq-container {
    background: #fff;
    width: 98%;
    border-radius: 12px;
    border: 1px solid #e2dede;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .faq-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #222;
    font-size: 28px;
  }

  .faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    font-weight: 600;
    color: #333;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    transition: max-height 0.4s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 150px;
    margin-top: 10px;
  }

  .show-more-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #ff4500, #ff6347);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .show-more-btn:hover {
    transform: scale(1);
    box-shadow: 0 6px 15px rgba(255,69,0,0.3);
  }

  .hidden {
    display: none;
  }
    .pcarrd{
    height: 470px;
    width: 100%;
    max-width: 350px;
    background-color:white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
                rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.pcarrd:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    /* margin-bottom: 20px; */
    /* transition: 0.2s ease-in; */
}
.pcarrdshow{
    height: 60%;
    width: 100%;
    /* background-color: aqua; */
}
.pcarrdshow img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.pcarrdcont{
    height: 45%;
    width: 100%;
    /* background-color: blueviolet; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    
}
.pcarrdcont h2{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.pcarrdcont p{
    font-size: 16px;
    margin-top: 5px;

}
.pcarrdcont a{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff4500;
    text-align: center;
    color: white;
    text-decoration: none;
}


    .progid{
        margin-top: 130px;
        height: 550px;
        width: 100%;
        /* background-color: salmon; */
        background-image: url(../img/check5.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .subprogid{
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.547);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 290px;
    }
    .subprogid h3{
        font-size: 45px;
        text-align: center;
        color: white;
        font-weight: 500;
        text-transform: capitalize;
    }
    .subprogid p{
        font-size: 18px;
        text-align: center;
        margin-top: 50px;
        color: white;
        text-transform: capitalize;
        line-height: 35px;
    }
    .showcase{
        margin-top: 130px;
        height: 650px;
        width: 100%;
    }
    .subshowcase{
        height: 100%;
        width: 100%;
    }
    .subshowcase img{
        height: 100%;
        width: 100%;
        object-fit: fill;
    }
    .make{
        margin-top: 0px;
        height: auto;
        width: 100%;
        /* background-color: #333; */
        padding: 20px;
    }
    .submake{
        height: 100%;
        width: 100%;
        /* background-color: #ccc; */
        display: grid;
       grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 20px; /* space between grid items */
    place-items: center;
    }
    .submake img{
        height: 380px;
        width: 100%;
        object-fit: cover;
    }
    .submake img:hover{
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }

     /*FOOTER*/
    footer{
        height: auto;
        margin-top: 130px;
    width:100%;
    background-color:#feffff;
    color:#181717;
    }
    
    .top_header{
    padding:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom: 20px;
    }
    
    .top_header section{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    }
    
    .top_header span{
    padding:0 1rem;
    }
    
    .top_header .fa{
    color:orangered;
    font-size:35px;
    }
    .fohead{
        height: 20%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.845);
        display: flex;
        padding: 10px 20px;
        align-items: center;
        justify-content: space-around;
        margin-bottom: 30px;
    }
    .fohead h3{
        font-size: 30px;
        color: white;
        font-weight: 500;
    }
    
    footer .border-shape {
    width: 40%;
    }
    
    footer .border-shape::before {
    width: 100%;
    left:120px;
    }
    
    footer .border-shape::after {
    width: 100%;
    right:120px;
    }
    
    footer .bottom_content section{
        margin-bottom: 20px;
        text-decoration: none;
    padding:1.5rem 2rem;
    display:flex;
    align-items:center;
    justify-content:Center;
    }
    
    .bottom_content a{
        text-decoration: none;
    margin:0 20px;
    color:rgba(46, 43, 43, 0.7);
    transition:0.5s;
    }
    
    .bottom_content a:hover{
    color:orangered;
    }
    .copyright{
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    padding:0.8em 0;
    background-color:orangered;
    text-align:center;
    color:rgba(255,255,255,0.7);
    font-size:16px;
    }
   .copyright span a{
        margin-left: 5px;
        text-decoration: none;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.603);
    }
    .choose-container {
        margin-top: 10px;
        padding: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .choose-card {
    background:white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: all 0.4s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
  }

  .choose-card::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -70%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle at 30% 107%, orangered, transparent 60%); */
    opacity: 0;
    transition: all 0.5s ease;
  }

  .choose-card:hover::before {
    opacity: 1;
  }

  .choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 68, 0, 0.278);
  }

  .choose-card i {
    font-size: 36px;
    color:orangered;
    margin-bottom: 20px;
    display: inline-block;
  }

  .choose-card h3 {
    font-size: 1.3rem;
    color: black;
    margin-bottom: 12px;
  }

  .choose-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Animation */
  .choose-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .choose-card:nth-child(1) { animation-delay: 0.1s; }
  .choose-card:nth-child(2) { animation-delay: 0.2s; }
  .choose-card:nth-child(3) { animation-delay: 0.3s; }
  .choose-card:nth-child(4) { animation-delay: 0.4s; }
  .choose-card:nth-child(5) { animation-delay: 0.5s; }
  .choose-card:nth-child(6) { animation-delay: 0.6s; }
  
  .spec-container {
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    margin-top: 120px;
  }

  .spec-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    border-radius: 14px;
    height: 90%;
    padding: 28px;
    border: 1px solid #e6eef6;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(14,166,120,0.08);
    align-items: start;
  }

  /* Header */
  .spec-header {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 6px;
  }
  .spec-title {
    font-size: 22px;
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #07203a;
  }
  .spec-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
  }

  /* Table */
  .spec-table-wrap {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(12, 38, 66, 0.03);
  }
  thead tr {
    background: linear-gradient(90deg, rgba(14,166,120,0.06), rgba(3,105,85,0.02));
  }
  th, td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #eef6fb;
  }
  th {
    color: #073047;
    font-weight: 600;
    font-size: 13px;
  }
  td.value {
    color: #334155;
  }

  /* Product cards */
  .variant-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .variant-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e6eef6;
    box-shadow: 0 6px 18px rgba(3, 18, 45, 0.03);
  }
  .variant-card h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #073047;
  }
  .variant-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
  }

  
  .timing{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .timeline-section {
    margin-top: 130px;
    width: 90%;
    max-width: 1100px;
    position: relative;
  }

  .timeline-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, orangered, rgb(255, 149, 111));
    -webkit-background-clip: text;
    color: transparent;
  }

  .timeline-section p {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 60px;
  }

  /* Timeline line */
  .timeline-line {
    position: absolute;
    top: 10;
    left: 50%;
    width: 4px;
    height: 90%;
    background: linear-gradient(180deg, rgba(249, 67, 1, 0.625), orangered);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  /* Timeline item container */
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
  }

  /* Connector circle */
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid orangered;
    border-radius: 50%;
    z-index: 2;
  }

  .timeline-item:nth-child(odd)::before {
    right: -9px;
  }

  .timeline-item:nth-child(even)::before {
    left: -9px;
  }

  /* Timeline content box */
  .timeline-content {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
  }

  .timeline-content.show {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    color: #073047;
    margin-bottom: 5px;
  }

  .timeline-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
  }

  .step-number {
    position: absolute;
    top: -12px;
    font-weight: 600;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.1rem;
  }

  .timeline-item:nth-child(odd) .step-number {
    right: 35px;
  }

  .timeline-item:nth-child(even) .step-number {
    left: 35px;
  }

  
   .mainCard {
    margin-top: 130px;
    width: 100%;
    height: 350px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 25px;
    box-sizing: border-box;
  }

  .mainTitle {
    margin-top: 20px;
    font-size: 40px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 8px;
    text-align: center;
  }

  .cardsRow {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .miniCard {
    flex: 1;
    background: #f9fbfd;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
  }

  .miniCard:hover {
    background: #eaf6ff;
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .miniIcon {
    font-size: 26px;
    color: #0077b6;
    margin-bottom: 8px;
  }

  .miniTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a2735;
    margin-bottom: 4px;
  }

  .miniValue {
    font-size: 15px;
    font-weight: 600;
    color: orangered;
  }

  .footerNote {
    font-size: 13px;
    color: #475569;
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
  }
    @media screen and (max-width:600px) {
        * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}
.infa{
    height: 100px;
    width: 100%;
    background-color: orangered;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infa h5{
    font-size: 25px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 10px;
    color: white;
    font-weight: 500;
}
.bulk-quote-btn {
    position: fixed;
    bottom: 45px;
    left: 15px;
    background-color: #1166c2; /* Dark Green */
    color: #fff;
    padding: 14px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 2px 20px #1166c2;
    transition: all 0.3s ease;
    z-index: 1500;
}

.bulk-quote-btn:hover {
    background-color: #1166c2; /* Lighter green on hover */
    transform: scale(1.05);
    /* box-shadow: 0 10px 25px #1166c2; */
}
/* Floating Navbar */
    .mnav {
      overflow-x: hidden;
      position: fixed;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 100vw; 
      background-color: white;
      /* background: rgba(255, 255, 255, 0.1); */
      /* background-color: salmon; */
      backdrop-filter: blur(12px);
      border-radius: 0px;
      padding: 5px 19px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2000;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Logo */
    .gk-logo-unique img{
      height: 55px;
      width: auto;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
    }
    .gk-logo-uni{
      height: 40px;
      width: 100px;
      object-fit: contain;
      display: flex;
      align-items: center;
      /* justify-content: center; */
    }
    .gk-logo-uni h1{
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #373131;
      font-family: poppins, sans-serif;
    }
    /* Menu Button */
    .gk-burger-unique {
      width: 28px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .gk-burger-unique span {
      display: block;
      height: 4px;
      background:rgba(0, 0, 0, 0.81);
      border-radius: 3px;
      transition: 0.4s;
    }

    /* Overlay */
    .gk-overlay-unique {
      overflow: hidden;
      position: fixed;
      top: 0;
      left: -100vw;
      width: 100vw;
      height: 100%;
      /* background: rgba(0, 0, 0, 0.966); */
      background-color: orangered;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.5s ease;
      z-index: 1500;
    }

    .gk-overlay-unique.gk-show {
      left: 0;
    }

    /* Menu Links */
    .gk-menu-links {
      text-align: center;
    }

    .gk-menu-links a {
      display: block;
      font-size: 22px;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      margin: 20px 0;
      position: relative;
      transition: 0.3s;
    }

    .gk-menu-links a::after {
      content: "›";
      position: absolute;
      right: -25px;
      opacity: 0;
      transition: 0.3s;
    }

    .gk-menu-links a:hover {
      color: #00ffcc;
      transform: translateX(10px);
    }

    .gk-menu-links a:hover::after {
      opacity: 1;
      right: -15px;
    }

    /* Burger Animation */
    .gk-burger-unique.gk-active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
    .gk-burger-unique.gk-active span:nth-child(2) {
      opacity: 0;
    }
    .gk-burger-unique.gk-active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Content spacing */
    .gk-page-box {
      padding: 120px 20px;
      text-align: center;
    }

.whatsapp-float {
    position: fixed;
    bottom: 320px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
}
.spec-container {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
  }

  .spec-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    border-radius: 14px;
    height: 100%;
    width: 100%;
    padding: 20px;
    border: 1px solid #e6eef6;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /* grid-template-columns: 1fr 360px; */
    /* gap: 24px; */
    box-shadow: 0 8px 30px rgba(14,166,120,0.08);
    align-items: start;
  }

  /* Header */
  .spec-header {
    grid-column: 1 / -1;
    text-align:center;
    margin-bottom: 6px;
  }
  .spec-title {
    font-size: 22px;
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #07203a;
  }
  .spec-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
  }

  /* Table */
  .spec-table-wrap {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(12, 38, 66, 0.03);
  }
  thead tr {
    background: linear-gradient(90deg, rgba(14,166,120,0.06), rgba(3,105,85,0.02));
  }
  th, td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #eef6fb;
  }
  th {
    color: #073047;
    font-weight: 600;
    font-size: 13px;
  }
  td.value {
    color: #334155;
  }

  /* Product cards */
  .variant-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .variant-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e6eef6;
    box-shadow: 0 6px 18px rgba(3, 18, 45, 0.03);
  }
  .variant-card h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #073047;
  }
  .variant-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
  }

:root {
    --brand-color: orangered;
    --brand-light: orangered;
}

/* Floating Button */
#chatbot-btn {
    position: fixed;
    bottom: 380px;
    right: 20px;
    background: var(--brand-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 999;
}
#chatbot-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Chatbot Window */
#chatbot {
    position: fixed;
    bottom: 424px;
    right: 35px;
    width: 340px;
    max-width: 95%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.timing{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .timeline-section {
    margin-top: 130px;
    width: 90%;
    max-width: 1100px;
    position: relative;
  }

  .timeline-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, orangered, rgb(255, 149, 111));
    -webkit-background-clip: text;
    color: transparent;
  }

  .timeline-section p {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 60px;
  }

  /* Timeline line */
  .timeline-line {
    position: absolute;
    top: 10;
    left: 50%;
    width: 4px;
    height: 90%;
    background: linear-gradient(180deg, rgba(249, 67, 1, 0.625), orangered);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  /* Timeline item container */
  .timeline-item {
    position: relative;
    width: 50%;
    padding:5px 10px;
    box-sizing: border-box;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: center;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
    text-align: center;
  }

  /* Connector circle */
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid orangered;
    border-radius: 50%;
    z-index: 2;
  }

  .timeline-item:nth-child(odd)::before {
    right: -9px;
  }

  .timeline-item:nth-child(even)::before {
    left: -9px;
  }

  /* Timeline content box */
  .timeline-content {
    background: #fff;
    border-radius: 14px;
    padding: 6px 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
  }

  .timeline-content.show {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    color: #073047;
    margin-bottom: 5px;
  }

  .timeline-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
  }

  .step-number {
    position: absolute;
    top: -12px;
    font-weight: 600;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.1rem;
  }

  .timeline-item:nth-child(odd) .step-number {
    right: 15px;
  }

  .timeline-item:nth-child(even) .step-number {
    left: 15px;
  }

/* Header */
.chat-header {
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.chat-header .close-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Chat Body */
/* Chat Body */
.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px; /* Fixed max height for the chat area */
    min-height: 200px; /* Prevent it from collapsing too much */
    scroll-behavior: smooth; /* Smooth scrolling for new messages */
}

/* Optional - make scrollbar slim and modern */
.chat-body::-webkit-scrollbar {
    width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}
.chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
}

.message {
    display: flex;
    align-items: flex-start;
    margin: 8px 0;
}
.bot-msg, .user-msg {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
}
.bot-msg {
    background: #f1f1f1;
    color: #333;
    margin-left: 5px;
}
.user-msg {
    background: var(--brand-color);
    color: white;
    margin-left: auto;
    margin-right: 5px;
}
.msg-icon {
    flex-shrink: 0;
    margin-right: 5px;
}
.msg-icon svg {
    width: 18px;
    height: 18px;
}

/* Input Area */
.chat-input {
    display: flex;
    padding: 8px;
    border-top: 1px solid #ddd;
    background: #fff;
}
.chat-input input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}
.chat-input button {
    background: var(--brand-color);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
}
.chat-input button svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.mainCard {
    margin-top: 30px;
    width: 100%;
    height: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 25px;
    box-sizing: border-box;
  }

  .mainTitle {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 8px;
    text-align: center;
  }

  .cardsRow {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .miniCard {
    width: 100%;
    flex: 1;
    background: #f9fbfd;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
  }

  .miniCard:hover {
    background: #eaf6ff;
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .miniIcon {
    font-size: 26px;
    color: #0077b6;
    margin-bottom: 8px;
  }

  .miniTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a2735;
    margin-bottom: 4px;
  }

  .miniValue {
    font-size: 15px;
    font-weight: 600;
    color: orangered;
  }

@media (max-width: 600px) {
    .chat-window { width: 90%; right: 5%; }
}
   /* Mobiles (480px and below) */
@media only screen and (max-width: 480px) {
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
 
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Questrial", sans-serif;
   }
   /* html{
    scroll-behavior: smooth;
   } */
   body::-webkit-scrollbar{
       display: none;
   }
}
.butsti{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    
}
/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup-content {
  background-color: #fff;
  height:250px;
  width: 90%;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Buttons inside popup */
.download-btn {
  background-color: orangered;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: rgb(127, 34, 0);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.desnavbar{
    display: none;
    overflow: hidden;
    height: 100px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.592);
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.subdesnavbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.deslogo{
    height: 100%;
    width: 10%;
}
.deslogo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.deslinks {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.deslinks a {
    position: relative;
    text-decoration: none;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.737);
    padding: 5px 0;
}

.deslinks a:hover{
    color: black;
}

.desicons { 
    height: 100%; 
    width: 13%; 
    display: flex; 
    align-items: center; 
    justify-content: space-around; 
} 
.desicons img { 
    height: 28%; 
    width: 100%; 
    object-fit: contain; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
    cursor: pointer; 
}

/* Hover effect */
.desicons img:hover {
    transform: scale(1.2);   /* zoom in */
    opacity: 0.8;            /* slight fade */
}
.ban{
    height: auto;
    margin-top: 60px;
    width: 100%;
    background-image: url(../img/check2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

}
.subban{
    height: 100%;
    width: 100%;
    padding: 50px 22px;
    background-color: rgba(0, 0, 0, 0.777);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.subban h1{
    font-size: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
}
.subban p{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.715);
    text-align: center;
    letter-spacing: 1px;
    margin-top: 30px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 30px;
}
.subban a{
    text-decoration: none;
    margin-top: 20px;
    padding: 8px 18px;
    font-size: 16px;
    color: white;
    background-color: orangered;
}
.subban a:hover{
    background-color: rgb(127, 34, 0);
    color: rgba(255, 255, 255, 0.74);
}
.heading{
    height: auto;
    width: 100%;
    background-color: white;
}
.subheadings{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.products-division {
    width: 100%;
  text-align: center;
  padding: 50px 20px;
  background-color: white;
}

.products-division .main-heading {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
}

.products-division .sub-heading {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}
.rowpro{
    overflow: hidden;
    height: auto;
    width: 100%;
    background-color: #ff4500;
    padding: 20px;
}
.subrowpro{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pros{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.pros2{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pros2 img {
    height: 10%;
    width: 10%;
    object-fit: contain;
    filter: invert(1);
    transform: rotate(90deg);
    animation: bulge 2s ease-in-out infinite;
}

@keyframes bulge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); /* bulge size */
    }
}

.pcard{
    height: 100%;
    width: 100%;
    background-color:white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
}
.pcard:hover{
    margin-bottom: 20px;
    transition: 0.2s ease-in;
}
.pcardshow{
    height: 60%;
    width: 100%;
}
.pcardshow img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.pcardcont{
    height: 45%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    
}
.pcardcont h2{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.pcardcont p{
    font-size: 16px;
    margin-top: 5px;

}
.pcardcont a{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff4500;
    text-align: center;
    color: white;
    text-decoration: none;
}
.large{
    overflow: hidden;
    height: auto;
    width: 100%;
    margin-top: 30px;
    padding: 20px;
}
.sublarge{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ls1{
    height: 100%;
    width: 100%;
}
.ls1 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ls2{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.ls2 h3{
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    /* font-weight: 500; */
    /* margin-bottom: 30px; */
    color: rgba(0, 0, 0, 0.584);
}
.ls2 h2{
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: orangered;
}
.ls2 p{
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
    color: #333;
    line-height: 30px;
}



.laarge{
    height: auto;
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    overflow: hidden;
}
.sublaarge{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lss1{
    height: 100%;
    width: 100%;
}
.lss1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.lss2{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.lss2 h5{
    text-align: center;
    font-size: 26px;
    /* font-weight: 500; */
    /* margin-bottom: 30px; */
    color: rgba(0, 0, 0, 0.584);
}
.lss2 h2{
    text-align:center;
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: orangered;
}
.lss2 p{
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
    color: #333;
    line-height: 30px;
}
.bro{
    height:auto;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bro img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ownpic{
    margin-top: 30px;
    height: auto;
    width: 100%;
}
.ownpic img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.procrt{
    height: auto;
    width: 100%;
    padding: 20px;
    overflow: hidden;
}
.subprocrt{
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap:auto;
    grid-column-gap:auto;
    place-items: center;
}
.pics{
    margin-top: 30px;
    height: auto;
    width: 100%;
    overflow: hidden;
}
.pics img{
    height: 100%;
    width: 100%;
}
.descontact{
    overflow: hidden;
    margin-top: 50px;
    height: auto;
    width: 100%;
    background-color: rgb(255,255,255);
    padding: 20px;
}
.subcontact{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-container {
    height: 100%;
      width: 100%;
      max-width: auto;
      padding: 0px;
      border-radius: 12px;
      /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-container:hover {
      transform: translateY(-5px);
      /* box-shadow: 0 12px 30px rgba(0,0,0,0.15); */
    }

    .contact-container h4 {
      text-align: center;
      margin-bottom: 7%;
      font-size: 38px;
      color: #222222e8;
      font-weight: 600;
    }

   .contact-container input,
.contact-container textarea,
.contact-container select {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}

.contact-container input:focus,
.contact-container textarea:focus,
.contact-container select:focus {
  border: 1px solid #ff4500;
  box-shadow: 0 0 6px rgba(255, 69, 0, 0.3);
}

    .row {
      display: flex;
      gap: 10px;
    }
    .row input {
      flex: 1;
    }

    .contact-container textarea {
      resize: none;
      height: 150px;
    }

    .contact-container button {
      width: 100%;
      padding: 14px;
      margin-top: 10px;
      background: linear-gradient(45deg, #ff4500, #ff6347);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-container button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(255,69,0,0.4);
    }
    .contactmg{
        margin-top: 30px;
        height: 100%;
        width: 100%;
    }
    .contactmg img{
        object-fit: contain;
        height: 100%;
        width: 100%;
        animation: bulge 2s infinite ease-in-out;
    }
    @keyframes bulge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Bulge size */
    }
    100% {
        transform: scale(1);
    }
}
 .fohead{
        height: 15%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.845);
        display: flex;
        padding: 10px 20px;
        align-items: center;
        justify-content: space-around;
        margin-bottom: 30px;
    }
    .fohead h3{
        font-size: 12px;
        color: white;
        font-weight: 500;
    }
    .abou{
        overflow: hidden;
        margin-top: 30px;
        height: auto;
        width: 100%;
        background-color: #ff4500;
        margin-bottom: 30px;
        padding: 20px;
    }
    .subabou{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0px;
    }
    .subabou h4{
        /* font-size: 3; */
        font-size: 20px;
        text-align: center;
        color: white;
        font-weight: 500;
        text-transform: capitalize;
    }
    .subabou h2{
        margin-top: 15px;
        font-size: 26px;
        text-align: center;
        font-weight: 200;
        color:white;
    }
    .subabou p{
        font-size: 16px;
        text-align: center;
        margin-top: 50px;
        color: white;
        text-transform: capitalize;
        line-height: 35px;
    }
    .subabou a{
        padding: 10px 30px;
        margin-top: 50px;
        background-color:white;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.758);
        font-weight: 500;
    }
    .subabou a:hover{
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    }
    .map{
        margin-top: 30px;
        height: 350px;
        width: 100%;
    }
    .map iframe{
        height: 100%;
        width: 100%;
    }
    .modern{
        margin-top: 80px;
        height: auto;
        width: 100%;
        /* background-color: #641717; */
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      .faq-container {
    background: #fff;
    width:100%;
    border-radius: 12px;
    border: 1px solid #e2dede;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
    padding: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .faq-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #222;
    font-size: 26px;
  }

  .faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    font-weight: 600;
    color: #333;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    transition: max-height 0.4s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 150px;
    margin-top: 10px;
  }

  .show-more-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #ff4500, #ff6347);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .show-more-btn:hover {
    transform: scale(1);
    box-shadow: 0 6px 15px rgba(255,69,0,0.3);
  }

  .hidden {
    display: none;
  }
    .pcarrd{
    height: 470px;
    width: 95%;
    background-color:white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.pcarrd:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    /* margin-bottom: 20px; */
    /* transition: 0.2s ease-in; */
}
.pcarrdshow{
    height: 60%;
    width: 100%;
    /* background-color: aqua; */
}
.pcarrdshow img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.pcarrdcont{
    height: 45%;
    width: 100%;
    /* background-color: blueviolet; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    
}
.pcarrdcont h2{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.pcarrdcont p{
    font-size: 16px;
    margin-top: 5px;

}
.pcarrdcont a{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff4500;
    text-align: center;
    color: white;
    text-decoration: none;
}


    .progid{
        overflow: hidden;
        margin-top: 30px;
        height: auto;
        width: 100%;
        /* background-color: salmon; */
        background-image: url(../img/check5.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .subprogid{
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.547);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
    }
    .subprogid h3{
        font-size: 26px;
        text-align: center;
        color: white;
        font-weight: 500;
        text-transform: capitalize;
    }
    .subprogid p{
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
        color: white;
        text-transform: capitalize;
        line-height: 28px;
    }
    .showcase{
        margin-top: 80px;
        height: auto;
        width: 100%;
    }
    .subshowcase{
        height:auto;
        width: 100%;
    }
    .subshowcase img{
        height: 100%;
        width: 100%;
        object-fit: fill;
    }
    .make{
        margin-top: 0px;
        height: auto;
        width: 100%;
        /* background-color: #333; */
        padding: 20px;
    }
    .submake{
        height: 100%;
        width: 100%;
        /* background-color: #ccc; */
        display: grid;
       grid-template-columns: repeat(1, 1fr); /* 3 equal columns */
    gap: 20px; /* space between grid items */
    place-items: center;
    }
    .submake img{
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    .submake img:hover{
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }
    .choose-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
  }

  .choose-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003c2e;
    margin-bottom: 60px;
    position: relative;
  }

  .choose-container h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: #22ba82;
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
  }

  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
  }

  .choose-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
  }

  .choose-card::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -70%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 107%, rgba(34,186,130,0.15), transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .choose-card:hover::before {
    opacity: 1;
  }

  .choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(34,186,130,0.25);
  }

  .choose-card i {
    font-size: 36px;
    color: orangered;
    margin-bottom: 20px;
    display: inline-block;
  }

  .choose-card h3 {
    font-size: 1.3rem;
    color: #003c2e;
    margin-bottom: 12px;
  }

  .choose-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Animation */
  .choose-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .choose-card:nth-child(1) { animation-delay: 0.1s; }
  .choose-card:nth-child(2) { animation-delay: 0.2s; }
  .choose-card:nth-child(3) { animation-delay: 0.3s; }
  .choose-card:nth-child(4) { animation-delay: 0.4s; }
  .choose-card:nth-child(5) { animation-delay: 0.5s; }
  .choose-card:nth-child(6) { animation-delay: 0.6s; }
     /*FOOTER*/
    footer{
        overflow: hidden;
        height: auto;
        margin-top: 30px;
    width:100%;
    background-color:#feffff;
    color:#181717;
    }
    
    .top_header{
        height: auto;
        width: 100%;
    padding:0px;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom: 20px;
    }
    
    .top_header section{
        margin: 10px 0;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    width:100%;
    }
    
    .top_header span{
        text-align: center;
    padding:0 1rem;
    }
    
    .top_header .fa{
    color:orangered;
    font-size:20px;
    padding-bottom: 10px;
    }
    
    footer .border-shape {
    width: 40%;
    }
    
    footer .border-shape::before {
    width: 100%;
    left:120px;
    }
    
    footer .border-shape::after {
    width: 100%;
    right:120px;
    }
    
    footer .bottom_content section{
        margin-bottom: 0px;
        text-decoration: none;
    padding:1.5rem 0rem;
    font-size:18px;
    display:flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    }
    
    .bottom_content a{
        font-size: 16px;
        text-decoration: none;
        padding: 2px;
    margin:5px 20px;
    color:rgba(46, 43, 43, 0.7);
    transition:0.5s;
    }
    
    .bottom_content a:hover{
    color:orangered;
    }
    .copyright{
        height:auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    padding:1em 0;
    background-color:orangered;
    text-align:center;
    color:rgba(255,255,255,0.7);
    font-size:9px;
    }
   .copyright span a{
    font-size: 9px;
        margin-left: 0px;
        text-decoration: none;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.603);
    }

    }
    