@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

.container {
    max-width: 1640px;
    padding: 0 20px;
    margin: 0 auto;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}

header {
    background-color: #002584;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

.nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row;
}

.nav-list li a {
    color: white;
}

.nav-btn {
    color: rgb(252, 105, 0);
    background: none;
    border: 1px solid rgb(252, 105, 0);
    padding: 5px 20px;
    transition: all 0.3s ease-in-out;
}

.nav-btn a {
    color: rgb(252, 105, 0);
}

.nav-btn:hover {
    color: white;
    background-color: rgb(252, 105, 0);
    background: none;
    border: 1px solid white;
}

@media (max-width: 870px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: #002446;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.burger {
  display: none;
}

@media (max-width: 870px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}

.hero {
    background-image: url(./img/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
}

.hero-container {
    padding-top: 110px;
}

.logo {
    height: 50px;
    width: 50px;
}

.hero {
    padding: 30px 0 100px 0;
    color: #fff;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-text {
    max-width: 820px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    font-weight: 400;
    color: #fff;
}

.hero-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.hero-form {
    background: rgba(0, 18, 36, 0.4);
    padding: 70px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hero-form .form-input {
    margin-bottom: 15px;
}

.hero-form .form-input input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.hero-form .submit {
    width: 100%;
    padding: 12px;
    background: #00034f68;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.hero-form .submit:hover {
    background: #0056b3;
}

@media screen and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-form {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .hero-text, .hero-form {
        max-width: 100%;
    }
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-form {
        padding: 20px;
    }
}

.hero-form {
    background: rgba(0, 18, 36, 0.4);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-width: 500px; 
    flex: 1 1 400px;
}

.hero-text {
    flex: 1 1 400px;
}


@media (max-width: 909px) {
    .why-list {
        margin-top: 0 !important;
    }

    .header-container {
        padding-bottom: 20px;
    }

    .why {
        padding: 0;
    }

    .why .container {
        margin: 0;
    }

    .hero-text h1 {
        text-align: center;

    }

    .hero-text p {
        text-align: center;
    }

    .hero .container {
        justify-content: center;
        padding: 0 !important;
    }
    
}

@media (max-width: 922px) {
    .hero-container {
        padding-top: 50px;
    }
}

.why {
    padding: 80px 0;
}

.why .container {
    margin: 0 auto;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 20px;
    background-color: #002584;
    border-radius: 20px;
    margin-top: -135px;
}

.why-list li {
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-list img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.why-list h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: left;
}

.why-list p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .why-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .why-list li {
        padding: 25px 15px;
    }
    .why-list img {
        width: 50px;
        height: 50px;
    }
    .why-list h3 {
        font-size: 1.2rem;
    }
    .why-list p {
        font-size: 0.95rem;
    }
}

.new-era {
    padding: 80px 0;
    color: #2b2b2b;
}

.new-era .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
}

.new-era-text {
    flex: 1 1 0;
    max-width: 900px;
    width: 100%;
}

.new-era-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #272727;
    line-height: 1.3;
}

.new-era-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.new-era img {
    max-width: 500px;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .new-era-text h2 {
        font-size: 1.8rem;
    }
    .new-era-text p {
        font-size: 1rem;
    }
    .new-era img {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .new-era {
        padding: 60px 20px;
        text-align: center;
    }
    .new-era .container {
        flex-direction: column;
        align-items: center;
        padding: 0 !important;
    }
    .new-era-text {
        max-width: 100%;
    }
    .new-era img {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .new-era-text h2 {
        font-size: 1.6rem;
    }
    .new-era-text p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .new-era h2 {
        font-size: 1.4rem;
    }
    .new-era p {
        font-size: 0.9rem;
    }
    .new-era img {
        max-width: 100%;
    }
}

.start {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 80px 0;
    gap: 30px;
}

.start img {
    flex: 1 1 300px;
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-top-right-radius: 15px;
}


.start-text {
    max-width: 600px;
    color: #292929;
}

.start-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.start-text a {
    display: inline-block;
    margin-top: 20px;
    background-color: none;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    color: black;
}


@media screen and (max-width: 1024px) {
    .start {
        padding: 60px 20px;
    }
    .start-text p {
        font-size: 1rem;
    }
    .start img {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .start {
        flex-direction: column;
        text-align: center;
        padding: 50px 15px;
    }
    .start img {
        max-width: 100%;
        margin-bottom: 25px;
    }
    .start-text {
        max-width: 100%;
    }
    .start-text p {
        font-size: 0.95rem;
    }
    .start-text a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .start-text p {
        font-size: 0.9rem;
    }
    .start-text a {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1629px) {
    .start {
        justify-content: center;
    }

    .start img {
        border-radius: 20px;
    }
}

.technology {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.technology .container {
    margin: 0 auto;
    text-align: center;
}

.technology h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.technology p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.technology-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.technology-list li {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.technology-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mb50 {
    margin-bottom: 50px;
    text-align: center !important;
}

.technology-list img {
    width: 60px;
    height: 65px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.technology-list h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #007bff9b;
    border-bottom: 1px solid rgba(128, 128, 128, 0.355);
    padding-bottom: 50px;
}

.technology-list p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-top: 30px;
}

.technology a {
    display: inline-block;
    padding: 12px 50px;
    border: 1px solid #007bff9b;
    color: #007bff9b;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.technology a:hover {
    background: #0056b3;
}

@media screen and (max-width: 1024px) {
    .technology-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .technology-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .technology p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .technology h2 {
        font-size: 1.7rem;
    }
    .technology a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .technology h2 {
        font-size: 1.5rem;
    }
    .technology p {
        font-size: 0.95rem;
    }
    .technology-list h3 {
        font-size: 1.2rem;
    }
    .technology a {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

.trading {
    padding: 80px 0;
    background: #F5F5F7;
    color: #292929;
}

.trading .container {
    margin: 0 auto;
    text-align: left;
    padding: 10px !important;
}

.trading h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1d1d1d;
    text-align: left;
}

.trading p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.trading-span {
    display: flex;
    align-items: flex-start;
    border-radius: 15px;
    margin: 30px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.trading-span img {
    width: 25px;
    height: 25px;
}

.trading-span h4 {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.5;
    flex: 1;
}

.trading-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.trading-list li {
    padding: 25px 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trading-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.trading-list img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.trading-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222222;
}

.trading-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

@media screen and (max-width: 1024px) {
    .trading-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .trading-span h4 {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .trading {
        padding: 60px 15px;
    }
    .trading-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trading-span {
        flex-direction: column;
        text-align: center;
    }
    .trading-span img {
        margin-bottom: 15px;
    }
    .trading h2 {
        font-size: 1.7rem;
    }
    .trading p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .trading h2 {
        font-size: 1.5rem;
    }
    .trading p, .trading-span h4, .trading-text p {
        font-size: 0.9rem;
    }
    .trading-list img {
        width: 40px;
        height: 40px;
    }
}

.cta {
    position: relative;
    padding: 50px 0;
    background: url('./img/cta-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}


.cta .container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.cta-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-list li {
    flex: 1 1 200px;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-right: 1px solid white;
}

.cta-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.cta-list h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.cta-list p {
    font-size: 1rem;
    color: #f0f0f0;
}

@media screen and (max-width: 1024px) {
    .cta-list {
        gap: 20px;
    }
    .cta-list h3 {
        font-size: 1.8rem;
    }
    .cta-list p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-list {
        flex-direction: column;
        gap: 20px;
    }
    .cta-list li {
        padding: 25px 15px;
    }
    .cta-list h3 {
        font-size: 1.5rem;
    }
    .cta-list p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .cta {
        padding: 50px 15px;
    }
    .cta-list h3 {
        font-size: 1.3rem;
    }
    .cta-list p {
        font-size: 0.85rem;
    }
    .cta-list li {
        padding: 20px 15px;
    }
}

.faq {
    padding: 80px 0;
    background: #f7f9fc;
    color: #333;
}

.faq h2 {
    text-align: left;
    font-size: 2rem;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.faq p {
    text-align: left;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #252525;
    line-height: 1.6;
}

.faq-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.faq-list {
    list-style: none;
    padding: 0;
    flex: 1 1 400px;
}

.faq-list li {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-list h3 {
    cursor: pointer;
    padding: 50px 20px;
    position: relative;
    margin: 0;
    font-size: 1.2rem;
    background: #ededed;
    color: #3c3c3c;
    transition: background 0.3s;
}


.faq-list h3::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-list li.active h3::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-list p {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-list li.active p {
    max-height: 500px;
    padding: 15px 20px 20px 20px;
}

@media screen and (max-width: 1024px) {
    .faq-flex {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .faq-flex {
        flex-direction: column;
    }
}

.start-section {
    position: relative;
    padding: 150px 20px;
    background: url('cta.png') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    max-width: 1600px;
    margin: 0 auto;
}


.start-section-block {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.start-section-block-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: left;
    max-width: 500px;
}

.start-section-block-text a {
    display: flex;
    max-width: fit-content;
    padding: 15px 60px;
    background: rgba(119, 0, 188, 0.8);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.start-section-block-text a:hover {
    background: rgba(0, 123, 255, 1);
    transform: translateY(-3px);
}

@media screen and (max-width: 1024px) {
    .start-section-block-text h2 {
        font-size: 2rem;
    }
    .start-section-block-text a {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media screen and (max-width: 768px) {
    .start-section {
        padding: 80px 15px;
    }
    .start-section-block-text h2 {
        font-size: 1.8rem;
    }
    .start-section-block-text a {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 480px) {
    .start-section-block-text h2 {
        font-size: 1.5rem;
    }
    .start-section-block-text a {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}

footer {
    color: #212121;
    padding: 60px 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

footer a {
    color: #1b1b1b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-up {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-first {
    flex: 2 1 400px;
    min-width: 250px;
    border-right: 1px solid rgba(128, 128, 128, 0.48);
    padding-right: 15px;
}

.footer-second {
    border-right: 1px solid rgba(128, 128, 128, 0.48);
    padding-right: 15px;
}

.footer-first h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-first p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1c1c1c;
}

.footer-second,
.footer-third {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-second h3,
.footer-third h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-second li,
.footer-third li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}


.footer-down {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #a3bffa;
    border-top: 1px solid rgba(128, 128, 128, 0.485);
    padding-top: 20px;
}

.footer-down-left,
.footer-down-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-down-left img,
.footer-down-right img {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
    background-color: #0d1b3a;
    color: #ffffff;
    margin: 0 !important;
    padding: 25px;
}

@media screen and (max-width: 1024px) {
    .footer-up {
        flex-direction: column;
        gap: 20px;
    }
    .footer-down {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 40px 15px 20px;
    }
    .footer-first h3,
    .footer-second h3,
    .footer-third h3 {
        font-size: 1rem;
    }
    .footer-first p,
    .footer-second li,
    .footer-third li,
    .footer-down-left,
    .footer-down-right {
        font-size: 0.85rem;
    }
}

.footer-down-left,
.footer-down-right {
    color: #212121;
}

@media (max-width: 768px) {
    .hero-form {
        padding: 10px;
    }

    .cta-list li {
        flex: 0;
    }
}

@media (max-width: 1024px) {
    .footer-first {
        flex: 0;
    }
}

.iti .iti__selected-dial-code {
    color: black !important;
}
