@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@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');
*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'poppins', sans-serif;
}

:root{
    --main-color2: #F66F4D;
    --main-color: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
    --black-color: #1268FB;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --lighBlue-color: #d9f1ff;
    --paragrapg-color: #4D4D4D;
    --primary-blue: #F66F4D;
    --secondary-blue: red;
    --light-blue: #bde0fe;
    --dark-blue: #1a1a2e;
    --heading: "Bricolage Grotesque", sans-serif;
}

/*cursor design*/
/* REVISED Cursor System - Now Visible */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    /* Removed mix-blend-mode for better visibility */
    box-shadow: 0 0 0 2px var(--white); /* White border ensures visibility */
    transition: 
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white fill */
    transition: 
        transform 0.15s ease-out,
        width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border 0.3s ease;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--secondary-blue);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.25s linear;
    box-shadow: 0 0 0 1px var(--white); /* White border */
}

/* Cursor States */
.cursor.hover {
    width: 16px;
    height: 16px;
    background-color: var(--secondary-blue);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-color: var(--main-color2);
    background-color: rgba(255, 255, 255, 0.2);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.9);
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(0.8);
    border-color: var(--secondary-blue);
    background: transparent;
}

/* Hide on touch devices */
@media (pointer: coarse) {
    .cursor, .cursor-ring, .cursor-dot {
        display: none;
    }
    body {
        cursor: auto;
    }
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: var(--white-color);
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}

/*Start header*/
.job-away-nav {
    padding: 6rem 5%;
    position: absolute;
}

/* Navigation Container */
.job-away-nav__container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background-color: #ffffffcf;
    backdrop-filter: blur(4px);
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*.job-away-nav__container{
    background: linear-gradient(45deg, #fff, #ffffff69);
    transform: translateX(-50%);
    width: 90%;
    border-radius: 1.5rem;
    box-shadow: none;
    border: 1px solid white;
    backdrop-filter: blur(10px);
}*/

/* Scrolled State */
.job-away-nav__container.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

/* Logo */
.job-away-nav__logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.job-away-nav__logo img{
    height: 4rem;
}

.job-away-nav__logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.job-away-nav__links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.job-away-nav__link {
    position: relative;
    font-size: 1.7rem;
    color: var(--paragrapg-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-family: var(--heading);
}

.job-away-nav__link:hover {
    color: var(--main-color2);
}

.job-away-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--main-color2);
    transition: width 0.3s ease;
}

.job-away-nav__link:hover::after {
    width: 100%;
}

/* Dropdown Indicator */
.job-away-nav__dropdown-indicator {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dropdown Menu */
.job-away-nav__dropdown {
    position: relative;
}

.job-away-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 22rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.5rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.5rem);
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-indicator {
    transform: rotate(180deg);
    color: var(--main-color2);
}

.job-away-nav__dropdown-item {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    color: #555; font-family: var(--heading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-away-nav__dropdown-item:hover {
    background-color: #fff;
    color: var(--main-color2);
    padding-left: 2.5rem;
}

/* Search and Login */
.job-away-nav__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.job-away-nav__search {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    position: relative;
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search:hover {
    color: #4e6bff;
    transform: scale(1.1);
}

.job-away-nav__login {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-away-nav__login:hover {
    color: #4e6bff;
    transform: translateY(-0.1rem);
}

.job-away-nav__button {
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.4rem 1rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__button:hover {
    background-color: #3a56e8;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.5rem rgba(78, 107, 255, 0.3);
}

/* Search Bar */
.job-away-nav__search-container {
    position: fixed;
    top: -10rem;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    opacity: 0;
}

.job-away-nav__search-container.active {
    top: 0;
    opacity: 1;
}

.job-away-nav__search-input {
    width: 60%;
    padding: 1.5rem 2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.job-away-nav__search-input:focus {
    border-color: #4e6bff;
    box-shadow: 0 0 0 0.3rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__search-close {
    margin-left: 1.5rem;
    font-size: 2.2rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search-close:hover {
    color: #ff4e4e;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu Toggle - Modern Styling */
.job-away-nav__menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 3.2rem;
    height: 2.4rem;
    z-index: 1100;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.job-away-nav__menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background-color: #333;
    border-radius: 0.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
}

.job-away-nav__menu-toggle .bar:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle.active .bar:nth-child(1) {
    transform: translateX(0.5rem) rotate(45deg) scaleX(0.8);
    background-color: #4e6bff;
}

.job-away-nav__menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.job-away-nav__menu-toggle.active .bar:nth-child(3) {
    transform: translateX(0.5rem) rotate(-45deg) scaleX(0.8);
    background-color: #4e6bff;
}

/* Mobile Menu */
.job-away-nav__mobile-actions {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}

/*HEADINGS*/
.section-heading-01 {
    margin-bottom: 3rem;
}

.section-heading-01-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.section-heading-01-tag {
    font-size: 1.4rem;
    color: #6c6c6c;
    font-family: var(--heading);
}

.section-heading-01-title {
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #172343;

    /* IMPORTANT for sliding color */
/*    background: linear-gradient(90deg, #2D3134, #2D3134, #2D3134);*/
    font-family: var(--heading);
 /*   background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

/* RIGHT SIDE */
.section-heading-01-right {
    text-align: right;
}

.section-heading-01-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #555; line-height: 1.7;
    max-width: 600px;
}

/* BUTTON */
.section-heading-01-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: #000;
    padding: 1.4rem 2.8rem;
    border-radius: 5rem;
    font-size: 1.6rem;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

.section-heading-01-btn-icon {
    background: #D1FB44;
    color: #000;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.6rem;
}

.section-heading-01-btn:hover {
    opacity: 0.85;
}

.section-heading {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 4rem;
}

.section-heading .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ========= Subheading ========= */
.section-heading .subheading {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  overflow: hidden;
  padding-bottom: 5px;
}

/* ======= New Line Animation ======= */
.section-heading .subheading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #f66f4d, #f66f4d, #f66f4d);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineSlide 2.2s ease-out infinite alternate;
  border-radius: 3px;
}

@keyframes lineSlide {
  0% {
    transform: scaleX(0);
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ========= Main Heading ========= */
.section-heading .main-heading {
  font-size: 4.5rem;
  color: #0b0b22;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-family: var(--heading);
}

/* ========= Description ========= */
.section-heading .desc {
  color: #7a7a8c;
  font-size: 1.7rem;
  max-width: 600px;
  margin: 0 auto;
}
/*End header*/

/*Start home section*/
.hero-slide-section {
    padding: 6rem 3%;
    min-height: 100vh;
    padding-bottom: 0;
    display: flex;
    background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/home-bg.png);
    align-items: center;
    position: relative;
    background-image: linear-gradient(
    180deg,
    #F1F6F7 0%,
    #EEE5DC 100%
);
}

.earth-bg{
    width: 100%;
    max-width: 600px;
    display: none; margin: auto;
}

.hero-slide-content-col {
    margin-top: 3rem;
}

.hero-slide-typing-container {
    display: inline-block;
    position: relative;
}

.hero-slide-subheading {
    font-size: 1.3rem;
    margin: 0;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-family: var(--heading);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #f66f4d42;
    padding: .8rem 1.4rem;
    border-radius: 120px;
    margin-bottom: 1rem;
}

.hero-slide-subheading img{
    width: 20px;
}

.ultra-main-heading {
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--heading);
    color: #172343;
    line-height: 1.2;
    margin-bottom: 0;
}

.ultra-emoji img{
    width: 50px;
}

.ultra-typing-text{
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--heading);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text!important;
  color: transparent;
  background: var(--main-color);
  opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-slide-typing-text {
    display: block;
    font-family: var(--heading);
    min-height: 6rem;
    color: var(--main-color);
    font-style: italic;
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-slide-emoji {
    display: inline-block;
    font-size: 5rem;
    animation: hero-slide-emoji-bounce 0.6s ease-in-out infinite; /* Added infinite */
    position: absolute; /* Added */
    right: -6rem; /* Added */
    top: 0; /* Added */
}

@keyframes hero-slide-emoji-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/*.hero-slide-typing-text::after {
    content: '|';
    animation: hero-slide-blink 0.7s infinite;
}

@keyframes hero-slide-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
*/
.hero-slide-form {
    display: flex;
    gap: 1rem;
    max-width: 45rem;
}

.hero-slide-input {
    flex: 1;
    padding: 1.4rem 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 5rem;
    font-size: 1.5rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-slide-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.3rem rgba(255, 107, 53, 0.1);
}

.hero-slide-btn {
    padding: 1.4rem 3rem;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-slide-btn:hover {
    background: #ff5722;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(255, 107, 53, 0.3);
}

.hero-slide-info-row {
    display: flex;
    align-items: center;
    gap: 2rem; margin: 2rem 0;
}

.hero-slide-video-wrapper {
    position: relative;
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
}

.hero-slide-video-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-slide-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 2rem;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-slide-play-btn::before,
.hero-slide-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    animation: hero-slide-wave 2s infinite;
}

.hero-slide-play-btn::after {
    animation-delay: 1s;
}

@keyframes hero-slide-wave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 180%;
        height: 180%;
        opacity: 0;
    }
}

.hero-slide-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--main-color2);
}

.hero-slide-video-text {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.hero-slide-touch-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 2rem;
}

.hero-slide-touch-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-0.2rem);
}

.hero-slide-review-section {
    display: flex;
    align-items: center;
    gap: 2rem; margin-top: 3rem;
}

.hero-slide-clients-img {
    width: 15rem;
    height: auto;
}

.hero-slide-review-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-slide-stars {
    color: #ffc107;
    font-size: 1.6rem;
}

.hero-slide-review-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.hero-slide-gallery-col {
    position: relative;
    height: 60rem;
    overflow: hidden;
}

.hero-slide-gallery-col::before,
.hero-slide-gallery-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8rem;
    z-index: 2;
    pointer-events: none;
}

.hero-slide-gallery-col::before {
    top: 0;
    background: linear-gradient(to bottom, #fff9f0 0%, transparent 100%);
}

.hero-slide-gallery-col::after {
    bottom: 0;
    background: linear-gradient(to top, #efe6de 0%, transparent 100%);
}

.hero-slide-gallery-row {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.hero-slide-gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-slide-gallery-column-left {
    animation: hero-slide-scroll-up 20s linear infinite;
}

.hero-slide-gallery-column-center {
    animation: hero-slide-scroll-down 20s linear infinite;
}

.hero-slide-gallery-column-right {
    animation: hero-slide-scroll-up 20s linear infinite;
}

@keyframes hero-slide-scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes hero-slide-scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-slide-gallery-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    height: 25rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-slide-gallery-item:hover {
    transform: scale(1.05);
}

.hero-slide-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-gallery-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #f0f2ff, #ffffffcf);
    backdrop-filter: blur(7px); border: 1px solid var(--white-color);
    padding: .8rem .9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 92%;
    border-radius: 120px;
    margin: auto;
}

.hero-slide-service-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-slide-service-icon img{
    width: 2rem;
}

.hero-slide-service-name {
    color: #172343;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0; font-family: var(--heading);
}

.home-buttons{
    display: inline-flex!important;
    align-items: center;
    gap: 1.5rem; 
}

.home-buttons .btn {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 1rem;height: 55px;
  border-radius: 33px;
  display: inline-flex;
  position: relative;
  align-items: center;
  padding-left: 2rem;
  border: none;
  gap: 0.6rem;
  font-family: var(--heading);
  transition: all 0.3s ease;

  &:hover{
    color: var(--white-color)!important;
    box-shadow: none;
  }
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4e151d;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left center; /* yaha se animation start hogi */
  transition: transform 0.7s ease;
  border-radius: inherit; border-radius: 33px!important;
}

/* Hover effect */
.btn:hover::before {
  border-radius: 33px;
  transform: scaleY(1);
}

.btn:hover {
 color: #fff;
}

.btn:hover::before {
 width: 100%;
}


.btn .btn-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 43px; width: 43px;
    border-radius: 50%;
    color: #F66F4D;
    margin-left: 1.2rem;
}

.btn .btn-icon2{
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px; width: 43px;
    border-radius: 50%;
    margin-left: 1.2rem;
    background: var(--main-color);
}

.btn-quote {
  background: var(--main-color);
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgb(236 59 33 / 30%);
}

.btn-quote:hover {
  transform: translateY(-0.2rem);
  color: var(--white-color)!important;
  background: var(--main-color);
}

.btn-explore {
    background: #ffffff00;
    color: #FB3F52;
    border: 1.4px solid #FA7D3C !important;
}

.btn-explore:hover {
  transform: translateY(-0.2rem);
  background: #fff;
  color: #0a215c!important;
}

.woodie-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.woodie-shape svg {
    width: 100%;
    height: 80px;  /* height jaisa tum chaho */
}

.shape-fill{
    color: white!important;
}

.wave-fill {
    fill: #fff; /* Tumhare theme ka color */
}

.wave-fill,
.shape-fill {
    fill: #fff!important; /* ya jis color me wave chahiye */
}

/*Start hero bottom slider*/
.hero-bottom-slide{
  padding: 6rem 0;
  margin-top: 2rem;
  width: 100%;
  overflow: visible;
  position: relative;
}

/* ribbon wrapper */
.hbs-wrapper{
  width: 100%;
  position: relative;
  z-index: 11;
}

/* Ribbon Base (background fixed) */
.hbs-ribbon{
  width: 110%;
  height: 8rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Colors */
.hbs-ribbon.top{ background:#fa783e; 0; transform: rotateZ(2deg); z-index:2; left: 0}
.hbs-ribbon.bottom{ background:#3f80f0; bottom:0; transform: rotateZ(-1deg); z-index:1; left:0 }

/* Text movement only */
.hbs-track{
  display:flex;
  gap:3rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  font-size:2.8rem;
  font-weight:600;
  color:#fff;
}

.hbs-track span{ display:inline-flex; align-items:center; gap:1.2rem; font-family:var(--heading); }
.sep{ opacity:.45; }

/* Animations */
@keyframes slide-right {
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}
@keyframes slide-left {
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.hbs-ribbon.top .hbs-track{ animation: slide-right 36s linear infinite; }
.hbs-ribbon.bottom .hbs-track{ animation: slide-left 36s linear infinite; }
/*End hero bottom slider*/

/*start experience-stats-section*/
.experience-stats-section{
    margin-top: 3rem;
}

.experience-stats-section .stats-box {
  text-align: left;
  padding: 0 1rem;
  border-right: 1px solid #1723432e;
  position: relative;
}

.stats-box img{
    width: 40px;
}

.stats-box-inner{
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-stats-section .col-lg-3:last-child .stat-box {
  border-right: none!important;
}

.experience-stats-section .stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #172343;
  display: inline-block;
  margin-bottom: .5rem;
  font-family: var(--heading);
}

.experience-stats-section .stat-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #111; display: none;
}

.experience-stats-section .stat-desc {
  font-size: 1.6rem;
  color: #555; margin: 0;
  line-height: 1.7;
}
/*experience-stats-section end*
/*End home section*/

/*Start service section*/
.services-section{
    padding: 4rem 3%;
    position: relative;
    width: 100%;
}

:root {
--primary-color: #7c3aed;
--primary-light: #8b5cf6;
--primary-dark: #6d28d9;
--secondary-color: #64748b;
--accent-color: #f59e0b;
--light-color: #f8fafc;
--dark-color: #1e293b;
--border-color: #e2e8f0;
--transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.services-section .section-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section .section-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.services-section .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1; height: auto!important;
}

.services-section .services-tabs {
    flex: 1;
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    height: 560px;
    border: 1px solid #e2e8f0;
    overflow-y: auto;
    transition: var(--transition);
}

.services-section .services-tabs:hover {
    box-shadow: var(--shadow-hover);
}

.services-section .services-tabs::-webkit-scrollbar {
    width: 4px; 
}

.services-section .services-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-section .services-tabs::-webkit-scrollbar-thumb {
    background: var(--main-color2);
    border-radius: 10px;
}

.services-section .services-tab {
    padding: 2.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative; border-left: 4px solid var(--white-color);
    overflow: hidden;
}

.services-section .services-tab:last-child {
    border-bottom: none;
}

.services-section .services-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(245 158 11 / 4%), transparent);
    transition: var(--transition);
}

.services-section .services-tab:hover::before {
    left: 100%;
}

.services-section .services-tab.active {
    background-color: #fff;
    border-left: 4px solid #FB3F52;
/*    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);*/
}

.services-section .services-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
}

.services-section .services-tab-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-family: var(--heading);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.services-tab-title img{
    width: 55px;
}

.services-section .services-tab-title i {
    color: var(--primary-color);
    font-size: 2.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.services-section .services-tab.active .services-tab-title i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.services-section .services-tab-desc {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    display: none;
}

.services-section .services-content {
    flex: 2;
    min-width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    background-color: #fff;
    position: relative;
    max-height: 600px;
    overflow-y: auto;
    padding-bottom: 30px;
    transition: var(--transition);
}

.services-section .services-content:hover {
    box-shadow: var(--shadow-hover);
}

.services-section .service-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
/*    overflow-y: auto;*/
    padding-bottom: 10rem;
}

.services-section .service-panel.active {
    opacity: 1;
    transform: translateY(0);
}

.services-section .service-panel-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    height: 100%;
}

.services-section .service-panel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-section .service-panel-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    max-height: 400px;
}

.services-section .service-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-section .service-panel:hover .service-panel-image img {
    transform: scale(1.05);
}

.services-section .service-panel-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--heading);
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.services-section .service-panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

.accordion-feature img{
    width: 26px;
}

.services-section .service-panel-description {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.services-section .service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 3rem;
}

.services-section .service-feature {
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.services-section .service-feature:hover {
    transform: translateX(5px);
    color: var(--main-color2);
}

.services-section .service-feature:last-child {
    border-bottom: none;
}

.services-section .service-feature i {
    color: var(--accent-color);
    font-size: 1.6rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
}

.services-section .service-feature img{
    width: 26px;
}

.services-section .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.services-section .service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
}

/* Mobile Accordion Styles */
.services-section .services-accordion {
    display: none;
}

.services-section .accordion-item {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.services-section .accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.services-section .accordion-header {
    padding: 2.5rem;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.services-section .accordion-header:hover {
    background-color: #f8fafc;
}

.services-section .accordion-header.active {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.services-section .accordion-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-title img{
    width: 55px;
}

.services-section .accordion-title i {
    color: var(--primary-color);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.services-section .accordion-header.active .accordion-title i {
    background: var(--primary-color);
    color: white;
}

.services-section .accordion-icon {
    font-size: 1.6rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.services-section .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
    color: orangered;
}

.services-section .accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: #fff;
}

.services-section .accordion-content.active {
    padding: 3rem;
    max-height: 1000px;
}

.services-section .accordion-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.services-section .accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-section .accordion-image:hover img {
    transform: scale(1.05);
}

.services-section .accordion-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-section .accordion-features {
    list-style: none;
    margin-bottom: 2rem;
}

ul{
    padding-left: 0;
}

.services-section .accordion-feature {
    font-size: 1.4rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.services-section .accordion-feature:last-child {
    border-bottom: none;
}

.services-section .accordion-feature i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.services-section .accordion-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.services-section .accordion-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
}

.logo-slider-section{
    padding: 4rem 5%;
}

.client-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.client-slider-track {
  display: flex;
  width: calc(200px * 10); /* adjust based on logos */
  animation: scrollSlider 25s linear infinite;
}

.client-slider-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-slider-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.client-slider-item img:hover {
  transform: scale(1.1);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate track for seamless loop */
.client-slider-inner {
  display: flex;
}
/*End service section*/

/*Start vision section*/
.vision-section {
    min-height: 100vh;
    padding: 6rem 3%;
    position: relative;
    background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/vision-section-bg.jpg);
    background-size: cover; background-position: center;
    overflow: hidden;
}

.vision-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: var(--main-color);
    font-family: var(--heading);
    margin-bottom: 2rem;
    font-weight: 500;
}

.vision-section-badge .white{color: white;}

.vision-section-badge-dot {
    width: 0.8rem;
    height: 0.8rem;
    background: var(--main-color);
    border-radius: 50%;
}

.vision-section-heading {
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--heading);
    margin-bottom: 3rem;
    color: #172343;
}

.vision-section-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.vision-section-highlight {
    font-weight: 700;
    color: #172343;
}

.vision-section-belief {
    font-size: 1.7rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 4rem;
}

.vision-section-author {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-section-author-images {
    display: flex;
    align-items: center;
}

.vision-section-author-img {
    width: 9rem;
    height: 9rem;
    border-radius: 28px;
    border: 0.3rem solid #ffffff;
    margin-left: -2rem;
    object-fit: cover;
}

.vision-section-author-img:first-child {
    margin-left: 0;
}

.vision-section-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vision-section-author-name {
    font-size: 2rem;
    font-weight: 700;
    color: #172343;
    font-family: var(--heading);
    margin: 0;
}

.vision-section-author-title {
    font-size: 1.5rem;
    color: #666; margin: 0;

}

.vision-section-author-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.vision-section-social-link {
    color: #4a4a4a;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.vision-section-social-link:hover {
    color: #1a1a1a;
}

.vision-section-cards-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.vision-section-card {
    background: #fff;
    display: flex; align-items: center; gap: 10px;
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: rgb(240 150 46 / 40%) 5px 5px, rgb(240 179 46 / 5%) 25px 25px;
    border: 1px solid rgb(240 150 46 / 40%);
}

.vision-section-card-flex{
    margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 10px;
}

.vision-section-card:hover {
    transform: translateY(-5px);
/*    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);*/
}

.vision-section-card-icon img{
    width: 100px;
}

p{
    letter-spacing: .2px;
}

.vision-section-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #172343;
    font-family: var(--heading);
}

.vision-section-card-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4a4a4a;
}
/*End vision section*/

/*Start portfolio section*/
.portfolio-section {
    padding: 6rem 3%;
    min-height: 100vh;
    background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/payroll-section-bg.png), linear-gradient(45deg, #010E37, #010E37);
    background-size: cover; background-position: center;
}

.portfolio-section .row{
    margin-top: 2rem;
}

.portfolio-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-0.5rem);
}

.portfolio-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tags {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.portfolio-tag {
    background: rgb(0 0 0 / 47%);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.8rem;
    border-radius: 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .3px;
    font-family: var(--heading);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
}

.portfolio-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-0.2rem);
}

.portfolio-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover .portfolio-view-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.portfolio-view-icon i {
    font-size: 3.5rem;
    color: #5f3e2d;
}
/*End portfolo section*/

/*Start review section*/
.review-section {
    padding: 6rem 3%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-section-container {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    z-index: 1;
}

.review-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.review-section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.review-section-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.review-section-slider {
    position: relative;
}

.review-section-item {
    background: #ffffff;
    border-radius: 2.5rem;
    padding: 0;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    margin: 2rem;
    overflow: hidden;
    position: relative;
}

.review-section-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--main-color);
}

.review-section-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.15);
}

.review-section-item-header {
    background: var(--main-color);
    padding: 4rem 3rem 3rem;
    position: relative;
}

.review-section-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-section-quote-icon i {
    font-size: 5rem;
    color: #ffffff;
}

.review-section-user-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 0.5rem solid #ffffff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.review-section-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-section-item-body {
    padding: 3rem 4rem 4rem;
    background: #ffffff;
}

.review-section-user-name {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.review-section-user-location {
    font-size: 1.5rem;
    color: #9a9a9a;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-section-user-location i {
    font-size: 1.4rem;
}

.review-section-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.review-section-rating i {
    color: #fbbf24;
    font-size: 1.8rem;
}

.review-section-content {
    font-size: 1.5rem;
    line-height: 1.9;
    color: #64748b;
    font-weight: 400;
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

/* Owl Carousel Custom Navigation */
.review-section-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.review-section-slider .owl-nav button {
    width: 5rem;
    height: 5rem;
    background: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: auto; border-radius: 50%;
    border: none; color: ;
    outline: none;
}

.review-section-slider .owl-nav button:hover {
    background: var(--main-color2) !important;
}

.review-section-slider .owl-nav button span {
    font-size: 2.5rem;
    color: orangered;
    font-weight: bold;
}

.review-section-slider .owl-nav button:hover span {
    color: #ffffff;
}

.review-section-slider .owl-nav .owl-prev {
    margin-left: -2rem;
}

.review-section-slider .owl-nav .owl-next {
    margin-right: -2rem;
}

.review-section-slider .owl-dots {
    text-align: center;
    margin-top: 3rem;
}

.review-section-slider .owl-dots .owl-dot {
    width: 1.2rem;
    height: 1.2rem;
    background: rgb(250 122 61 / 14%);
    border-radius: 50%;
    display: inline-block;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.review-section-slider .owl-dots .owl-dot.active {
    background: var(--main-color2);
    width: 3rem;
    border-radius: 1rem;
}

.owl-theme .owl-dots .owl-dot span{display: none;}
/*float ICONS HOME*/
.openPositions-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatRandom 6s ease-in-out infinite alternate;
  z-index: 2;
}

.openPositions-avatar img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.2);
  border: 3px solid #fff;
}

.openPositions-role {
  margin-top: 0.6rem;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  display: inline-block;
}

.role-green { background: #7ee787; color: #000; }
.role-yellow { background: #f2d974; color: #000; }
.role-blue { background: #3fd4ff; color: #000; }
.role-orange { background: #ff9850; color: #000; }
.role-purple { background: #c98eff; color: #000; }
.role-white { background: #fff; color: #000; }

.avatar-1 { top: 14%; left: 5%; }
.avatar-2 { top: 14%; right: 5%; }
.avatar-3 { top: 45%; left: 2%; }
.avatar-4 { top: 45%; right: 2%; }
.avatar-5 { bottom: 10%; left: 20%; }
.avatar-6 { bottom: 10%; right: 20%; }

/*@keyframes floatRandom {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px) scale(1.05); }
  100% { transform: translateY(0); }
}*/
/*End review section*/

/*Start about section*/
.about-section {
  padding: 6rem 5%;
  background-color: #fff;
}

.about-section .stat-box {
  background: linear-gradient(45deg, #fffbf0, transparent);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06); */
    transition: 0.3s 
ease;
    border: 1px solid rgb(251 143 18 / 15%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-box img{
    width: 80px;
}

.about-section .stat-box:hover {
  transform: translateY(-0.3rem);
}

.about-section .stat-box h4 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.about-section .stat-box p {
  font-size: 1.6rem;
  color: #555;
  margin: 0;
}

/* IMAGE */
.about-section .about-image {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* RIGHT TEXT CONTENT */
.about-section .about-content h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ec9f74;
  margin-bottom: 1rem;
}

.about-section .about-content h2 {
  font-size: 4.5rem;
  font-family: var(--heading);
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-section .about-content p {
  font-size: 1.7rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-section .about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.2rem 2rem;
}

.about-section .about-content ul li {
  font-size: 1.6rem;
  color: #000;
  display: flex;
  align-items: center; gap: 10px;
  font-family: var(--heading);
}

.about-section .about-content ul li img {
   width: 25px;
}

.about-section .about-btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: #ff7f3f;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-section .about-btn:hover {
  background-color: #ec6d2a;
}
/*End about section*/

/*Start video section*/
.video-section {
  position: relative;
  width: 90%; margin: auto;
  min-height: 56vh;
  background: linear-gradient(45deg, #00000042, #000000a6), url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/video-section-bg.jpg) no-repeat center center / cover;
  background:  url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/video-section-bg.jpg) no-repeat center center / cover!important;
  display: flex; background-attachment: fixed!important;
  align-items: center;
  border-radius: 14px;
  justify-content: center;
   margin: 4rem auto;
}

/* ====================
   Animated Play Button
======================= */
.play-btn {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
  z-index: 2;
}

.play-btn::before {
  content: '';
  border-style: solid;
  border-width: 1.2rem 0 1.2rem 2rem;
  border-color: transparent transparent transparent white;
  margin-left: 0.3rem;
}

.play-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 111, 77, 0.5); /* #F66F4D */
  }
  70% {
    box-shadow: 0 0 0 2.5rem rgba(246, 111, 77, 0); /* fade out */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 111, 77, 0);
  }
}


/* ====================
   Modal Styles
======================= */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-popup {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  position: relative;
}

.video-modal.active .video-popup {
  transform: scale(1);
  opacity: 1;
}

.video-modal.closing .video-popup {
  transform: scale(0.8);
  opacity: 0;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1rem;
}

/* ====================
   Close Button
======================= */
.close-btn {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: white;
  color: #333;
  border: 0.2rem solid #ddd;
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #eee;
}
/*End video section*/

/*Start serve section*/
.escrow-section {
  padding: 6rem 3%; width: 100%;
  background-color: #fff;
  background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/escrow-bg.jpg);
  background-size: cover; background-position: center;
}

.escrow-card {
  position: relative;
  overflow: hidden;
  border-radius: 24rem;
  margin-bottom: 2rem;
  height: 150px;
}

.escrow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.escrow-card:hover img {
  transform: scale(1.5);
}

.escrow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease;
  padding: 1rem;
}

.escrow-overlay:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.escrow-overlay h3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading);
  margin-bottom: 0.5rem;
}

.escrow-overlay p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
/*End serve section*/

/*Start traffic section*/
.traffic-section {
  padding: 6rem 3%;
  background: #ffffff;
  position: relative;
}

.smile {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 100px;
    animation: bannerAnimationTwo 8s infinite 
linear;
}

@keyframes bannerAnimationTwo{
    0% {
    transform: translate(0px, 0px);
    }
    20% {
        transform: translate(20px, -5px);
    }
    40% {
        transform: translate(50px, 20px);
    }
    60% {
        transform: translate(20px, 50px);
    }
    80% {
        transform: translate(-20px, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.smile2 {
    position: absolute;
    left: 50px;
    top: 50px;
    width: 70px;
    animation: bannerAnimationTwo 15s infinite 
linear;
}

@keyframes bannerAnimationTwo{
    0% {
    transform: translate(0px, 0px);
    }
    20% {
        transform: translate(20px, -5px);
    }
    40% {
        transform: translate(50px, 20px);
    }
    60% {
        transform: translate(20px, 50px);
    }
    80% {
        transform: translate(-20px, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.traffic-card {
  padding: 4rem 3rem;
  border-radius: 22px;
  transition: .3s;
  height: 100%;
  position: relative;
}

.traffic-card-shape{
    position: absolute;
    bottom: 20px;
    right: 20px;
    filter: brightness(1000);
    opacity: .2;
}

.traffic-blue { background: #dfeafe; }
.traffic-orange { background: #ffe7dd; }
.traffic-purple { background: #eadffe; }

.traffic-icon {
  width: 9rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 2.5rem;
  color: #fff;
}

.traffic-icon img{
    width: 5rem;
}

.traffic-blue .traffic-icon { background: #3a7bfd; }
.traffic-orange .traffic-icon { background: #ff8150; }
.traffic-purple .traffic-icon { background: #7d48ff; }

.traffic-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
  color: #2b2b3a;
  font-family: var(--heading);
}

.traffic-text {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: #5f5f6a; letter-spacing: .3px;
  margin-bottom: 4rem;
}

.traffic-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: .15rem solid #35404E;
  background: transparent;
  display: flex; color: #35404E;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  transition: .35s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.traffic-btn span{
    font-family: var(--heading);
}

.traffic-btn span:nth-child(2) {
  opacity: 0;
  position: absolute;
  font-size: 1.6rem;
  transition: .35s;
}

.traffic-btn span:nth-child(1) {
  transition: .35s;
}

/* Hover Effect */
.traffic-card:hover .traffic-btn {
  width: 14rem;
  border-radius: 4rem;
  font-size: 1.6rem;
  color: #35404E;
}

.traffic-card:hover .traffic-btn span:nth-child(1) {
  opacity: 0;
  transform: translateX(-1rem);
}

.traffic-card:hover .traffic-btn span:nth-child(2) {
  opacity: 1;
  transform: translateX(.4rem);
}
/*End traffic section*/

/*Start why choose section*/
.why-choose-section {
    padding: 4rem 3%;
    background: #ffffff;
}

.why-choose-section .container{
    background: #ffe7dd;
    padding: 4rem;
    border-radius: 22px;
    width: 100%; position: relative;
    max-width: 100%; padding-bottom: 0;
}

.why-card-shape{
    position: absolute;
    width: 50%; 
    right: 0; top: 0;
    filter: brightness(1000);
    opacity: .2;
}

.why-c-card-shape2 {
    width: 22px;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.why-c-card-shape1 {
    width: 22px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-section .heading-tag {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff6f3c;
    font-family: var(--heading);
    margin-bottom: 1rem;
}
.why-choose-section .main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: var(--heading);
    max-width: 45rem;
}

.heading-tag span img{
    width: 25px;
}

.why-choose-section-grp-img{
    width: 100%; z-index: 1; position: relative;
    margin: auto; display: block;
}

.why-choose-section .cta-btn {
    margin-top: 3rem;
}
.why-choose-section .cta-btn a {
    font-size: 1.6rem;
    font-weight: 600;
    background: transparent;
    color: var(--main-color2);
    padding: 1.4rem 2rem;
    display: inline-block;
    border-radius: 5rem;
    text-decoration: none;
    transition: .3s; font-family: var(--heading);
    border: 1.4px solid var(--main-color2);
}
.why-choose-section .cta-btn a:hover {
    background: var(--main-color2); color: var(--white-color);
}
.feature-box .title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a; font-family: var(--heading);
    margin-bottom: 3rem;
}
.feature-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.feature-box ul li {
    display: flex;
    gap: 2rem;
    font-size: 1.6rem;
    align-items: center;
    margin-bottom: 2.3rem;
    line-height: 1.7;
    color: #505050;
}
.feature-box ul li .icon_number {
    font-family: var(--heading);
    width: 3.6rem;
    height: 3.6rem;
    min-width: 3.6rem;
    outline: 1px solid #fb4a002b;
    outline-offset: 5px;
    min-height: 3.6rem;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0 !important;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}
/*End why choose section*/

/*Start pasion section*/
.pasion-section {
  padding: 6rem 3%;
  background: rgb(249 248 240);
  position: relative;
}

.pasion-section__card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
/*  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);*/
  transition: all 0.3s ease;
/*  border: 1px solid rgb(18 104 251 / 15%);*/
  height: 100%;
}

.pasion-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pasion-section__image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 22px;
  object-fit: cover;
  background-color: #eaeaea;
}

.pasion-section__text {
  margin-left: 1.8rem;
}

.pasion-section__text h5 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #172343; font-family: var(--heading);
  margin-bottom: 0.5rem;
}

.pasion-section__text p {
  font-size: 1.6rem;
  color: #666;
  margin: 0; line-height: 1.7;
}
/*End pasion section*/

/* Footer Main */
.main-footer {
  background: #101735;
  padding: 6rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/payroll-section-bg.png), linear-gradient(45deg, #010E37, #010E37);
  background-size: cover!important; background-position: center;background-attachment: fixed;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 1.2rem;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: rgb(255 255 255 / 70%);
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--main-color2);
}

.footer-brand {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 3.5rem;
  filter: brightness(100);
}

.footer-about p {
  font-size: 1.6rem;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border: 1px solid #4d5a8f;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #FA7D3C ;
  border-color: var(--main-color2) ;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: rgb(255 255 255 / 70%);

  &:hover{color: var(--main-color2);}
}

.footer-contact div i {
  color: #FA7D3C ;
  font-size: 1.6rem;
}

.bottom-bar {
  border-top: 1px solid #ddd;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; justify-content: center;
  margin: auto;
}

.bottom-bar p {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}

.bottom-bar a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.6rem;
}

.bottom-bar img {
  margin-top: 0.5rem;
  height: 2.8rem;
}

/* FAQ Section Styling */
.faq-section {
  padding: 6rem 5%;
  background: #fff;
  background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/home-bg.png);
  background-size: cover; background-position: center;
  width: 100%;
}

.faq-section .faq-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #222;
}

/* Marquee Section */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 3rem 0;
}

/* Scrolling Text */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeMove 15s linear infinite;
}

.marquee-text {
  font-size: 9rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Absolute Positioned Icons */
.marquee-icon {
  position: absolute;
  font-size: 3rem;
}

.marquee-icon.smile {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.marquee-icon.thumb {
  bottom: -10px;
  right: 20%;
}

@keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

/* Accordion Styling */
.faq-section .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 0.8rem;
  padding: 1rem;
  border: 1px solid #fee8d6;
}

.faq-section .accordion-button {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-radius: 0.8rem !important;
  padding: 1.7rem 2rem;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff7f580;
  box-shadow: none;
}

/* Accordion Body */
.faq-section .accordion-body {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
  padding: 1.5rem 2rem 2rem 2rem;
}

/* Custom Icon Styling */
.faq-section .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067"; /* Plus icon */
  background-image: none !important;
  font-size: 1.6rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068"; /* Minus icon */
}
/*end faq section*/

/*Start service page ui*/
.design-vault-cards-section{
    padding: 4rem 3%; background: rgb(249 248 240);
}

.design-vault-cards-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}

/* ===== Card Styling ===== */
.design-vault-cards-section .design-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.design-vault-cards-section .design-card:hover {
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.design-vault-cards-section .card-img {
  position: relative;
  width: 100%;
  height: 28rem;
  overflow: hidden;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.design-vault-cards-section .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.design-vault-cards-section .design-card:hover .card-img img {
  transform: scale(1.8);
}

/* Top left icon */
.design-vault-cards-section .top-icon {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    background: var(--white-color);
    border-radius: 22px;
    color: var(--main-color);
    z-index: 2;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-vault-cards-section .top-icon img{
    width: 45px; height: 45px;
}

.design-card:hover .top-icon img{
    transform: scale(1.0)!important;
}

/* Bottom right shape & arrow */
.design-vault-cards-section .bottom-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: #ff6b00;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.design-vault-cards-section .bottom-shape a {
  color: #fff;
  font-size: 1.6rem;
  transform: translate(-0.6rem, -0.6rem);
}

/* Card Content */
.design-vault-cards-section .card-content {
  flex-grow: 1;
  padding: 2rem 2rem 3rem;
  text-align: left;
}

.design-vault-cards-section .card-content h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222; line-height: 1.4;
  margin: 0; margin-bottom: .5rem;
  font-family: var(--heading);
}

.design-vault-cards-section .card-content p {
  font-size: 1.6rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: inline-flex;
    line-height: 1.8;
    align-items: center;
    gap: 10px; letter-spacing: .3px;
    padding: 5px;
    border-radius: 6px;
}

.design-vault-cards-section .card-content p img{
    width: 20px;
}

/* Buttons */
.design-vault-cards-section .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.design-vault-cards-section .btn-custom {
      display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 1.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    background: var(--main-color);
    border: none;
    border-radius: 13px;
    text-decoration: none;
    transition: background 0.3s 
ease;
}

.btn-custom2{
    background: transparent!important;
    color: orangered!important;
    border: 1.4px solid orangered!important;
}

.design-vault-cards-section .btn-custom:hover {
  background: #e25e00;
}

  .floating-image {
    position: absolute;
    right: -26px;          
    bottom: 0;         
    z-index: 50;          
    display: block;
    pointer-events: auto;
  }

  .floating-image .img-wrap {
        position: relative;
    width: 120px;
    height: auto;
    display: block;
    right: 26px;
    bottom: -2px;
  }

  .floating-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
  }

  .floating-image .fa-overlay {
   position: absolute;
    top: 76px;
    width: 40px;
    height: 40px;
    left: 86px;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 60;
    pointer-events: auto;
    color: #2B3861;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
    background: rgb(255 255 255 / 0%);
    border-radius: 50%;
    border: 1px solid #CACFDF;
    padding: 8px;
  }


/*Start design vault page design*/
.hero-overview-section {
  position: relative;
  padding: 6rem 3%;
  background: linear-gradient(#00000099, #000000a1), url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/conatct-bg.jpg) no-repeat center center / cover;
  color: #fff; display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 60vh;
}

.hero-overview-section .row{
    max-width: 700px;
    margin: auto; margin-top: 6rem;
}

.design-vault-section-headline {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 2rem 0;
}

.hero-overview-section::after {
  content: "Woodiewin";
  position: absolute; 
  left: 50%; transform: translate(-50%, 50%);
  font-size: 12rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.07;
  pointer-events: none;
}

.hero-overview-content {
  position: relative;
  z-index: 2; text-align: center;
}

.hero-overview-title {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--heading);
  margin-bottom: 2rem;
}

.hero-overview-breadcrumb {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff; margin-top: 2rem;
  opacity: 0.9;
}

.hero-overview-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s;
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-overview-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}
/*End service page ui*/

/*Start contact page ui*/
.contact-us-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.contact-us-section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-us-section-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #1a202c;
    font-family: var(--heading);
    margin-bottom: 2rem;
    letter-spacing: -0.1rem;
}

.contact-us-section-subtitle {
    font-size: 1.7rem;
    color: #64748b;
    max-width: 75rem;
    margin: 0 auto;
    line-height: 1.9;
}

.contact-us-section-wrapper {
    margin: 0 auto;
}

.contact-us-section-card {
    background: #ffffff;
    border-radius: 2.4rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-us-section-left {
    padding: 6rem 5rem;
    background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/woodiewin/contact-detail-bg.jpg); background-size: cover!important; background-position: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-us-section-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60rem;
    height: 60rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-us-section-left::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40rem;
    height: 40rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-us-section-left-content {
    position: relative;
    z-index: 2;
}

.contact-us-section-left-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--heading);
    letter-spacing: -0.08rem;
}

.contact-us-section-left-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5rem;
    line-height: 1.8;
}

.contact-us-section-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-section-info-item:hover {
    transform: translateX(1rem);
}

.contact-us-section-icon-box {
    width: 5.5rem;
    height: 5.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-us-section-info-item:hover .contact-us-section-icon-box {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.contact-us-section-icon {
    font-size: 2.2rem;
    color: #ffffff;
}

.contact-us-section-info-details h3 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    font-weight: 600; font-family: var(--heading);
    letter-spacing: -0.03rem;
}

.contact-us-section-info-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

.contact-us-section-info-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.contact-us-section-info-link:hover {
    color: #fbbf24;
    padding-left: 0.8rem;
}

.contact-us-section-right {
    padding: 6rem 5rem;
    background: #ffffff;
}

.contact-us-section-form-header {
    margin-bottom: 4rem;
}

.contact-us-section-form-title {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: var(--heading);
    color: #1a202c;
    margin-bottom: 1.2rem;
    letter-spacing: -0.08rem;
}

.contact-us-section-form-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-us-section-form-group {
    margin-bottom: 2.8rem;
    position: relative;
}

.contact-us-section-input-wrapper {
    position: relative;
}

.contact-us-section-input-icon {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #94a3b8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-us-section-form-input,
.contact-us-section-form-textarea {
    width: 100%;
    padding: 1.8rem 2rem 1.8rem 5.5rem;
    font-size: 1.6rem;
    border: 2px solid #e2e8f0;
    border-radius: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    color: #1a202c; font-family: var(--heading);
    background: #f8fafc;
}

.contact-us-section-form-input:focus,
.contact-us-section-form-textarea:focus {
    outline: none;
    border-color: var(--main-color2);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgb(229 190 70 / 10%);
}

.contact-us-section-form-input:focus ~ .contact-us-section-input-icon {
    color: var(--main-color2);
}

.contact-us-section-form-textarea {
    padding: 2rem 2rem;
    resize: vertical;
    min-height: 16rem;
}

.contact-us-section-textarea-icon {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 1.8rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.contact-us-section-form-textarea:focus ~ .contact-us-section-textarea-icon {
    color: var(--main-color2);
}

.contact-us-section-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.2rem;
}

.contact-us-section-checkbox-input {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    accent-color: var(--main-color2);
}

.contact-us-section-checkbox-label {
    font-size: 1.5rem;
    color: #475569;
    line-height: 1.6;
}

.contact-us-section-checkbox-label a {
    color: var(--main-color2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-us-section-checkbox-label a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.contact-us-section-submit-btn {
    background: var(--main-color);
    color: #ffffff;
    border: none;
    padding: 2rem 6rem;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1rem 3rem rgb(229 208 70 / 30%);
    letter-spacing: 0.05rem;
}

.contact-us-section-submit-btn:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.5rem 4rem rgba(79, 70, 229, 0.4);
}

.contact-us-section-submit-btn:active {
    transform: translateY(-0.2rem);
}

.contact-us-section-map-container {
    margin-top: 6rem;
}

.contact-us-section-map-wrapper {
    border-radius: 2.4rem;
    overflow: hidden;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.08);
    height: 50rem;
}

.contact-us-section-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-us-section-map:hover {
    filter: grayscale(0%) contrast(1);
}
/*End contact page ui*/

/*Start about page ui*/
/*Start core value section*/
.core-values-section {
  padding: 6rem 5%;
  position: relative;
  background: rgb(249 248 240);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.core-values-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.core-values-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(76, 201, 240, 0.03) 100%);
  z-index: -1;
}

.core-values-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(67, 97, 238, 0.15);
}

.core-values-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  color: white;
  background: linear-gradient(135deg, #4361ee, #4cc9f0);
/*  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);*/
  transition: all 0.3s ease;
}

.core-values-card:hover .core-values-icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

.core-values-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #14213d; font-family: var(--heading);
  position: relative;
  display: inline-block;
}

.core-values-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.core-values-card:hover .core-values-title::after {
  width: 80px;
}

.core-values-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 0;
}

.core-values-highlight {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.15) 0%, rgba(76, 201, 240, 0) 70%);
  z-index: 1;
}

.core-values-highlight-1 {
  top: -50px;
  left: -50px;
}

.core-values-highlight-2 {
  bottom: -100px;
  right: -100px;
}

.about-paragraph-section{
    padding: 4rem 5%;
}

.about-paragraph-section p{
    font-size: 1.8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/*End core value section*/

/*Start vision section*/
.ww-vision-section {
  padding: 6rem 3%;
}

.ww-vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.ww-vision-card {
  background: #F3F4F6;
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid #E4E9F3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.ww-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(71, 0, 150, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  z-index: -1;
}

.ww-vision-card:hover {
  transform: translateY(-10px);
}

.ww-vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  color: white;
  background: var(--main-color);
  transition: all 0.3s ease;
}

.ww-vision-card:hover .ww-vision-icon {
  transform: rotate(10deg) scale(1.1);
}

.ww-vision-card h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  position: relative;
}

.ww-vision-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.ww-vision-card:hover h3::after {
  width: 80px;
}

.ww-vision-card p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.ww-vision-card ul {
  margin: 1.5rem 0 0 1.5rem;
  padding-left: 1rem;
  list-style: none;
}

.ww-vision-card li {
  font-size: 1.6rem;
  color: #475569;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.ww-vision-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main-color2);
}

.ww-vision-quote {
  margin-top: 2.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--main-color2);
  font-size: 1.8rem;
  border-left: 3px solid var(--main-color2);
  padding-left: 1.5rem;
  position: relative;
}
/*End vision section*/

/*Start about service section*/
.ww-services-gradient-section {
    padding: 6rem 5%; background: rgb(249 248 240);
}

.ww-services-gradient-section .ww-service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 3rem;
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
/*    border: 1px solid rgba(226, 232, 240, 0.7);*/
    display: flex;
    flex-direction: row;
}

.ww-services-gradient-section .ww-service-content {
    padding: 3rem;
    width: 60%;
}

.ww-services-gradient-section .ww-service-image-container {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.ww-services-gradient-section .ww-service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ww-services-gradient-section .ww-service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0) 70%);
}

.ww-services-gradient-section .ww-service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 10%) 100%);
}

.ww-services-gradient-section .ww-service-icon {
    font-size: 3.5rem;
    color: var(--main-color2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.ww-services-gradient-section .ww-service-card:hover .ww-service-icon {
    color: var(--main-color2);
    transform: scale(1.1) rotate(10deg);
}

.ww-services-gradient-section .ww-service-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: #1e293b;
    position: relative;
}

.ww-services-gradient-section .ww-service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background:  var(--main-color2);
    transition: all 0.3s ease;
}

.ww-services-gradient-section .ww-service-card:hover .ww-service-title::after {
    width: 60px;
    background: var(--main-color2);
}

.ww-services-gradient-section .ww-service-description {
    font-size: 1.6rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}
/*End about service section*/
/*End about page ui*/

/*Start job page ui*/
.hiringJob-section {
  padding: 6rem 5%;
}

.hiringJob-card {
  border: 1px solid #cecfd280;
  border-radius: 22px;
  padding: 2rem;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.hiringJob-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-0.5rem);
}

.hiringJob-badge {
  display: inline-flex;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 33px;
    margin-bottom: 1rem;
    color: var(--main-color2);
    background-color: #fffef0;
    letter-spacing: .3px;
}

.hiringJob-logo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

.hiringJob-company {
  font-size: 2.2rem;
  font-family: var(--heading);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hiringJob-location {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 1.2rem;
}

.hiringJob-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gray-color);
  font-family: var(--heading);
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.hiringJob-salary {
  color: #000;
  font-size: 2.4rem;
  font-family: var(--heading);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hiringJob-posted {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.hiringJob-card-flex{
    display: flex;
    align-items: center;
    gap: 2rem; margin-top: 1rem;
}

.hiringJob-btn {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1.6rem;
    border-radius: 33px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem; font-family: var(--heading);
    color: var(--main-color2);
    background-color: #fff;
    border: 1.4px solid rgb(251 134 18 / 30%);
}

.hiringJob-btn:hover {
  background: var(--main-color2);
  color: #fff;
}
/*End job page ui*/

/*Start job detail section*/
.job-detail-content-section {
  padding: 6rem 3%;
}

.job-detail-content-section h2 {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--heading);
  color: #000;
  margin-bottom: 2rem;
}

.job-detail-content-section .container img{
    width: 100%; border-radius:22px;
    margin-bottom: 4rem;
}

.job-detail-content-section p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.job-detail-content-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 2.5rem;
}

.job-detail-content-section ul li {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.job-detail-content-section ul li i {
  color: var(--main-color2);
  font-size: 1.8rem;
  margin-top: 0.3rem;
}

.apply-now-section-padding{
    padding: 0 5%;
}

.apply-now-section {
  padding: 4rem;
  background-color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.apply-now-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--heading);
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.apply-now-section p {
  font-size: 1.8rem;
  color: #4a4a4a;
  margin-bottom: 4rem;
  max-width: 700px;
  line-height: 1.7;
}

.apply-now-section .form-control,
.apply-now-section .form-select {
  font-size: 1.5rem;
  border-radius: 0.8rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: auto;
  color: #1a1a1a;
}

.apply-now-section .form-control::placeholder {
  color: #4a4a4a;
  opacity: 0.7;
}

.apply-now-section .form-control:focus,
.apply-now-section .form-select:focus {
  border-color: var(--main-color2);
  box-shadow: none;
  background-color: #fff;
}

.apply-now-section textarea.form-control {
  height: 15rem;
  resize: vertical;
}

.apply-now-section .form-label {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #1a1a1a; font-family: var(--heading);
  display: block;
}

.apply-now-section .apply-now-section-btn {
  font-size: 1.6rem;
  background: var(--main-color);
  border: none;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 0.6rem;
  margin-top: 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.apply-now-section .apply-now-section-btn:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.apply-now-section .apply-now-section-btn i {
  margin-left: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.apply-now-section .apply-now-section-btn:hover i {
  transform: translateX(3px);
}

.file-upload-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background-color: #f9f9f9;
  border: 1px dashed #e0e0e0;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.file-upload-label:hover {
  background-color: #f0f0f0;
}

.file-upload-text {
  font-size: 1.5rem;
  color: #4a4a4a;
}

.file-upload-icon {
  color: #4a4a4a;
  font-size: 1.8rem;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.job-hiring-banner{
    max-width: 900px;
    width: 100%;
    margin: auto; margin-bottom: 2rem;
    display: block;
    border-radius: 12px;
}
/*End job detail section*/

/*Privacy Policy page ui*/
.privacy-container {
    padding: 4rem 3%;
}

/* Header Styles */
.privacy-header {
    background-color: #ffffff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.privacy-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.privacy-title {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 10px;
}

.privacy-date {
    color: #7f8c8d;
    font-size: 14px;
}

/* Main Content Styles */
.privacy-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section-title {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid #ecf0f1;
    font-family: var(--heading);
}

.privacy-paragraph {
    margin-bottom: 20px;
    color: #34495e; font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
}

.privacy-paragraph a{
    color: var(--main-color2);
}

.privacy-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-list-item {
    margin-bottom: 16px;
    color: #34495e;
    font-size: 1.6rem!important;
}

.privacy-highlight {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid var(--main-color2);
    margin: 20px 0;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.7;
}
/*End privacy policy page ui*/























/*Media quaries*/
@media screen and (max-width: 992px){
html{
    font-size: 55%;
}

.job-away-nav__links {
    gap: 2rem;
}

.hero-slide-gallery-col::before{
    background: linear-gradient(to bottom, #efeeea 0%, transparent 100%);
}

.hero-slide-gallery-col {
    margin-top: 4rem;
}

.vision-section-cards-container{
    margin-top: 4rem;
}

}

@media screen and (max-width: 992px){ 
    .services-section .services-tabs {
        display: none;
    }

    .services-section .services-content {
        display: none;
    }

    .services-section .services-accordion {
        display: block;
    }

    .services-section .services-container{
        display: block;
    }

    .contact-us-section-left,
    .contact-us-section-right {
        padding: 5rem 4rem;
    }

    .ww-vision-content {
        grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    }

    .ww-services-gradient-section .ww-service-card {
        flex-direction: column;
    }

    .ww-services-gradient-section .ww-service-image-container{
        width: 100%;
    }

    .ww-service-image-container {
        height: 200px;
        order: -1;
    }

    .ww-services-gradient-section .ww-service-content{
        width: 100%;
    }

    .ww-services-gradient-section .ww-service-image::after{
        background: transparent;
    }

    .ww-services-gradient-section .ww-service-image::before{
        background: transparent;
    }
}

@media screen and (max-width: 992px){
   .job-away-nav__container {
        padding: 1.5rem 2rem;
    }

    .job-away-nav__menu-toggle {
        display: block;
    }

    .job-away-nav__links {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-2rem);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .job-away-nav__links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .job-away-nav__dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        margin-left: 1.5rem;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-width: auto;
        transform: none;
        background-color: #f9f9f9;
        border-radius: 0.8rem;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-menu {
        opacity: 1;
        height: auto;
        visibility: visible;
        transform: none;
        padding: 1rem 0;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-indicator {
        transform: rotate(180deg);
        color: #4e6bff;
    }

    .job-away-nav__container.scrolled {
        top: 0;
    }

    .job-away-nav__container.scrolled + .job-away-nav__links {
        top: 7rem;
    }

    .job-away-nav__actions {
        display: none;
    }

    .job-away-nav__mobile-actions {
        display: flex;
    }

    .job-away-nav__search {
        font-size: 2rem;
    }

    .job-away-nav__link {
        width: 100%;
        padding: 1rem 0;
        font-size: 2.4rem;
    }

    .job-away-nav__link::after {
        display: none;
    }
}

@media screen and (max-width: 768px){
    .about-section .about-image{
        margin-bottom: 3rem;
    }

    .escrow-card{
        border-radius: 28px;
    }

    .contact-us-section-card .row{
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 650px){ 

/* Overlay for closing menu */
.job-away-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(0.3rem);
}

.job-away-nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

.home-slider-card {
    width: 150px;
    margin: 0 0.8rem;
  }

  .home-slider-image {
    height: 120px;
  }

  .home-slider-label {
    font-size: 1.2rem;
    padding: 0.4rem 1.4rem;
    bottom: -1.4rem;
  }

  .blog-section__title {
    font-size: 1.6rem;
  }

  .home-assest2{
    width: 47px;
    top: 173px;
  }

  .home-assest1{
    width: 47px;
  }

  .gallery-section .gallery-section-image {
    height: 18rem;
  }

  .home-content h1{
    font-size: 3.6rem;
  }

  .openPositions-avatar {
    display: none;
  }
  .openPositions-section {
    min-height: auto;
    display: block;
  }


.hero-slide-gallery-column-right{
    display: none;
}

.vision-section-card{
    flex-wrap: wrap; gap: 2rem;
    text-align: center; justify-content: center;
}

.contact-us-section-left,
    .contact-us-section-right {
        padding: 4rem 3rem;
    }

    .contact-us-section-map-wrapper {
        height: 40rem;
    }

    .contact-us-section-submit-btn {
        width: 100%;
        padding: 2rem 3rem;
    }

    .contact-us-section-form-input,
    .contact-us-section-form-textarea {
        padding: 1.6rem 1.5rem 1.6rem 5rem;
    }

    .contact-us-section-input-icon {
        left: 1.5rem;
        font-size: 1.6rem;
    }

    .contact-us-section-icon-box {
        width: 5rem;
        height: 5rem;
    }

    .contact-us-section-map-wrapper {
        height: 35rem;
    }

    .privacy-header-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-content{
        padding: 20px;
    }

    .smile {
        right: 10px;
        top: 50px;
        animation-play-state: paused!important;
        width: 30px;
    }

    .smile2 {
        position: absolute;
        left: 10px;
        top: 50px;
        animation-play-state: paused!important;
        width: 30px;
    }

    .accordion-title img{
        width: 45px;
    }

    .pasion-section__image{
        width: 80px; height: 80px;
    }

    .hero-overview-section{
        min-height: auto;
    }

    .hero-slide-content-col {
        margin-top: 4rem;
    }

}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}

@media screen and (max-width: 1200px){
    .services-section .service-panel-content {
        flex-direction: column;
    }

    .services-section .service-panel-image {
        max-height: 300px;
    }

    .job-away-nav .home-buttons{
        display: none!important;
    }

    .section-heading-01-container{
        justify-content: center;
        gap: 0;
        text-align: center;
    }

    .section-heading-01-subtitle{
        max-width: 100%; text-align: center;
    }

    .section-heading-01-right{
        text-align: center;
    }

}


