
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap');

:root{
  --dark:#161616;
  --dark2:#1c1c1c;
  --light:#ffffff;
  --muted:#f1f1f1;
  --muted2:#e7e7e7;
  --text:#111;
  --max:1200px;
}

/* BUG FIX: stop weird text shrink on large stretch */
html{
  scroll-behavior:smooth;
  font-size:16px;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  font-size:16px;
  margin:0;
  overflow-x:hidden;
  background:#fff;
}
.mb-15{
  margin-bottom: 15px;
}

*{ box-sizing:border-box; }
img{ width:100%; height:auto; display:block; }

h1,h2,h3,h4,h5,h6{
  font-family:"Young Serif",serif !important;
  font-weight:100;
  letter-spacing:-0.1rem;
  margin:0;
}

.termsh2 {
  font-size: 25px !important;
  margin-top: 5px;
}

a,p,ul,li,span,label,input,textarea,button{
  font-family:"Bitter",serif !important;
}
p{ margin:0; line-height:24px; }

.container{
  max-width: var(--max);
  margin:0 auto;
  padding:0 22px;
}

#termsection {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

/* ============ HEADER ============ */
header.main_header{
  background: var(--dark2);
  position: sticky;
  top:0;
  z-index:9999;
  padding: 27px 0;
}
.nav_main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.nav_logo a{
  text-decoration:none;
  color:#dcdcdc;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav_logo h4{
  font-size: 24.64px;
  letter-spacing: .5px;
  font-weight:100;
}

.nav_menu{
  display:flex;
  align-items:center;
  gap:16px;
}
.menu_ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:28px;
  margin:0;
  padding:0;
}
.menu_ul a{
  text-decoration:none;
  color:#dcdcdc;
  font-size:.92rem;
  font-weight:500;
  opacity:.9;
  transition:opacity .2s ease;
}
.menu_ul a:hover{ opacity:1; }

button.toggle_btn_menu{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:0;
}
button.toggle_btn_menu img{ width:34px; }

/* ============ WAVE HELPERS ============ */
.wave{
  width:100%;
  line-height:0;
  overflow:hidden;
}
.wave svg{
  width:100%;
  height:120px;
  display:block;
}
.wave.wave-bottom svg{ transform: translateY(1px); }

/* ============ HERO (dark like screenshot) ============ */
.banner_main{
  position:relative;
  background-color: #1C1C1C !important;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  padding: 90px 0 0;
  color:#dcdcdc;
}

.banner_main::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
}
.dt-text{
  text-align: center;
  margin-top: 100px;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
}
.banner_inner_main{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:60px;
  padding: 46px 0 70px;
}

.hero_logo_wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 0;
}
.hero_logo_wrap img{
  max-width: 520px;
  width:100%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.hero_text{
  text-align:left;
  padding-right: 10px;
}
.hero_text h1{
  font-size: clamp(2.7rem, 4.2vw, 67px);
  color:#e8e8e8;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 35px;
}
.hero_text p{
  color:#d9d9d9;
  max-width: 520px;
  font-size: 16px;
  line-height: 24px;
  opacity: .95;
  text-align: center;
}

.hero_wave path{ fill: #ffffff; }

/* ============ SECTION BASE ============ */
.section{
  position:relative;
  padding: 90px 0;
}
.section .section_title{
  text-align:center;
  font-size: 67px;
  margin-bottom: 16px;
  color: var(--text);
}
.section .section_sub{
  text-align:center;
  max-width: 820px;
  margin:0 auto;
  opacity:.9;
}

/* ============ ABOUT (white with background kept) ============ */
.company_sec{
  background: url(../images/company-bg.jpg);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:bottom;
  padding: 90px 0;
}
.company_sec::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(255,255,255,.86);
  pointer-events:none;
}
.company_sec .container{ position:relative; z-index:2; }

.about_block{
  margin-top: 44px;
  max-width: 1080px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.about_block h4 {
  margin-bottom: 17px !important;
}

.about_block p {
  margin-bottom: 20px;
}
.about_block h4{
  font-size: 16;
  letter-spacing: 0;
  margin: 18px 0 8px;
  font-family:"Bitter",serif !important;
  font-weight: 700;
}
.about_block p{
  font-size: 16px;
  line-height: 24px;
  opacity: .92;
}

/* ============ CUSTOMERS (grey with wave) ============ */
.customers_sec{
  background-color: #DCDCDC !important;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:top;
  padding: 0;
}
.customers_inner_bg{
  background: rgba(230,230,230,.92);
  padding: 90px 0;
}
.customers_layout{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items:center;
  margin-top: 34px;
}
.customers_layout h2{
  font-size: 67px;
  text-align:center;
  justify-self:end;
  margin-right: 40px;
}

section#services h2.section_title {
  font-size: 67px;
  text-align:center;
}

section#services p.section_sub {
  font-size: 26px !important;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 80px;
}

.customers_layout p{
  opacity:.92;
  font-size: 16px;
  line-height: 24px;
  max-width: 560px;
}

/* ============ SERVICES (white with wave) ============ */
.services_sec{
  background-color:#fff;
  background-image: url(../images/product-bg.jpg);
  background-repeat:no-repeat;
  background-size:contain;
  background-position:top;
  padding: 0;
}
.services_inner_bg{
  background: rgba(255,255,255,.92);
  padding: 90px 0 110px;
}


.services_grid {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  row-gap: 60px;
  justify-content: center;
}
.service_card{
  width: 32%;
}

.service_card:hover{ transform:none; box-shadow:none; }
.service_card img{
  height: 265px;
  object-fit: cover;
}
.service_card .card_body{
  padding: 12px 8px 0;
  text-align:center;
}
.service_card h4{
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: 0;
  font-family:"Bitter",serif !important;
  font-weight:700;
  margin-top: 30px;
  margin-bottom: 30px;
}
.service_card p{
  font-size: 16px;
  line-height: 24px;
  opacity:.9;
  min-height: 54px;
}
.service_card h6{
  margin-top: 8px;
  font-size: 16px;
  font-weight:700;
  letter-spacing:0 !important;
  opacity:.95;
  font-family:"Bitter",serif !important;
}

/* ============ CONTACT (grey) ============ */
.contact_sec{
  padding: 0;
  background: #dcdcdc;
}
.contact_bg{
  background: rgba(220,220,220,.95);
  padding: 80px 0 100px;
}
.contact_title{
  text-align:left;
  font-size: 67px;
  margin-bottom: 18px;
}

.contact_wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:start;
}

.contact_form{
  max-width: 520px;
}

.form_grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form_row{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form_row.full{ grid-column: 1 / -1; }

.form_row label{
  font-size: 15px;
  /*font-weight:600;*/
  opacity:.85;
}

.form_row input,
.form_row textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  padding: 8px 12px;
  outline:none;
  background: rgba(255,255,255,.85);
  transition: box-shadow .2s ease, border-color .2s ease;
  font-size: 12px;
}
.form_row textarea{
  border-radius: 18px;
  min-height: 120px;
  resize: vertical;
  padding: 12px 14px;
}
.form_row input:focus,
.form_row textarea:focus{
  border-color: rgba(0,0,0,.45);
  box-shadow: 0 0 0 3px rgba(0,0,0,.10);
}
.btn_submit{
  margin-top: 10px;
  border:0;
  background:#111;
  color:#fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor:pointer;
  transition: transform .12s ease, opacity .2s ease;
  width: fit-content;
}
.btn_submit:active{ transform: scale(.98); }
.small_note{
  margin-top: 10px;
  font-size: 12.5px;
  opacity:.8;
}

.contact_side{
  padding-top: 6px;
}
.contact_side .box{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.contact_side h4{
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.contact_side a{
  color:#111;
  text-decoration:none;
  opacity:.9;
}
.contact_side a:hover{ text-decoration:underline; }

.map_wrap{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.12);
}
.map_wrap iframe{
  width:100%;
  height: 240px;
  border:0;
  display:block;
}

/* ============ DIRECTOR (white) ============ */
.director_title{
/*      text-align:center;*/
font-size: clamp(1.8rem, 2.4vw, 67px);
margin-bottom: 26px;
}

.director_sec{
  background:#fff;
  padding: 90px 0;
}
.director_main{
  display:flex;
  align-items:flex-start;
  gap: 50px;
  margin:0 auto;
}

.director_cont {
  align-self: center;
}
.director_img{
  width: 220px;
  height: 220px;
  flex: 0 0 198px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.12);
  align-self: center;
}
.director_img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.director_cont h2{
  font-size: 67px;
  margin-bottom: 10px;
}
.director_cont p{
  margin-top: 8px;
  opacity:.92;
  font-size: 16px;
  line-height: 24px;
}

/* ============ FOOTER (dark like screenshot) ============ */
footer.main_footer{
  background: var(--dark2);
  color:#fafafa;
  padding: 60px 0;
}
.footer_main{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 26px;
  align-items:start;
}
.footer_left h3{
  font-size: 1.4rem;
  margin-bottom: 14px;
  color:#fff;
}
.footer_left ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer_left a{
  color:#fafafa;
  text-decoration:none;
  opacity:.9;
}
.footer_left a:hover{ opacity:1; text-decoration:underline; }

.footer_col h4{
  font-size: 1.05rem;
  color:#fff;
  margin-bottom: 12px;
}
.footer_col p{
  opacity:.92;
  font-size: .95rem;
  margin-top: 6px;
  line-height:22px;
}

.footer_links_inline{
  margin-top: 12px;
  display:flex;
  flex-direction: column;
  gap:14px;
  flex-wrap:wrap;
}
.footer_links_inline a{
  font-size: .92rem;
}

/* ============ MOBILE ============ */
@media (max-width: 991px){

  .service_card{
    width: 48%;
  }
  button.toggle_btn_menu{ display:block; }

  .menu_ul{ display:none; }
  .menu_ul.active{
    position:fixed;
    left:0; right:0;
    top:64px;
    background: var(--dark2);
    display:flex;
    flex-direction:column;
    gap:14px;
    padding: 18px 22px;
    z-index:9999;
  }

  .banner_inner_main{
    grid-template-columns: 1fr;
    text-align:center;
    gap: 24px;
    padding: 26px 0 50px;
  }
  .hero_text{
    text-align:center;
    margin: 0 auto;
  }
  .hero_text p{ margin:0 auto; }

  .customers_layout{
    grid-template-columns: 1fr;
  }
  .customers_layout h2{ text-align:left; padding-left:0; }

  .contact_wrap{
    grid-template-columns: 1fr;
  }

  .footer_main{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){

  section#about ,.customers_inner_bg ,.services_inner_bg ,.contact_bg ,section#director{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .dt-text {
    margin-top: 40px;
  }
  .director_img {
    width: 150px;
    height: 150px;
    flex: 0 0 150px;
  }

  h2 ,h1{
    font-size: 32px !important;
  }
  .customers_layout {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  .director_main {
    flex-wrap: wrap;
  }
  .director_main{
    gap: 20px;
  }
  section.banner_main {
    padding-top: 20px;
  }
  .service_card{
    width: 100%;
  }
  .services_grid{
    grid-template-columns: 1fr;
  }
  .services_grid .service_card:nth-child(4),
  .services_grid .service_card:nth-child(5){
    grid-column: auto;
    width: auto;
    max-width: none;
  }

  .form_grid{
    grid-template-columns: 1fr;
  }

  .wave svg{ height: 65px; }
}
