@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #007565;
  --secondary: #004085;
  --ternary: #3d5a80;
  --white: #fafafa;
  --black: #000;
}

a,
a:hover {
  text-decoration: none;
  color: unset;
  cursor: pointer;
}

html,
body {
  font-family: "Poppins", sans-serif;
}

section {
  padding: 25px 0;
  overflow: hidden;
}

p,
a {
  font-size: 14px !important;
}

i {
  margin-right: 5px;
}

.btn-primary {
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--primary);
  padding: 10px 15px;
  color: var(--white);
}

.btn {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 5px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--secondary);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn:hover::before {
  scale: 10;
}

.btn:hover {
  color: var(--white);
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.btn-secondary {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--black);
  border-radius: 5px;
  background-color: var(--white);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
  text-transform: uppercase;
}

.btn-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}


#top-nav {
  padding: 10px 0;
  background-color: var(--primary);
  color: var(--white);
}

.navbar-toggler {
  border: none;
}

.navbar-brand img {
  max-width: 200px;
}



.navbar-toggler:focus {
  box-shadow: none
}

.nav-link {
  font-weight: 500;
  color: var(--black);
}

.sec-1 {
  background: url(../images/main-banner.webp);
}

.animated-heading {
  font-size: 50px;
  font-weight: 900;
  color: var(--white);
  line-height: 56px;
}

.word {
  color: lightgreen;
}

.hl {
  color: lightgreen;
}

.platform-wrapper {
  margin-top: 40px;
}

.platform-wrapper img {
  height: 55px;
  margin: 0 auto;
}

.top-form {
  background-color: var(--white);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

.top-form h2 {
  color: var(--primary);
  font-size: 28px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 10px;
  font-size: 18px;
  color: #007565;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #007565;
  border-radius: 5px;
  font-size: 16px;
  background-color: #faf7f7;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #007565;
  border-radius: 5px;
  font-size: 16px;
  background-color: #faf7f7;
  resize: none;
}

.formbutton {
  width: 100%;
  padding: 10px;
  background: #007565;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  border: 1px solid #007565;
}

/* Section 2 */

.sec-2 {
  padding: 20px 0;
}

/* Section 3 */

.main-heading {
  font-size: 40px;
  width: 100%;
  font-weight: 700;
  line-height: 1.1;
}

.main-para {
  color: #666;
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0 0 10px;
}

.sec-3 ul {
  display: inline-block;
  margin: 20px 0 0;
}

.sec-3 ul li {
  width: 50%;
  line-height: 1.3;
  float: left;
  color: #2b2d3a;
  position: relative;
  font-size: 14px;
  padding-bottom: 5px;
}

/* Section 4 */

.sec-4 {
  background: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 73%;
  position: relative;
}

.sec-4 h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sec-4 p {
  font-size: 18px;
  line-height: 28px;
  color: #cfcfcf;
  margin-bottom: 7%;
}

.about_box {
  padding: 30px 15px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.21);
  margin-bottom: 40px;
  background-color: #fff;
}

.about_icon {
  background-color: var(--ternary);
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.about_box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ternary);
}

/* Section 5 */

.sec-5 {
  background: url(../images/background_image_2.webp) center center / cover no-repeat;
}

.sec-5 h2 {
  color: var(--white);
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 44px;
  margin: 0 auto 1rem;
  max-width: 800px;
  text-align: center;
  font-weight: 700;
}

.sec-5 h3 {
  font-size: 50px;
  line-height: 50px;
  padding-left: 20px;
  font-weight: 600;
  color: var(--white);
}

.sec-5 p {
  font-size: 14px;
  line-height: 24px;
  margin-left: 20px;
  color: white;
}

.sec-5 ul li {
  list-style: circle !important;
  font-size: 13px !important;
  color: white;
  font-weight: 400 !important;
}

.cta {
  background-color: var(--primary);
}

.cta h5 {
  color: #fff;
  padding-bottom: 15px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta p {
  font-size: 14px;
  font-weight: 300;
  padding: 0 0 15px;
  color: #fff;
}

.sec-7 {
  background: black;
  background-size: cover;
  padding: 20px 0;
  color: #fff;
  font-size: 15px;
}

.sec-7 h4 {
  font-size: 40px;
}

ul.list-arrow {
  margin: 20px 0;
}

ul.list-arrow li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 400;
}

ul.list-arrow li:before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 7px;
  color: #fd7903;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 11px;
}

.sec-9 {
  background: url(../images/section2.webp) center center / cover no-repeat;
}


.sec-10 .heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 51px;
  margin: 0 0 20px;
}

.sec-10 h3 {
  font-size: 18px;
  font-weight: 500;
  color: #122826;
  line-height: 28px;
  margin-bottom: 30px;
}

.sec-11 h3 {
  font-size: 50px;
  font-weight: 700;
}

.accordion-button {
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 16px;
  color: #333;
}

.accordion-item {
  color: inherit;
  background-color: unset;
  border: unset;
}

.accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  background: #307d82;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  transform: var(--bs-accordion-btn-icon-transform);
  background-image: unset;
}

.sec-12 {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.sec-12 h3 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.carousel-item {
  text-align: center;
}

.testimonial-box {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-box p {
  font-size: 16px;
}

.testimonial-box h6 {
  margin-top: 15px;
  font-weight: 600;
  border-top: 1px solid darkgrey;
  padding-top: 10px;
}

.testimonial-box img {
  width: 140px !important;
}

.footer {
  background-color: #0c0c0c;
  color: white;
  padding: 40px 0 0px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

.footer a {
  color: white;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
}

.social-icons a {
  height: 40px;
  width: 40px;
  display: inline-block;
  border: 2px solid #fff;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.5s all;
  background: white !important;
}

.social-icons a i {
  font-size: 16px;
  color: #050505 !important;
  margin: 0;
  line-height: 33px;
  transition: 0.5s all;
}

.social-icons a:hover {
  color: var(--primary);
}

.contact-form input {
  background-color: #121212;
  border: 1px solid #333;
  color: white;
}

.contact-form input::placeholder {
  color: #bbb;
}

.footer-bottom {
  background-color: #161616;
  text-align: center;
  padding: 10px;
  color: var(--white);
  text-wrap: nowrap;
}

.hello {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
  clear: both;
  position: relative;
  margin: 0 auto;
}

.feature_box h5 {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  color: #262626;
  margin-bottom: 18px;
  border-bottom: 1px solid #3d5a80;
  padding-bottom: 18px;
}

.feature_box p {
  font-size: 16px;
}

.feature_box img {
  margin-bottom: 30px;
}

.our-shelf {
  /* background: url("../images/our-shelf.webp") no-repeat; */
  background: black;
  width: 100%;
  background-size: cover;
}
.our-shelf h2.heading {
  color: white !important;
}
.our-shelf .chat {
  color: white;
  background-color: #007565;
}
.our-shelf span {
  color: white;
}

.our-shelf p {
  color: white;
}
.our-shelf h5 {
  position: relative;
  color: #007565;
  font-size: 55px;
  font-weight: 600;
}



/* .our-shelf * {
  color: #111111;
} */

.our-shelf h3 {
  color: white !important;
}

.our-shelf .col-md-6 {
  margin-bottom: 30px;
}

.our-shelf .row:first-child {
  align-items: center;
}

.contact{
  color: var(--black);
}

.contact-sec{
  height: 86vh;
  background: url(../images/contact-banner.webp) center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-heading{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-top: 30px;
}
.contact-heading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 80px;
  background: #307d82;
}
.contact-heading a {
  display: block;
  font-size: 26px !important;
  color: #307d82;
  font-weight: 700;
  margin-top: 10px;
}


@media screen and (max-width:578px) {

  .popup-illustration {
    display: none;
  }

  .popup-content {
    width: 100%;
}

  a {
    font-size: 12px !important;
  }


  .navbar-brand img {
    max-width: 200px;
  }

  .top-form h2 {
    font-size: 20px;
  }

  h6 {
    font-size: 0.8rem;
  }

  .main-heading {
    font-size: 28px;
  }

  .sec-4 h3 {
    font-size: 18px;
  }

  .sec-5 h3 {
    font-size: 38px;
    line-height: 38px;
  }

  .cta h5 {
    color: #fff;
    padding-bottom: 0px;
    font-size: 22px;
  }

  .btn {
    font-size: 14px;
  }

  .sec-10 .heading {
    font-size: 28px;
    line-height: 30px;
  }

  .sec-11 h3 {
    font-size: 36px;
  }

  .accordion-button {
    font-size: 0.7rem;
  }

  .sec-12 h3 {
    font-size: 28px;
    margin-bottom: unset;
    font-weight: 700;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px !important;
  }

  .btn-wrapper {
    justify-content: center;
  }

  .sec-3 ul li {
    width: 100%;
  }

  .owl-carousel .owl-item img {
    display: inline;
    width: 100%
  }

  .sec-7 h4 {
    font-size: 28px;
  }

  .sec-5 h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .contact-sec{
    background: var(--primary);
  }

}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-container {
  background: url(../images/popop-bg1.webp);
  width: 700px;
  height: 450px;
  border-radius: 5px;
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #a0329b;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.popup-content {
  padding: 40px;
  color: white;
  width: 50%;
}

.popup-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.phone-input {
  display: flex;
  align-items: center;
}


.phone-number {
  flex-grow: 1;
  border-radius: 0 4px 4px 0 !important;
}

.submit-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: white;
  color: #008080;
}

.popup-illustration {
  width: 50%;
  background-image: url('/api/placeholder/350/450');
  background-size: cover;
  background-position: center;
}