/*** Auriic new home page design css */ 
/* =============================================
   GLOBAL RESET & BASE
============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a, a:hover, a:active, a:focus{
    color: #ffffff;
}
body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.banner-slider {
  position: relative;
    width: 100%;
    height: 100vh;
    /* min-height: 768px; */
    overflow: hidden;
    background: #007A67;
}

.slider-wrapper { position: relative; width: 100%; height: 100%; }
.slides { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; }

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,122,103,0.4), rgba(0,74,62,0.75) 55%, rgba(0,50,42,0.88));
}

.content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 60px;
  color: white;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 30px;
}

.heading-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  width: max-content;
}

.gold-bar {
  width: 6px;
  height: 145px;
  background: #D4AF37;
  flex-shrink: 0;
  margin-top: 6px;
}

.main-heading {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
}

.gold-text {
  color: #D4AF37;
}

.description {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin-bottom: 35px;
    opacity: 0.95;
    display: flex;
    width: 870px;
}

.buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  width: max-content;
}

.buttons span{
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.banner-slider .buttons .btn {
  background: linear-gradient(180deg, #C9982C 0%, #937228 100%);
  color: #004d40 !important;   /* or white */
  padding: 14px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
  border: none !important;
  text-decoration: auto;
}

.banner-slider .buttons .btn:hover {
  /* background: #e8c76f !important; */
  /* transform: translateY(-4px) !important; */
  /* box-shadow: 0 12px 28px rgba(212,175,55,0.4) !important; */
}
/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: rgba(212,175,55,0.9);
  color: #00332b;
}

.prev { left: 30px; }
.next { right: 30px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active,
.dot:hover {
  background: #D4AF37;
  transform: scale(1.4);
}

.marquee-track .logo-slider{
    filter: brightness(0) invert(1);
    height: 70px;
    width: 6%;
}

/* Responsive */

/* Responsive */

    .has-dropdown > a{
        gap: 0px;
    }
    .nav-menu ul{
        gap: 25px;
    }
    .trusted-logos {
        background: #007A67;
        padding: 90px 0;
        overflow: hidden;
    }

    .trusted-container {
        max-width: 95%;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 0px 80px 0px 60px;
    }

    /* LEFT SIDE */
    .trusted-left {
        color: #ffffff;
    }

    .trusted-number {
        font-size: 90px;
        font-weight: 700;
        margin: 0;
        color: transparent;
        -webkit-text-stroke: 2px #C79C36;
    }

    .nav-container .logo{
        width: 35%;
    }

    .trusted-text {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 20px;
        max-width: 300px;
    }

    /* RIGHT SIDE */
    .trusted-right {
        flex: 1;
        position: relative;
    }

    /* Fade effect on edges */
    .trusted-right::before,
    .trusted-right::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .trusted-right::before {
        left: 0;
        background: linear-gradient(to right, #007A67, transparent);
    }

    .trusted-right::after {
        right: 0;
        background: linear-gradient(to left, #007A67, transparent);
    }

    /* MARQUEE */
    .marquee-wrapper {
        overflow: hidden;
    }

    .marquee-track {
        display: flex;
        gap: 80px;
        animation: scroll 25s linear infinite;
        width: max-content;
    }

    .logo {
        height: 70px;
        /* opacity: 0.7; */
        /* filter: brightness(0) invert(1); */
        transition: 0.3s ease;
    }

    .logo:hover {
        /* opacity: 1; */
        /* transform: scale(1.05); */
    }

    /* Animation */
    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }



.why-choose-us {
    background: #007A67;
        padding-bottom: 50px;
}

.why-wrapper {
    width: 95%;
    max-width: 95%;
    margin: auto;
    position: relative;
}

/* BACK OFFSET CARD */
.why-layer {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: #1E1E1E;
    border-radius: 26px;
    z-index: 1;
}

.whychoose-wrapper{
    display: flex;
    <!-- flex-direction: column; -->
    width: 100%;
}
/* MAIN CARD */
.why-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 70px;
    background: linear-gradient(216.93deg, #007260 58.27%, #003B31 99.98%);
    padding: 80px;
    border-radius: 26px;
    width: 100%;
}

/* TEXT */
.why-text {
    
    color: #ffffff;
    width: 50%;
}

.why-label {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    left: -78px;
}

.why-text h2 {
    font-size: 54px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 700;
    width: 100%;
    color: white !important;
}

.gold {
    color: #C79C36;
}

.gold-line {
    width: 70px;
    height: 3px;
    background: #C79C36;
    margin-bottom: 30px;
}

.why-text p {
   font-size: 28px;
    /* line-height: 0.1; */
    margin-bottom: 40px;
    width: 75%;
    opacity: 0.95;
    color: rgba(255, 255, 255, 1);
    width: 100%;
}



/* BUTTONS */
.why-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: rgba(147, 114, 40, 1) !important;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b6892e !important;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(147, 114, 40, 1) !important;
    color: #ffffff;
}

/* IMAGE SIDE */
.why-image {
    flex: 1;
}

.image-box {
    padding: 10px;
    border-radius: 20px;
    top: 5%;
    position: absolute;
    width: 70%;
    right: -50%;
}

.image-box img {
    width: 65%;
}
/* ================================
   Scoped Under Parent Class
================================ */

.talent-section{
    background:#0f7664;
    padding:60px 40px;
    font-family: 'Segoe UI', sans-serif;
}

.talent-section .section-title{
    color:#fff;
    font-size:44px;
    font-weight:600;
    margin-bottom:50px;
    position:relative;
}

.talent-section .section-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:120px;
    height:3px;
    background:#f4b400;
}

.talent-section .slider-wrapper{
    position:relative;
}

.talent-section .card-container{
    display:flex;
    gap:30px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.talent-section .card{
    flex: 0 0 300px;
    background: #0b5f52;
    height: 370px;
    border-radius: 12px;
    position: relative;
}

.talent-section .card img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:12px;
}

.card-content span{
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: end;
}

.talent-section .card-content{
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
    flex: 1 0 auto;
}

.talent-section .card-title{
    text-align:right;
    font-size:18px;
    font-weight:500;
    line-height:1.4;
    flex:1;
}

.talent-section .card-btn{
   width: 42px;
    height: 42px;
    background: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-right: 15px;
    flex-shrink: 0;
}


/* Navigation */
.talent-section .nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    border:none;
    background:#f4b400;
    color:#000;
    font-size:20px;
    cursor:pointer;
    z-index:10;
}

.talent-section .nav-btn:disabled{
    opacity:0.4;
    cursor:not-allowed;
}

.talent-section .prev{ left:-25px; }
.talent-section .next{ right:-25px; }

.arrow-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, #c89c2c, #a87f20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.arrow-btn:hover {
    transform: scale(1.08);
}

/* Fade on right edge */
.carousel-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #0b7a67 40%, transparent);
    pointer-events: none;
    z-index: 2;
}



/* Hide scrollbar but keep functionality */
.carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.carousel-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

/* GOLD BUTTON */
.arrow-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, #c89c2c, #a87f20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.arrow-btn:hover {
    transform: scale(1.08);
}

/* RIGHT EDGE TOUCH EFFECT */
.carousel-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #0b7a67 40%, transparent);
}

.core-team {
    background: #0b7a67;
    padding: 120px 0;
    overflow: hidden;
}

.container {
    width: 92%;
    margin: auto;
}

/* HEADER */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.team-title h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
}

.gold-line {
    width: 60px;
    height: 4px;
    background: #c89c2c;
    margin-top: 12px;
}

/* NAV BUTTONS */
.team-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn.next {
    background: linear-gradient(145deg,#c89c2c,#a87f20);
    border: none;
}

/* SLIDER */
.team-slider {
    overflow: hidden;
}

.team-track {
    display: flex;
    gap: 70px;
    transition: transform 0.6s ease;
}

/* CARD */
.team-card {
    width: 270px;
    position: relative;
}

/* IMAGE */
.team-image {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bg-panel {
    position: absolute;
    width: 220px;
    height: 300px;
    background: #0f8a77;
    top: 40px;
    border-radius: 6px;
    z-index: 1;
}

.team-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

/* Hover effect */
.team-card:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
}

/* INFO CARD */
.team-info {
    background: #0f8a77;
    padding: 24px 22px;
    border-radius: 6px;
    position: relative;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.75);
}

.team-info h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.team-info p {
    margin: 6px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* GOLD BUTTON */
.arrow-btn {
    position: absolute;
    left: 18px;
    top: -22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg,#c89c2c,#a87f20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ===== REAL STARTUPS SECTION ===== */

.rsu-section {
    background: #007A67;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.rsu-container {
    max-width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.rsu-left {
    width: 50%;
}

.rsu-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    line-height: 54px;
}

.rsu-title span {
    color: #d4af37;
}

.rsu-subtitle {
    font-size: 24px;
    margin-top: 20px;
}

/* RIGHT SIDE */
.rsu-testimonial-area {
    width: 40%;
    position: relative;
}

.rsu-testimonial-wrapper {
    position: relative;
    height: 280px;
}

.rsu-testimonial {
    position: absolute;
    width: 100%;
    background: #0b6d59;
    padding: 30px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.rsu-testimonial.rsu-active {
    opacity: 1;
    transform: translateY(0);
}

.rsu-quote {
    font-size: 28px;
    color: #d4af37;
}

.rsu-text {
    margin: 15px 0;
    line-height: 28px;
    font-size: 22px;
}

.rsu-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rsu-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* DOT NAVIGATION */
.rsu-dots {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rsu-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.rsu-dot.rsu-active {
    opacity: 1;
    background: #d4af37;
}


/* MAIN GREEN SECTION */
.contact-section {
    background: #007A67;   /* FIXED COLOR */
    padding: 100px 20px 140px;
    text-align: center;
    color: #fff;
}

/* HEADER */
.contact-small {
    color: #D4AF37;
    font-weight: 600;
    display: block;
    font-size: 32px;
    text-decoration: underline;
    margin-bottom: 10px;
}

.contact-header h2 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #ffffff;
}

/* CARD */
.contact-card {
    max-width: 1100px;
    margin: auto;
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* LEFT FORM */
.contact-form-area {
    background: #f5f5f5;
    width: 50%;
    padding: 50px 45px;
    text-align: left;
}

.contact-form-area h3 {
    margin-top: 0;
    font-size: 24px;
    color: rgba(0, 0, 0, 1) !important;
}

.contact-form-area p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #555;
}

.contact-form-area input {
    width: 100%;
    padding: 12px 5px;
    margin-bottom: 18px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.checkbox {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #333;
}

.contact-form-area button {
    width: 100%;
    padding: 14px;
    background: #C79C36;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-area button:hover {
    background: #b88a2d;
}

.wpcf7-list-item{
    margin: 0px !important;
}

.wpcf7-list-item input[type="checkbox"]{
    width: auto;
    display: flex;
    align-items: center;
    margin: 0px;
}



.wpcf7-list-item label{
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.wpcf7-submit{
    background: #C79C36 !important;
    border-radius: 15px !important;
}

.contact-form-area h3 span{
    color: #005245;
}

.contact-form-area h3{
    font-size: 44px;
}

.contact-form-area p{
    font-size: 18px;
    margin: 0px; 
}

.auriic-form-submit p{
    display: flex;
    width: 100%;
    position: relative;
}


.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450 !important; 
	color: #46b450 !important;
    border-radius: 10px !important;
}

.wpcf7-spinner{
    position: absolute !important;
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    /* opacity: 0.75; */
    width: 24px !important;
    height: 24px !important;
    border: none;
    top: 14px !important;
    left: 120px !important;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
}

.wpcf7-spinner::before{
    content: '';
    position: absolute;
    background-color: #fbfbfc !important;
    top: 0px !important;
    left: 0px !important;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: #f10000 !important; 
	color: #f10000 !important;
    border-radius: 10px !important;
}

/* RIGHT IMAGE SIDE */
.contact-image-area {
    background: #f5f5f5;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.contact-image-area img {
    max-width: 80%;
}

/* CORNER GOLD DESIGN */
.corner-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: #C79C36;
    border-radius: 10px;
    z-index: -1;
}


/* SECTION BACKGROUND */
.contact-info-section {
    background: #e6e6e6;
    padding: 70px 20px;
}

/* CONTAINER */
.info-container {
    max-width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* CARD */

.info-card {
    background: #007A67;
    flex: 1;
    min-width: 240px;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 35px 25px;
    border-radius: 14px;
    color: #fff;
    position: relative;
    overflow: visible;
    flex-direction: column;
}

/* GOLD BACK CORNER SHAPE */
.info-card::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    background: #C79C36;
    bottom: -18px;
    right: -18px;
    border-radius: 16px;
    z-index: -5;
}


/* ICON */
.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* TEXT */
.info-card h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #fff !important;
}

.info-card p {
    margin-top: 8px;
    font-size: 24px;
    opacity: 0.9;
}

.info-card p a{
     color: #fff !important;
}

.info-boxcard{
    /* content: ""; */
    position: absolute;
    width: 65px;
    height: 65px;
    background: #C79C36;
    bottom: -18px;
    right: -18px;
    border-radius: 16px;
    z-index: -1;
    /* opacity: .5; */
}



.hiring-process-step{
    background: #0b7a67;
    /* padding: 30px; */
    padding-top: 4%;
}
/**  Our Core Team section css */

.core-team-unique {
  background: #0b7a67;
  color: white;
  padding: 80px 5% 100px;
  position: relative;
}

.core-team-unique .core-team-header {
      display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.core-team-unique .core-team-title-group {
      display: flex;
    flex-direction: column;
    gap: 20px;
}

.core-team-unique h2 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  margin: 0;
}

.core-team-unique .core-team-gold-underline {
  width: 100px;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
}

.core-team-unique .core-team-nav-controls {
  display: flex;
  gap: 12px;
}

.core-team-unique .core-team-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.core-team-unique .core-team-nav-btn:hover:not(:disabled) {
  background: #c79c36;
  transform: scale(1.08);
}

.core-team-unique .core-team-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.core-team-unique .core-team-carousel-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.core-team-title-group .section-title{
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    position: relative;
}

.core-team-unique .core-team-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.core-team-unique .core-team-card {
  flex: 0 0 320px;
  height: 460px;
  background: #086556;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.core-team-unique .core-team-card:hover {
  /* transform: translateY(-14px); */
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.core-team-unique .core-team-image {
  height: 75%;
  position: relative;
}

.core-team-unique .core-team-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  filter: grayscale(0.7) brightness(0.92); */
  /* transition: filter 0.5s ease; */
}

.core-team-unique .core-team-card:hover img {
  filter: grayscale(0) brightness(1);
}

.core-team-unique .core-team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 101, 86, 0.92);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.core-team-unique .core-team-info-text h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  margin: 0;
}

.core-team-unique .core-team-info-text p {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
  margin: 0;
}

.core-team-unique .core-team-arrow-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d4af37, #b8860b) !important;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.core-team-unique .core-team-arrow-btn:hover {
  transform: scale(1.12) rotate(15deg);
}

/**** Auriic home page design css end  **/




