.elementor-576 .elementor-element.elementor-element-230e829{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-da35fcc *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffff;
  color: #111;
}

/* HERO (WHITE) */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: #fff;
  color: #111;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 15px 0;
  font-size: 20px;
  color: #444;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #333;
}

/* SECTION */
section {
  padding: 80px 20px;
  text-align: center;
  background: #ffff;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* ABOUT */
.about p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #444;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 15px;
}

.card button {
  padding: 10px 18px;
  border: none;
  background: black;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.card button:hover {
  background: #333;
}

/* WORK */
.buttons .btn {
  margin: 10px;
}

/* OPPORTUNITIES */
.opportunities li {
  margin: 12px 0;
  font-size: 17px;
}

/* CONTACT */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input,
form select,
form textarea {
  margin: 12px 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

form textarea {
  min-height: 120px;
}

form button {
  padding: 14px;
  background: black;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

form button:hover {
  background: #333;
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: black;
  color: white;
  padding: 15px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }
}/* End custom CSS */