* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* navbar start */

.nav-item {
    margin: 10px;

}

.navbar-toggler {
    border-color: white;
    /* Makes the border white */
}

.navbar-toggler-icon {
    filter: invert(1);
    /* Turns the default black icon to white */
}


.navbar {
    background-color: black;
    box-shadow: 2px 5px 20px white;

}

.container-fluid .navbar-brand {
    font-size: 25px;
}

.nav-item .btn {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    z-index: 2;
}

.nav-item .btn:hover {
    color: black;
    z-index: 2;
}

.nav-item .btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: white !important;
    z-index: -1;
    transition: all 1s;
}

.nav-item .btn:hover::before {
    width: 180%;

}

.navbar-toggler .navbar-toggler-icon {
    color: white !;
}

/* navbar end */

/* hero section start */

.container .heading {
    color: white;
}


.container .heading .name {
    font-size: 50px;
    font-weight: 900;
}

.container .para {
    font-size: 35px;
    color: white;
}


.container .para .skill {
    font-weight: 500;
    color: #4b4a4a;
}


@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.animated-image {
    animation: upDown 2s ease-in-out infinite;
}

.img-fluid {
    border-radius: 20px;
}


.button {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    margin-right: 10px;
    color: white;
    border: 2px solid white;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 75px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: white;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
    scale: 3;
}

.button:hover {
    color: black;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(238, 237, 236, 0.4);
}

.button:active {
    scale: 1;
}



.about {
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    font-weight: 700;
    transition: all 0.3s;
}

.about:hover {
    border: 1px solid white;
}

.about:active {
    box-shadow: 4px 4px 12px #c5c5c5, -4px -4px 12px #ffffff;
}

/* hero section end */

/* about section start */

.about-section {
    background-color: #121212;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.accent-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #2a2a2a;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.profile-image {
    border-radius: 10px;
    box-shadow: 20px 20px 0px #2a2a2a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease forwards 0.3s;
}

.profile-image:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px #2a2a2a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #fff;
    animation: widthGrow 0.8s ease forwards;
}

.skill-tag {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background: #2a2a2a;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.5s ease forwards;
}

.skill-tag:hover {
    background: #fff;
    color: #121212;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bio-text {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.stats-item:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* about section end */



/* skills section */
.skills-section {
    background-color: black;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.accent-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: #2a2a2a;
    left: 50%;
    top: 0;
    transform: skewX(-15deg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
    animation: widthGrow 0.8s ease forwards;
}

.skill-item {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.skill-item:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-item:nth-child(3) {
    animation-delay: 0.4s;
}

.skill-item:nth-child(4) {
    animation-delay: 0.6s;
}

.skill-item:nth-child(5) {
    animation-delay: 0.8s;
}

.skill-item:nth-child(6) {
    animation-delay: 1s;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-percentage {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.progress-container {
    background: #2a2a2a;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: #fff !important;
    border-radius: 4px;
    transition: width 1.5s ease;
    position: relative;
    width: 0;
}

.html .progress-bar {
    width: 100%;
}

.css .progress-bar {
    width: 80%;
}

.javascript .progress-bar {
    width: 60%;
}

.bootstrap .progress-bar {
    width: 80%;
}

.tailwind .progress-bar {
    width: 80%;
}

.github .progress-bar {
    width: 50%;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressGlow 2s linear infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@keyframes progressGlow {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(400%);
    }
}

.container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .skills-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* skills section end */


/* service section start */

.services-section {
    background-color: #121212;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.accent-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.accent-line {
    position: absolute;
    background: #2a2a2a;
    transform: skewY(-45deg);
}

.accent-line-1 {
    width: 100px;
    height: 3px;
    top: 20%;
    left: 10%;
}

.accent-line-2 {
    width: 150px;
    height: 3px;
    bottom: 30%;
    right: 15%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
    animation: widthGrow 0.8s ease forwards;
}

.service-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ddd;
}

.service-feature i {
    margin-right: 10px;
    color: #fff;
    font-size: 0.8rem;
}

.service-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 25px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #fff;
    color: #121212;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}


/* service section end */


/* project section start */

.portfolio-section {
    background-color: black;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1a1a1a;
    opacity: 0.5;
    z-index: 1;
}

.accent-circle-1 {
    top: -150px;
    left: -150px;
}

.accent-circle-2 {
    bottom: -150px;
    right: -150px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
    animation: widthGrow 0.8s ease forwards;
}

.project-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.4s;
}

.project-card:nth-child(4) {
    animation-delay: 0.6s;
}

.project-card:nth-child(5) {
    animation-delay: 0.8s;
}

.project-card:nth-child(6) {
    animation-delay: 1s;
}

.project-image {
    position: relative;
    overflow: hidden;
    padding-top: 55%;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background-position: center; */
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
}


.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    background: #2a2a2a;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: #fff;
    color: #121212;
    cursor: pointer;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.project-link:hover {
    background: #fff;
    color: #121212;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* project section end */



/* contact us start */

.contact-section {
    background-color: #121212;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
    animation: widthGrow 0.8s ease forwards;
}

.contact-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.contact-item:hover .contact-icon {
    background: #fff;
}

.contact-item:hover .contact-icon i {
    color: #121212;
}

.contact-text {
    color: #aaa;
}

.contact-text h4 {
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.4s;
}

.form-group:nth-child(4) {
    animation-delay: 0.6s;
}

.form-control {
    background: #2a2a2a;
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #333;
    box-shadow: none;
    color: #fff;
}

.form-control::placeholder {
    color: #888;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.8s;
}

.submit-btn:hover {
    background: #fff;
    color: #121212;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 55px;
    height: 55px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    font-size: 20px;
    transform: scale(0.8);
    animation: scaleIn 0.5s ease forwards;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-link:nth-child(3) {
    animation-delay: 0.4s;
}

.social-link:nth-child(4) {
    animation-delay: 0.6s;
}

.social-link:hover {
    background: #fff;
    color: #121212;
    transform: translateY(-5px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* contact us end */

/* footer section start */
.footer-section {
    background-color: black;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding: 20px 0;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

.accent-shape {
    position: absolute;
    background: #1a1a1a;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    left: -150px;
    opacity: 0.3;
}

/* .shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
} */

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-about {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
}

.footer-link:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-link:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-link:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-link a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.newsletter-input {
    flex: 1;
    background: #2a2a2a;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    color: #fff;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #fff;
    color: #121212;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.5s ease forwards;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-link:nth-child(3) {
    animation-delay: 0.4s;
}

.social-link:nth-child(4) {
    animation-delay: 0.6s;
}

.social-link:hover {
    background: #fff;
    color: #121212;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    color: #aaa;
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-section [class*="col-"] {
        margin-bottom: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}


/* footer section end */



/* hero section new start */
.hero-section {
    min-height: 100vh;
    background-color: #121212;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.breadcrumb-wrapper {
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 10;
    animation: fadeInDown 0.8s ease;
}

.custom-breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    margin: 0 1rem;
    transform: rotate(-45deg);
}

.breadcrumb-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.3);
    animation: zoomIn 20s infinite alternate ease-in-out;
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(150deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(30deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(150deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(60deg, #77777777 25%, transparent 25.5%, transparent 75%, #77777777 75%, #77777777);
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0;
    opacity: 0.1;
}

.hero-text {
    color: #fff;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-button:hover {
    color: #121212;
}

.hero-button:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .breadcrumb-wrapper {
        padding: 0.5rem 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }
}

/* hero section new end */

