* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background-color: #2f4373;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: #f4b24d;
}

.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* HERO */
.hero {
  background-color: #eef1f5;
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 42px;
  color: #1c2c4c;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  color: #8a94a6;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-sub span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  color: #1c2c4c;
  letter-spacing: normal;
}

.hero-btn {
  display: inline-block;
  background-color: #4c5e8f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #3a4c7a;
}

/* SERVICES SECTION */
.services {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.services-text {
  max-width: 350px;
}

.services-text h2 {
  font-size: 42px;
  color: #1c2c4c;
  margin-bottom: 15px;
}

.services-sub {
  letter-spacing: 3px;
  color: #8a94a6;
  margin-bottom: 20px;
}

.services-desc {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-highlight {
  color: #2f4373;
  font-weight: 500;
  margin-bottom: 20px;
}

.services-btn {
  display: inline-block;
  background-color: #4c5e8f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.services-images {
  display: flex;
  gap: 25px;
}

.service-card {
  position: relative;
  width: 220px;
  height: 350px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 67, 115, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 0 10px;
}

/* INFO SECTION */
.info-section {
  padding: 70px 0;
  background-color: #f3f4f6;
}

.info-wrapper {
  width: 88%;
  max-width: 1120px;
  margin: 0 auto;
}

.info-line {
  width: 100%;
  height: 1px;
  background-color: #bfc3cc;
  margin-bottom: 55px;
}

.bottom-line {
  margin-top: 55px;
  margin-bottom: 0;
}

.info-title {
  max-width: 980px;
  margin: 0 auto 55px;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.12;
  font-weight: 300;
  color: #5b6480;
  letter-spacing: 0.5px;
}

.info-content {
  display: grid;
  grid-template-columns: 350px 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.info-box h3 {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #203c7a;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.info-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #7b7f8f;
  margin: 0;
}

.info-small {
  margin-bottom: 28px !important;
}

.info-contact {
  color: #4c5e8f !important;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px !important;
}

.info-btn {
  display: inline-block;
  background-color: #556aa3;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.info-btn:hover {
  background-color: #44578c;
}

/* WHAT WE DO */
.what-we-do {
  padding: 70px 0 80px;
  background-color: #f3f4f6;
}

.what-wrapper {
  width: 88%;
  max-width: 1120px;
  margin: 0 auto;
}

.what-title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 300;
  color: #5b6480;
  margin-bottom: 55px;
}

.what-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.what-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex: 1;
  min-width: 0;
}

.what-image {
  flex-shrink: 0;
}

.what-image img {
  width: 200px;
  height: 395px;
  object-fit: cover;
  display: block;
}

.what-content {
  flex: 1;
  min-width: 0;
}

.what-content h3 {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #203c7a;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.what-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #7b7f8f;
  margin: 0 0 16px;
}

.second-row {
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .info-title {
    font-size: 2.6rem;
  }

  .info-content {
    grid-template-columns: 320px 1fr 1fr;
    gap: 24px;
  }

  .info-image img {
    height: 310px;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 14px 0;
  }

  .logo img {
    height: 55px;
    width: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2f4373;
    padding: 0 6%;
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
  }

  .nav.active {
    max-height: 250px;
    padding: 12px 6% 14px;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav ul li {
    width: 100%;
  }

  .nav ul li a {
    display: block;
    width: 100%;
    font-size: 17px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .hero-image img {
    max-width: 230px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-sub span {
    font-size: 17px;
  }

  .services {
    padding: 60px 0;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
  }

  .services-text {
    max-width: 100%;
  }

  .services-text h2 {
    font-size: 34px;
  }

  .services-images {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 240px;
    height: 180px;
  }
}

@media (max-width: 900px) {
  .info-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-image img {
    max-width: 420px;
    height: auto;
    margin: 0 auto;
  }

  .info-box {
    text-align: center;
  }

  .info-line {
    margin-bottom: 35px;
  }

  .bottom-line {
    margin-top: 35px;
  }

  .what-title {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }

  .what-grid {
    flex-direction: column;
    gap: 35px;
  }

  .what-card {
    width: 100%;
  }

  .what-image img {
    width: 170px;
    height: 300px;
  }
}

/* FOOTER */
.footer {
  background-color: #2f3f63;
  padding: 50px 0;
}

/* CONTAINER */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* FORCE BALANCE */
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

/* LEFT (LOGO) */
.footer-left img {
  height: 80px;
}

/* CENTER (ADDRESS) */
.footer-center {
  text-align: center;
}

.footer-center p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* RIGHT (CONTACT) */
.footer-right {
  text-align: right;
  padding-right: 20px;
}

.footer-right p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-right {
    text-align: center;
    padding-right: 0;
  }
}

/* SERVICES PAGE OVERVIEW */
.services-overview {
  background-color: #f3f4f6;
  padding: 80px 0;
}

.services-overview-wrapper,
.services-details-wrapper {
  width: 88%;
  max-width: 1220px;
  margin: 0 auto;
}

.services-details-wrapper {
  margin-top: 70px;
}

/* TOP GRID */
.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 70px;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.overview-image,
.overview-content {
  flex: 1;
}

.overview-image {
  display: flex;
  justify-content: center;
}

.overview-image img {
  width: 290px;
  height: 290px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.overview-content h2 {
  font-size: 2.05rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 2px;
  color: #203c7a;
  margin-bottom: 22px;
}

.overview-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #7b7f8f;
  margin: 0;
}

/* DETAILS BLOCKS UNDER */
.details-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.details-item:last-child {
  margin-bottom: 0;
}

.details-image,
.details-content {
  flex: 1;
}

.details-image {
  display: flex;
  justify-content: center;
}

.details-image img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.details-content h2 {
  font-size: 2.1rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 2px;
  color: #203c7a;
  margin-bottom: 20px;
}

.details-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #7b7f8f;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-overview {
    padding: 60px 0;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-item,
  .details-item {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .overview-image img,
  .details-image img {
    width: 240px;
    height: 240px;
  }

  .overview-content,
  .details-content {
    max-width: 100%;
  }

  .overview-content h2,
  .details-content h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }

  .overview-content p,
  .details-content p {
    font-size: 0.98rem;
  }

  .services-details-wrapper {
    margin-top: 50px;
  }
}

/* ABOUT US PAGE */
.about-overview {
  background-color: #f3f4f6;
  padding: 80px 0;
}

.about-overview-wrapper {
  width: 88%;
  max-width: 1220px;
  margin: 0 auto;
}

.about-row {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 70px;
}

.about-title-box h1,
.about-title-box h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 300;
  color: #5b6480;
  margin-bottom: 20px;
}

.about-title-box p {
  color: #7c86a0;
  font-size: 1.05rem;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.about-text-box p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #7b7f8f;
  margin: 0 0 22px;
}

.proof-row {
  margin-bottom: 0;
}

.empty-box {
  min-height: 10px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 991px) {
  .about-overview {
    padding: 60px 0;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 50px;
  }

  .about-title-box,
  .about-text-box {
    text-align: center;
  }

  .about-title-box h1,
  .about-title-box h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
  }

  .about-title-box p {
    font-size: 0.95rem;
    letter-spacing: 5px;
  }

  .about-text-box p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .empty-box {
    display: none;
  }
}

/* CONTACT PAGE */
.contact-section {
  background-color: #f3f4f6;
  padding: 80px 0;
}

.contact-wrapper {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 3rem;
  font-weight: 300;
  color: #5b6480;
  margin-bottom: 50px;
}

/* GRID */
.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* CARD */
.contact-card {
  flex: 1;
  background-color: #ffffff;
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.contact-card h3 {
  font-size: 1.5rem;
  color: #203c7a;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.contact-card p {
  font-size: 1rem;
  color: #7b7f8f;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-title {
    font-size: 2.3rem;
  }
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: #f3f4f6;
  padding: 20px 0 80px;
}

.contact-form-wrapper {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
  color: #5b6480;
  margin-bottom: 40px;
}

.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  color: #203c7a;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #333;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #556aa3;
}

.full-width {
  margin-bottom: 25px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.submit-btn {
  background-color: #556aa3;
  color: #ffffff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #44578c;
}

.form-message {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.form-message.success {
  color: #1f8b4c;
}

.form-message.error {
  color: #c0392b;
}

.input-error {
  border-color: #c0392b !important;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-form-wrapper h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
