@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*,
*::after,
*::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 10px;
  }
::-webkit-scrollbar-track {
    background-color: #cbcecb;
  }
::-webkit-scrollbar-thumb {
    background-color: #2B2B2B;
    border-radius: 10px;  
}
html, body {
  overflow-x: hidden;
}
body {
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    font-weight: normal;
    color:  white;
    overflow-x: hidden;
    background-color: #2d384d;
}
li {
    list-style-type: none;
}
a {
    text-decoration: none;
}
section {
    width: 100%;
    padding: 20px;
}
#content {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.header {
    width: 100%;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #353744;
    box-shadow: 0 0 20px #b1eaf2;
    position: relative;
    z-index: 2;
}
.header__logo {
    width: 150px;
}
.header__nav {
    display: flex;
    gap: 50px;
}
.nav-link {
    color: white;
    font-size: 20px;
    transition: all .3s ease;
    display: block;
    position: relative;
    transition: .3s all;
}
.nav-link:hover {
    color: #ccc;
}
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B2B2B;
    padding: 6px 25px; 
    color: #e7f1db;
    border-radius: 10px;
    transition: .4s all;
}
.hamburger-menu {
    display: none;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10rem;
  background: radial-gradient(circle, rgba(70,82,106,1) 0%, rgba(45,56,77,1) 100%);

}

.hero-content {
  max-width: 500px;
}

.hero-image > img {
  filter: drop-shadow(2px 4px 6px black);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  width: 200px;
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.3s ease;
  font-size: 20px;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  background: radial-gradient(circle, rgba(70,82,106,1) 0%, rgba(45,56,77,1) 100%);
}

.feature-item {
  text-align: center;
  max-width: 300px;
}

.feature-item img {
  max-width: 200px;
  margin-bottom: 1rem;
  border-radius: 50%;

}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 20px;
}

.gallery-controls button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-controls button:hover {
  background-color: #0056b3;
}

.gallery-controls button i {
  font-size: 1.2rem;
}

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.get-in-touch {
  padding: 6rem 2rem;
}

.get-in-touch h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}
.form-container > form {
  box-shadow: 0 0 10px #3a3a3a;
  padding: 30px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;

}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: .3s all;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button span {
  margin-right: 1rem;
}

.submit-button:hover {
  background-color: #0056b3;
}
.website-footer {
  background-color: #353744;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-logo {
  max-height: 60px;
  margin-right: 1.5rem;
}

.footer-company-name {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-info-section {
  display: flex;
  align-items: center;
}

.footer-contact-info {
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
}

.footer-contact-info p, .footer-contact-info a {
  margin-bottom: 0.5rem;
  color: white;
}

.twitter-link {
  color: #1DA1F2;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.twitter-link:hover {
  color: #0c85d0;
}

.footer-navigation h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-navigation ul {
  list-style-type: none;
  padding: 0;
}

.footer-navigation li {
  margin-bottom: 0.5rem;
}

.footer-navigation a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: #ccc;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.spinner {
  border: 4px solid #333;
  border-top-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 1430px) {
  .first__page {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .first__page > img, .first__page--container {
    clip-path: none;
  }
  .solution-items {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
  }
  .solution-item {
    width: 400px;
    max-width: 100%;
  }
}
@media (max-width: 1240px) {
    section > h2 {
      font-size: 35px !important;
    }
    .header__nav {
        display: none;
    }
    .hamburger-menu {
        display: flex;
        height: 100%;
        align-items: center;
    }
    #menu__toggle {
        opacity: 0;
    }
    .menu__btn {
        display: flex; 
        align-items: center;  
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
        display: flex;
        position: absolute;
        width: 35px;
        height: 2px;
        gap: 10px;
        margin-bottom: 5px;
        background-color: white;
    }
    .menu__btn > span::before {
        content: '';
        top: -8px;
    }
    .menu__btn > span::after {
        content: '';
        top: 8px;
    }
    .menu__box {
        display: block;
        position: fixed;
        visibility: hidden;
        z-index: 100;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        padding-top: 50px;
        margin: 0;
        list-style: none;
        text-align: center;
        background-color: #2d384d;
        box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    }
    .menu__item {
        display: block;
        padding: 12px 0;
        margin-bottom: 5px;
        text-align: start;
        padding-left: 15px;
        color: white;
        font-size: 20px;
        font-weight: 500;
        border-bottom: solid 1px #ccc;
        transition: .3s all;
    }
    .menu__item:hover {
        color: #ccc;
    }
    .menu__item > img {
        width: 30px;
    }
    #menu__toggle:checked ~ .menu__btn > span {
        transform: rotate(45deg);
    }
    #menu__toggle:checked ~ .menu__btn > span::before {
        top: 0;
        transform: rotate(0);
    }
    #menu__toggle:checked ~ .menu__btn > span::after {
        top: 0;
        transform: rotate(90deg);
    }
    #menu__toggle:checked ~ .menu__box {
        visibility: visible;
        left: 0;
    }
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
    transition-duration: .25s;
    }
    .menu__box {
    transition-duration: .25s;
    }
    .menu__item {
    transition-duration: .25s;
    }
    .call-btn {
        display: none;
    }
}
@media (max-width: 1135px) {
  .header {
    padding: 0 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-info-section {
    align-items: end;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .hero {
    padding: 20px;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  .hero-image > img {
    width: 100%;
  }
  .features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .gallery-slider {
    height: 300px;
  }
  .banner > img {
    width: 100%;
  }
}
@media (max-width: 530px) {
  section, .first__page {
    padding: 15px !important;
  }
  .footer-info-section {
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-info-section > * {
    width: 100%;
    margin-right: 0;
  }
  .nav-link {
    font-size: 16px;
  }
  .twitter-link {
    margin-left: 0;
  }
  .first__page--container {
    width: 100%;
  }
  .first__page--container > h1 {
    width: 100%;
    font-size: 20px;
  }
  .first__page--container > p {
    font-family: 16px;
    font-weight: 400;
  }
  .form-group input, .form-group textarea {
    padding: 0.5rem 1rem;
  }
  .submit-button {
    padding: 0.7rem 1.5rem;
  }
  .form-container > form {
    padding: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .hero-content > h1 {
    font-size: 25px;
  }
  .cta-button {
    padding: 7px;
  }
  .gallery-slider {
    height: auto;
  }
  .banner {
    margin: 20px 0;
  }
}

