/* =========================================
Assets CSS for Agile Tech Business
Fully functional for _s theme
========================================= */

/* Import Poppins font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 
:root {
  --color-primary: #048222;
  --text-color: #0D2549;
  --color-primary-dark: #07602d;
  --color-secondary: #000;
  --color-background: #ffffff;
  --color-footer-bg: #f8f9fa;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-fast: 0.3s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
  --border-radius: 20px;
}
 
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary); 
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.5px; 
}
h1 {
  font-size: 44px;
  font-weight: 600;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

p {
  margin-bottom: 1rem;
  color: var(--color-secondary);
  font-size: 1rem; 
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-primary-dark);
}

button,
.button {
  cursor: pointer;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}
button:hover,
.button:hover {
  background-color: #fff;
  transform: translateY(-2px);
  color: var(--color-primary);
}
li.button.menu-item:hover a{
  color: var(--color-primary);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =====================
Animations
===================== */
/* @keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeInUp {
  0% { opacity:0; transform:translateY(10px); }
  100% { opacity:1; transform:translateY(0); }
} */

.reveal-left {
  transform: translate3d(-60px, 0, 0);
}

.reveal-right {
  transform: translate3d(60px, 0, 0);
}

.reveal-up {
  transform: translate3d(0, 60px, 0);
}
 /* Text Entry */
@keyframes heroTextEntry {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Entry */
@keyframes heroImageEntry {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating (starts later) */
@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


 @keyframes revealSmooth {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
 
/* Floating subtle motion */
@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Scroll Reveal Base */
/* .reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1.3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
} */
/* Default state (VISIBLE if JS fails) */
.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition:
    opacity 1.3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Only hide when JS is active */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.97);
  filter: blur(6px);
}

/* Active animation state */
.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

 
.header {
  position: sticky;         
  top: 0;                  
  left: 0;
  width: 100%;
  background-color: #ffffff;  
  z-index: 999;            
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);  
  transition: background-color 0.3s ease, padding 0.3s ease;
}
/* .header__container {
  margin: 0 auto;            
  padding: 0 2rem;             
  display: flex;               
  align-items: center;         
  justify-content: space-between;  
  height: 80px;                
} */
 .desktopMenu, .mobileMenu {
    margin: 0 auto;
    /* padding: 0 2rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.current-menu-item.current_page_item a {
    color: var(--color-primary);
}
.header__nav-link {
  font-weight: 500;
  transition: color var(--transition-fast);
  color: #0D2549;
}
.header__nav-link:hover {
  color: var(--color-primary-dark);
}

.header__button {
  margin-left: 2rem;
}
.button a.header__nav-link {
  color: #fff;
}

 
.hero {
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero__content {
  flex: 1;
  max-width: 540px;
}


.hero__title {
  animation: heroTextEntry 0.7s ease forwards;
}

.hero__subtitle {
  animation: heroTextEntry 0.7s ease forwards;
  animation-delay: 0.15s;
}

.hero__button {
  animation: heroTextEntry 0.7s ease forwards;
  animation-delay: 0.3s;
  font-size: 18px;
}

.hero__image img {
  width: 100%;
  /* max-width: 500px; */
  height: auto;
  border-radius: var(--border-radius);
  opacity: 0;
  animation:
    heroImageEntry 1.2s ease forwards 0.4s,
    floatSlow 6s ease-in-out infinite 1.2s;
}
 

.hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero__image img {
  will-change: transform, opacity;
}

 
.footer {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 20px 0;
}

.footer__inner {
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__text {
  line-height: 1.2;
  font-weight: 600;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.footer__nav-list li a {
  color: #0D2549;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer__nav-list li a:hover {
  color: #07602d;
}

section {
  padding: 5rem 0;
}

.section__title {
  text-align: center;
  margin-bottom: 2rem;
}


 
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card--hover{
  transition: transform .28s ease, box-shadow .28s ease;
}
.card--hover:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadowHover);
}
 
.iconBox{
  width:42px;height:42px;
  border:1px solid rgba(37,99,235,.20);
  border-radius:10px;
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(37,99,235,.10));
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.iconBox svg{width:22px;height:22px;stroke:#1f2937}


 
.grid{display:grid;gap:18px}

 
.demandingGrid{
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.demandingCard {
  padding: 16px 16px 14px;
  border: 1px solid #D7D6D6;
  border-radius: 10px; 
}
.resourcesright-innerbox .demandingCard {
  margin-top: 30px;
}
.demandingHead{
  display:flex;
  gap:12px;
  align-items:center;
}
 
.aboutWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.aboutImage{
  height:190px;
  border-radius:12px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:
  linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,197,94,.10)),
  radial-gradient(circle at 30% 20%, rgba(37,99,235,.25), transparent 55%),
  radial-gradient(circle at 70% 70%, rgba(34,197,94,.22), transparent 55%),
  #ffffff;
  position:relative;
  overflow:hidden;
}
.aboutImage::after{
  content:"";
  position:absolute;
  left:18px; right:18px; bottom:14px;
  height:54px;
  border-radius:10px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(229,231,235,.75);
  backdrop-filter: blur(6px);
}
.aboutTextCard{
  padding:14px 16px;
  box-shadow:none;
}
.aboutTextCard p{
  margin:0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.75;
}
 
.customerTop{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
  margin-top:14px;
}
.customerText{
  padding:16px 16px 14px;
  box-shadow:none;
}
.customerText h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:700;
}
.customerText p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:12.8px;
  line-height:1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  border-radius: 10px;
  background: #048222;
  border: 1px solid #048222;
  color: #fff;
  text-decoration: none; 
  font-size: 18px; 
}
.btn:hover {
  background: #fff;
  color: #048222;
}

.customerArt{
  padding:0;
  overflow:hidden;
  box-shadow:none;
}
.customerArtInner{
  height:100%;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:
  radial-gradient(circle at 25% 30%, rgba(34,197,94,.18), transparent 55%),
  radial-gradient(circle at 70% 70%, rgba(37,99,235,.16), transparent 55%),
  #ffffff;
}
.customerArtTitle{
  margin:0;
  font-weight:800;
  font-size:22px;
  line-height:1.05;
}
.bubbleRow{
  display:flex;
  gap:8px;
  margin-top:10px;
  align-items:center;
}
.bubble{
  width:32px;height:32px;
  border-radius:999px;
  background:rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.25);
  display:grid;
  place-items:center;
  font-size:14px;
}
.illustration{
  width:170px;
  height:130px;
  border-radius:12px;
  border:1px solid var(--line);
  background:
  linear-gradient(135deg, rgba(37,99,235,.10), rgba(34,197,94,.10)),
  #f8fafc;
  position:relative;
}
.illustration::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:12px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(34,197,94,.65), rgba(37,99,235,.65));
  opacity:.85;
}
 
.miniGrid{
  margin-top:100px;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
.miniCard{
  padding:14px 14px 12px;
  box-shadow:none;
}
.miniHead{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
 
.resourcesWrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:10px;
}  
.resourcesRight{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.resourceCard{
  padding:14px;
  box-shadow:none;
}
.resourceCard h4{
  margin:0 0 6px;
  font-size:13px;
  font-weight:800;
}
.resourceCard p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:12.4px;
  line-height:1.6;
}
.readMore{
  color:var(--blue);
  text-decoration:none;
  font-weight:700;
  font-size:12.3px;
  display:inline-flex;
  gap:6px;
  align-items:center;
}
 
.featuresGrid{
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}
.featureCard{
  padding:16px 14px;
  text-align:center;
  box-shadow:none;
}
.featureIcon{
  width:46px;height:46px;
  border-radius:12px;
  border:1px solid rgba(37,99,235,.20);
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(37,99,235,.10));
  display:grid;
  place-items:center;
  margin:0 auto 10px;
}
.featureIcon svg{width:22px;height:22px;stroke:#1f2937}
.featureText{
  margin:0;
  font-size:12.4px;
  color:#1f2937;
  font-weight:600;
  line-height:1.45;
}


.txt-cntr {
  text-align: center;
}
h2.text-left {
  text-align: left;
  margin: 0 0 20px 0;
}
.miniGrid .demandingHead {
  align-items: flex-end;
}
.miniGrid .demandingHead .titleSm {
  font-size: 22px;
  font-weight: 600;
}
.miniGrid .txt-cntr {
  text-align: left;
}
.resourcesRight p {
  font-size: 15px;
}
.resourcesright-innerbox:nth-child(2) {
  margin-top: 60px;
}
.right-btn {
  text-align: right;
}
.grid.featuresGrid .demandingCard {
  margin: 0;
  text-align: center;
}
.grid.featuresGrid .demandingCard img {
  margin-bottom: 40px;
  width: 80px;
  height: 80px;
}
.f-text p {
  color: #676767;
  font-size: 13px;
  margin: 0;
}
.hero__image img {
  float: right;
  display: table;
}
.demandingCard:nth-child(1) { transition-delay: 0.2s; }
.demandingCard:nth-child(2) { transition-delay: 0.3s; }
.demandingCard:nth-child(3) { transition-delay: 0.4s; }
.demandingCard:nth-child(4) { transition-delay: 0.5s; }
.lastSec {
    padding-top: 30px;
}
.f-text {
  margin: 20px 0;
}
nav.rank-math-breadcrumb p span.last {
  color: var(--color-primary);
}
nav.rank-math-breadcrumb p a {
  color: #000;
  text-decoration: underline;
}


.about-who {
  position: relative;
  background: url(../../assets/images/bg.webp) center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}

.about-who::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%));
    z-index: -1;
}
 
.about-who::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  animation: subtleMove 18s ease-in-out infinite alternate;
  z-index: -1;
}


@keyframes subtleMove {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  100% {
    transform: translateX(40px) translateY(20px);
  }
}

.about-who {
    margin-bottom: 60px;
}

pre.wp-block-verse {
    border-left: 10px solid var(--text-color);
}

pre.wp-block-verse, blockquote { 
    padding: 10px;
    border: 1px solid #D7D6D6; 
    border-left: 7px solid var(--text-color);
    margin: 30px 0;
}
ul.wp-block-list {
    padding-left: 30px;
    margin: 20px 0;
}



.accordion-header {
    background-color: #fff;
    color: #0D2549;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex; 
    user-select: none;
    font-size: 18px;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 4px 16px 4px #e7e7e7;
    border: 0;
    border-radius: 0;
    margin: 10px 0;
}
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
  }
  .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
  }
  .accordion-header[aria-expanded="true"] .icon {
    transform: rotate(180deg); 
  }
  .accordion-header[aria-expanded="true"] { 
    background-color: #048222;
    color: #fff;
  }
.accordion-content {
  overflow: hidden; 
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 16px;
}
.accordion-content.open {
  padding: 12px 16px;
}
.accordion-content p {
  color: #676767;
}

.custom-post-navigation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.custom-post-navigation a {
    display: inline-block;
    padding: 6px 16px;
    background: #0D2549;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 26px;
}

.custom-post-navigation a:hover {
    background: #048222;
}
.post-detail-template .post-thumbnail {
    margin: 40px auto;
    text-align: center;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 40px;
}
.services-list .service-box {
    border: 1px solid #D7D6D6;
    border-radius: 10px;
}
.services-list .service-box .service-content-box {
    padding: 14px;
}
.services-list .service-box .service-content-box .service-title a {
    color: #000;
    border-bottom: 1px solid;
    line-height: 36px;
}
.services-list a.read-more {
    color: #013A73;
}
.services-list a.read-more:hover {
    color: #000;
}



.custom-page-navigation {
    text-align: center;
    margin-top: 60px;
}

.custom-page-navigation ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
}

.custom-page-navigation li {
    margin: 0 5px;
}

.custom-page-navigation a, .custom-page-navigation span {
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #0D2549;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.custom-page-navigation .current {
    background: #048222;
    color: #fff;
}
.custom-page-navigation a:hover, .custom-page-navigation span:hover {
    background: #048222;
}
.cst-serv-search {
    border: 1px solid #DCDCDC;
    padding: 10px 10px;
    height: 50px;
    width: 100%;
    outline: none;
    border-radius: 5px;
}
.cust-serv-top-box {
    display: grid;
    grid-template-columns: 6fr 2fr;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
    justify-content: space-between;
}
.services-list .service-box .service-image img {
    width: 100%;
}
.services-list p.no-records {
    margin-top: 50px;
    padding: 10px;
    font-size: 20px;
}
.main-wrapper {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 40px;
}
.main-wrapper .left-panel section {
    padding-top: 0;
}
.main-wrapper .right-panel section {
    padding: 0;
}
button.wp-block-search__button {
    border-radius: 0 5px 5px 0;
    margin: 0;
}
input#wp-block-search__input-1, input.search-field {
    padding: 0 20px;
    border-radius: 5px 0 0 5px;
    outline: none;
    height: 42px;
    border: 1px solid;
}
button.wp-block-search__button:hover {
    transform: none;
}
input.search-submit {
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 1rem; 
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    height: 42px;
}
.entry-content figure.wp-block-image {
    margin: 30px 0;
}
.contact-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.address-text {
    margin-top: 30px;
}
.services-list.category-lists .category-list img {
    width: 100%;
}
.services-list.category-lists .category-list a.lnk {
    color: #000;
    border-bottom: 1px solid;
    line-height: 36px;
}
.services-list.category-lists .category-list .cat-text {
    padding: 14px;
}
.mobileMenu, .mblShow {
    display: none;
}
label.wp-block-search__label.screen-reader-text {
    display: none;
}
p.formTxt {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}
.form-box {
    border: 1px solid #D7D6D6;
    padding: 20px 120px 20px 60px;
    margin: 20px 0 100px 0;
    position: relative;
}
.form-box:after {
    content: "";
    background: url(../../assets/images/phone-icon.svg) center / cover no-repeat;
    right: 0;
    position: absolute;
    top: 0;
    width: 91px;
    height: 291px;
    display: table;
} 
.form-box:before {
    content: "";
    background: url(../../assets/images/email-icon.svg) center / cover no-repeat;
    left: -60px;
    position: absolute;
    bottom: -60px;
    width: 124px;
    height: 113px;
    display: table;
}
.contact-sec .form {
    border: 1px solid #D7D6D6;
    padding: 20px;
}
.side-form {
    border: 1px solid #D7D6D6;
    margin-top: 30px;
}
.side-form h4 {
    background: #048222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.frm-inner {
    padding: 10px 20px;
}