* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cabin", sans-serif;
}

html,body{
  overflow-x:hidden;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  /* background: 
    linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url('images/1.jpg') center/cover no-repeat; */
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NAVBAR */
.navbar {
  position: fixed;   /* changed from absolute */
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: #1f2732;
}

.logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 2px;
}

.logo span {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b3c;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.3s;
}

nav a:hover {
  color: #c89b3c;
}


/* HERO CONTENT */
/* .hero-content {
  max-width: 800px;
  margin-left: 120px;
} */

.sub-text {
  color: #c89b3c;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 25px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 1.1;
}

.hero h1 span {
  color: #c89b3c;
  font-style: italic;
}

.description {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.9;
}

.underline {
  width: 80px;
  height: 2px;
  background: #c89b3c;
  margin-top: 25px;
}

/* Scroll Text */
.scroll-text {
  position: absolute;
  right: 40px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-text span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 5px;
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width:768px){

.hero-content{
  margin-left:25px;
  margin-right:25px;
}

.hero h1{
  font-size:42px;
}

.description{
  font-size:15px;
}

.slider-arrow.left{
  left:10px;
}

.slider-arrow.right{
  right:10px;
}

}

@media (max-width:1024px){

.hero h1{
  font-size:60px;
}

.hero-content{
  margin-left:70px;
}

nav ul{
  gap:25px;
}

}

/* ================= WHO WE ARE ================= */

.who-we-are {
  background: #f3f1ee;
  padding: 120px 0;
}

.container {
  width: 85%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

@media (max-width:1024px){
  .container{
    flex-direction:column;
    gap:40px;
    width:90%;
  }
}

/* LEFT SIDE */

.section-subtitle {
  color: #c89b3c;
  letter-spacing: 5px;
  font-size: 18px;
  margin-bottom: 25px;
}

.who-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  color: #1d1f23;
}

.who-content h2 span {
  color: #c89b3c;
  font-style: italic;
}

.titles-line {
  width: 70px;
  height: 2px;
  background: #c89b3c;
  margin: 30px 0;
}

.who-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #6d6f73;
  margin-bottom: 25px;
  max-width: 600px;
}

/* RIGHT SIDE IMAGE */

.who-image {
  position: relative;
}

.who-image img{
  width:100%;
  height:auto;
  max-width:500px;
}

/* EXPERIENCE BOX */

.experience-box {
  position: absolute;
  bottom: 40px;
  left: -60px;
  background: #b8832f;
  padding: 40px 60px;
  color: white;
}

.experience-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
}

.experience-box span {
  font-size: 12px;
  letter-spacing: 4px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .who-image img {
    width: 100%;
    height: 500px;
  }

  .experience-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }
}

/* ================= TABLET ================= */

@media (max-width:1024px){

  .who-content h2{
    font-size:48px;
  }

  .who-content p{
    font-size:17px;
  }

  .experience-box h3{
    font-size:40px;
  }

}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .who-we-are{
    padding:80px 0;
  }

  .who-content h2{
    font-size:42px;
  }

  .who-content p{
    font-size:16px;
  }

  .titles-line{
    margin:20px auto;
  }

  .experience-box{
    padding:25px 40px;
  }

  .experience-box h3{
    font-size:34px;
  }

}

/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

  .who-content h2{
    font-size:36px;
  }

  .section-subtitle{
    font-size:16px;
    letter-spacing:3px;
  }

  .who-content p{
    font-size:15px;
    line-height:1.7;
  }

  .experience-box{
    padding:20px 30px;
  }

  .experience-box h3{
    font-size:30px;
  }

}

/* ===== Founder Section ===== */

.founder-section {
  background-color: #1c2430;   /* deeper navy like screenshot */
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.founder-container {
  max-width: 880px;
  margin: 0 auto;
}

/* Top small heading */
.founder-label {
  color: #c6a04a;              /* softer gold */
  font-size: 18px;
  letter-spacing: 5px;
  display: block;
  margin-bottom: 50px;
}

/* Big Quote */
.founder-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.75;
  color: #f2f2f2;
  margin-bottom: 50px;
}

/* Gold divider line */
.founder-line {
  width: 70px;
  height: 1px;
  background: #c6a04a;
  margin: 0 auto 50px auto;
}

/* Description */
.founder-text {
  /* font-family: "Playfair Display", serif;
    font-style: italic; */
  font-size: 20px;
  line-height: 1.9;
  color: #555;             /* soft grey like screenshot */
  max-width: 760px;
  margin: 0 auto 30px;
}

/* .founder-texts {
  font-family: "Playfair Display", serif;
    font-style: italic;
  font-size: 18px;
  line-height: 1.9;
  color: #b9c0c9;        
  max-width: 760px;
  margin: 0 auto 10px;
} */

/* Name */
.founder-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #c6a04a;
  margin-bottom: 12px;
}

/* Role */
.founder-role {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8f98a3;
}

/* ===== Mission Vision Section ===== */

.mv-section {
  background: #f3f1ee;  /* soft beige */
  padding: 120px 20px;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 235px;
  position: relative;
}

/* Vertical Divider */
.mv-container::before {
  /* content: ""; */
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ddd6c8;
  transform: translateX(-50%);
}

/* Column */
.mv-col {
  max-width: 480px;
}

/* Small Label */
.mv-label {
  font-size: 18px;
  letter-spacing: 4px;
  color: #c48b2a;
  display: block;
  /* margin-bottom: 30px; */
}

/* Title */
.mv-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #0e1a2b;
  margin-bottom: 20px;
}

/* Gold Italic Word */
.highlight {
  font-style: italic;
  color: #c48b2a;
}

/* Small underline */
.mv-line {
  width: 60px;
  height: 2px;
  background: #c48b2a;
  margin: 20px 0 30px;
}

/* Paragraph */
.mv-text {
  font-size: 18px;
  line-height: 1.9;
  color: #6f7a85;
}

@media (max-width: 992px) {
  .mv-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mv-container::before {
    display: none;
  }
}

/* RESPONSIBILITIES SECTION */
.benchmark-method .mv-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benchmark-method .mv-col{
    max-width: 100%;
}

/* Tablet */
@media (max-width: 991px){

    .benchmark-method .mv-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

/* Mobile */
@media (max-width: 767px){

    .benchmark-method .mv-container{
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/* Pillars Section */

.foundation-section{
    background:#E6E1DA;
    padding:120px 0;
}

/* Header */

.foundation-header{
    text-align:center;
    margin-bottom:60px;
}

.foundation-sub{
    letter-spacing:5px;
    font-size:18px;
    color:#c28a2b;
    margin-bottom:20px;
}

.foundation-title{
    font-family: "Playfair Display", serif;
    font-size:58px;
    font-weight:400;
}

.foundation-title span{
    color:#c28a2b;
    font-style:italic;
    font-family:serif;
}

.title-line{
    width:60px;
    height:2px;
    background:#c28a2b;
    margin:20px auto 0;
}

/* GRID */

.foundation-grid{
    width:75%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

/* CARD */

.card{
    background:#efefef;
    padding:50px 40px;
    border:1px solid #d8d8d8;
}

.card h3{
    font-family: "Playfair Display", serif;
    font-size:22px;
    margin:15px 0;
    color: #c28a2b;
}

.card p{
    font-size:15px;
    line-height:1.7;
    color:#555;
}

.icon{
    color:#c28a2b;
    font-size:14px;
}

.card.dark p{
    color:#d0d0d0;
}

.card:hover{
    background:#1f2530;
    color:#fff;
}

.card:hover p{
    color:#dadada;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.foundation-grid{
    width:90%;
    grid-template-columns:repeat(2,1fr);
}

.foundation-title{
    font-size:48px;
}

.card{
    padding:40px 30px;
}

.card h3{
    font-size:20px;
}

.card p{
    font-size:14px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.foundation-section{
    padding:90px 0;
}

.foundation-grid{
    grid-template-columns:1fr;
    width:90%;
}

.foundation-title{
    font-size:42px;
}

.foundation-sub{
    font-size:16px;
    letter-spacing:3px;
}

.card{
    padding:35px 25px;
}

.card h3{
    font-size:19px;
}

.card p{
    font-size:14px;
    line-height:1.6;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.foundation-title{
    font-size:36px;
}

.card{
    padding:30px 22px;
}

.card h3{
    font-size:18px;
}

.card p{
    font-size:13.5px;
}

}

/* What we do Section */

.construction-section{
    padding: 80px 0 0 0;
    background:#f5f5f5;
}

.section-header{
    width:90%;
    margin:auto;
    margin-bottom:50px;
}

.small-title{
    letter-spacing:3px;
    font-size:18px;
    color:#c58a2a;
    margin-bottom:10px;
}

.section-header h2{
    font-family: "Playfair Display", serif;
    font-size:58px;
    font-weight:500;
    color:#1d2736;
}

.section-header h2 span{
    color:#c58a2a;
    font-style:italic;
}

.line{
    width:60px;
    height:2px;
    background:#c58a2a;
    margin-top:20px;
}

.construction-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
}

.construction-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.construction-content{
    background:#1d2736;
    color:#fff;
    padding:70px;
}

.sub-title{
    font-size:14px;
    letter-spacing:3px;
    color:#c58a2a;
    margin-bottom:10px;
}

.construction-content h3{
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-size:34px;
    margin-bottom:20px;
}

.description{
    color:#bfc7d5;
    line-height:1.7;
    margin-bottom:30px;
}

.services{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.services ul{
    list-style:none;
    padding:0;
}

.services li{
    position:relative;
    padding-left:18px;
    margin-bottom:12px;
    color: #bfc7d5;
    font-size: 15px;
}

.services li::before{
    content:"▪";
    color:#c58a2a;
    position:absolute;
    left:0;
}

/* Second grid reverse layout */
.reverse-grid{
    grid-template-columns:1fr 1fr;
}

/* Light content style */
.construction-content.light{
    background:#f5f5f5;
    color:#1d2736;
}

.construction-content.light .description{
    color:#6c757d;
}

.construction-content.light .services li{
    color:#6c757d;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.section-header h2{
    font-size:48px;
}

.construction-content{
    padding:50px;
}

.construction-content h3{
    font-size:30px;
}

.services{
    gap:25px;
}

.services li{
    font-size:14px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.construction-grid,
.reverse-grid{
    grid-template-columns:1fr;
}

.construction-image img{
    height:350px;
}

.construction-content{
    padding:40px 30px;
}

.section-header{
    width:90%;
}

.section-header h2{
    font-size:42px;
}

.small-title{
    font-size:16px;
    letter-spacing:2px;
}

.construction-content h3{
    font-size:26px;
}

.description{
    font-size:14px;
}

.services{
    grid-template-columns:1fr;
    gap:15px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.section-header h2{
    font-size:36px;
}

.construction-content{
    padding:30px 22px;
}

.construction-content h3{
    font-size:24px;
}

.description{
    font-size:13.5px;
}

.services li{
    font-size:13px;
}

.construction-image img{
    height:260px;
}

}

@media (max-width:768px){

/* Stack layout */
.construction-grid,
.reverse-grid{
    grid-template-columns:1fr;
}

/* Image always on top */
.construction-image{
    order:1;
}

.construction-content{
    order:2;
}

} 

/* ===== Commitment Section ===== */

.commitment-section{
  position: relative;
  background: url("../images/4.jpg") center/cover no-repeat;
  padding: 140px 0;
  color: #fff;
}

/* Overlay */
.commitment-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 23, 34, 0.85) 0%, rgba(16, 23, 34, 0.75) 35%, rgb(16 23 34 / 55%) 60%, rgb(16 23 34 / 60%) 100%);
}

/* Container */
.commitment-container{
  position: relative;
  width: 96%;
  margin: auto;
  padding: 0 40px;
}

/* Label */
.commitment-label{
  font-size: 18px;
  letter-spacing: 4px;
  color: #c89b3c;
  display: block;
  margin-bottom: 25px;
}

/* Title */
.commitment-title{
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Gold Italic Line */
.commitment-title span{
  color: #c89b3c;
  font-style: italic;
}

/* Underline */
.commitment-line{
  width: 70px;
  height: 2px;
  background: #c89b3c;
  margin: 25px 0 30px;
}

/* Paragraph */
.commitment-container p{
  max-width: 650px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.commitment-section{
  padding:110px 0;
}

.commitment-title{
  font-size:48px;
}

.commitment-container p{
  font-size:17px;
  max-width:600px;
}

.commitment-label{
  font-size:16px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.commitment-section{
  padding:90px 0;
}

.commitment-container{
  padding:0 25px;
}

.commitment-title{
  font-size:42px;
}

.commitment-line{
  margin:20px 0 25px;
}

.commitment-container p{
  font-size:16px;
  line-height:1.7;
}

.commitment-label{
  font-size:15px;
  letter-spacing:3px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.commitment-section{
  padding:70px 0;
}

.commitment-title{
  font-size:34px;
  line-height:1.3;
}

.commitment-container p{
  font-size:15px;
}

.commitment-label{
  font-size:14px;
  letter-spacing:2px;
}

.commitment-line{
  width:55px;
}

}

/* CLIENT SECTION */

.client-section{
background:#E6E1DA;
padding:120px 0;
text-align:center;
}

.client-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Label */

.client-label{
letter-spacing:4px;
font-size:18px;
color:#c89b3c;
margin-bottom:15px;
}

/* Title */

.client-title{
font-family:'Playfair Display',serif;
font-size:58px;
font-weight:400;
color:#111;
margin-bottom:10px;
}

.client-title span{
color:#c89b3c;
font-style:italic;
}

/* underline */

.client-line{
width:60px;
height:2px;
background:#c89b3c;
margin:20px auto 30px auto;
}

/* description */

.client-description{
max-width:600px;
margin:auto;
color:#6b6b6b;
line-height:1.7;
margin-bottom:70px;
}

/* GRID */

/* .client-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
border:1px solid #cfc7bc;
} */

@media (max-width:768px){
  .client-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* boxes */

.client-box{
padding:40px 20px;
background:#efefef;
border-right:1px solid #cfc7bc;
border-bottom:1px solid #cfc7bc;
font-size:15px;
color:#6b6b6b;
transition:0.35s ease;
display:flex;
align-items:center;
justify-content:center;
}

/* remove right border last column */

.client-box:nth-child(5n){
border-right:none;
}

/* hover */

/* .client-box:hover{
background:#1d2736;
color:#fff;
} */

/* FOOTER */

.footer{
background:#1d2736;
color:#cfcfcf;
padding:90px 0 40px 0;
/* font-family:'Inter',sans-serif; */
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:80px;
}

/* LOGO */

.footer-logo{
font-family:'Playfair Display',serif;
font-size:40px;
color:#ffffff;
margin-bottom:10px;
}

/* subtitle */

.footer-subtitle{
color:#c89b3c;
letter-spacing:3px;
font-size:13px;
margin-bottom:25px;
}

/* text */

.footer-text{
max-width:380px;
line-height:1.8;
color:#aab2bb;
}

/* headings */

.footer-contact h4,
.footer-links h4{
color:#c89b3c;
letter-spacing:3px;
font-size:14px;
margin-bottom:25px;
}

/* lists */

.footer-contact ul,
.footer-links ul{
list-style:none;
padding:0;
}

.footer-contact li{
margin-bottom:15px;
color:#cfcfcf;
}

.footer-links li{
margin-bottom:15px;
}

.footer-links a{
text-decoration:none;
color:#cfcfcf;
transition:0.3s;
}

.footer-links a:hover{
color:#c89b3c;
}

/* divider */

.footer-divider{
border-top:1px solid rgba(255,255,255,0.08);
margin:70px auto 30px auto;
max-width:1200px;
}

/* bottom row */

.footer-bottom{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
color:#9ca6b1;
}

.footer-bottom span{
color:#9ca6b1;
}

/* Slider */

/* .hero{
  height:100vh;
  position:relative;
  overflow:hidden;
} */

.hero-slider{
  position:relative;
  height:100%;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  opacity:0;
  transition:opacity 1s ease;
}

.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgb(0 0 0 / 48%), rgba(0, 0, 0, 0.7));
}

.slide.active{
  opacity:1;
  z-index:1;
}

.hero-content{
  position:relative;
  margin-left:120px;
  max-width:800px;
  color:white;
}

@media (max-width:768px){
  .hero-content{
    margin-left:20px;
    margin-right:20px;
  }
}

.slider-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.15);
border:none;
color:white;
font-size:30px;
width:50px;
height:50px;
cursor:pointer;
transition:0.3s;
z-index:10;
}

.slider-arrow:hover{
background:#c89b3c;
}

.slider-arrow.left{
left:40px;
}

.slider-arrow.right{
right:40px;
}

@media (max-width:768px){
  .slider-arrow.left{
    left:10px;
  }

  .slider-arrow.right{
    right:10px;
  }
}

.scroll-text{
position:absolute;
right:40px;
bottom:80px;
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
z-index:10;
}

.client-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.client-box{
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.client-box img{
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.client-title{
    font-size:48px;
}

.client-description{
    font-size:16px;
    margin-bottom:50px;
}

.client-grid{
    grid-template-columns:repeat(4,1fr);
}

.client-box img{
    max-height:55px;
}

}


/* ================= SMALL TABLET ================= */

@media (max-width:900px){

.client-grid{
    grid-template-columns:repeat(3,1fr);
}

.client-box{
    padding:25px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.client-section{
    padding:90px 0;
}

.client-title{
    font-size:42px;
}

.client-label{
    font-size:16px;
    letter-spacing:3px;
}

.client-description{
    font-size:15px;
    margin-bottom:40px;
}

.client-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.client-box img{
    max-height:50px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.client-title{
    font-size:36px;
}

.client-description{
    font-size:14px;
}

.client-box{
    padding:18px;
}

.client-box img{
    max-height:45px;
}

}

.logo img{
    height: 65px; 
    width: auto;
    display: block;
}

.footer-logo img{
    height: auto;
    margin: 20px 0px 15px 0px;
    width: 52%;
    display: block;
}

/* ================= TABLET ================= */

@media (max-width:1024px){

.footer-container{
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:0 25px;
}

.footer-about{
    grid-column:1 / -1;
}

.footer-logo img{
    height:55px;
}

.footer-text{
    max-width:500px;
}

.footer-divider{
    margin:50px auto 25px auto;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.footer{
    padding:70px 0 35px 0;
}

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
    /* text-align:center; */
    padding:0 25px;
}

.footer-text{
    margin:auto;
}

.footer-contact ul,
.footer-links ul{
    padding:0;
}

.footer-divider{
    margin:45px auto 20px auto;
}

/* bottom section stacked */

.footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
    padding:0 20px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.footer-logo img{
    height:50px;
}

.footer-text{
    font-size:14px;
}

.footer-contact h4,
.footer-links h4{
    font-size:13px;
}

.footer-bottom{
    font-size:13px;
}

}

.certi-head{
    font-size: 58px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

.certi-head span{
    color: #c89b3c;
    font-style: italic;
}

.section-title{
  text-align: center;
  margin-bottom: 40px;
}

.certifications{
  background:#f3f1ee;
  padding:80px 0;
  text-align: center;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px 120px;
  max-width:900px;
  margin:50px auto 0;
}

.cert-item{
  padding-bottom:20px;
  border-bottom:1px solid #ddd;
}

.cert-item h4{
  font-size:20px;
  margin-bottom:5px;
  font-weight: 400;
}

.cert-item p{
  font-size:15px;
  color:#666;
}

.certi-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

@media (max-width:768px){
  .cert-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}

/* ===== Responsive Heading ===== */

@media (max-width:1024px){

.certi-head{
  font-size:48px;
}

}

@media (max-width:768px){

.certi-head{
  font-size:42px;
}

}

@media (max-width:480px){

.certi-head{
  font-size:36px;
}

}

/* Phone */

.phone-group{
  display:flex;
  align-items:flex-start;
  gap:8px;
}

.phone-group a{
  color:inherit;
  text-decoration:none;
  display:block;
}

.contact-item{
display:flex;
align-items:flex-start;
gap:10px;
margin-bottom:15px;
}

.contact-item .icon{
margin-top:3px;
}

.contact-item .text{
line-height:1.8;
}

.contact-item a{
color:#cfcfcf;
text-decoration:none;
}

.contact-item a:hover{
color:#c89b3c;
}

.footer-copyrights .col-lg-12{
display:flex;
justify-content:space-around;
align-items:center;
flex-wrap:wrap;
gap:10px;
}

.justify-footer{
display:flex;
align-items:center;
width:100%;
}

.justify-footer nav{
flex:1;
}

.powered-logo-container{
display:flex;
align-items:center;
gap:6px;
}

.id-color{
    text-decoration: none !important;
    color: #cfcfcf !important;
    font-size: 15px;
    letter-spacing: 1px;
}

.id-color:hover{
    color: #c89b3c !important;
}

@media (max-width:768px){

.footer-copyrights .col-lg-12{
flex-direction:column;
text-align:center;
gap:15px;
}

.powered-logo-container{
justify-content:center;
}

.copyright__nav{
justify-content:center;
}

}

.d-block {
    display: block !important;
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }
}

.certs-logo img{
    height: auto;
    width: 45%;
}

.cert-logo img{
    height: auto;
    width: 40%;
}

.founders-label {
  color: #c28a2b;              /* softer gold */
  font-size: 18px;
  letter-spacing: 5px;
  display: block;
  margin-bottom: 50px;
}

.founders-role {
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
}

.founders-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #c28a2b;
  margin-bottom: 12px;
}

/* Dropdown Menu */

.has-submenu > a{
  display:flex;
  align-items:center;
  justify-content: center;
}

.has-submenu > a::after{
    content:"";
    display:inline-block;
    width:5px;
    height:5px;

    border-right:2px solid #fff;
    border-bottom:2px solid #fff;

    transform:rotate(45deg);
    transition:0.3s ease;

    margin-left:8px;
    margin-top:-4px;
    margin-bottom: 3px;
}

/* rotate on open */
.has-submenu.active > a::after{
  transform: rotate(225deg);
  margin-top: 3px;
}


/* INNER HERO */

.inner-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.inner-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.inner-content .sub-text {
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.inner-content h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.inner-content h1 span {
    font-style: italic;
}

.inner-content .underline {
    width: 120px;
    height: 2px;
    background: #fff;
    margin: auto;
}

/* MOBILE */

@media (max-width: 768px) {

    .inner-hero,
    .inner-banner {
        height: 75vh;
    }

    .inner-content h1 {
        font-size: 42px;
    }

    .inner-content .sub-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

/* BENCHMARK SECTION */

.benchmark-container{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.benchmark-image img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* MOBILE */

@media (max-width:768px){

    .benchmark-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benchmark-image img{
        height: 400px;
    }
}

/* =========================================
   GPG DICHOTOMY
========================================= */

.benchmark-dichotomy{
    padding: 100px 0;
}

/* TOP BOX */

.dichotomy-top-box{
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

/* MAIN BOX */

.dichotomy-box{
    max-width: 1200px;
    margin: auto;
    border: 1px solid #e5e5e5;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* COLUMN */

.dichotomy-column h3{
    font-size: 34px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #111;
}

.dichotomy-item{
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.dichotomy-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dichotomy-item h4{
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
}

.dichotomy-item p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* BOTTOM TEXT */

.benchmark-bottom-text{
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.benchmark-bottom-text p{
    font-size: 22px;
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
    color: #111;
}

/* MOBILE */

@media(max-width:768px){

    .dichotomy-top-box{
        padding: 35px 25px;
    }

    .dichotomy-box{
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 50px;
    }

    .dichotomy-column h3{
        font-size: 28px;
    }

    .benchmark-bottom-text p{
        font-size: 18px;
    }
}

/* TABLE STYLE */

.dichotomy-box{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid #cfcfcf;
    background: #fff;
}

/* LEFT + RIGHT COLUMN */

.dichotomy-column{
    padding: 0;
}

/* CENTER LINE */

.dichotomy-column:first-child{
    border-right: 2px solid #cfcfcf;
}

/* COLUMN HEADING */

.dichotomy-column h3{
    margin: 0;
    padding: 25px;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    background: #f7f7f7;
    border-bottom: 2px solid #cfcfcf;
}

/* ROWS */

.dichotomy-item{
    padding: 25px;
    border-bottom: 1px solid #e1e1e1;
}

.dichotomy-item:last-child{
    border-bottom: none;
}

/* TEXT */

.dichotomy-item h4{
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.dichotomy-item p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* MOBILE */

@media(max-width:768px){

    .dichotomy-box{
        grid-template-columns: 1fr;
    }

    .dichotomy-column:first-child{
        border-right: none;
        border-bottom: 2px solid #cfcfcf;
    }

    .dichotomy-column h3{
        font-size: 24px;
    }
}

/* FIX TITLE LINE POSITION */

.dichotomy-top-box .title-line{
    width: 90px;
    height: 2px;
    margin: 25px auto 30px;
    display: block;
}

/* =========================================
   INNER PAGE - GPG METHOD
========================================= */

.benchmark-method .mv-container{
    max-width: 1300px;
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    align-items: stretch;
}

.benchmark-method .mv-col{
    border: 1px solid #e5e5e5;
    padding: 45px 35px;
    background: #fff;

    display: flex;
    flex-direction: column;

    transition: 0.3s ease;
}

.benchmark-method .mv-col:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* LABEL */

.benchmark-method .mv-label{
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    /* color: #777; */
    line-height: 1.6;

    /* min-height: 45px; */
    display: block;
}

/* LINE */

.benchmark-method .mv-line{
    width: 70px;
    height: 2px;
    /* background: #000; */
    margin: 22px 0 25px;
}

/* TEXT */

.benchmark-method .mv-text{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* MOBILE */

@media(max-width:992px){

    .benchmark-method .mv-container{
        grid-template-columns: 1fr;
    }

    .benchmark-method .mv-col{
        padding: 35px 25px;
    }
}

/* FIX TITLE LINE - GPG METHOD */

.benchmark-method .title-line{
    position: relative !important;
    left: auto !important;
    transform: none !important;

    width: 90px;
    height: 2px;
    /* background: #000; */

    margin: 25px auto 30px;
    display: block;
}

/* HEADER FIX */

.benchmark-commitment .foundation-header{
    text-align: center;
    max-width: 950px;
    margin: auto;
}

/* TITLE */

.benchmark-commitment .foundation-title{
    line-height: 1.2;
    margin-bottom: 0;
}

/* LINE */

.benchmark-commitment .title-line{
    position: relative !important;
    left: auto !important;
    transform: none !important;

    width: 90px;
    height: 2px;

    margin: 28px auto 35px;
}

/* DESCRIPTION */

.benchmark-commitment .foundation-description{
    margin: 0 auto 18px;

    line-height: 1.9;
    font-size: 16px;
}

/* LAST TEXT */

.benchmark-commitment .commitment-last-text{
    margin-bottom: 0;
}

/* Inner legacy page */

/* FIX OVERLAY ISSUE */

.benchmark-method,
.benchmark-commitment,
.foundation-section{
    position: relative;
    z-index: 1;
}

.benchmark-contain .commitment-overlay{
    display: none;
}

/* ENSURE CONTENT IS ABOVE */

.foundation-header,
.foundation-grid,
.mv-container,
.founder-container{
    position: relative;
    z-index: 5;
}

/* FIX TEXT VISIBILITY */

.benchmark-method .foundation-title,
.benchmark-method .foundation-description,
.benchmark-method .mv-text,
.benchmark-method .mv-label{
    color: #111 !important;
}

.benchmark-method{
    background: #f3f1ed !important;
}

/* Our legacy*/

/* ONLY FOR LEGACY PAGE */

.legacy-page .hero{
    min-height: auto;
    height: auto;
}

.legacy-page .inner-hero{
    min-height: auto;
    height: auto;
    overflow: visible;
}

.legacy-page .foundation-section{
    padding: 180px 0 120px;
}

/* ===== OUR LEGACY SECTION ===== */

.gpg-legacy-section{
    width:100%;
    overflow:hidden;
    background:#fff;
}

/* HEADER */

.gpg-legacy-header{
    text-align:center;
    padding:80px 10%;
}

.gpg-legacy-subtitle{
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#c58b2a;
    margin-bottom:20px;
}

.gpg-legacy-title{
    font-size:52px;
    line-height:1.2;
    color:#1f2738;
    margin-bottom:25px;
    font-weight:500;
}

.gpg-legacy-title span{
    color:#c58b2a;
}

.gpg-legacy-line{
    width:80px;
    height:3px;
    background:#c58b2a;
    margin:0 auto 30px;
}

.gpg-legacy-description{
    max-width:900px;
    margin: 12px;
    font-size:18px;
    line-height:1.9;
    color:#ffffff;
}

/* ROW */

.gpg-legacy-row{
    display:flex;
    min-height:550px;
}

.reverse-layout{
    flex-direction:row-reverse;
}

/* IMAGE */

.gpg-legacy-image{
    width:50%;
}

.gpg-legacy-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.gpg-legacy-content{
    width:50%;
    padding:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.dark-bg{
    background:#1f2738;
    color:#fff;
}

.light-bg{
    background:#f4f4f4;
    color:#1f2738;
}

.gpg-legacy-content h3{
    font-size:38px;
    font-family: "Playfair Display", serif;
    margin-bottom:20px;
    font-weight:500;
    line-height:1.2;
}

.gpg-small-line{
    width:70px;
    height:3px;
    background:#c58b2a;
    margin-bottom:30px;
}

.gpg-legacy-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* MOBILE */

@media(max-width:991px){

    .gpg-legacy-row,
    .reverse-layout{
        flex-direction:column;
    }

    .gpg-legacy-image,
    .gpg-legacy-content{
        width:100%;
    }

    .gpg-legacy-content{
        padding:50px 30px;
    }

    .gpg-legacy-title,
    .gpg-legacy-content h3{
        font-size:36px;
    }

}

/* OUR LEGACY BOTTOM TEXT ONLY */
.gpg-legacy-bottom-text{
    max-width: 772px;
    margin: 70px auto 0;
    padding: 0 20px;
    text-align: center;
}

.gpg-legacy-bottom-text p{
    font-size: 18px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 20px;
    /* font-family: 'DM Sans', sans-serif; */
}

.margin-legacy{
  margin-bottom: 65px !important;
}

.vision-founder-section .mv-title{
  color: #ffffff;
}

.vision-founder-section .founder-text{
  color: #ffffff;
}

.vision-founder-section .founder-line{
  margin-top: 20px;
  height: 2px;
}

/* our values */

.legacy-page .construction-section{
  padding: 0;
}

/* Meet the mavericks */

.mavericks-section{
    padding: 120px 8%;
    background: #fff;
}

.mavericks-container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.mavericks-header p{
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 850px;
    margin: 0 auto 20px;
    font-family: 'DM Sans', sans-serif;
}

.mavericks-image{
    margin-top: 60px;
}

.mavericks-image img{
    width: 100%;
    max-width: 620px;
    /* border-radius: 12px; */
    display: block;
    margin: auto;
}

@media(max-width: 768px){

    .mavericks-header p{
        font-size: 15px;
    }

}

/* inner dropdown */

/* =========================
NAVBAR
========================= */

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    display:block;
    padding:15px 0;
}

/* =========================
FIRST DROPDOWN
========================= */

.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:#1f2732;
    list-style:none;
    padding:10px 0;
    display:none;
    z-index:999;
}

.submenu li{
    position:relative;
    width:100%;
}

.submenu li a{
    display:block;
    text-align:center;
}

.submenu li a:hover{
    background:#2c3644;
}

/* =========================
INNER DROPDOWN
========================= */

.inner-dropdown{
    position:absolute;
    top:0;
    left:100%;
    min-width:260px;
    background:#344050;
    list-style:none;
    padding:10px 0;
    display:none;
    z-index:999;
}

.inner-dropdown li a{
    display: flex;
    justify-content: center;
}

/* =========================
DESKTOP HOVER
========================= */

@media(min-width:901px){

    .has-submenu:hover > .submenu{
        display:block;
    }

    .inner-submenu:hover > .inner-dropdown{
        display:block;
    }

}

/* =========================
HAMBURGER
========================= */

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    margin-left:auto;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#fff;
    margin:4px 0;
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#1f2732;
        flex-direction:column;
        display:none;
        gap:0;
        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    .nav-links a{
        padding:15px 20px;
        display: flex;
        justify-content: center;
    }

    /* FIRST DROPDOWN */

    .submenu{
        position:static;
        width:100%;
        background:#2a3442;
        display:none;
        padding:0;
    }

    .has-submenu.active > .submenu{
        display:block;
    }

    /* INNER DROPDOWN */

    .inner-dropdown{
        position:static;
        width:100%;
        background:#344050;
        display:none;
        padding:0;
    }

    .inner-submenu.active > .inner-dropdown{
        display:block;
    }

    .submenu a{
        padding-left:40px;
    }

    .inner-dropdown a{
        padding-left:60px;
    }

}
/* ROTATE ARROW */
.inner-submenu:hover .submenu-arrow{
    transform: rotate(90deg);
}

/* REGISTRATIONS SECTION */

.registrations-section{
    padding: 120px 8%;
    background: #fff;
}

.registrations-container{
    max-width: 1300px;
    margin: auto;
}

.registrations-header{
    text-align: center;
    margin-bottom: 60px;
}

.registrations-header h2{
    font-size: 58px;
    font-family: 'Playfair Display', serif;
    color: #111;
    line-height: 1.2;
}

.registrations-header h2 span{
    color: #b08d57;
}

.registrations-line{
    width: 80px;
    height: 2px;
    background: #b08d57;
    margin: 25px auto;
}

/* IMAGE GRID */

.registrations-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.registrations-image img{
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* RESPONSIVE */

@media(max-width:900px){

    .registrations-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .registrations-header h2{
        font-size: 42px;
    }

}

@media(max-width:600px){

    .registrations-grid{
        grid-template-columns: 1fr;
    }

    .registrations-header h2{
        font-size: 34px;
    }

}

/* =========================
CERTIFICATION BOXES
========================= */

.certification-box-section{
    background: #f5f1eb;
    padding: 80px 0;
}

.certification-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.certification-box:hover{
    transform: translateY(-5px);
}

.certification-box h3{
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #111;
}

.certifications-line{
    width: 60px;
    height: 2px;
    background: #9b7b57;
    margin: 0 0 25px;
}

.certification-box p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* SMALL TABLETS */
@media (max-width: 768px){

    .certification-box-section{
        padding: 60px 15px;
    }

    .certification-box{
        padding: 30px 20px;
    }

    .approval-images-wrapper{
        padding: 60px 15px;
    }
}

/* MOBILE */
@media (max-width: 576px){

    .certification-box-section{
        padding: 40px 15px;
    }

    .certification-box{
        padding: 25px 18px;
    }

    .certification-box h3{
        font-size: 20px;
    }

    .certification-box p{
        font-size: 15px;
        line-height: 1.7;
    }

    .approval-images-wrapper{
        flex-direction: column;
        gap: 15px;
        padding: 40px 15px;
    }

    .approval-image{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .approval-image img{
        width: 100%;
        height: auto;
    }
}
@media (max-width: 991px){

    .certification-box{
        padding: 30px 25px;
    }
}

@media (max-width: 576px){

    .certification-box{
        padding: 25px 18px;
    }

    .certification-box h3{
        font-size: 20px;
    }

    .certification-box p{
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 1024px){

    .certifications-line{
        margin: 0 auto 25px;
    }

    .certification-box{
        text-align: center;
    }
}

/* ===================================
CERTIFICATION IMAGE GALLERY
=================================== */

/* APPROVAL IMAGES */

.approval-images-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.approval-image{
    width: 420px;
}

.approval-image img{
    width: 100%;
    height: auto;
    display: block;
}

/* MOBILE */
@media(max-width:768px){

    .approval-images-wrapper{
        gap: 30px;
    }

    .approval-image{
        width: 100%;
        max-width: 320px;
    }

}

/* POLICY HIGHLIGHT BOX */

.policy-highlight-box{
    margin-top: 50px;
    padding: 35px;
    background: #f8f6f2;
    border-left: 4px solid #9b7b57;
    border-radius: 12px;
}

.policy-highlight-box h3{
    font-size: 32px;
    margin-bottom: 18px;
    color: #111;
}

.policy-highlight-box p{
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 0;
}

@media(max-width:768px){

    .policy-highlight-box{
        padding: 25px;
    }

    .policy-highlight-box h3{
        font-size: 26px;
    }

}

/* =========================
CORE COMMITMENTS SECTION
========================= */

.core-commitments-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.core-heading{
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.core-subtitle{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #9b7b57;
    margin-bottom: 18px;
}

.core-heading h2{
    font-size: 58px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
    font-weight: 700;
}

.core-heading h2 span{
    color: #9b7b57;
    font-style: italic;
}

.core-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 700px;
    margin: auto;
}

.center-line{
    margin: 0 auto 25px;
}

.commitment-box{
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.commitment-box:hover{
    transform: translateY(-6px);
}

.commitment-box h3{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

.commitment-line{
    width: 65px;
    height: 2px;
    background: #9b7b57;
    margin-bottom: 25px;
}

.commitment-box p{
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 1024px){

    .commitment-line{
        margin: 0 auto 25px;
    }
}

/* RESPONSIVE */

@media(max-width: 992px){

    .core-heading h2{
        font-size: 46px;
    }

}

@media(max-width: 768px){

    .core-commitments-section{
        padding: 70px 0;
    }

    .core-heading{
        margin-bottom: 50px;
    }

    .core-heading h2{
        font-size: 36px;
    }

    .commitment-box{
        padding: 30px 25px;
    }

    .commitment-box h3{
        font-size: 24px;
    }

}

/* FORCE NORMAL BOOTSTRAP LAYOUT */

.core-commitments-section .container{
    display: block !important;
}

.core-commitments-section .row{
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -12px;
    margin-right: -12px;
}

.core-commitments-section [class*="col-"]{
    float: none !important;
}

/* ROW SPACING */

.core-commitments-section .row{
    row-gap: 25px;
}

/* BOX DESIGN */

.commitment-box{
    background: #fff;
    padding: 40px 35px;
    margin: 0px 12px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

/* 4 BOXES IN ONE ROW */

.core-commitments-section .col-xl-3{
    width: 25%;
}

@media(max-width: 1199px){

    .core-commitments-section .col-lg-4{
        width: 33.3333%;
    }

}

@media(max-width: 991px){

    .core-commitments-section .col-md-6{
        width: 50%;
    }

}

@media(max-width: 767px){

    .core-commitments-section .col-xl-3,
    .core-commitments-section .col-lg-4,
    .core-commitments-section .col-md-6{
        width: 100%;
    }

}

.contents-section{
    background: #f8f8f8;
    padding: 80px 0 0;
}

.policy-highlight-box{
    text-align: center;
    margin: 0 auto;
}

.policy-highlight-box h3{
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
}

.policy-highlight-box p{
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.certification-line{
    width: 70px;
    height: 2px;
    background: #9b7b57;
    margin: 0 auto 25px;
}

/* =========================
IMPLEMENTATION SECTION
========================= */

.implementation-section{
    padding: 110px 0;
    background: #f8f8f8;
}

.implementation-content{
    max-width: 1000px;
    margin: 0 auto;
}

.implementation-content h2{
    font-size: 58px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
}

.implementation-line{
    width: 75px;
    height: 2px;
    background: #9b7b57;
    margin-bottom: 35px;
}

.implementation-text{
    font-size: 18px;
    line-height: 2;
    color: #555;
    max-width: 850px;
    margin-bottom: 55px;
}

/* LIST */

.implementation-list{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.implementation-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 28px;
    background: #fff;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    max-width: 950px;
}

.implementation-item:hover{
    transform: translateX(6px);
}

.implementation-item span{
    min-width: 36px;
    height: 36px;
    background: rgba(155,123,87,0.10);
    color: #9b7b57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

.implementation-item p{
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

.implementation-item p{
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* NOTE */

.implementation-note{
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 900px;
}

/* RESPONSIVE */

@media(max-width: 991px){

    .implementation-list{
        grid-template-columns: 1fr;
    }

    .implementation-content h2{
        font-size: 46px;
    }

}

@media(max-width: 768px){

    .implementation-section{
        padding: 80px 0;
    }

    .implementation-content h2{
        font-size: 36px;
    }

    .implementation-text{
        font-size: 16px;
    }

    .implementation-item{
        padding: 24px 20px;
    }

}

/* =========================
SERVICE DETAILS SECTION
========================= */

.service-details-section{
    padding: 110px 0;
    background: #f8f8f8;
}

/* LAYOUT */

.service-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

.service-main{
    width: 75%;
}

.service-sidebar{
    width: 22%;
}

.sidebar-widget{
    padding: 20px 18px;
}

.service-list li a{
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info p{
    font-size: 13px;
    line-height: 1.6;
}

.brochure-btn{
    padding: 11px 14px;
    font-size: 13px;
}

/* MAIN CONTENT */

.service-subtitle{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #9b7b57;
    margin-bottom: 18px;
}

.service-main h1{
    font-size: 62px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: -1px;
}

.service-line{
    width: 80px;
    height: 3px;
    background: #9b7b57;
    margin-bottom: 35px;
}

.service-intro{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 60px;
    max-width: 850px;
}

/* SIMPLE CONTENT BLOCK */

.service-block{
    margin-bottom: 60px;
}

.service-block h3{
    font-size: 32px;
    line-height: 1.3;
    color: #111;
    margin-bottom: 18px;
}

.service-block p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* =========================
PREMIUM RIGHT SIDEBAR
========================= */

.service-sidebar{
    width: 24%;
    position: sticky;
    top: 120px;
}

/* SIDEBAR BOX */

.sidebar-widget{
    background: #fff;
    padding: 26px 22px;
    border-radius: 16px;
    margin-bottom: 22px;
    border: 1px solid #ececec;
    transition: 0.3s ease;
}

.sidebar-widget:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

/* SIDEBAR HEADINGS */

.sidebar-widget h4{
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
    /* font-weight: 600; */
    position: relative;
}

.sidebar-widget h4::after{
    /* content: ""; */
    display: block;
    width: 42px;
    height: 2px;
    background: #9b7b57;
    /* margin-top: 12px; */
}

/* SERVICES LIST */

.service-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li{
    border-bottom: 1px solid #f1f1f1;
}

.service-list li:last-child{
    border-bottom: none;
}

.service-list li a{
    display: block;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
    transition: 0.3s ease;
}

.service-list li a:hover{
    color: #9b7b57;
    padding-left: 6px;
}

/* CONTACT */

.contact-info p{
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    word-break: break-word;
}

.contact-info strong{
    color: #111;
    font-size: 15px;
}

/* BROCHURE BUTTONS */

.brochure-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #111;
    text-decoration: none;
    padding: 13px 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s ease;
}

.brochure-btn:hover{
    background: #9b7b57;
    color: #fff;
}

/* RESPONSIVE */

@media(max-width: 991px){

    .service-wrapper{
        flex-direction: column;
    }

    .service-main,
    .service-sidebar{
        width: 100%;
    }

    .service-sidebar{
        position: relative;
        top: 0;
    }

    .service-main h1{
        font-size: 46px;
    }

}

@media(max-width: 768px){

    .service-details-section{
        padding: 80px 0;
    }

    .service-main h1{
        font-size: 36px;
    }

    .service-block h3{
        font-size: 28px;
    }

}

/* SERVICE IMAGE */

.service-image{
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 18px;
}

.service-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
}

.service-image:hover img{
    transform: scale(1.03);
}

/* =========================
SHOWCASE SECTION
========================= */

.showcase-section{
    background: #f5f2ee;
    /* padding: 110px 0 120px; */
    overflow: hidden;
}

.showcase-container{
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================
HERO
========================= */

.showcase-hero{
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 110px;
    border-bottom: 1px solid #ddd6cf;
}

.showcase-content{
    width: 58%;
}

.showcase-tag{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #7c6f63;
    margin-bottom: 40px;
}

.showcase-title{
    font-size: 108px;
    line-height: .92;
    font-weight: 400;
    color: #111;
    margin-bottom: 45px;
    font-family: "Cormorant Garamond", serif;
}

.showcase-title span{
    color: #b5774f;
    font-style: italic;
    font-weight: 400;
}

.showcase-text{
    max-width: 640px;
    font-size: 20px;
    line-height: 1.8;
    color: #5d6772;
    margin: 0;
}

/* =========================
COUNTERS
========================= */

.showcase-counter-area{
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-top: 15px;
}

.showcase-divider{
    width: 1px;
    height: 235px;
    background: #d8d0c8;
}

.showcase-counter-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 55px 80px;
}

.showcase-counter-box h3{
    font-size: 62px;
    line-height: 1;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
}

.showcase-counter-box span{
    font-size: 14px;
    letter-spacing: 4px;
    color: #7b746c;
    display: block;
    line-height: 1.7;
}

/* =========================
HEADER
========================= */

.showcase-header{
    display: flex;
    justify-content: space-around;
    gap: 60px;
    padding: 90px 0 45px;
    border-bottom: 1px solid #ddd6cf;
}

.showcase-header-left{
    width: 35%;
}

.showcase-small-title{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 6px;
    color: #7c6f63;
    margin-bottom: 22px;
}

.showcase-header-left h2{
    font-size: 68px;
    line-height: .95;
    font-weight: 400;
    color: #111;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
}

/* =========================
FILTER
========================= */

.showcase-filter-menu{
    width: 58%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding-top: 62px;
}

.showcase-filter-menu span{
    color: #b8afa7;
    font-size: 22px;
}

.showcase-filter-menu button{
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6f665f;
    cursor: pointer;
    transition: .3s;
}

.showcase-filter-menu button:hover,
.showcase-filter-menu button.active{
    color: #b5774f;
}

/* =========================
GRID
========================= */

.showcase-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 110px 38px;
    padding-top: 65px;
}

/* =========================
CARD
========================= */

.showcase-card{
    width: 100%;
}

.showcase-image-wrap{
    overflow: hidden;
    margin-bottom: 28px;
    background: #ddd;
}

.showcase-image-wrap img{
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: .7s ease;
}

.showcase-card:hover img{
    transform: scale(1.05);
}

/* =========================
CONTENT
========================= */

.showcase-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.showcase-meta span{
    font-size: 13px;
    letter-spacing: 5px;
    color: #726b65;
}

.showcase-meta h6{
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #6b645d;
}

.showcase-card-content h3{
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    color: #111;
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", serif;
}

.showcase-card-content p{
    margin: 0;
    font-size: 18px;
    color: #6b6f75;
}

/* =========================
HIDE FILTER
========================= */

.showcase-card.hide{
    display: none !important;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .showcase-hero,
    .showcase-header{
        flex-direction: column;
    }

    .showcase-content,
    .showcase-header-left,
    .showcase-filter-menu{
        width: 100%;
    }

    .showcase-title{
        font-size: 82px;
    }

    .showcase-header-left h2{
        font-size: 54px;
    }

}

@media(max-width:768px){

    .showcase-container{
        padding: 0 20px;
    }

    .showcase-section{
        padding: 80px 0;
    }

    .showcase-title{
        font-size: 58px;
    }

    .showcase-header-left h2{
        font-size: 42px;
    }

    .showcase-grid{
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .showcase-image-wrap img{
        height: 320px;
    }

    .showcase-card-content h3{
        font-size: 40px;
    }

    .showcase-counter-grid{
        gap: 40px;
    }

}

/* =========================
FITOUT SERVICES SECTION
========================= */

.fitout-services-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.fitout-heading{
    margin-bottom: 70px;
    text-align: center;
}

.fitout-space{
  margin-top: 95px;
}

.fitout-subtitle{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9b7b57;
    margin-bottom: 15px;
}

.fitout-heading h2{
    font-size: 52px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.fitout-heading h2 span{
    color: #9b7b57;
    font-style: italic;
}

.fitout-line{
    width: 70px;
    height: 2px;
    background: #9b7b57;
    margin: 0 auto;
}

/* CARD */
/* .fitout-box{
    background: #fff;
    padding: 40px 25px;
    border-radius: 14px;
    text-align: center;

    min-height: 280px;
    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

/* ICON */
.fitout-icon{
    margin-bottom: 20px;
}

.fitout-icon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* TITLE */
.fitout-box h3{
    font-size: 22px;
    line-height: 1.5;
    color: #111;
    margin: 0;
}

/* HOVER */
.fitout-box:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:768px){

    .fitout-heading h2{
        font-size: 36px;
    }

    .fitout-box{
        min-height: 240px;
        padding: 30px 20px;
    }

    .fitout-box h3{
        font-size: 18px;
    }
}

/* SERVICES GRID FIX */
.fitout-services-section .row{
    row-gap: 25px;
}

/* CARD */
/* .fitout-box{
    background: #fff;
    border-radius: 14px;
    padding: 40px 25px;

    min-height: 280px;
    width: 100%;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
} */

.fitout-box:hover{
    transform: translateY(-5px);
}

/* FORCE NORMAL BOOTSTRAP LAYOUT */
.fitout-services-section .container{
    display: block !important;
}

.fitout-services-section .row{
    /* display: flex !important;
    flex-wrap: wrap !important; */

    margin-left: -12px !important;
    margin-right: -12px !important;
    justify-content: center;
}

/* 4 CARDS EACH ROW */
/* .fitout-services-section .col-lg-3{
    flex: 0 0 25%;
    max-width: 25%;
} */

/* TABLET */
/* @media(max-width:991px){
    .fitout-services-section .col-md-6{
        width: 50% !important;
    }
} */

/* MOBILE */
/* @media(max-width:767px){
    .fitout-services-section .col-sm-6{
        width: 100% !important;
    }
} */

/* CARD */
.fitout-box{
    width: 100%;
    min-height: 280px;

    background: #fff;
    border-radius: 14px;
    padding: 40px 25px;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.fitout-services-section .row{
    margin-left: -12px;
    margin-right: -12px;
}

.fitout-services-section [class*="col-"]{
    padding-left: 12px;
    padding-right: 12px;
}

/* =========================
CONTACT SECTION
========================= */

.gpg-contact-section{
    padding: 110px 0;
    background: #f5f2ee;
}

.gpg-contact-container{
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    gap: 70px;
}

/* =========================
LEFT
========================= */

.gpg-contact-left{
    width: 48%;
}

.gpg-contact-subtitle{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #8a6a4b;
    margin-bottom: 25px;
}

.gpg-contact-title{
    font-size: 78px;
    line-height: .95;
    font-weight: 400;
    color: #111;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
}

.gpg-contact-title span{
    color: #b5774f;
    font-style: italic;
}

.gpg-contact-text{
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 50px;
}

/* =========================
CONTACT INFO
========================= */

.gpg-contact-info{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.gpg-contact-item{
    display: flex;
    gap: 22px;
}

.gpg-contact-icon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.gpg-contact-details h4{
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.gpg-contact-details a{
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.gpg-contact-details a:hover{
    color: #b5774f;
}

.gpg-contact-details p{
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* =========================
FORM
========================= */

.gpg-contact-form-area{
    width: 48%;
    background: #fff;
    padding: 50px;
    border-radius: 14px;
}

.gpg-contact-form{
    width: 100%;
}

.gpg-form-group{
    margin-bottom: 22px;
}

.gpg-form-group input,
.gpg-form-group textarea{
    width: 100%;
    border: 1px solid #ddd;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.gpg-form-group input:focus,
.gpg-form-group textarea:focus{
    border-color: #b5774f;
}

.gpg-form-group textarea{
    height: 170px;
    resize: none;
}

.gpg-contact-btn{
    border: none;
    background: #111;
    color: #fff;
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
}

.gpg-contact-btn:hover{
    background: #b5774f;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .gpg-contact-container{
        flex-direction: column;
    }

    .gpg-contact-left,
    .gpg-contact-form-area{
        width: 100%;
    }

    .gpg-contact-title{
        font-size: 56px;
    }

}

@media(max-width:575px){

    .gpg-contact-section{
        padding: 80px 0;
    }

    .gpg-contact-container{
        padding: 0 20px;
    }

    .gpg-contact-title{
        font-size: 42px;
    }

    .gpg-contact-form-area{
        padding: 30px 20px;
    }

}

/* Careers */

.career-h1{
    margin: 45px;
}
/* blog */

.blog-read-more{
  color: #ffffff;
}

.blog-read-more-black{
    color: #000;
}

/* blog inner */

/* =========================================
GPG ARTICLE PAGE ONLY
========================================= */

.gpg-article-section{
    padding: 110px 0;
    background: #f7f4ef;
}

.gpg-article-section .container{
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.gpg-article-wrapper{
    width: 100%;
}

/* =========================================
MAIN CONTENT
========================================= */

.gpg-article-main{
    width: 100%;
    /* background: #fff;
    padding: 60px; */
    border-radius: 18px;
    
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
}

/* =========================================
TITLE
========================================= */

.gpg-article-title{
    font-size: 52px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

/* =========================================
META
========================================= */

.gpg-article-meta{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gpg-article-meta span{
    font-size: 14px;
    letter-spacing: 1px;
    color: #777;
}

.gpg-article-dot{
    width: 5px;
    height: 5px;
    background: #b07d52;
    border-radius: 50%;
}

/* =========================================
LINE
========================================= */

.gpg-article-line{
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 45px;
}

/* =========================================
IMAGE
========================================= */

.gpg-article-image{
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 50px;
}

.gpg-article-image img{
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
CONTENT BLOCK
========================================= */

.gpg-article-block{
    margin-bottom: 55px;
}

.gpg-article-block h3{
    font-size: 34px;
    line-height: 1.3;
    color: #111;
    margin-bottom: 25px;
    font-weight: 500;
}

.gpg-article-block p{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 22px;
}

/* =========================================
LIST
========================================= */

.gpg-article-points{
    padding-left: 20px;
    margin-top: 20px;
}

.gpg-article-points li{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 18px;
}

/* =========================================
REFERENCES
========================================= */

.gpg-reference-list{
    padding-left: 20px;
}

.gpg-reference-list li{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .gpg-article-section{
        padding: 80px 0;
    }

    .gpg-article-main{
        padding: 40px;
    }

    .gpg-article-title{
        font-size: 40px;
    }

    .gpg-article-block h3{
        font-size: 28px;
    }

    .gpg-article-block p,
    .gpg-article-points li{
        font-size: 17px;
    }

}

@media(max-width:575px){

    .gpg-article-main{
        padding: 25px;
    }

    .gpg-article-title{
        font-size: 28px;
        line-height: 1.3;
    }

    .gpg-article-block h3{
        font-size: 22px;
    }

    .gpg-article-block p,
    .gpg-article-points li,
    .gpg-reference-list li{
        font-size: 15px;
        line-height: 1.9;
    }

    .gpg-article-meta{
        flex-wrap: wrap;
        gap: 10px;
    }

}

/* Menu arrow mobile */

.menu-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.submenu-toggle{
    width: 6px;
    height: 6px;
    margin-bottom: 2px;
    border-right:2px solid #fff;
    border-bottom:2px solid #fff;
    transform:rotate(45deg);
    cursor:pointer;
    transition:0.3s;
}

.has-submenu.active > .menu-item .submenu-toggle{
    transform:rotate(225deg);
}

/* sidebar services */

/* Desktop */
.sidebar-title-line{
    width: 60px;
    height: 2px;
    background: #9b7b57;
    margin: 12px 0 12px;
}

/* Tablet & Mobile */
@media (max-width: 1024px){

    .sidebar-title-line{
        margin: 12px auto 25px;
    }

    .sidebar-widget{
        text-align: center;
    }
}

/* contact on slider */

.hero-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #fff;
}

.hero-contact span {
    font-size: 16px;
    font-weight: 500;
}

.hero-contact i {
    margin-right: 8px;
}

.hero-contact a {
    color: #bfc7d5;
    text-decoration: none;
}

.hero-contact a:hover {
    color: #d9d9d9;
}
