/*--------------------------------------------------------------
# Category One
--------------------------------------------------------------*/
.category-one {
    position: relative;
    display: block;
    background: #ffffff; /* Changed from blue gradient to white */
    counter-reset: count;
    padding: 84px 0 68px;
    z-index: 1;
}

.category-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .16;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: none; /* Removed background image */
    z-index: -1;
}

.category-one__shape-1 {
    position: absolute;
    top: -20px;
    left: 0;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.category-one__shape-1 img {
    width: auto;
    opacity: .10;
}

.category-one__shape-2 {
    position: absolute;
    top: 0;
    left: 530px;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

.category-one__shape-2 img {
    width: auto;
    opacity: .10;
}

.category-one__shape-3 {
    position: absolute;
    /* bottom: -135px;
    left: -160px; */
    animation: fa-spin 5s ease infinite;
    z-index: -1;
}

.category-one__shape-3 img {
    width: auto;
    opacity: 0.08;
}

.category-one__left {
    position: relative;
    display: block;
}

.category-one__left .section-title__tagline-shape {
    background-color: #FFD700; /* Gold accent */
}

.category-one__left .section-title__tagline {
    color: #000000; /* Changed from white to black */
}

.category-one__left .section-title__title {
    color: #000000; /* Changed from white to black */
}

.category-one__left .section-title__title span {
    color: #000000; /* Changed from white to black */
}

.category-one__category-list {
    position: relative;
    display: block;
}

.category-one__category-list li {
    position: relative;
    display: block;
    overflow: hidden;
}

.category-one__category-list li:last-child .category-one__count-and-arrow {
    border-bottom: none;
}

.category-one__count-and-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #000000; /* Changed from white to black */
    padding-bottom: 20px;
    padding-top: 18px;
    overflow: hidden;
}

.category-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
}

.category-one__count {
    position: relative;
    display: block;
}

.category-one__count:before {
    position: relative;
    font-size: 33px;
    line-height: 43px;
    font-weight: 600;
    color: #000000; /* Changed from white to black */
    font-family: var(--fistudy-font-two);
    font-style: italic;
    counter-increment: count;
    content: "0"counter(count);
}

.category-one__count-content {
    position: relative;
    display: block;
    flex: 1;
}

.category-one__count-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.category-one__count-content h3 a {
    color: #000000; /* Changed from white to black */
}

.category-one__count-content p {
    font-size: 20px;
    line-height: 20px;
    font-family: var(--fistudy-font-two);
    font-style: italic;
    color: #000000; /* Changed from white to black */
    font-weight: 300;
}

.category-one__count-arrow {
    position: relative;
    display: block;
}

.category-one__count-arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #000000; /* Changed from white to black */
    border-radius: 50%;
    font-size: 12px;
    color: #000000; /* Changed from white to black */
}

.category-one__hover-icon-and-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--fistudy-white);
    padding: 7.5px 30px 13.5px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 2;
}

.category-one__category-list li:hover .category-one__hover-icon-and-arrow {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.category-one__hover-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
}

.category-one__hover-icon {
    position: relative;
    display: block;
}

.category-one__hover-icon img {
    width: auto;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.category-one__hover-icon:hover img {
    transform: scale(0.9);
}

.category-one__hover-content {
    position: relative;
    display: block;
    flex: 1;
}

.category-one__hover-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.category-one__hover-content h3 a {
    color: var(--fistudy-base);
}

.category-one__hover-content h3 a:hover {
    color: var(--fistudy-black);
}

.category-one__hover-content p {
    font-size: 20px;
    line-height: 20px;
    font-family: var(--fistudy-font-two);
    font-style: italic;
    color: var(--fistudy-gray);
    font-weight: 300;
}

.category-one__hover-arrow {
    position: relative;
    display: block;
}

.category-one__hover-arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--fistudy-black);
    border-radius: 50%;
    font-size: 12px;
    color: var(--fistudy-black);
}

.category-one__hover-arrow a:hover {
    color: var(--fistudy-white);
    background-color: var(--fistudy-base);
    border: 1px solid var(--fistudy-base);
}

.category-one__right {
    position: relative;
    display: block;
    margin-left: 103px;
    margin-top: 14px;
}

.category-one__img {
    position: relative;
    display: block;
}

.category-one__img img {
    width: 100%;
}

/* Icons Grid Layout */
.category-one__icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
}

/* Icon Box Styles */
.category-icon-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.category-icon-box:hover {
    transform: translateY(-10px) scale(1.02);
}

.category-icon-box h4 {
    color: #000;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* SVG Icon Animations */
@keyframes float-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes blink-1 {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

.dragon-1 {
    animation: float-1 3s ease-in-out infinite;
}

.eye-1 {
    animation: blink-1 4s ease-in-out infinite;
}

@keyframes bookOpen-2 {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(10deg); }
}

@keyframes sparkle-2 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.book-2 {
    animation: bookOpen-2 4s ease-in-out infinite;
    transform-origin: center;
}

.sparkle-2 {
    animation: sparkle-2 2s ease-in-out infinite;
}

@keyframes bubble1-3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes bubble2-3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.bubble1-3 {
    animation: bubble1-3 2s ease-in-out infinite;
}

.bubble2-3 {
    animation: bubble2-3 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes trophy-4 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes star-4 {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.trophy-4 {
    animation: trophy-4 3s ease-in-out infinite;
}

.star-4 {
    animation: star-4 2s ease-in-out infinite;
}

.category-one__social-media {
    position: absolute;
    left: -280px;
    bottom: 355px;
    transform: rotate(-90deg);
}

.category-one__social-media::before {
    content: "";
    position: absolute;
    left: -23px;
    right: -23px;
    bottom: -29px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.35); /* Changed from white to black */
}

.category-one__social-media-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.category-one__social-media-list li {
    position: relative;
    display: block;
}

.category-one__social-media-list li h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    font-family: var(--fistudy-font-two);
    font-style: italic;
    color: #000000; /* Changed from white to black */
}

.category-one__social-media-list li img {
    width: auto;
}

.category-one__brand-box {
    position: absolute;
    right: -273px;
    bottom: 355px;
    transform: rotate(-90deg);
}

.category-one__brand-list {
    position: relative;
    display: flex;
    bottom: 24px;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.category-one__brand-list li {
    position: relative;
    display: block;
}

.category-one__brand {
    position: relative;
    display: block;
}

.category-one__brand img {
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-one__icons-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .category-icon-box {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .category-icon-box {
        padding: 20px;
        min-height: 180px;
    }
    
    .category-icon-box h4 {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# Category Two
--------------------------------------------------------------*/
.category-two {
    position: relative;
    display: block;
    background-color: #FCFCFC;
    padding: 120px 0 96px;
    z-index: 1;
}

.category-two__single {
    position: relative;
    display: block;
    background-color: var(--fistudy-white);
    padding: 20px 20px 20px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.category-two__single-inner {
    position: relative;
    display: block;
    background-color: #FCFCFC;
    border: 1px solid var(--fistudy-bdr-color);
    border-radius: 24px;
    padding: 77px 20px 20px;
}

.category-two__sub-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    font-family: var(--fistudy-font-two);
    color: var(--fistudy-base);
    font-style: italic;
}

.category-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    margin-top: 5px;
    margin-bottom: 40px;
}

.category-two__title a {
    color: var(--fistudy-black);
}

.category-two__title a:hover {
    color: var(--fistudy-base);
}

.category-two__btn-box {
    position: relative;
    display: block;
}

.category-two__btn-box .thm-btn {
    background-color: var(--fistudy-primary);
}

.category-two__btn-box .thm-btn:hover {
    color: var(--fistudy-white);
}

.category-two__btn-box .thm-btn::before {
    bottom: -45px;
    right: -20px;
    background-color: var(--fistudy-base);
}

.category-two__btn-box .thm-btn:hover::before {
    width: 150%;
    height: 250%;
}

.category-two__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fistudy-white);
    border: 1px solid var(--fistudy-bdr-color);
    border-radius: 50%;
    z-index: 1;
}

.category-two__icon img {
    width: auto;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.category-two__single:hover .category-two__icon img {
    transform: scale(0.9);
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/