/* body {
    overflow: hidden;
} */

.logo-style {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    color: #f1f1f1 !important;
    transition: all 0.3s ease;
}

.logo-style:hover {
    color: #5398be !important;
}

.nav-link {
    color: #f1f1f1 !important;
}

/* Hero Section Styles */
.page-one {
    /* margin-top: -160px; */
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(
        125deg,
        rgba(46, 23, 114, 1) 0%,
        rgba(38, 28, 139, 1) 50%,
        rgba(38, 28, 139, 1) 59%,
        rgba(46, 23, 114, 1) 100%
    );
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(83, 152, 190, 0.1) 0%,
        transparent 50%
    );
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(83, 152, 190, 0.1);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

/* Brand Dot */
.brand-dot {
    position: relative;
    margin-bottom: 2rem;
}

.dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #5398be;
    border-radius: 50%;
}

.dot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #5398be;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Text Reveal Animation */
.text-reveal {
    display: block;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: #5398be;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #5398be;
    position: relative;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #6bafd5;
    border-color: #6bafd5;
    color: white;
    box-shadow: 0 5px 15px rgba(83, 152, 190, 0.3);
}

.primary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: -1;
}

.primary-btn:hover::after {
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.secondary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: -1;
}

.secondary-btn:hover::after {
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        text-align: center;
    }
}

.page-two {
    background: rgb(7, 9, 25);
    min-height: 100vh;
}

.page-three {
    background: linear-gradient(
        125deg,
        rgba(46, 23, 114, 1) 0%,
        rgba(38, 28, 139, 1) 50%,
        rgba(38, 28, 139, 1) 59%,
        rgba(46, 23, 114, 1) 100%
    );
    min-height: 100vh;
}

.page-four {
    background: rgb(7, 9, 25);
    min-height: 100vh;
}

.page-five {
    font-family: "Anta", sans-serif;
    min-height: 100vh;
    margin-bottom: -24px;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000 !important;
    left: 0;
    top: 0;
    width: 100%;
    /* height: 100vh; */
    overflow: auto;
}
.custom-modal-backdrop {
    position: fixed;
    /* z-index: 1 !important; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}
.custom-modal-content {
    background-color: rgb(7, 9, 25);
    margin: 20% auto;
    padding: 20px;
    border-radius: 0px;
    max-width: 1024px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.custom-modal-header {
    padding-bottom: 10px;
}
.custom-modal-title {
    font-family: "Anta", sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}
.custom-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.custom-modal-close:hover,
.custom-modal-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.custom-modal-body {
    overflow: visible;
    padding: 20px 4px;
}
.custom-modal-body p {
    color: white;
}
.custom-modal-footer {
    padding-top: 10px;
    text-align: end;
}
.custom-btn {
    font-family: "Anta", sans-serif;
    background-color: #5398be;
    border: none;
    color: white;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.modal-text {
    font-family: "Anta", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.custom-btn:hover {
    background-color: #80c3e4;
}

.colored-text {
    color: #5398be;
}

.adot {
    color: #5398be;
    font-size: 124px;
}

.adot-two {
    color: rgb(7, 9, 25);
    font-size: 124px;
}

.form-control.padded-input {
    padding-left: 1.2rem !important;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    /* background: linear-gradient(125deg, rgba(46,23,114,1) 0%, rgba(38,28,139,1) 50%, rgba(38,28,139,1) 59%, rgba(46,23,114,1) 100%); */
    background-color: #5399be00;
}

/* Adjust label position to match */
.form-floating > .form-control ~ label {
    left: 1.2rem;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
}

.form-control,
.form-control:focus,
.form-floating > .form-control ~ label {
    color: #ffffff !important;
}

.form-control:focus {
    /* border-color: rgba(83, 153, 190, 0.479) !important; */
    box-shadow: 0 0 0 0.15rem rgba(83, 153, 190, 0) !important;
    outline: 0 !important;
}

textarea.form-control {
    color: #ffffff !important;
}

.title-one {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 72px;
    color: #fff8f0;
}

.text {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 24px;
}

.title-three {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 54px;
    color: #fff8f0;
}

.about-me-introduction {
    color: white;
    font-family: "Anta", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.about-me-information {
    color: white;
    font-family: "Anta", sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
}

.highlighted-about-me {
    color: white;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
    color: rgb(184, 219, 230);
    text-shadow: 2px 2px 18px rgb(11, 106, 143);
}

.glass-button {
    color: rgb(197, 174, 233);
    width: 120px;
    font-size: 20px;
    /* padding: 10px; */
    font-family: "Anta", sans-serif;
    background: rgba(66, 23, 146, 0.295);
    border: 1px solid rgba(175, 145, 209, 0.507);
    box-shadow: 0 0px 16px 0 rgba(108, 116, 226, 0.836);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 10px;
    transition: 0.5s ease;
}

.glass-button:hover {
    border: 1px solid rgba(78, 41, 121, 0.18);
    box-shadow: 0 4px 32px 0 rgba(31, 38, 135, 0.37);
}

.info-box {
    /* margin-right: 20px !important; */
}

.info-demo {
    /* border-radius: 10px !important; */
    border: 1px solid rgb(85, 94, 223);
    box-shadow: 0px 0px 29px -16px rgba(255, 255, 255, 0.75);
    opacity: 0.8;
    width: 100%;
    height: 280px;
    transition: all 0.5s ease;
}

.info-demo:hover {
    cursor: pointer;
    opacity: 1;
    border-color: rgb(152, 158, 243);
    box-shadow: none;
}

:root {
    --primary-color: rgb(85, 94, 223);
    --text-dark: rgb(7, 9, 25);
    --text-light: #ffffff;
    --button-gradient: linear-gradient(
        135deg,
        rgb(85, 94, 223) 0%,
        rgb(132, 139, 241) 100%
    );
}

body {
    /* background: linear-gradient(125deg, rgba(46,23,114,1) 0%, rgba(38,28,139,1) 50%, rgba(38,28,139,1) 59%, rgba(46,23,114,1) 100%); */
    color: var(--text-light);
}

.pricing-card {
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.popular-tag {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 10px 10px 0 0;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

.discount-badge {
    background-color: rgba(85, 94, 223, 0.2);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.price-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.feature-list .check-icon {
    color: rgb(132, 139, 241);
}

.btn-custom {
    background: var(--button-gradient);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 94, 223, 0.4);
    color: var(--text-light);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.promotion-text {
    color: rgb(132, 139, 241);
    font-size: 14px;
}

.learn-more-btn {
    color: rgb(132, 139, 241);
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--text-light);
}

.mt-6 {
    margin-top: 6rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mt-15 {
    margin-top: 15rem;
}

.mt-18 {
    margin-top: 18rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-8 {
    padding-top: 8rem;
}

.pt-10 {
    padding-top: 10rem;
}

.pt-15 {
    padding-top: 15rem;
}

.toggle {
    cursor: pointer;
    position: sticky;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.toggle span {
    position: absolute;
    width: 40px;
    height: 4px;
    background: #ffffff;
    border-radius: 4px;
    transition: 0.5s;
    z-index: 2;
}

.toggle span:nth-child(1):hover {
    background-color: #5398be;
}
.toggle span:nth-child(2):hover {
    background-color: #5398be;
}
.toggle span:nth-child(3):hover {
    background-color: #5398be;
}

.toggle span:nth-child(1) {
    transform: translateY(-15px);
    width: 25px;
    left: 15px;
}

.toggle.active span:nth-child(1) {
    width: 40px;
    transform: translateY(0px) rotate(45deg);
}

.toggle span:nth-child(2) {
    transform: translateY(15px);
    width: 15px;
    left: 15px;
}

.toggle.active span:nth-child(2) {
    width: 40px;
    transform: translateY(0px) rotate(315deg);
}

.toggle.active span:nth-child(3) {
    transform: translateX(60px);
}

.scroll {
    padding-top: px;
    /* width: 700px; */
    font-family: "Anta", sans-serif;
    color: #5399bee1;
    position: relative;
    display: flex;
    /* overflow: hidden; */
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 2px;
    /* -webkit-mask-image: linear-gradient(90deg, transparent, #fff, #fff, transparent); */
}

.scroll div {
    /* white-space: nowrap; */
    /* animation: animate var(--t) linear infinite; */
}

label.error {
    color: #dc3545;
    font-size: 14px;
}

.success-text {
    font-family: "Anta", sans-serif;
    letter-spacing: 2px;
    font-size: 24px;
    color: rgb(49, 209, 49);
}

.form-floating .error {
    transition: all 0.2s ease-in-out;
}

.scroll div span {
    display: inline-flex;
    margin: 10px;
    background: #2797d31f;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
}

.text-muted {
    color: #5398be !important;
}

.scroll div span:hover {
    background: #2797d396;
    cursor: pointer;
}

.aboutme {
    position: relative;
    padding: 30px 35px;
    /* margin: 40px 0; */
    color: #5398be;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    /* margin-left: 66px; */
    border-radius: 4px;
    font-family: "Anta", sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
}

.aboutme:hover {
    color: #fff8f0;
    cursor: default;
}

.aboutme span {
    position: absolute;
    display: block;
}

.aboutme span:nth-child(1) {
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a21c5);
    animation: animate1 1s linear infinite;
}

.box {
    /* width: 400px; */
    height: 280px;
    /* background-color: #5398BE; */
}

.add-box {
    /* width: 376px !important; */
    border: 1px solid rgb(85, 94, 223);
    box-shadow: 0px 0px 29px -16px rgba(255, 255, 255, 0.75);
    height: 280px !important;
    padding-left: 12px;
    padding-right: 12px;
    /* border: 1px white solid; */
    transition: all 0.3s ease;
}

.add-box:hover {
    border-color: rgb(152, 158, 243);
    box-shadow: none;
}

.big-plus {
    color: rgb(85, 94, 223);
    font-size: 72px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.final-box {
    /* border: 1px solid rgb(85, 94, 223); */
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px !important;
}

.final-box:hover {
    border-color: rgb(152, 158, 243);
}

.final-box:hover .big-plus {
    color: rgb(152, 158, 243);
}

/* Custom tooltip styling */
.tooltip-inner {
    font-family: "Anta", sans-serif !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    background-color: #4a21c5 !important; /* Your custom purple color */
    color: white !important; /* Text color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
    padding: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* Arrow color adjustments for all directions */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #4a21c5 !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #4a21c5 !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #4a21c5 !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #4a21c5 !important;
}

.page-four {
    background: rgb(7, 9, 25);
    min-height: 100vh;
    color: white;
}

.typetext {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Form styling with bottom border only */
.form-control.padded-input {
    padding-left: 0.5rem !important;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    /* background-color: #5399be10; */
}

/* Bottom border only styling */
.bottom-border-only {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 !important;
}

/* Adjust label position to match */
.form-floating > .form-control ~ label {
    left: 0.2rem;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
}

.form-control,
.form-control:focus,
.form-floating > .form-control ~ label {
    color: #ffffff !important;
}

.form-control:focus {
    /* border-color: rgba(83, 153, 190, 0.479) !important; */
    /* box-shadow: 0 0 0 0.15rem rgba(83, 153, 190, 0.925) !important; */
    outline: 0 !important;
}

/* Fix for floating labels with bottom-border-only inputs */
.form-floating > .bottom-border-only:focus ~ label,
.form-floating > .bottom-border-only:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    background-color: transparent;
    padding: 0 0.1rem;
}

/* Remove autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px rgb(7, 9, 25) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.custom-btn-two {
    background-color: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-btn-two:hover {
    background-color: #80c3e4;
    border-color: #80c3e4 !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .typetext {
        font-size: 2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .typetext {
        font-size: 2rem;
    }
}

.contact-text {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
}

/* Modern About Me Section Styles */
.page-two {
    background: rgb(7, 9, 25);
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Section Header Styles */
.section-badge {
    background-color: rgba(83, 152, 190, 0.2);
    color: #5398be;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 20px;
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
}

.section-badge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 6px;
    height: 6px;
    background-color: #5398be;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-me-introduction {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #5398be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Reveal Text Animation */
.reveal-text {
    position: relative;
    animation: revealText 1.5s ease forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bio Card Styles */
.bio-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #5398be;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-image img:hover {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: #5398be;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.experience-badge span:first-child {
    font-size: 1.5rem;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

.bio-text {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(
        90deg,
        rgba(83, 152, 190, 0.2),
        rgba(83, 152, 190, 0.05)
    );
    border-left: 4px solid #5398be;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.highlighted-about-me {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.modern-button {
    font-family: "Anta", sans-serif;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #5398be;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-button:hover {
    background-color: #6bafd5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 152, 190, 0.4);
    color: white;
}

/* Skills Section Styles */
.skills-section {
    margin-top: 4rem;
}

.skills-title {
    font-family: "Anta", sans-serif;
    letter-spacing: 1px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* .skills-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5398be;
    border-radius: 3px;
} */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.skill-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-item:hover {
    cursor: pointer;
    transform: translateY(-5px);
    background-color: rgba(83, 152, 190, 0.1);
    border-color: rgba(83, 152, 190, 0.3);
}

.skill-item::before {
    content: attr(data-years) " years";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    background-color: rgba(83, 152, 190, 0.2);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.skill-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.skill-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    background-color: #5398be;
    color: white;
    transform: scale(1.1);
}

.skill-name {
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-me-introduction {
        font-size: 2rem;
    }

    .bio-card {
        padding: 1.5rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .experience-badge {
        right: calc(50% - 100px);
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .skill-item {
        padding: 1rem 0.5rem;
    }

    .skill-icon {
        width: 40px;
        height: 40px;
    }
}

@keyframes animate1 {
    0% {
        left: -50%;
    }
    50%,
    100% {
        left: 50%;
    }
}

.aboutme span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #4a21c5);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2 {
    0% {
        top: -50%;
    }
    50%,
    100% {
        top: 50%;
    }
}

.aboutme span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #4a21c5);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate3 {
    0% {
        right: -50%;
    }
    50%,
    100% {
        right: 50%;
    }
}

.aboutme span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #4a21c5);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4 {
    0% {
        bottom: -50%;
    }
    50%,
    100% {
        bottom: 50%;
    }
}

@keyframes animate {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Projects Page Styles */
.page-three {
    background: linear-gradient(
        125deg,
        rgba(46, 23, 114, 1) 0%,
        rgba(38, 28, 139, 1) 50%,
        rgba(38, 28, 139, 1) 59%,
        rgba(46, 23, 114, 1) 100%
    );
    min-height: 100vh;
    color: white;
    position: relative;
}

/* Section Header Styles */
.section-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

/* .section-badge {
    background-color: rgba(83, 152, 190, 0.2);
    color: #5398be;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
  }
   */
.section-title {
    font-family: "Anta", sans-serif;
    letter-spacing: 1.5px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.colored-text {
    color: #5398be;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5398be, transparent);
    margin: 1rem auto 2rem;
}

/* Projects Grid */
.projects-grid {
    font-family: "Anta", sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Project Card Styles */
.project-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

/* Add Project Card */
.add-project {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed #5398be;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.add-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(83, 152, 190, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.add-icon {
    font-size: 40px;
    color: #5398be;
    line-height: 1;
}

.add-text {
    color: #5398be;
    font-weight: 500;
    font-size: 1.1rem;
}

.add-project:hover .add-icon-wrapper {
    background: #5398be;
}

.add-project:hover .add-icon {
    color: white;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(7, 9, 25, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .hover-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.view-project-btn {
    background: #5398be;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: #6bafd5;
    transform: scale(1.05);
}

/* Project Counter */
.project-counter {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: "Anta", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5398be;
    display: block;
}

.counter-label {
    font-family: "Anta", sans-serif;

    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-family: "Anta", sans-serif;
        font-size: 2rem;
    }

    .project-counter {
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    .counter-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}
