/*
Theme Name: Soley Tech Solutions
Theme URI: https://www.soleytechsolutions.com
Author: Soley Tech Solutions
Description: Custom bilingual cloud & DevSecOps theme for Soley Tech Solutions.
Version: 1.1
Text Domain: soleytech
*/

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0c0f1a;
  color: #ffffff;
  line-height: 1.6;
}

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

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

/* Header / Nav */

header {
  background: rgba(10, 15, 35, 0.7);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 99;
}

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

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

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right nav a {
  margin-left: 12px;
  color: #c7d4ff;
  transition: 0.3s;
  font-size: 0.95rem;
}

.nav-right nav a:hover {
  color: #00eaff;
}

.btn-nav {
  padding: 8px 15px;
  background: #00eaff;
  color: #000000 !important;
  border-radius: 5px;
}

/* Language toggle */
.lang-toggle {
  border: 1px solid #00eaff;
  background: transparent;
  color: #00eaff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(2,10,26,0.85), rgba(2,10,26,0.9)),
    url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1400&q=60');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 100px;
}

.hero.home-hero {
  min-height: 100vh;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  margin: 20px auto;
  max-width: 700px;
  font-size: 1.2rem;
  color: #e2e2e2;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary {
  padding: 12px 25px;
  background: #00eaff;
  color: #000000;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
}

.btn-outline {
  padding: 12px 25px;
  border: 2px solid #00eaff;
  color: #00eaff;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
}

/* Sections */
section {
  scroll-margin-top: 90px;
}

.services {
  padding: 80px 0;
  background: #0f1323;
}

.services.light-bg {
  background: #0c0f1a;
}

.services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #aab8e8;
  margin-bottom: 50px;
}

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

.service-card {
  background: #151a33;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #00eaff;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #1a2040;
}

.process {
  padding: 80px 0;
}

.process h2 {
  text-align: center;
}

.process-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.process-step {
  padding: 20px;
  background: #121728;
  border-radius: 8px;
  text-align: center;
}

.process-step span {
  font-size: 2rem;
  color: #00eaff;
  font-weight: 700;
}

.about {
  padding: 80px 0;
  background: #0f1323;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.about-box {
  background: #151a33;
  padding: 25px;
  border-radius: 10px;
}

.about-box ul {
  margin-top: 20px;
}

.about-box li {
  margin-bottom: 12px;
  color: #d5e2ff;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-grid form input,
.contact-grid form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #1a1f36;
  border: 1px solid #28304f;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1rem;
}

.contact-grid textarea {
  height: 120px;
}

.contact-grid form button {
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
}

/* Careers */
.careers {
  padding: 80px 0;
}

.career-card {
  background: #151a33;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Blog */
.blog {
  padding: 80px 0;
  background: #0f1323;
}

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

.blog-card {
  background: #151a33;
  padding: 20px;
  border-radius: 10px;
}

/* Portal */
.portal {
  padding: 80px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  background: #080b12;
  color: #7a8bb0;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-right nav {
    display: none;
  }
}

@media (max-width: 800px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

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