:root {
  --dark: #0f1b2a;
  --light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'alk', sans-serif;
  background-color: var(--light);
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

header {
	background-color: var(--dark);
	color: var(--light);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 40px;
	position: relative;
	z-index: 999;
	position: fixed;
	width: 100%;
	top: 0px;
}
.wpml-ls-menu-item .wpml-ls-flag {
    display: inline;
    vertical-align: baseline;
    width: 40px;
}
.mobile-menu .wpml-ls-item {
    width: 100px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 30px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 1001; /* above mobile menu */
}

.menu-toggle span {
  height: 3px;
  background-color: var(--light);
  border-radius: 2px;
  transition: 0.4s;
}

/* Animate to X */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.mobile-nav.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mobile-nav a {
  padding: 15px 0;
  font-size: 20px;
  color: var(--light);
  width: 100%;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  list-style: none;
}

.main-menu li {
  display: inline;
  font-family: 'archy';
  text-transform: uppercase;
}

.main-menu a {
  text-decoration: none;
  color: var(--light);
}

/* For mobile nav */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.mobile-menu li {
  width: 100%;
  text-align: center;
  font-family: 'archy';
  text-transform: uppercase;
}

.mobile-menu a {
  padding: 15px 0;
  font-size: 20px;
  color: var(--light);
  display: block;
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}



footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 30px 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 25px;
}

.footer-info {
  margin-top: 20px;
  font-size: 14px;
  color: #ddd;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: archy;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  margin: 50px auto 0px auto;
}

.hero-btn {
  padding: 12px 30px;
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 25px;
  font-size: 18px;
  font-family: archy;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 50px auto 0px auto;
  display: block;
  width: 200px;
}

.hero-btn:hover {
  background: white;
  color: #000;
}

.services {
  padding: 80px 20px;
  text-align: center;
  background-color: #f6f6f6;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: archy;
}

.services-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: block;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  height: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
  font-family: archy;
}

.service-card p {
  font-size: 13px;
  color: #444;
  font-family: 'alk', sans-serif;
}

.service-button {
  margin-top: 70px;
}

.service-button a {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #1e1f26;
    transition: 0.3s;
    background: #d7d7d7;
  font-family: 'archy';
  text-transform: uppercase;
}

.service-button a:hover {
  background: #1e1f26;
  color: #fff;
}

.team {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.team-header h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e1f26;
  font-family: archy;
}

.team-header p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #333;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.member {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 100%;
  height: auto;
  display: block;
}

.member h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #1e1f26;
  font-family: archy;
}

.member span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.team-button {
  margin-top: 40px;
}

.team-button a {
  padding: 12px 30px;
  border: 2px solid #1e1f26;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: #1e1f26;
  transition: 0.3s;
  font-family: 'archy';
  text-transform: uppercase;
}

.team-button a:hover {
  background: #1e1f26;
  color: #fff;
}


/* Services Start */

.single-services main {
    margin: 150px auto;
    width: 90%;
    min-height: 100vh;
}

.single-services h1 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'archy';
}
.single-services article * {
    margin-bottom: 20px;
}
.gdi-services {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 30px;
  font-family: sans-serif;
  text-align: center;
}
.gdi-services h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.gdi-services p.description {
  font-size: 17px;
  color: #333;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.service-card {
  background: #f6f6f6;
  padding: 35px 25px;
  border-radius: 8px;
  transition: 0.3s;
  text-align: center;
}
.service-card:hover {
  background: #e9e9e9;
}
.service-card img {
  display: block;
  margin: 0 auto 15px auto;
  width: 50px;
  height: auto;
}
.service-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .gdi-services {
    padding: 40px 20px;
  }
  .gdi-services h2 {
    font-size: 24px;
  }
  .gdi-services p.description {
    font-size: 15px;
  }
}
/* Services End */


/* Team Start */

.team-member-wrapper {
  max-width: 1200px;
  margin: 150px auto;
  font-family: sans-serif;
  color: #1c1c1c;
  padding: 30px;
}
.single-our_team .team-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.team-image {
  flex: 0 0 300px;
}
.team-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.team-info {
  flex: 1;
}
.team-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'archy';
}
.team-info .position {
  font-size: 18px;
  color: #555;
  font-weight: 500;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  display: inline-block;
  margin-top: 10px;
}
.team-content {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 768px) {
  .team-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-info {
    margin-top: 20px;
  }
  .team-member-wrapper {
    margin: 80px auto;
	}
}
.team-content {
    font-size: 16px;
    line-height: 1.8;
    font-family: 'alk';
}
.team-content p {
	margin-bottom: 20px;
}
.single-our_team .team-members {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: "BPG Nino Mtavruli", sans-serif;
    }

    .team-members .member {
        text-align: center;
        background: #f9f9f9;
        padding-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
    }

    .team-members .member img {
        width: 100%;
        height: auto;
        display: block;
    }

    .team-members .member h3 {
        margin: 15px 0 5px;
        font-size: 20px;
        font-weight: bold;
        color: #1a1a1a;
    }

    .team-members .member span {
        font-size: 16px;
        color: #555;
    }

    .archive-title {
        text-align: center;
        font-size: 36px;
        font-weight: bold;
        margin-top: 100px;
        margin-bottom: 30px;
		font-family: archy;
    }

    .archive-description {
        text-align: center;
        font-size: 18px;
        color: #333;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
	
/* Team End */

/* News Start */

.news-description {
        text-align: center;
        font-size: 18px;
        color: #333;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    font-family: 'alk';
}
/* News End */




/* Content Start */

main h1 {
	text-align: center;
	margin-bottom: 50px;
}
main {
    width: 90%;
    margin: 150px auto;
    min-height: 100vh;
}
.single-services .featured-image-root {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    display: block;
}
.featured-image-root {
    width: auto;
    margin: 0px auto;
    display: block;
    margin-bottom: 40px;
}
/* Content End */
/* WPML Start */

.menu-item-language .sub-menu {
    position: absolute;
    display: none;
}
.menu-item-language:hover .sub-menu {
    display: block;
}

/* WPML End */

/* Container styling */
.wpcf7 {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

/* Label styling */
.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Input and textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f8f8;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #0073aa;
  background-color: #fff;
  outline: none;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  padding: 14px 28px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #005f8d;
}

/* Validation & success */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* Team End */




.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  color: #fff;
}

.hero-slider::after {
    background: #000;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    opacity: 0.5;
}

.hero-slider {
  position: absolute;
  top:0; left:0;
  width:100%;
  height:100%;
}

.hero-slider .slide {
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity:1;
}

.hero-content {
  position:relative;
  z-index:2;
  text-align:center;
  transform:translateY(-50%);
}
.scroll-indicator {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
}

.mouse {
  width: 35px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 25px;
  position: relative;
  box-sizing: border-box;
}

.wheel {
  width: 6px;
  height: 10px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 1.5s infinite;
}

@keyframes wheel-scroll {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  40%  { opacity: 1; transform: translate(-50%, 10px); }
  80%  { opacity: 0; transform: translate(-50%, 20px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}


@font-face {
  font-family: 'alk';
  src: url('../fonts/alk-rounded/alk-rounded.eot'); /* IE9 Compat Modes */
  src: url('../fonts/alk-rounded/alk-rounded.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/alk-rounded/alk-rounded.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/alk-rounded/alk-rounded.woff') format('woff'),   /* Modern Browsers */
       url('../fonts/alk-rounded/alk-rounded.ttf') format('truetype'); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'archy';
  src: url('../fonts/archy-edt/archy-edt.eot'); /* IE9 Compat Modes */
  src: url('../fonts/archy-edt/archy-edt.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/archy-edt/archy-edt.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/archy-edt/archy-edt.woff') format('woff'),   /* Modern Browsers */
       url('../fonts/archy-edt/archy-edt.ttf') format('truetype'); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
