@font-face {
  font-family: "Inter Regular";
  src: url("../fonts/Inter-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Inter Medium";
  src: url("../fonts/Inter-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Inter Bold";
  src: url("../fonts/Inter-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Cormorant Regular";
  src: url("../fonts/CormorantGaramond-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Cormorant Bold";
  src: url("../fonts/CormorantGaramond-SemiBold.ttf");
  font-weight: 600;
}
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background-color: #0c4d73;
}
.header-area .navbar-brand {
  gap: 14px;
}
.header-area .logo-box {
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .logo-box img {
  width: 100%;
}
.header-area .nav-item {
  margin-left: 42px;
}
.header-area .nav-link {
  padding: 0 !important;
  color: #d8ebf7;
  font-size: 13px;
  font-weight: 900;
  transition: 0.3s;
}
.header-area .nav-link:hover {
  color: #d2b07a;
}
.header-area .contact-btn {
  padding: 8px 24px;
  border-radius: 999px;
  background: #d2b07a;
  color: #d8ebf7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.header-area .contact-btn:hover {
  background: #0c3f5f;
  color: #fff;
}

.footer-area {
  background: #0c4d73;
  padding: 95px 0 40px;
}
.footer-area .footer-brand {
  margin-bottom: 10px;
  gap: 14px;
}
.footer-area .footer-brand .logo-box {
  width: 150px;
}
.footer-area .footer-brand .logo-box img {
  width: 100%;
}
.footer-area p {
  color: #d8ebf7;
  line-height: 2;
  max-width: 360px;
  font-size: 13px;
}
.footer-area h5 {
  color: #0c4d73;
  font-size: 11px;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
  font-weight: 700;
}
.footer-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area li {
  margin-bottom: 18px;
  color: #d8ebf7;
  font-size: 12px;
  font-weight: 500;
}
.footer-area li .fa {
  font-size: 16px;
  margin-right: 10px;
  color: #d2b07a;
}
.footer-area a {
  color: #d8ebf7;
}
.footer-area a:hover {
  color: #d2b07a;
}
.footer-area .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  height: 40px;
  text-align: center;
}
.footer-area .socials a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e6ebef;
  background-color: #d8ebf7;
  color: #0c4d73;
  display: block;
  padding-top: 10px;
}
.footer-area .footer-bottom {
  border-top: 1px solid #edf1f5;
  margin-top: 70px;
  padding-top: 28px;
}
.footer-area .copyright {
  color: #9aa3ac;
  font-size: 13px;
}
.footer-area .bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.footer-area .bottom-links a {
  color: #9aa3ac;
  font-size: 12px;
  letter-spacing: 0.7px;
  font-weight: 700;
}

.hero-area {
  position: relative;
  padding: 150px 0 120px;
  background: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-area .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(248, 248, 246, 0.92), rgba(248, 248, 246, 0.72));
  opacity: 0.95;
}
.hero-area .hero-row {
  min-height: 760px;
}
.hero-area .hero-content {
  position: relative;
  z-index: 2;
  padding-right: 60px;
}
.hero-area .hero-badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e9f3fb;
  color: #4b96c6;
  font-size: 11px;
  letter-spacing: 0.3px;
  font-weight: 700;
  margin-bottom: 34px;
}
.hero-area .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -5px;
  color: #123f5d;
  margin-bottom: 34px;
  font-weight: 500;
}
.hero-area .hero-title span {
  display: block;
  color: #d3b07a;
  font-style: italic;
  font-weight: 400;
}
.hero-area .hero-description {
  font-family: "Inter", serif;
  max-width: 470px;
  color: #68737d;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 46px;
}
.hero-area .hero-buttons {
  gap: 34px;
}
.hero-area .btn-primary-custom {
  padding: 16px 34px;
  border-radius: 18px;
  background: #0f4d73;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(15, 77, 115, 0.16);
}
.hero-area .btn-primary-custom:hover {
  color: #fff;
  background: #0b3f5f;
}
.hero-area .vision-link {
  color: #243748;
  font-size: 15px;
  font-weight: 600;
}
.hero-area .hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 610px;
  max-height: 610px;
  margin-left: auto;
  z-index: 100;
}
.hero-area .hero-image {
  width: 100%;
  height: 610px;
  border-radius: 34px;
  background-image: url("../img/bg.jpg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-area .quality-card {
  position: absolute;
  left: -18px;
  bottom: -26px;
  width: 250px;
  height: 90px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.hero-area .quality-card .quality-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d8ebf7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #504d49;
  font-size: 14px;
}
.hero-area .quality-card .quality-icon svg {
  width: 16px;
  fill: #d2b07a;
}
.hero-area .quality-card span {
  display: block;
  color: #9ca6b0;
  font-size: 8px;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  font-weight: 900;
}
.hero-area .quality-card h5 {
  color: #123f5d;
  font-size: 12px;
  margin: 0;
  font-family: "Inter", serif;
  font-weight: 600;
}

.about-area {
  padding: 120px 0 135px;
  background: #fff;
}
.about-area .row {
  align-items: center;
}
.about-area .about-images {
  display: flex;
  align-items: flex-end;
  gap: 26px;
}
.about-area .about-images img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  width: 265px;
  height: 265px;
  transform: translateY(-25%);
}
.about-area .about-images .img-left {
  transform: translateY(25%);
}
.about-area .about-content {
  padding-left: 50px;
}
.about-area .about-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: #123f5d;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.about-area .about-content h2 {
  font-family: "Cormorant Garamond", serif;
  color: #d3b07a;
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 34px;
  font-style: italic;
  font-weight: 400;
}
.about-area .about-content p {
  color: #5e6872;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 26px;
  max-width: 600px;
}
.about-area .stats-wrapper {
  display: flex;
  gap: 95px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #edf1f5;
}
.about-area .single-stat h4 {
  color: #0f4d73;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}
.about-area .single-stat span {
  color: #98a2ab;
  font-size: 10px;
  letter-spacing: 0.9px;
  font-weight: 900;
}

.features-area {
  background: #eef5fa;
  padding: 125px 0 135px;
}
.features-area .section-heading {
  margin-bottom: 72px;
}
.features-area .section-heading h2 {
  font-family: "Inter", serif;
  letter-spacing: 0;
  color: #123f5d;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 700 !important;
}
.features-area .section-heading p {
  max-width: 620px;
  margin: auto;
  color: #74808a;
  font-size: 14px;
  line-height: 1.9;
}
.features-area .feature-card {
  background: #fff;
  border-radius: 30px;
  min-height: 285px;
  padding: 42px 38px;
}
.features-area .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #d8ebf7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #0f4d73;
}
.features-area .feature-icon svg {
  width: 18px;
  fill: #0c4d73;
}
.features-area .feature-card h4 {
  font-family: "Inter", serif;
  color: #123f5d;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 900;
}
.features-area .feature-card p {
  color: #69747e;
  line-height: 2;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.portfolio-area {
  padding: 125px 0 130px;
  background: #fff;
}
.portfolio-area .portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.portfolio-area .portfolio-top span {
  display: block;
  color: #d3b07a;
  font-size: 11px;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  font-weight: 700;
}
.portfolio-area .portfolio-top h2 {
  font-family: "Cormorant Garamond", serif;
  color: #123f5d;
  font-size: 38px;
  line-height: 1;
  margin: 0;
}
.portfolio-area .portfolio-top a {
  color: #0f4d73;
  font-size: 15px;
  font-weight: 700;
}
.portfolio-area .portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 520px;
}
.portfolio-area .portfolio-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-area .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 28, 45, 0.92), rgba(6, 28, 45, 0.18));
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-area .portfolio-overlay small {
  color: #d3b07a;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}
.portfolio-area .portfolio-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 600;
}
.portfolio-area .portfolio-overlay p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 28px;
}
.portfolio-area .portfolio-overlay a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.portfolio-area .portfolio-overlay a:hover {
  background-color: rgb(255, 255, 255);
  color: #0c4d73;
  transition: linear 0.1s;
}

.newsletter-area {
  background: #f5f7fa;
  padding: 130px 0;
}
.newsletter-area h2 {
  font-family: "Cormorant Garamond", serif;
  color: #123f5d;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 26px;
}
.newsletter-area p {
  color: #79838d;
  max-width: 700px;
  margin: 0 auto 42px;
  line-height: 1.9;
  font-size: 14px;
}
.newsletter-area .newsletter-form {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.newsletter-area .newsletter-form input {
  width: 410px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid #e6edf3;
  background: #fff;
  padding: 0 24px;
  outline: none;
  font-size: 15px;
}
.newsletter-area .newsletter-form button {
  width: 170px;
  height: 64px;
  border: none;
  border-radius: 16px;
  background: #d3b07a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .hero-area .hero-title {
    font-size: 78px;
  }
  .about-area .about-content {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-area {
    padding: 140px 0 100px;
  }
  .hero-area .hero-row {
    min-height: auto;
  }
  .hero-area .hero-content {
    padding-right: 0;
    margin-bottom: 70px;
  }
  .hero-area .hero-title {
    font-size: 72px;
  }
  .hero-area .hero-image-wrapper {
    max-width: 100%;
  }
  .about-area .about-content {
    padding-left: 0;
    margin-top: 60px;
  }
  .portfolio-area .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header-area .nav-item {
    margin-left: 0;
    margin-top: 18px;
  }
  .hero-area .hero-title {
    font-size: 58px;
    line-height: 0.98;
  }
  .hero-area .hero-image {
    height: 500px;
  }
  .hero-area .quality-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 24px;
  }
  .about-area .about-images {
    flex-direction: column;
  }
  .about-area .about-images img, .about-area .about-images .img-left {
    transform: translateY(0);
  }
  .about-area .about-images img {
    width: 100% !important;
    height: 260px !important;
  }
  .about-area .stats-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .features-area .section-heading h2,
.portfolio-area .portfolio-top h2,
.newsletter-area h2 {
    font-size: 48px;
  }
  .portfolio-area .portfolio-overlay h3 {
    font-size: 40px;
  }
  .newsletter-form input {
    width: 100%;
  }
  .bottom-links {
    justify-content: flex-start !important;
    margin-top: 18px;
  }
}
.about-hero {
  padding-top: 150px;
  background: #F8F6F2;
}

.section-label {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #0c4d73;
  font-weight: 700;
}

.about-description {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(45, 43, 46, 0.72);
}

/* ======================================== */
/* ABOUT VISION */
/* ======================================== */
.about-vision {
  padding: 140px 0;
}

.about-images {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.about-image {
  width: 400px;
  height: 260px;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.about-content {
  padding-left: 60px;
}
.about-content h2 {
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  line-height: 1.05;
  color: #0c4d73;
}
.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(45, 43, 46, 0.72);
}

.vision-point {
  padding: 14px 0;
  border-bottom: 1px solid rgba(45, 43, 46, 0.08);
  font-size: 15px;
}

/* ======================================== */
/* GALLERY */
/* ======================================== */
.about-gallery {
  padding-bottom: 140px;
}

.gallery-card {
  position: relative;
}
.gallery-card img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-card-large img {
  height: 860px;
}

.gallery-content {
  position: relative;
}
.gallery-content span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}
.gallery-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: #0c4d73;
  font-size: 24px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f7f5;
  color: #5d6670;
  font-family: "Inter", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */