/* Main CSS Styles */

/* Body and General */
body {
  font-family: 'Questrial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo-area img {
  max-width: 150px;
}

.template-main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.template-main-menu li {
  position: relative;
  margin: 0 15px;
}

.template-main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.template-main-menu a:hover {
  color: #04799e;
}

.template-main-menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-width: 200px;
}

.template-main-menu li:hover > ul {
  display: block;
}

.template-main-menu ul ul li {
  margin: 0;
  display: block;
}

.template-main-menu ul ul a {
  padding: 10px;
  display: block;
}

/* Scroll Up */
.scrollup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #04799e;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

.scrollup:hover {
  background: #035a7a;
}

/* Slider */
.slider-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-area .bend {
  position: relative;
  height: 100%;
}

/* Sections */
section {
  padding: 60px 0;
}

.contact-section {
  padding: 60px 0;
}

.contact-form {
  max-width: 500px;
  margin: 30px auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #04799e;
  box-shadow: 0 0 5px rgba(4, 121, 158, 0.3);
}

.form-button {
  background: #04799e;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.form-button:hover {
  background: #035a7a;
}

.service-wrap-layout1 {
  background: #f8f9fa;
}

.service-wrap-layout1 h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.service-wrap-layout1 p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.service-wrap-layout1 .row .col-lg-3 h3 {
  font-size: 1.5em;
  color: #04799e;
}

/* Service Cards */
.service_box .col-lg-4 {
  text-align: center;
  margin-bottom: 30px;
}

.service_box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.service_box h3 {
  font-size: 1.3em;
}

.service_box a {
  text-decoration: none;
  color: #333;
}

/* Business Objectives */
section h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

section .col-lg-3 {
  text-align: center;
  margin-bottom: 30px;
}

section img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Clients */
.brand-wrap-layout2 img {
  max-width: 150px;
  margin: 0 20px 20px 0;
}

/* CTA */
section[style*="background:#04799e"] h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

section[style*="background:#04799e"] p {
  font-size: 1.2em;
}

/* Contact */
section .container h2 {
  text-align: center;
  margin-bottom: 30px;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: #04799e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #035a7a;
}

/* Responsive */
@media (max-width: 768px) {
  .template-main-menu ul {
    flex-direction: column;
  }
  .col-lg-3, .col-lg-4 {
    margin-bottom: 20px;
  }
}