/*
Theme Name: Divi Child Theme
Theme URI: https://divireadythemes.com/
Description: Divi Child Theme
Author: Divi Ready Themes
Author URI: https://divireadythemes.com/
Template: Divi
Version: Updated for Divi 3+
*/



/* =========================
   Base & Variables
========================= */

:root {
/*   --green: #9FF0A4; */
  --green: #0C3F6F;
/*   --blue: #2E3192; */
	--blue: #0C3F6F;
  --gray: #363745;
  --mint: #E4F7E4;
}

/* =========================
========================= */

/* =========================
   Layout & Grid



========================= */

/* =========================
   Header
========================= */

.ubb-header{
  background:#fff;
  width:100%;
  padding:14px 0;
  position:relative;
  z-index:1001;
  animation:hdrFadeIn .4s ease both;
  transition:background-color .25s ease;
}

@keyframes hdrFadeIn{
  from{opacity:0;transform:translateY(-6px);}
  to{opacity:1;transform:translateY(0);}
}

.ubb-header,
.ubb-header *{
  box-sizing:border-box;
}

.hdr-wrap{
  max-width:1360px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:32px;
  align-items:center;
  padding:0 20px;
}

.hdr-wrap>*{
  min-width:0;
}

.hdr-brand{
  display:inline-flex;
  align-items:center;
  background:var(--green);
  border-radius:999px;
  padding:14px 22px;
  text-decoration:none;
  flex-shrink:0;
}

.hdr-brand img{
  height:32px;
  display:block;
}

.hdr-nav ul{
  display:flex;
  gap:36px;
  align-items:center;
  list-style:none;
  margin:0;
  padding:0;
}

.hdr-nav a{
  color:var(--blue);
  text-decoration:none;
  padding:8px 18px;
  display:inline-block;
  border-radius:999px;
  transition:background-color .25s ease,transform .25s ease,color .25s ease;
}

.hdr-nav a:hover,
.hdr-nav a:focus-visible{
  background:#f0f0f0;
  transform:translateY(-1px) scale(1.02);
  outline:none;
}

.hdr-nav li.current-menu-item>a,
.hdr-nav li.current_page_item>a,
.hdr-nav li.current-menu-ancestor>a,
.hdr-nav li.current_page_ancestor>a,
.hdr-nav li.current-menu-parent>a{
  background:var(--green);
  color:var(--blue);
}

.hdr-nav li.is-active>a{
  background:transparent;
  color:var(--blue);
}

.hdr-actions{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-end;
}

.custom-lang-switcher{
  position:relative;
  display:flex;
  gap:20px;
}

.lang-btn{
  background:transparent;
  color:var(--blue);
  border:1px solid var(--blue);
      padding: 12px 18px 12px 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font:inherit;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
  line-height:1;
}

.lang-btn .caret{
  width:8px;
  height:8px;
  border-right:1px solid var(--blue);
  border-bottom:1px solid var(--blue);
  transform:rotate(45deg);
  display:inline-block;
  transition:transform .2s ease;
}

.lang-btn:hover{
  background:#f0f0f0;
  transform:translateY(-1px);
}

.lang-btn[aria-expanded="true"] .caret{
  transform:rotate(225deg) !important;
}

.lang-dropdown{
  position:absolute;
  top:calc(100% + 18px);
  right:0;
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,.12);
  list-style:none !important;
  padding:8px !important;
  margin:0 !important;
  min-width:160px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all .25s ease;
  z-index:2005;
}

.lang-dropdown.show{
  opacity:1;
  visibility:visible;
/*   transform:translateX(-60px); */
}

.lang-dropdown a{
  display:block;
  padding:10px 16px !important;
  color:var(--blue) !important;
  text-decoration:none !important;
  border-radius:8px !important;
  transition:all .2s ease;
}

.lang-dropdown a:hover{
  background:#f0f0f0 !important;
  transform:translateX(2px);
}

.lang-dropdown a.active{
  background:var(--blue) !important;
  color:#fff !important;
  font-weight:600;
}

.hdr-contacts{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.act-link{
  display:grid;
  grid-template-columns:20px auto;
  align-items:center;
  gap:8px;
  color:var(--blue);
  text-decoration:none;
  line-height:1.3;
  transition:transform .25s ease,opacity .25s ease;
}

.act-link:hover{
  transform:translateY(-1px);
  opacity:.85;
}

.act-link .icon{
  width:18px;
  height:18px;
  display:block;
}

.hdr-burger{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--blue);
  background:transparent;
  border-radius:999px;
  position:relative;
  cursor:pointer;
  transition:all .25s ease;
  flex-shrink:0;
}

.hdr-burger:hover{
  background:#f0f0f0;
  transform:translateY(-1px);
}

.hdr-burger span{
  position:absolute;
  left:10px;
  right:10px;
  height:2px;
  background:var(--blue);
  border-radius:2px;
  transition:all .25s ease;
}

.hdr-burger span:nth-child(1){top:11px;}
.hdr-burger span:nth-child(2){top:18px;}
.hdr-burger span:nth-child(3){bottom:11px;}

.ubb-header.is-open .hdr-burger span:nth-child(1){
  top:20px;
  transform:rotate(45deg);
}
.ubb-header.is-open .hdr-burger span:nth-child(2){
  opacity:0;
}
.ubb-header.is-open .hdr-burger span:nth-child(3){
  bottom:auto;
  top:20px;
  transform:rotate(-45deg);
}

.hdr-mobile{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform:translateY(-8px);
  transition:max-height .35s ease,opacity .25s ease,transform .35s ease;
  pointer-events:none;
  z-index:999;
}

.ubb-header.is-open + .hdr-mobile{
  max-height:80vh;
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.ubb-header.is-open .hdr-mobile{
  max-height:80vh;
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.hdr-mobile__menu{
  list-style:none !important;
  margin:0 !important;
  padding:12px 20px 20px !important;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:stretch;
  background-color:#f0f0f0;
  border-radius:25px;
}

.hdr-mobile__menu li{
  margin:0 !important;
  padding:0 !important;
}

.hdr-mobile__menu a{
  display:block;
  width:100%;
  text-align:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  color:var(--blue);
  transition:all .25s ease;
}

.hdr-mobile__menu a:hover{
  background:var(--green);
}

@media (max-width:1100px){
  .hdr-nav ul{gap:18px;}
}

@media (max-width:900px){
  .hdr-wrap{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:0 15px !important;
    gap:12px !important;
    grid-template-columns:none !important;
  }

  .hdr-actions{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:10px !important;
    justify-content:flex-end !important;
  }

  .hdr-nav,
  .hdr-contacts{
    display:none !important;
  }

  .hdr-brand{
    padding:10px 18px !important;
    flex-shrink:1 !important;
  }

  .hdr-brand img{
    height:26px !important;
  }

  .hdr-burger{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:40px !important;
    height:40px !important;
    flex-shrink:0 !important;
  }

  .hdr-burger:hover{
    background:#f0f0f0 !important;
  }

  .lang-btn{
    padding:11px 14px !important;
    font-size:14px !important;
    white-space:nowrap !important;
  }

  .lang-dropdown{
    right:0 !important;
    min-width:140px !important;
  }

  .hdr-mobile{
    display:block !important;
  }
}

@media (min-width:901px){
  .hdr-mobile{display:none !important;}
}

@media (max-width:900px){
  .lang-dropdown.show{
    transform:translateX(-60px);
  }
}

/* =========================
========================= */

/* =========================
   Footer
========================= */

.ubb-footer {
  width: 100%;
  background: #f0f0f0;
  color: var(--blue);
  padding: 50px 0px 28px;
}

.ubb-wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ubb-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--blue);
}
.ubb-brand img {
  max-width: 220px;
  height: auto;
  display: block;
}

.ubb-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.ubb-h {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.ubb-list {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
}

.ubb-list li {
  margin: 10px 0;
}

.ubb-contacts li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
  align-self: center;
  margin-top: 2px;
}

/* Links */
.ubb-list a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.ubb-list a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.ubb-copy {
  width: 100%;
  max-width: 1360px;
  margin: 40px auto 0;
  font-size: 12px;
  color: var(--blue);
  opacity: 0.9;
  text-align: center;
}

@media (max-width: 1024px) {
  .ubb-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .ubb-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ubb-brand img {
    max-width: 230px;
  }

  .cta-dashed::before {
	transform: translate(-12px, 20px) !important;
	}
}

/* =========================
========================= */

/* =========================
   Home
========================= */

.hero-cent{
	display: flex;
    align-items: center;
}


/* services */
.service-step { background: transparent; padding: 0; border: 0; box-shadow: none; }

.service-step {
  position: relative;
  background: #f0f0f0;
  border-radius: 22px;
  padding: 28px 32px 28px 80px; 
  max-width: 420px;
  min-height: 180px;
  color: var(--gray);
}

.service-step::before {
  content: "1";               
  position: absolute;
  left: 32px;
  top: 28px;
  font-size: 65px;
  font-weight: 100;
  line-height: 1;
  color: var(--blue);
}

/* Title & paragraph */
.service-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--blue);
}
.service-step p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}
.step-1::before { content: "1"; }
.step-2::before { content: "2"; }
.step-3::before { content: "3"; }
.step-4::before { content: "4"; }
.step-5::before { content: "5"; }
.step-6::before { content: "6"; }
.step-7::before { content: "7"; }
.step-8::before { content: "8"; }
.step-9::before { content: "9"; }
.step-10::before { content: "10"; }
.step-11::before { content: "11"; }
.step-12::before { padding: 28px 32px 28px 100px !important; content: "12"; }

#two{
	padding: 28px 32px 28px 100px !important;
}

/* cta contact us */
.cta-dashed {
  position: relative;
  z-index: 0;
  overflow: visible !important;
}

.cta-dashed::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(-24px, 14px);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='60' ry='60' stroke='%231F79CD' stroke-width='2' stroke-dasharray='10 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 60px;
  z-index: -1;
  pointer-events: none;
}

.cta-dashed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: 50px;
  z-index: -1;
  pointer-events: none;
}

.cta-inner{
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  color: #fff;
}

.cta-head{
  position: relative;
  min-height: 28px;
}

.cta-title{
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #fff;
  padding-bottom:0px !important;
  max-width: calc(100% - 260px);
}

.cta-text{
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 650px;
}

.cta-btn{
  position: absolute;
  right: 60px;            
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease;
}

.cta-btn:hover {
  background-color: #f0f0f0;
/* 	transform: scale(1.05); */
}

.cta-btn-alt {
  white-space: nowrap;
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 24px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease;
  display: inline-block;
  margin-top: 20px;
}

.cta-btn-alt:hover {
  transform: scale(1.05);
}


/* ⚠️ Hover color (#8DF79C) not in vars – consider var(--green-hover) *
/*.cta-btn:hover{
  background: #8DF79C;
  transform: translateY(-52%);
}*/

@media (max-width: 768px){
  .cta-title{ max-width: 100%; }
  .cta-btn{
    position: static;
    transform: none;
    margin-top: 14px;
    display: inline-block;
  }
  
	.hero-cent{
		display:flex;
		flex-direction: column;
	}
	
	
}


@media (max-width: 980px){
  .service-step{
    max-width: 100%;
  }
}


/* =========================
HOME END
========================= */

/* =========================
   Pages
========================= */

.contact-section {
  color: var(--blue);
}
.contact-section h3 {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
} /* Two-column layout */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  
}
.contact-list {
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
  padding-right: 90px !important;
  flex: 1 1 240px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.9;
}
.contact-list a {
  text-decoration: none;
  color: var(--blue);
}
.contact-list a:hover {
  text-decoration: underline;
} /* Mobile stacking */
@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-list {
  padding-right: 0px !important;
}
}

/* =========================
========================= */

/* =========================
   Components
========================= */



/* =========================
========================= */

/* =========================
   Utilities


========================= */
.salary-calculator {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.calc-header {
  margin-bottom: 35px;
  text-align: center;
}

.calc-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c3f6f;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.calc-subtitle {
  font-size: 15px;
  color: #888;
}

.input-group {
  margin-bottom: 30px;
}

.input-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0c3f6f;
  margin-bottom: 12px;
}

.input-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.input-wrapper {
  flex: 1;
  position: relative;
}

.salary-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #0c3f6f;
}

.salary-input:focus {
  outline: none;
  border-color: #0c3f6f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(12, 63, 111, 0.1);
}

.toggle-buttons {
  display: flex;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 5px;
  min-width: 190px;
}

.toggle-btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.toggle-btn.active {
  background: #0c3f6f;
  color: white;
  box-shadow: 0 3px 8px rgba(12, 63, 111, 0.25);
  transform: translateY(-1px);
}

.toggle-btn:hover:not(.active) {
  background: rgba(12, 63, 111, 0.05);
}

.results-container {
  background: linear-gradient(135deg, #0c3f6f 0%, #165a8f 100%);
  border-radius: 16px;
  padding: 35px 30px;
  margin-bottom: 0;
  color: white;
  box-shadow: 0 8px 24px rgba(12, 63, 111, 0.2);
  position: relative;
}

.result-main {
  margin-bottom: 0;
  text-align: center;
  position: relative;
}

.result-label {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-size: 48px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.result-currency {
  font-size: 28px;
  font-weight: 600;
  opacity: 0.9;
}

.copy-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  z-index: 3;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px) scale(1.05);
}

.copy-btn:active {
  transform: translateY(0px) scale(0.96);
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}

.copy-feedback {
  position: absolute;
  top: 64px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #0c3f6f;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.copy-feedback.show {
  opacity: 1;
}

.details-section {
  display: none;
}

@media (max-width: 640px) {
  .salary-calculator {
    padding: 20px;
  }

  .calc-title {
    font-size: 24px;
  }

  .input-row {
    flex-direction: column;
  }

  .toggle-buttons {
    min-width: 100%;
  }

  .result-value {
    font-size: 28px;
  }
  
.copy-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    z-index: 3;
}
}




