/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e2931;
  color: #e2e2e0;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 25px 7%;

  background: rgba(14, 41, 49, 0.95);

  backdrop-filter: blur(8px);

  z-index: 1000;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: #e2e2e0;
  font-size: 15px;
  opacity: 0.85;
  transition: 0.3s;
}

.menu a:hover {
  color: #2b7574;
}

.nav-cta {
  background: #861211;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}

/* HERO SECTION */

.hero {
  padding: 160px 7% 120px;

  display: flex;
  justify-content: center;
}

/* HERO CONTAINER */

.hero-box {
  width: 100%;
  max-width: 1200px;
  height: 520px;

  border-radius: 22px;

  background: linear-gradient(135deg, #12484c, #2b7574);

  position: relative;

  overflow: hidden;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* ABSTRACT SHAPES */

.hero-box::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  background: #0e2931;

  border-radius: 50%;

  top: -200px;
  right: -150px;

  opacity: 0.6;
}

.hero-box::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: #861211;

  border-radius: 50%;

  bottom: -220px;
  left: -180px;

  opacity: 0.35;
}

/* HERO TEXT */

.hero-overlay {
  position: absolute;

  top: 50%;
  left: 80px;

  transform: translateY(-50%);

  max-width: 480px;
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;

  font-size: 56px;

  line-height: 1.1;

  margin-bottom: 20px;
}

.hero-overlay span {
  border-bottom: 3px solid #861211;
}

.hero-overlay p {
  opacity: 0.85;

  line-height: 1.6;

  margin-bottom: 30px;
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-main {
  background: #861211;
  border: none;
  padding: 14px 28px;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid #e2e2e0;
  background: transparent;
  color: #e2e2e0;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero-box {
    height: 480px;
  }

  .hero-overlay {
    left: 40px;
  }

  .hero-overlay h1 {
    font-size: 42px;
  }
}

/* ========================= */
/*        ABOUT SECTION      */
/* ========================= */

.about {
  /* spacing for section */
  padding: 120px 7%;

  /* background color from palette */
  background: #0e2931;
}

/* container that holds left graphic and right content */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
}

/* ========================= */
/*     LEFT GRAPHIC BLOCK    */
/* ========================= */

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* decorative square shape */

.about-shape {
  width: 350px;
  height: 350px;

  /* gradient using palette colors */
  background: linear-gradient(135deg, #12484c, #2b7574);

  border-radius: 40px;

  position: relative;

  /* shadow for depth */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* circular accent shape */

.about-shape::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: #861211;

  border-radius: 50%;

  bottom: -60px;
  left: -60px;

  opacity: 0.5;
}

/* ========================= */
/*       RIGHT CONTENT       */
/* ========================= */

.about-right {
  flex: 1;
}

/* section heading */

.about-right h2 {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  margin-bottom: 20px;
}

/* about paragraph */

.about-text {
  opacity: 0.85;

  line-height: 1.7;

  margin-bottom: 40px;

  max-width: 500px;
}

/* ========================= */
/*         ABOUT CARDS       */
/* ========================= */

.about-cards {
  display: grid;

  /* 3 cards in a row */
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

/* individual card */

.about-card {
  background: #12484c;

  padding: 25px;

  border-radius: 12px;

  transition: 0.3s;
}

/* hover effect */

.about-card:hover {
  background: #2b7574;

  transform: translateY(-5px);
}

/* card title */

.about-card h3 {
  margin-bottom: 10px;
}

/* card text */

.about-card p {
  font-size: 14px;

  opacity: 0.85;
}
/* ============================= */
/*   FLOATING STATS IN GRAPHIC   */
/* ============================= */

.about-stat {
  position: absolute;

  background: rgba(0, 0, 0, 0.25);

  padding: 15px 20px;

  border-radius: 10px;

  backdrop-filter: blur(6px);

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-stat h3 {
  font-size: 20px;
  margin-bottom: 3px;
}

.about-stat p {
  font-size: 12px;
  opacity: 0.8;
}

/* positions */

.stat1 {
  top: 30px;
  left: 30px;
}

.stat2 {
  bottom: 40px;
  right: 40px;
}

.stat3 {
  top: 140px;
  right: 50px;
}

/* ========================= */
/*      WHY CHOOSE US        */
/* ========================= */

.why-us {
  padding: 120px 7%;

  background: #0e2931;

  text-align: center;
}

/* Heading */

.why-header {
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

.why-header h2 {
  font-family: "Playfair Display", serif;

  font-size: 40px;

  margin-bottom: 15px;
}

.why-header p {
  opacity: 0.85;
  line-height: 1.6;
}

/* Grid layout */

.why-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

/* Cards */

.why-card {
  background: #12484c;

  padding: 30px;

  border-radius: 14px;

  transition: 0.3s;
}

.why-card:hover {
  background: #2b7574;

  transform: translateY(-6px);
}

/* Icon */

.why-icon {
  font-size: 28px;

  margin-bottom: 15px;
}

/* Card title */

.why-card h3 {
  margin-bottom: 10px;
}

/* Card text */

.why-card p {
  font-size: 14px;

  opacity: 0.85;

  line-height: 1.5;
}
/* ========================= */
/*        SERVICES           */
/* ========================= */

.services {
  padding: 120px 7%;

  background: #0e2931;

  text-align: center;
}

/* Heading */

.services-header {
  max-width: 650px;

  margin: auto;

  margin-bottom: 60px;
}

.services-header h2 {
  font-family: "Playfair Display", serif;

  font-size: 40px;

  margin-bottom: 15px;
}

.services-header p {
  opacity: 0.85;

  line-height: 1.6;
}

/* Grid */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* Card */

.service-card {
  background: #12484c;

  padding: 35px;

  border-radius: 16px;

  transition: 0.3s;

  text-align: left;
}

.service-card:hover {
  background: #2b7574;

  transform: translateY(-6px);
}

/* Icon */

.service-icon {
  font-size: 30px;

  margin-bottom: 15px;

  color: #e2e2e0;
}

/* Title */

.service-card h3 {
  margin-bottom: 10px;
}

/* Text */

.service-card p {
  font-size: 14px;

  opacity: 0.85;

  line-height: 1.5;
}

/* ========================= */
/*        CONTACT US         */
/* ========================= */

.contact{

padding:120px 7%;
background:#0E2931;

}


/* Section Heading */

.contact-header{

text-align:center;
max-width:650px;
margin:auto;
margin-bottom:60px;

}

.contact-header h2{

font-family:"Playfair Display",serif;
font-size:40px;
margin-bottom:15px;

}

.contact-header p{

opacity:.85;
line-height:1.6;

}


/* Contact Grid */

.contact-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-bottom:60px;

}


/* Contact Cards */

.contact-card{

background:#12484C;
padding:35px;
border-radius:16px;
transition:0.3s;

}

.contact-card:hover{

background:#2B7574;
transform:translateY(-6px);

}

.contact-card h3{

margin-bottom:15px;

}

.contact-card p{

line-height:1.6;
margin-bottom:20px;
opacity:.9;

}


/* Email Button */

.contact-btn{

display:inline-block;
background:#861211;
padding:10px 22px;
border-radius:6px;
color:white;
text-decoration:none;
font-size:14px;

}

.contact-btn:hover{

opacity:.85;

}


/* Google Map */

.map-container iframe{

width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.4);

}
/* ========================= */
/*           FOOTER          */
/* ========================= */

.footer{

background:#0B2228;

padding-top:80px;

}


/* Footer container */

.footer-container{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:40px;

padding:0 7% 60px;

}


/* About */

.footer-about h3{

font-family:"Playfair Display",serif;
font-size:24px;
margin-bottom:15px;

}

.footer-about p{

opacity:.8;
line-height:1.6;

}


/* Links */

.footer-links h4{

margin-bottom:15px;

}

.footer-links ul{

list-style:none;

}

.footer-links li{

margin-bottom:8px;

}

.footer-links a{

text-decoration:none;
color:#E2E2E0;
opacity:.8;

}

.footer-links a:hover{

color:#2B7574;

}


/* Contact */

.footer-contact h4{

margin-bottom:15px;

}

.footer-contact p{

opacity:.8;
line-height:1.6;
margin-bottom:10px;

}


/* Bottom bar */

.footer-bottom{

border-top:1px solid rgba(255,255,255,0.05);

text-align:center;

padding:20px;

font-size:14px;

opacity:.8;

}