@import "fonts.css";
@import "./bootstrap-icons-1.13.1/icons.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: Montserrat;*/
    z-index: 5;
}

body {
    font-family: Montserrat, 'Inter', sans-serif;
    background: #0b1020;
    color: #ffffff;
    line-height: 1.6;

    /*background: url('./resources/background_home.png') center top / 100% auto repeat-y;*/


    /*background: */
}

html {

scroll-behavior: smooth;
}  

a {
    text-decoration: none;
    color: inherit;
}

ul {
    text-align: left;
    margin-left: 15%;
}

:root {
    --nav-height: 100px;
    --footer-height : 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= NAVBAR ================= */

.navbar {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0 0;
    z-index: 1000;
    background: #0B0F1E;
    height: var(--nav-height);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    height: 100%;
}

.logo img {
    max-height: 100%;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #4fc3f7;
}

.nav-links.compact {
    gap: 10px;
}

/* ================= HERO ================= */
section {
    height:auto;
    /*height: calc(100vh - var(--nav-height) - var(--footer-height));*/
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
}
.hero {
    /*margin-top: var(--nav-height);*/
    /*min-height: calc(100vh - var(--nav-height) - var(--footer-height));*/
    /*height: 100vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*padding-top: 5%;*/
    text-align: center;
    position: relative;
    /*background: url('./resources/background_home.png') center/cover no-repeat;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    /*max-width: 800px;*/
    /*margin: auto;*/

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 10px 0 20px 0;
     transform: scaleY(0.9);
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.hero .hero-content .logo {
    display: flex;
    justify-content: center;
    /*width: 50%;*/
    /*height: 300px;*/
    height: 40%;

    max-width: 380px;

}

.hero .logo img {
    max-width: 100%;
    max-height: 100%;
    /*height: 284px;*/
    /*width: 403px;*/

    aspect-ratio: 1.418;
    object-fit: fill;
}

.btn-primary {
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(90deg, #3ab0ff, #00ffb3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    color: black;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* MAIN BUTTON */
.glass-btn {
  position: relative;
    height: 60px;
  padding: 18px 60px;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;

  /* Base deep gradient */
  background:
    linear-gradient(135deg,
      #0e3a63 0%,
      #154f88 25%,
      #1e6fa3 50%,
      #2aa86c 75%,
      #7bdc52 100%
    );

  /* Inner glass edge */
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.35),
    inset 0 -4px 10px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.25),
    0 8px 25px rgba(0,0,0,0.5);

  transition: all 0.35s ease;
}

/* TOP GLOSS LAYER */
.glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 55%;
  width: 100%;
  border-radius: 14px 14px 50% 50%;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05),
    transparent
  );

  pointer-events: none;
}

/* OUTER NEON EDGE GLOW */
.glass-btn:hover::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    #3fa9ff,
    #4cd964,
    #9eff5a
  );
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}

/* TEXT */
.glass-btn span {
  position: relative;
  z-index: 2;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 0 10px rgba(255,255,255,0.3);
}

/* HOVER */
.glass-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 3px 6px rgba(255,255,255,0.45),
    inset 0 -6px 15px rgba(0,0,0,0.5),
    0 15px 35px rgba(0,0,0,0.7);
}

/* ACTIVE PRESS */
.glass-btn:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 4px 8px rgba(0,0,0,0.6);
}

/* =================== Background for easier readability =============== */

.section.about.bg3 {
    color: #ffffff;
}

.section.about.bg3 h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.6),
        0 4px 12px rgba(0,0,0,0.4);
}

.section.about.bg3 p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;

    text-shadow:
        0 1px 3px rgba(0,0,0,0.75),
        0 3px 10px rgba(0,0,0,0.45);
}

/* ================= SECTION (1) ================= */

.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.section p.section-desc {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* ================= SECTION (2) ================= */

/*330 px*/
/* SECTION */
.services {
  text-align: center;
  /*max-width: 1300px;*/
  /*padding: 60px 20px;*/
    padding: 0 5%;

}

.services h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 50px;
}

/* CARD LAYOUT */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  /*    display: grid;*/
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  /*gap: 20px;*/
    /*display: flex;*/
}

/* Large screens */
@media (min-width: 1400px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium screens */
@media (min-width: 600px) and (max-width: 1399px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens */
@media (max-width: 599px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* GLASS CARD */
.card {
  position: relative;
  padding: 40px 30px;
  border-radius: 24px;
  overflow: hidden;
    max-width: 330px;

  /*backdrop-filter: blur(18px);*/
  /*-webkit-backdrop-filter: blur(18px);*/

  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  rgba(255,255,255,0.08),*/
  /*  rgba(255,255,255,0.03)*/
  /*);*/
  /*border: 1px solid rgba(255,255,255,0.15);*/





/*  THIS IS GOOD DESIGN  */
/*background: rgba(255, 255, 255, 0.2); !* semi-transparent white *!*/
/*  backdrop-filter: blur(10px); !* blur the background behind *!*/
/*  -webkit-backdrop-filter: blur(10px); !* Safari support *!*/

/*  border-radius: 16px; !* rounded corners *!*/
/*  border: 1px solid rgba(255, 255, 255, 0.3); !* optional light border *!*/

/*  padding: 20px;*/
/*  color: #fff; !* text color *!*/
/*  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); !* soft shadow for depth *!*/



      background: rgba(11, 15, 30, 0.5); /* semi-transparent dark */
  backdrop-filter: blur(10px);       /* frosted effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1); /* subtle outline for definition */

  padding: 20px;
  color: #ffffff; /* text color */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6); /* soft shadow for depth */

}

/*!* EDGE DISTORTION LAYER *!*/
/*.card::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  border-radius: 24px;*/
/*  pointer-events: none;*/

/*  background: radial-gradient(*/
/*    circle at 50% 50%,*/
/*    rgba(255,255,255,0.15) 0%,*/
/*    rgba(255,255,255,0.05) 40%,*/
/*    rgba(255,255,255,0.02) 60%,*/
/*    rgba(255,255,255,0.15) 100%*/
/*  );*/

/*  mix-blend-mode: overlay;*/
/*}*/

/*!* GLOSSY REFLECTION SWEEP *!*/
/*.card::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -50%;*/
/*  left: -50%;*/
/*  width: 200%;*/
/*  height: 200%;*/
/*  background: linear-gradient(*/
/*    120deg,*/
/*    transparent 40%,*/
/*    rgba(255,255,255,0.2) 50%,*/
/*    transparent 60%*/
/*  );*/
/*  transform: rotate(25deg);*/
/*  opacity: 0.25;*/
/*}*/

/* CONTENT */
.icon {
  font-size: 32px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.card h2 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* HOVER EFFECT */
/*.card:hover {*/
/*  transform: translateY(-8px);*/
/*  transition: 0.4s ease;*/
/*  box-shadow:*/
/*    0 20px 60px rgba(0,0,0,0.6),*/
/*    inset 0 1px 0 rgba(255,255,255,0.4);*/
/*}*/

section.bg1 {
    background: url('./resources/background_home.png') center/cover no-repeat;

}
section.bg2 {
    background: url('./resources/background_city.png') center/cover no-repeat;

}
section.bg3 {
    background: url('./resources/background_bridge.png') center/cover no-repeat;

}

/* ================ INTER SECTION ============= */
section.inter {
    height: 80px;
    background: rgba(11, 16, 32, 0.7);
    width: 100vw;
    position: absolute;
    transform: translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-bottom: 1px solid #5c5c5c;
}

section.inter.high {
    height: 200px;
}
section.inter.sm {
    height: 1px;
}
/* ================= ABOUT ================= */

section.about {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    /*background: url('./resources/background_home.png') center/cover no-repeat;*/
}
/*section.about:before {*/
/*    content: ' ';*/
/*    background: black;*/
/*    opacity: 0.3;*/
/*    z-index: 1;*/
/*    width: 100vw;*/
/*    height: 100%;*/
/*    position: absolute;*/

/*}*/
section.about .container {
    width: 50%;
    margin-left: 20%;
    p {
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);

    }
}

section.about * {
    text-align: left;
}

p {
    margin-bottom: 20px;
}


/* ================= SERVICES ================= */
section.services {
    /*min-height: 0vh;*/
    padding-top: 10%;
    padding-bottom: 10%;
    align-items: center;
    text-align: center;
    position: relative;
    /*background: url('./resources/background_home.png') center/cover no-repeat;*/
    /*background:*/
    /*linear-gradient(*/
    /*  rgba(255, 255, 255, 0.1) 0%, !* top: light/bright, still transparent *!*/
    /*  rgba(255, 255, 255, 0) 15%    !* bottom: fully transparent *!*/
    /*),*/
    /*url('./resources/background_city.png') center/cover no-repeat;*/
    /*padding: 0 20rem;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ================= PARTNERS ================= */

section.partners {
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    /*background: url('./resources/background_home.png') center/cover no-repeat;*/
    padding-bottom: 300px;

    background:
    linear-gradient(
      rgba(255, 255, 255, 0.1) 0%, /* top: light/bright, still transparent */
      rgba(255, 255, 255, 0) 15%    /* bottom: fully transparent */
    ),
    url('./resources/background_home.png') center/cover no-repeat;
}


.partners-row {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 60px;
    height: 50px;
    /*opacity: 0.6;*/
}

.partners-row > div {
    width: 10%;
}

.partners-row > div img {
    max-width: 100%;
    max-height: 100%;
}

.partner-logo {
    font-weight: 600;
    font-size: 18px;
    height: 100%;
}

.partner-logo svg {
    max-height: 100%;
    width: auto;
}

#don path {
    fill: #8F919A;
}



#sec1 {
    display: flex;
    padding: 0 5%;
    gap: 50px;
}

#sec1 p {
    width: 50%;
}

#sec1 button {
    /*width: fit-content;*/
    /*flex: 1;*/
}


/* ================= CTA ================= */

.cta {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255,255,255,0.03);
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* ================= FOOTER ================= */

footer {
    height: var(--footer-height);
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 30px 0;*/
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}

section.contacts {
    height: auto;
    justify-content: start;
    /*padding-top: 2%;*/
    /*max-width: 1147px;*/

    padding: 2% max((calc(100vw - 1147px)) / 2, 5%) 0 max((calc(100vw - 1147px)) / 2, 5%);

    .country-info.c1 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .country-info.c2 {
        margin-bottom: 50px;
    }

    .country-info {
        width: 100%;
        /*margin: 50px 0;*/

        .icon {
            width: 50px;
            margin: 0;
        }

        .row {
            /*height: 50px;*/
            display: flex;
            align-items: center;

            p {
                margin: 0;

            }
        }

        h3, h2 {
            text-align: left;
            margin-bottom: 20px;
        }
    }

    p {
        text-align: left;
    }


    .row {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: start;
        /*width: max-content;*/
    }
}

/* ================= RESPONSIVE ================= */
.logo-w {
    display: contents;
}
.phone-shrink {
    display: contents;

    .header {
        display: none;
    }
}

#burger-list {
    display: none;
}
@media (max-width: 1100px) {
    html, body {
        overflow-x: hidden;
    }

    .glass-btn {
        font-size: 14px;
    }

    .phone-shrink {
        display: block;
        position: absolute;
        top: 0;
        left: 30%;
        width: calc(100vw - 30%);
        height: 100vh;
        background: #0B0F1E;
        transform:translateX(calc(100% + 30vw));
        transition: .2s ease-out;
        z-index: 6;
    }

    .phone-shrink.show {
        transform: translateX(0);
    }

    .phone-shrink:before {
        content: ' ';
        position: absolute;
        background: black;
        opacity: 0.6;
        top: 0;
        left: 0;
        width: 30vw;
        height: 100vh;
        transform: translateX(-100%);
    }

    .phone-shrink .header {
        height: var(--nav-height);
        display: flex;
        padding: 0 5vw;
        justify-content: space-between;
        /*margin-top: 30px;*/
        align-items: center;
        font-size: 18px;
        border-bottom: 1px solid gray;


        #close {
            display: block;
            font-size: 42px;
            /*margin-right: 20px;*/
        }
    }

    #burger-list {
        display: block;

        i {
            font-size: 42px;
        }
    }


    .phone-shrink .nav-links {
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;

        a {
            text-align: center;
        }
    }

    .phone-shrink .nav-links.compact {
        flex-direction: row;
    }

    section {

        height: auto;
        min-height: calc(100vh - var(--nav-height) - var(--footer-height));
    }

    .logo-w {
        /*display: block;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 10vh;
        margin-top: 100px;
        height: 60vh;
        margin-bottom: 30vh;
    }

    .reduce {
        height: 40vh;
        margin-bottom: 0;
        transition: 0.6s ease-out;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        margin: 20px 5%;
        text-align: justify;
        /*margin: 20px 0;*/
    }

    .nav-links {
        gap: 20px;
    }

    .navbar .logo {
        width: 50%;
        height: 50%;
    }

    section.hero {
        padding: 0 5px 20px 5px;


        .hero-content {
            width: 100%;


            .logo {
                width: 80%;
                max-width: 380px;
                height: auto;
                aspect-ratio: 403/284;

                img {
                    /*height: 284px;*/
                    /*width: 403px;*/
                    aspect-ratio: 403/284;
                    height: auto;
                    width: 100%;
                }
            }
        }
    }

    section.about {
        h2 {
            text-align: center
        }

        p {
            text-align: justify;
        }
    }

    section.inter {
        min-height: 80px;
        height: auto;
        text-align: center;
    }

    section.inter.high {
        min-height: 200px;
        height: auto;
    }

    section.about .container {
        width: 100%;
        margin: 0 5%;



        p {
            /*background: black;*/
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }
    }

    section.about:before {
        content: ' ';
        background: black;
        opacity: 0.5;
        z-index: 1;
        width: 100vw;
        height: 100%;
        position: absolute;

    }

    section.services {
        padding: 15px;

        .cards {
            justify-items: center;

            .card {
                width: 100%;
            }
        }

    }

    #sec1 {
        flex-direction: column;
        gap: 0;

        p {
            width: 100%;
        }

        button {
            height: 58px;
            font-size: 14px;
        }

        padding-bottom: 10px;
    }

    section .partners-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;

        div {
            width: 100%;
            padding: 0 25%;
        }
    }

    section.partners {
        padding-bottom: 50px;
    }

    #build {
        height: auto !important;
    }

}


/* Style inputs with type="text", select elements and textareas */
input[type=text], input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.form-container {
  border-radius: 5px;
  background-color: rgba(11, 15, 30, .3);
  padding: 20px;
    box-shadow: 0 0 20px 2px #000;


    form {
        text-align: left;
    }
}
