@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

body, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Poppins', sans-serif !important;
}

/* ================================
        HERO SECTION
=================================*/
.team-hero-wrapper {
    max-width: 1450px;
    width: 100%;
    padding: 30px 0px 0 0px;
    position: relative; /* for absolutely positioned icon */
    margin: 0 auto;
}

.team-hero {
    height: 300px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden; /* only background gets cut */
    border-radius: 8px;
    position: relative;
	background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center !important;
}

.fixed-icon {
    position: absolute;   /* now positioned relative to wrapper */
    top: 120px;
    right: -35px;
    width: 100px;
    height: 100px;
    z-index: 10; /* on top */
}
.published-date{
	font-size: 20px;
    color: #000000;
}
.team-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.team-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;      /* MOST IMPORTANT */
}

.team-hero h1 {
    font-size: 70px;
    font-weight: 800;
    color: white !important;
    margin: 0;
}

.team-hero p {
    font-size: 35px;
    font-weight: 400;
    color: #f4cd22;
    padding-top: 20px !important;
    margin: 0px;
}

/* SEARCH BOX */
.team-search-box {
    display: flex;
    justify-content: flex-end;   /* Search Box Right Side */
    margin-top: 20px;
}

.team-search-box form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 10px;
    max-width: 340px;
}

.search-svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

.team-search-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 30px;
    height: 100%;
    line-height: normal; 
    padding: 4px 0; 
    box-shadow: none;
}

.team-search-box input[type="text"]::placeholder {
    color: #000000;
}

.team-filters{
	padding-top: 30px;
}

/* GRID SECTION */
.team-grid-section {
    padding: 0px 0px;
    max-width: 1450px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0px !important;
}

/* =============================
   TEAM CARD WITH TOP IMAGE
============================= */
.team-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-card-body-flat {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 120px !important; /* Card height set (adjustable) */
    align-items: center !important; /* CENTER vertically */
	display: grid !important;
}

.name_designation {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* CENTER vertically inside */
}

.name_designation h3 a{
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: black;
}

.name_designation h3 a:hover {
    color: #f4cd22; 
    cursor: pointer;
}
.name_designation .membership {
    font-size: 30px;
    font-weight: 400;
}

.name_designation p {
    margin: 4px 0 0;
    font-size: 18px;
    color: #EAC02B;
}

/* TOP IMAGE */
.team-top-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* BOTTOM WHITE PANEL */
.team-card-body-flat {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #fff;
    padding: 0;
    margin: 0;
    display: grid;
}

.name_designation {
    padding: 10px 20px;
    line-height: 1;
}


/* LEFT TEXT */
.team-card-body-flat h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 0.9;
}

.team-card-body-flat .membership {
    font-size: 22px;
    font-weight: 400;
}

.team-card-body-flat p {
    margin-top: 3px;
    font-size: 16px;
    color: #EAC02B;
    font-weight: 400;
}

/* RIGHT YELLOW ARROW BOX */
.team-arrow-box {
    background: #EAC02B;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    
}


.team-arrow-flat i {
    color: #fff;
    font-size: 22px;
}

/* ==========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .team-hero-wrapper {
    width: auto;
    padding: 20px 20px 0 20px;
    position: relative; /* for absolutely positioned icon */
}
.fixed-icon {
    right: -15px;
}
.team-grid-section {
    padding: 0px 20px;
    width: auto;
    margin: 0 auto;
}
.team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns tablet screens */
    gap: 20px;
	margin: 20px 20px !important;
}
.name_designation h3 a{
    font-size: 25px;
}
.team-card-body-flat .membership{
    font-size: 25px;
}
.team-card-body-flat {
    height: 150px; /* Card height set (adjustable) */
}
.team-top-image {
   
    height: 300px; 
}

.team-hero {
        height: 350px;
        padding: 0 40px;
    }

    .team-hero h1 {
        font-size: 50px;
    }

    .team-hero p {
        font-size: 24px;
    }

    .team-search-box {
        width: 370px;
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
     .team-hero-wrapper {
    width: auto;
    padding: 10px 10px 0 10px;
    position: relative; /* for absolutely positioned icon */
}
.fixed-icon {
    right: -25px;
}
.team-grid-section {
    padding: 0px 10px;
    width: auto;
    margin: 0 auto;
}
    .team-grid {
        grid-template-columns: 1fr; /* 1 column mobile screens */
        gap: 10px;
		margin: 10px 10px !important;
    }

    .team-hero {
        height: 300px;
        padding: 0 10px;
    }

    .team-hero h1 {
        font-size: 40px;
    }

    .team-hero p {
        font-size: 20px;
    }

    .team-search-box {
        width: 100%;
        padding: 0px 0px;
    }
    .team-search-box form {
    justify-content: flex-start;
}
    .team-search-box form {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        max-width: 240px;
        margin-left: 0;
        margin-right: auto;
    }
	.team-search-box input[type="text"] {
   
    font-size: 20px;
    
}

    .team-card-body-flat {
        grid-template-columns: 1fr; /* Arrow moves below text */
        height: auto;
    }

    .team-arrow-box {
        width: 100%;
        padding: 15px 0;
        justify-content: flex-center;
    }

    .name_designation {
        padding: 20px 20px 20px 20px;
        text-align: left;
    }

    .name_designation h3 {
        font-size: 25px;
    }

    .name_designation .membership {
        font-size: 25px;
    }

    .name_designation p {
        font-size: 16px;
    }

    .team-top-image {
        height: 300px;
    }
}

/* Case Study Archive  */
.case-hero-wrapper {
    max-width: 1450px;
    width: 100%;
    padding: 30px 0px 0 0px;
    position: relative; /* for absolutely positioned icon */
    margin: 0 auto;
}

.case-hero {
    height: 300px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden; /* only background gets cut */
    border-radius: 8px;
    position: relative;
	background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center !important;
}

.case-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.case-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;      
}

.case-hero h1 {
    font-size: 70px;
    font-weight: 800;
    color: #FFFFFF !important;
    margin: 0;
}

.case-hero p {
    font-size: 35px;
    font-weight: 400;
    color: #f4cd22;
    padding: 0px;
    margin: 0px;
}

/* SEARCH BOX */
.case-search-box {
    display: flex;
    justify-content: flex-end;   
    margin-top: 20px;
}

.case-search-box form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 10px;
    max-width: 380px;
}

.case-search-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 30px;
    height: 100%;
    line-height: normal; 
    padding: 4px 0; 
    box-shadow: none;
}

.case-search-box input[type="text"]::placeholder {
    color: #000000;
}

/* =============================
   CASE STUDY CARD WITH TOP IMAGE
============================= */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 0 ;
}

.case-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.case-card-body-flat {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #fff;
    padding: 0;
    margin: 0;
    height: 140px;
    align-items: center;
}

.name_service {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name_service h3 a {
    margin: 0;
	line-height: 1 !important;
    font-size: 25px;
    font-weight: 700;
    color: black;
    text-decoration: none;
}

.case_name{
     padding-bottom: 10px !important;
	 padding-top: 10px;
	 margin: 0px !important;
}

.name_service h3 a:hover {
    color: #f4cd22; 
    cursor: pointer;
}

.name_service .service {
    font-size: 20px;
    font-weight: 400;
    color: #EAC02B;
}

/* TOP IMAGE */
.case-top-image {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* RIGHT YELLOW ARROW BOX */
.case-arrow-box {
    background: #EAC02B;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.client-name{
    color: #000;
}
.case-arrow-flat i {
    color: #fff;
    font-size: 22px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
   
    .case-hero-wrapper {
    padding: 20px 20px 0 20px;
}
.case-study-filters select {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    appearance: none;
    width: 300px !important;
    max-width: 100%;
    height: 50px;
}
.case_name {
    padding-top: 5px;
    padding-bottom: 5px;
}
.name_service .service {
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    color: #EAC02B;
}

.client-name {
    color: #000;
    line-height: 1;
}
.case-card-body-flat {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #fff;
    padding: 0;
    margin: 0;
    height: 160px;
    align-items: center;
}

 .case-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px ;
        gap: 20px;
    }
}

@media (max-width: 768px) {
.case-grid {
    grid-template-columns: 1fr;
    padding: 30px 10px 10px 10px ;
}
.case-hero-wrapper {
    padding: 10px 10px 0 10px;
}
.case-hero p {
    font-size: 20px;
    padding-top: 10px;
    line-height: 1;
}
.case-search-box {
    display: flex;
    justify-content: start;
    margin-top: 20px;
}
.case-study-filters {
    gap: 10px !important;
    padding: 10px 0px 0 10px !important;
    align-items: center !important;
}
.case-top-image {
    height: 280px;
    }
    .case-hero {
        height: 300px;
        padding: 0 10px;
    }
    .case-hero h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
    .name_service .service {
        font-size: 18px;
    }
	.case-search-box form{
		max-width: 300px !important;
	}
	.case-search-box input[type="text"]{
		font-size: 20px !important;
	}
	.search-svg {
    width: 20px;
    height: 20px;
}
}

.case-grid-section {
    max-width: 1450px;
    margin: 0 auto;
}

/* case study filter */
.case-study-filters {
    max-width: 1450px;
    display: flex;
    margin: 0 auto;
    gap: 20px;
    padding: 30px 0px 0 0px;
    align-items: center;
}
.filter_text{
    color: black;
    font-size: 20px;
}

.case-study-filters label {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-right: 10px;
}

.filter_form{
    display: flex; 
    gap: 20px; 
    align-items: center;
}

.case-study-filters select {
    background-color: #000; /* black background */
    color: #fff;            /* white text */
    border: none;
    padding: 10px 15px; 
    border-radius: 8px;     /* rounded corners */
    font-size: 20px;
    cursor: pointer;
    appearance: none;       /* removes default arrow in some browsers */
    width: 350px !important;           /* set dropdown width */
    max-width: 100%; 
    height: 50px;      
}

.case-study-filters select:focus {
    border-radius: 0px;
    outline: none; /* removes default browser outline */
}

.case-study-filters select option {
    color: #ffffff; /* option text black */
    background-color: #1c1c1c; /* option background white */
}

/* Optional: add hover effect */
.case-study-filters select:hover {
    opacity: 0.9;
}

/* load more button */
#case-load-more{
    border-style: solid;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-bottom-width: 0px;
    color: var(--ast-global-color-2);
    border-color: var(--ast-global-color-7);
    background-color: #EAC02B;
    padding-top: 20px;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
    font-weight: 700;
    font-size: 20px;
    font-size: 3.1111111111111rem;
    line-height: 1em;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Podcast and Team load more buttons */
#podcast-load-more,
#team-load-more {
   border-style: solid;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-bottom-width: 0px;
    color: var(--ast-global-color-2);
    border-color: var(--ast-global-color-7);
    background-color: #EAC02B;
    padding-top: 20px;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
    font-weight: 700;
    font-size: 20px;
    font-size: 3.1111111111111rem;
    line-height: 1em;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}


.services-archive-wrapper{
  max-width: 1450px;
  margin: 0 auto;
}

/* GRID */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 30px;
}

/* CARD */
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-card-image img {
  display: block;
  width: 100%;
  height: 300px;         
  object-fit: cover;
}

/* bottom bar */
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.service-card-title {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  padding: 20px 30px;
  color: #111111;
}

/* colored square with arrow */
.service-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 100px;
}
.arrow-icon {
  width: 60px;
  height: 60px;
}


.service-card:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px;
    gap: 20px;
  }
  .service-card-image img
 {
    height: 250px;
}
}

@media (max-width: 640px) {
  .services-list {
    grid-template-columns: 1fr;
    margin: 10px;
    gap: 10px;
  }
	.filter_form {
        flex-direction: column;
		gap: 0;
    }
    .filter_form select {
        width: 100% !important;   
		gap: 0px;
        margin-bottom: 10px; 
    }
	.name_service h3 a {
		font-size: 25px;
   line-height: 1.2 !important;
		margin: 15px 0px !important;
}
	#case-load-more {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.1111111111111rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
}

.team-filters input[type="text"],
.team-filters select {
    background-color: black !important; /* typo fix */
    color: white !important;
    width: 300px; /* default width */
    padding: 6px 10px;
    border: 1px solid #444; /* subtle border */
    border-radius: 4px;
}
.team-filters input[type="text"]::placeholder {
    color: white !important;
    opacity: 1; /* ensure full white, not transparent */
}

@media (max-width: 999px) {
    .team-filters {
        padding: 20px 20px 0px 20px !important;
	}
}

/* Mobile layout only */
@media (max-width: 768px) {
    .team-filters {
        display: flex !important;
        flex-direction: column !important; /* inputs vertically stack */
        gap: 10px !important;
        align-items: stretch !important;
        padding: 10px !important;
    }

    .team-filters select,
    .team-filters input[type="text"] {
        width: 100% !important; /* full width inputs */
    }

    /* Buttons row wrapper */
    .team-filters-buttons {
        display: flex !important;
        justify-content: space-between !important;
        gap: 4% !important;
        width: 100%;
    }

    .team-filters-buttons .button {
        width: 48% !important; /* buttons side by side */
        text-align: center !important; /* Reset text center */
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}


