/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*transition: transform 0.5s linear;
    will-change: transform;*/
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  /*  position: fixed;
    top: 0; 
    left: 0;
    right: 0;*/
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1;
}

.logo {
    display: flex;
    height: 2em;
    font-size: 2em;
    color: blue;
    font-weight: 900;
    gap: 0.5em;
   /* object-fit: contain;*/
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    position: fixed;
    opacity: 0.8;
    top: 35px;
    right: 40px;
    z-index: 1;
}

.nav-toggle {
    display: none;
    position: fixed;
    right: 20px;
    font-size: 24px;
    /*transition: color 0.3s ease;*/
    cursor: pointer;	
}

nav ul {
    list-style-type: none;
}

nav ul li a { 
    text-decoration: none;
    color: #fff;
}

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

.slogan {
    text-align: center;    
}

.callback-window {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;   
    justify-content: center;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.callback-close {
    position: absolute;
    top: calc(0px - 5px);
    right: calc(0px - 20px);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.callback-close:hover {
    color: red;
}

.callback-send:hover {
    background-color: #0056b3;
}

.chat-icon {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    max-width: 300px;
    box-sizing: border-box;
    z-index: 10;
}

.chat-header, .callback-header {
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
}

.chat-email {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
}

.chat-input {
    width: 100%;
    height: 80px;
    resize: none;
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
}

.chat-send, .btn-start, .callback-send {
    background-color: green;
    font-weight: bold;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-start {
    font-size: 24px;
}


#frameworks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.frameworks-row {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.frameworks-group {
  position: relative;
  margin: 0 30px;
  text-align: center;
}

.icon-orbit {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.group-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.icons-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#services ul {
  list-style-type: none;
  padding-left: 0;
}

#services i {
    min-width: 30px;
   /* text-align: center;*/
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px;
}

.circle {
  position: relative;
  width: 200px;
  height: 200px;
  /*border: 1px solid #000;*/
  border-radius: 50%;
  margin: 20px auto;
}

.icon {
  position: absolute;
  width: 30px;
  height: 30px;
  font-size: 24px;
  text-align: center;
  line-height: 30px;
  /*transform-origin: center;
  transition: transform 0.3s ease-in-out;*/
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #333;
        padding: 20px;
        position: absolute;
        top: 70px;
        right: 0;
        width: 150px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .slogan {
        padding: 50px 20px;
    }

    .slogan h1 {
        font-size: 36px;
    }

    .slogan p {
        font-size: 16px;
    }

    section {
        padding: 20px;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .member {
        max-width: 100%;
    }
}
