﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IvyOra Display', serif;
  color: #1a1a1a;
  font-weight: normal;
}

body {
  background-color: #000;
}

a {
  color: #DBDBDB;
  font-weight: normal;
  text-decoration: none;
  font-size: 1.2em;
  margin: 0 30px;
}

/* Navbar default styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  transition: background 0.3s ease;
}

/* Transparent navbar only for home page */
body.home-page .navbar {
  background: transparent;
}

/* Solid navbar for inner pages */
body.inner-page .navbar {
  background-color: #010E1A;
}

/* Color override for inner pages */
body.inner-page .navbar a,
body.inner-page .navbar .logo {
  color: #DBDBDB;
}

.logo {
  font-weight: normal;
  font-size: 25px;
  letter-spacing: 5px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.language-switcher a {
  font-size: 1.2em;
  opacity: 0.8;
  margin: 10px;
}

/*NEW PAGE -------- NEW PAGE*/

/*---------- HOME ----------*/

/*NEW PAGE -------- NEW PAGE*/

.hero {
  height: 100vh;
  background: url('hero.jpg') no-repeat center center/cover;
  display: flex;
  padding: 0 100px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.2));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3em;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 120px;
  margin-bottom: 20px;
  color: #DBDBDB;
}

.hero p {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 60px;
  color: #DBDBDB;
}

.hero button {
  padding: 18px 50px;
  border: 1px solid #DBDBDB;
  background: transparent;
  color: #DBDBDB;
  font-size: 1.2em;
  cursor: pointer;
}

.expertise-section {
  height: 100vh;
  background: url('expertisebg.jpg') no-repeat center center/cover;
  display: flex;
  padding: 0 100px;
  align-items: center;
  position: relative;
}

.expertise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.95));
  z-index: 0;
}

.expertise-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-content h2 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 300;
  text-align: center;
}

.expertise-subtitle {
  font-size: 1.2em;
  margin-bottom: 50px;
  opacity: 0.9;
  text-align: center;
}

.expertise-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .expertise-cards {
    flex-direction: row;
    justify-content: space-between;
  }
}

.expertise-card {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.expertise-card .number {
  font-size: 3.5em;
  margin-bottom: 10px;
  opacity: 0.5;
}

.expertise-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: 400;
}

.expertise-card p {
  font-size: 1.2em;
  line-height: 1.6;
  opacity: 0.85;
}

.learn-more-btn {
  display: block;
  margin: 50px auto 0 auto;
  padding: 18px 50px;
  border: 1px solid #DBDBDB;
  background: transparent;
  color: #DBDBDB;
  cursor: pointer;
  font-size: 1.2em;
}


/*NEW PAGE -------- NEW PAGE*/

/*-------- ABOUT US --------*/

/*NEW PAGE -------- NEW PAGE*/


.intro-section h1{
  font-weight: normal;
  margin-bottom: 50px;
}

.intro-section p{
  font-size: 1.2em;
}

.intro-section {
  display: flex;
  flex-wrap: wrap;
  padding: 15% 7%;
  align-items: center;
  gap: 2rem;
  background-color: white;
}

.intro-text {
  flex: 1 1 40%;
}

.intro-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro-image img {
  width: 100%;
  max-width: 600px;
}

.values-section {
  text-align: center;
  padding: 10% 10%;
  background: url('hero.jpg') center/cover no-repeat;
}

.values-section img {
  width: 100%;
  height: 100%;
}

.values-section h2 {
    color: #DBDBDB;
}

.values-section p {
    color: #DBDBDB;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
}

.value-box {
  width: 200px;
  height: 150px;
  border: 1px solid white;
  /*padding: 1rem;*/
  padding: 60px 0;
  text-align: center;
}

.value-wrapper {
  width: 200px;
  text-align: center;
  color: #DBDBDB;
}

.value-box h3 {
  margin: 0;
  color: #DBDBDB;
}

.value-wrapper p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #DBDBDB;
}


.team-section {
  padding: 5% 10%;
  background: #f9f9f9;
}

.team-member {
  display: flex;
  gap: 1rem;
  background: #e5e5e5;
  /*padding: 1rem;*/
  margin: 1rem 0;
}

.team-member img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.contact-section {
  display: flex;
  padding: 0% 10%;
  background: #DBDBDB;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch;
}

/* BOTH boxes will fill the same height */
.contact-info,
.contact-message {
  flex: 1 1 45%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

/* Specific background colors */
.contact-info {
  background-color: #DBDBDB;
}

.contact-message {
  background-color: #010E1A;
}

.contact-message p {
  color: #DBDBDB;
}

/*NEW PAGE -------- NEW PAGE*/

/*-------- SERVICE ---------*/

/*NEW PAGE -------- NEW PAGE*/






/*------------ FOOTER -------------*/

.site-footer {
  background-color: #000407;
  /*color: #fff;*/
  padding: 60px 20px 30px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 1.2em;
  /*font-weight: 500;*/
  margin-bottom: 20px;
  color: #DBDBDB;
}

.footer-col p,
.footer-col ul li a{
  font-size: 1.2em;
  line-height: 1.6;
  font-weight: normal;
  color: #DBDBDB;
  /*opacity: 0.85;*/
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  margin: auto;
  text-decoration: none;
  color: #DBDBDB;
  font-weight: normal;
  /*opacity: 0.85;*/
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 1.2em;
  color: #DBDBDB;
  font-weight: normal;
  /*opacity: 0.65;*/
}


/*---- in development */



.navbar.scrolled {
  background-color: #010E1A;
}

.navbar.scrolled a,
.navbar.scrolled .logo {
  color: #DBDBDB;
}



/* ------------------- */
/* Base / Global Styles */
/* ------------------- */

body {
  font-family: 'IvyOra Display', serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
}

header {
  padding: 2% 5%;
  background-color: #f9f9f9;
}

.content {
  padding: 5% 10%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------------------- */
/* Page-Specific Layouts */
/* ------------------- */

/* About Page Layout */
body.about-page .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3%;
}

/* Services Page Layout */
body.services-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 8%;
}

/* FAQ Page Layout */
body.faq-page .content {
  padding: 3% 20%;
  background-color: #f2f2f2;
}


/* ------------------- */
/* Page-Specific Layouts - Tables for Services & FAQ */
/* ------------------- */

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  margin: auto;
  width: 70%;
}

.table tr {
  border-top: border-bottom: 1px solid #ddd;
}

td, th {
  /*border: 1px solid #dddddd;*/
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 8px;
  color: #1a1a1a;
}