@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  margin-bottom: 48px;
}
.terms p {
  color: #4c544d;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* cookie */
.cookie-notification {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  z-index: 5;
  width: 100%;
  padding-block: 30px;
  background-color: #fff;
  display: none;
}

.cookie__title {
  color: #4c544d;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.cookie__text {
  color: #4c544d;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 32px;
}

.cookie__btns {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.cookieBtn {
  display: block;
  width: fit-content;
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
  padding: 16px 48px;
  border-radius: 5px;
}
.cookieBtn:first-child {
  background: #f8ea6a;
}
@media (max-width: 520px) {
  .cookie__btns {
    flex-direction: column;
    align-items: initial;
  }

  .cookieBtn {
    width: 100%;
  }
}
.th {
  padding-block: 50px;
}

.th__inner {
  max-width: 644px;
  width: 100%;
  margin-inline: auto;
}
.th__title {
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  margin-bottom: 32px;
}
.th_text {
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 32px;
}
.th__btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
  padding: 16px 48px;
  border-radius: 5px;
  background: #f8ea6a;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffc107);
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
}

/* Header */
.header {
  background: rgba(76, 84, 77, 0.2);
  padding-block: 20px;
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  display: block;
  color: #4c544d;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

/* Hero Section */
.hero {
  padding-block: 120px;
  background: #000 url(../images/bg.png) center / cover no-repeat;
}

.hero h1 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 61.6px */
  letter-spacing: 2.24px;
  margin-bottom: 20px;
}

.hero p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  margin-bottom: 32px;
}

.hero a {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 5px;
  background: #f8ea6a;
  padding: 16px 48px;
  color: #4c544d;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.services-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 24px;
}

.service-card h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Strategy Section */
.strategy {
  padding: 80px 0;
  background: white;
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.strategy-text h2 {
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.strategy-text p {
  margin-bottom: 2rem;
}

.strategy-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Orientations Section */
.orientations {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
}

.orientations h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.orientations-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.orientations-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.orientation-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.orientation-number {
  background: linear-gradient(135deg, #ffd700, #ffc107);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.orientation-content h3 {
  color: white;
  margin-bottom: 1rem;
}

.orientation-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Technology Section */
.technology {
  background: linear-gradient(135deg, #0f3460, #1a1a2e);
  background-image: url(../images/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.technology .container {
  position: relative;
  z-index: 1;
}

.technology h2 {
  color: white;
  margin-bottom: 2rem;
}

.technology p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}

.contact-info h2 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  padding: 40px 0;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer p {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.footer a {
  color: #4c544d;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
  display: block;
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .strategy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orientation-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-section a {
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.service-card,
.orientation-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional styling for better visual hierarchy */
.services,
.orientations,
.technology {
  position: relative;
}

.services .container,
.orientations .container {
  position: relative;
  z-index: 1;
}
