/* @import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&family=WindSong&display=swap"); */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.body {
    color: black;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.body main {
    flex: 1 0 auto;
}

.navbar-absolute {
    z-index: 1000;
    left: 9%;
    right: 9%;
    width: 81% !important;
    margin-bottom: 80px;
}

.navbar-expand-lg {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #00bfe7;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
}

.navbar-expand-lg .navbar-brand {
    font-family: "WindSong", cursive;
    font-size: x-large;
    transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-brand:hover {
    text-shadow: 0 0 15px #00bfe7;
    transform: scale(1.05);
}

.navbar-expand-lg .navbar-collapse .navbar-nav .nav-item a {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-expand-lg .navbar-collapse .navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00bfe7;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-expand-lg .navbar-collapse .navbar-nav .nav-item a:hover::after {
    width: 80%;
}

.navbar-animation {
    z-index: 1000;
    left: 10%;
    width: 81%;
    border-radius: 0 !important;
    animation: navbar-animation 0.8s forwards;
}

.navbar-animation .navbar-expand-lg {
    padding-left: 140px !important;
    padding-right: 140px !important;
    border-radius: 0% 0% 5px 5px !important;
    transition: 0.9s;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    border: none;
    border-bottom: 1px solid #00bfe7;
    background: rgba(255, 255, 255, 0.5) !important;
}

a.active {
    color: #00bfe7 !important;
    font-weight: bold !important;
    position: relative;
}

a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00bfe7;
    animation: underline-grow 0.3s ease;
}

@keyframes underline-grow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.button-styling {
    border: none !important;
    background-color: #3a0ca3 !important;
    box-shadow: inset 15px 15px 40px #00bfe7, inset -120px -10px 40px #00bfe7;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.button-styling::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button-styling:hover::before {
    left: 100%;
}

.button-styling:hover {
    box-shadow: inset -10px 10px 50px #00bfe7, inset 120px -10px 50px #00bfe7;
    transform: scale(1.05);
}

@keyframes navbar-animation {
    from {
        width: 80%;
    }

    to {
        left: 0%;
        width: 100%;
    }
}

.home {
    height: 100vh;
    padding-top: 110px;
    display: flex;
    width: 100%;
    background: linear-gradient(180deg, #00bfe7, #fff, #fff);
    position: relative;
}

.home .row {
    flex: 1;
}

.home .row .col:nth-child(1) .container h1 {
    font-family: "Tilt Neon", sans-serif;
    font-weight: bold;
    font-size: clamp(1.5rem, 2.5vw + 1rem, 4rem);
    color: black;
}

.home .row .col:nth-child(1) .container .type-writer,
.home .row .col:nth-child(1) .container .typed-cursor {
    color: #00bfe7;
    font-size: xx-large;
    font-weight: bold;
}

.home .row .col:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .row .col:nth-child(2) .clip-path {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
          clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%); */
}

.home .row::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -1%;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 193, 231, 0.8);
    border-radius: 50%;
    filter: drop-shadow(0px 0px 9px #00bfe7);
    animation: float 3s ease-in-out infinite;
}

.home .row::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 193, 231, 0.8);
    border-radius: 50%;
    filter: drop-shadow(0px 0px 9px #00bfe7);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

#about-section .container .row:nth-child(1) {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#about-section .container .row:nth-child(1) .col-lg-4 .my-image {
    width: 350px;
    height: 350px;
    overflow: hidden;
}

#about-section .container .row:nth-child(1) .col-lg-4 .my-image img {
    width: 100%;
    height: 100%;
}

#about-section .container .row:nth-child(1) .col-lg-4 .my-image:hover {
    filter: drop-shadow(-10px 10px 20px #00bfe7) contrast(110%);
}

#about-section .container .row:nth-child(1) .dots {
    position: absolute;
    z-index: 2;
    border-radius: 15px;
    width: 70px;
    height: 70px;
    background: rgba(0, 193, 231, 0.631372549);
    filter: drop-shadow(0 0 10px #00bfe7);
}

#about-section .container .row:nth-child(1) .dots:nth-child(1) {
    animation: rotate 2s infinite;
    top: 6%;
    left: 27%;
}

#about-section .container .row:nth-child(1) .dots:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 68%;
    left: 85%;
    animation: rotate 3s infinite;
}

#about-section .container .row:nth-child(2) .col .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#about-section .container .row:nth-child(2) .col .timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #00bfe7, #3a0ca3);
    top: 0;
    bottom: 0;
    left: 50%;
    border-radius: 4px;
    margin-left: -2px;
    box-shadow: 0 0 15px rgba(0, 191, 231, 0.5);
}

#about-section .container .row:nth-child(2) .col .timeline .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content {
    padding: 28px 30px;
    background: linear-gradient(145deg, #ffffff, #f0fdff);
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    color: #2d3748;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(0, 191, 231, 0.15);
    box-shadow: 0 8px 32px rgba(0, 191, 231, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 231, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content:hover::before {
    left: 100%;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bfe7, #3a0ca3);
    transition: width 0.4s ease;
    border-radius: 0 0 16px 16px;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content:hover::after {
    width: 100%;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 191, 231, 0.2),
        0 0 0 1px rgba(0, 191, 231, 0.25),
        inset 0 0 30px rgba(0, 191, 231, 0.03);
    border-color: rgba(0, 191, 231, 0.3);
}

#about-section .container .row:nth-child(2) .col .timeline .container .content .edu-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #00bfe7, #3a0ca3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 191, 231, 0.4);
    z-index: 2;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p:first-child {
    color: #00bfe7;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p:first-child i {
    font-size: 1.1rem;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p:nth-child(2) {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 5px;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p:nth-child(2) strong {
    color: #3a0ca3;
    background: linear-gradient(135deg, #3a0ca3, #00bfe7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

#about-section .container .row:nth-child(2) .col .timeline .container::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: -21px;
    background: linear-gradient(135deg, #00bfe7, #3a0ca3);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 191, 231, 0.6);
    border: 4px solid #fff;
    animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 191, 231, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 191, 231, 0.9);
        transform: scale(1.1);
    }
}

#about-section .container .row:nth-child(2) .col .timeline .container.left {
    left: -25.4%;
}

#about-section .container .row:nth-child(2) .col .timeline .container.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    right: 25px;
    border: medium solid white;
    border-width: 14px 0 14px 14px;
    border-color: transparent transparent transparent rgba(0, 191, 231, 0.25);
    transition: border-color 0.3s ease;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content:hover+ ::before {
    border-color: transparent transparent transparent rgba(0, 191, 231, 0.5);
}

#about-section .container .row:nth-child(2) .col .timeline .container.right {
    left: 25.3%;
}

#about-section .container .row:nth-child(2) .col .timeline .container.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    left: 25px;
    border: medium solid white;
    border-width: 14px 14px 14px 0;
    border-color: transparent rgba(0, 191, 231, 0.25) transparent transparent;
    transition: border-color 0.3s ease;
}

#about-section .container .row:nth-child(2) .col .timeline .container.right::after {
    left: -20px;
}

#about-section .container .row:nth-child(2) .col .timeline .container .content:hover~ ::before {
    border-color: transparent rgba(0, 191, 231, 0.5) transparent transparent;
}

#skills-section {
    margin-bottom: 50px;
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 191, 231, 0.05) 0%, transparent 100%);
}

#skills-section .container .row .col .card {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

#skills-section .container .row .col .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 231, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

#skills-section .container .row .col .card:hover::before {
    opacity: 1;
}

#skills-section .container .row .col .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 191, 231, 0.25),
        0 0 0 1px rgba(0, 191, 231, 0.1);
}

#skills-section .container .row .col .card p {
    color: #2d3748;
    padding: 0 10px;
    font-weight: 600;
    margin-left: 12px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

#skills-section .container .row .col .card .progress {
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 191, 231, 0.15);
    position: relative;
    z-index: 1;
}

#skills-section .container .row .col .card .progress .progress-bar {
    background: linear-gradient(90deg, #00bfe7, #3a0ca3);
    font-weight: bold;
    border-radius: 10px;
    position: relative;
    animation: progress-glow 2s ease-in-out infinite;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes progress-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 191, 231, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 191, 231, 0.8);
    }
}

#services-section {
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

#services-section .row .col .card {
    position: relative;
    min-height: 280px;
    display: flex;
    justify-content: center;
    text-align: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#services-section .row .col .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 191, 231, 0.12),
            transparent);
    transition: left 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

#services-section .row .col .card:hover::before {
    left: 100%;
}

#services-section .row .col .card .services-icon {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    top: -30px;
    left: 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#services-section .row .col .card:hover .services-icon {
    transform: translateX(25px) scale(1.2) rotate(15deg);
    background-color: #fff !important;
    border: 2px solid #00bfe7;
    color: #00bfe7;
    box-shadow: 0 0 25px rgba(0, 191, 231, 0.5);
}

#services-section .row .col .card:hover {
    border: 1px solid #00bfe7 !important;
    box-shadow:
        0 0 20px rgba(0, 191, 231, 0.4),
        0 0 40px rgba(0, 191, 231, 0.2),
        0 0 60px rgba(0, 191, 231, 0.1);
    transform: translateY(-8px);
}

#services-section .row .col .card:hover p {
    color: #00bfe7 !important;
}

#services-section::before {
    content: "";
    position: absolute;
    top: 14%;
    left: 24%;
    border-radius: 50%;
    width: 700px;
    height: 600px;
    background-color: rgba(0, 191, 231, 0.1);
}

#project-section {
    margin: 190px 0;
    overflow-x: hidden;
    background-image: url(../assets/images/bg1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 500px;
}

#project-section .uppar-layer {
    height: 500px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    color: white;
}

#portfolio-section .row .col .card {
    background: transparent;
    color: black;
    box-shadow: #00bfe7 0px 30px 100px -12px inset, #00bfe7 0px 18px 60px -18px inset;
    transition: all 0.4s ease;
}

#portfolio-section .row .col .card:hover {
    transform: scale(1.03);
    box-shadow:
        #00bfe7 0px 30px 100px -12px inset,
        #00bfe7 0px 18px 60px -18px inset,
        0 0 30px rgba(0, 191, 231, 0.4);
}

#portfolio-section .row .col .card .card-img .btn {
    overflow: hidden;
    height: 250px;
    width: 100%;
    display: flex;
    border: none;
    padding: 0%;
    position: relative;
}

#portfolio-section .row .col .card .card-img .btn .inner-img {
    width: 100%;
    height: 100%;
}

#portfolio-section .row .col .card .card-img .btn::before {
    content: "Preview";
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 4;
    font-size: large;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

#portfolio-section .row .col .card .card-img:hover .btn::before {
    display: flex;
}

#portfolio-section .row .col .card .card-img:hover .inner-img {
    transition: 1s;
    transform: scale(1.2);
}

#portfolio-section .row .col .card .card-body a {
    text-decoration: none;
    color: white;
}

#portfolio-section .row .col .card .card-body a:hover {
    text-decoration: underline;
}

#portfolio-section .row .col .card .card-body .card-title {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

#contact-section {
    min-height: 650px;
    color: white;
    overflow-x: hidden;
}

#contact-section h2 {
    font-weight: bold;
    text-align: center;
}

#contact-section .contact-stylling {
    background-image: url(../assets/images/contact-background.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

#contact-section .contact-stylling .container .row {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    min-height: 570px;
}

#contact-section .contact-stylling .container .row .col form div .form-control {
    background: transparent;
    color: white;
    margin-bottom: 20px;
    border-color: #00bfe7;
    border-radius: 0%;
    transition: all 0.3s ease;
}

#contact-section .contact-stylling .container .row .col form div .form-control:focus {
    box-shadow: 0 0 15px rgba(0, 191, 231, 0.4);
    border-color: #00bfe7;
    background: rgba(0, 191, 231, 0.1);
}

#contact-section .contact-stylling .container .row .col form div .form-control::-moz-placeholder {
    color: gray;
}

#contact-section .contact-stylling .container .row .col form div .form-control::placeholder {
    color: gray;
}

footer {
    border-top: 1px solid rgb(177, 173, 173);
}

footer .container {
    background: linear-gradient(0deg, rgba(0, 193, 231, 0.8509803922), #fff, #fff);
}

footer .container .row .footer-logo {
    font-family: "WindSong", cursive;
    font-size: x-large;
    color: #00bfe7;
}

footer .container .row:nth-child(2) .col-12 .nav-links a {
    color: black;
    text-decoration: none;
}

footer .container .row:nth-child(2) .col-12 .nav-links a .bx-chevron-right {
    display: none;
    margin-right: 0px;
}

footer .container .row:nth-child(2) .col-12 .nav-links a:hover .bx-chevron-right {
    transition: 0.4s;
    display: inline !important;
    color: #00bfe7;
}

footer .container .row:nth-child(2) .col-12 .nav-links a:hover {
    color: #00bfe7 !important;
}

footer .container .row:nth-child(2) .col-12 h3 {
    color: #00bfe7;
}

#top-button {
    position: fixed;
    border-radius: 50%;
    color: white;
    bottom: 2%;
    right: 2%;
    z-index: 1000;
}

@media only screen and (max-width: 1062px) {
    .navbar-animation .navbar-expand-lg {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    #home {
        background: linear-gradient(180deg, #00bfe7, #fff, #fff);
    }

    #home .home {
        background: none;
    }

    #home .home .row .col:nth-child(2) {
        display: flex !important;
        filter: drop-shadow(20px 20px 20px #00bfe7);
    }

    #home .home .row .col:nth-child(2) .clip-path {
        width: 300px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
        clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    }

    #home .home .row::before {
        content: "";
        display: none;
    }

    #home .home .row::after {
        content: "";
        display: none;
    }

    #about-section {
        padding-top: 50px;
    }

    #about-section .container .row .dots:nth-child(1) {
        background: rgba(0, 193, 231, 0.631372549);
        animation: rotate 2s infinite;
        height: 55px;
        width: 55px;
        top: 3% !important;
        left: 20% !important;
    }

    #about-section .container .row .dots:nth-child(2) {
        background: rgba(0, 193, 231, 0.631372549);
        height: 100px;
        width: 100px;
        top: 82% !important;
        left: 73% !important;
        animation: rotate 3s infinite;
    }

    footer {
        background: linear-gradient(0deg, rgba(0, 193, 231, 0.8509803922), #fff, #fff);
    }

    footer .container {
        background: none;
    }
}

@media only screen and (max-width: 576px) {

    .navbar-absolute {
        left: 5%;
        right: 5%;
        width: 90% !important;
    }

    .navbar-animation .navbar-expand-lg {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .home {
        min-height: 0;
        height: 100vh;
        background-image: unset;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background: unset;
    }

    .home .row .col:nth-child(1) {
        z-index: 2;
    }

    .home .row .col:nth-child(1) .container h1 {
        color: black;
    }

    .home .row .col:nth-child(2) {
        display: none;
    }

    .home .row::before {
        content: "";
        display: none;
    }

    .home .row::after {
        content: "";
        display: none;
    }

    .home::before {
        content: "";
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: unset;
    }

    #about-section .container .row:nth-child(1) .dots:nth-child(1) {
        animation: rotate 2s infinite;
        height: 55px;
        width: 55px;
        top: 2%;
        left: 10%;
    }

    #about-section .container .row:nth-child(1) .dots:nth-child(2) {
        height: 100px;
        width: 100px;
        z-index: -1;
        top: 85%;
        left: 71%;
        animation: rotate 3s infinite;
    }

    #about-section .container .row:nth-child(2) .col .timeline::after {
        left: 32px;
    }

    #about-section .container .row:nth-child(2) .col .timeline .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    #about-section .container .row:nth-child(2) .col .timeline .container::before {
        left: 60px;
    }

    #about-section .container .row:nth-child(2) .col .timeline .container.left,
    #about-section .container .row:nth-child(2) .col .timeline .container.right {
        left: 0%;
    }

    #about-section .container .row:nth-child(2) .col .timeline .container.left::after,
    #about-section .container .row:nth-child(2) .col .timeline .container.right::after {
        left: 19px;
    }

    #about-section .container .row:nth-child(2) .col .timeline .container.left::before {
        top: 20px;
        transform: rotate(180deg);
    }

    #about-section .container .row:nth-child(2) .col .timeline .container.right::before {
        top: 20px;
        left: 60px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00bfe7, #3a0ca3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3a0ca3, #00bfe7);
}

.text-info {
    color: black !important;
}

.contact-stylling .text-info {
    color: white !important;
}

.our-work-process-wrapper {
    padding: 20px 20px;
    position: relative;
    z-index: 0;
    background: #f9f9f9;
    background-color: #fff;
    position: relative;
}

.card_s-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0 0;
    overflow: hidden;
}

.card_s-container .card_s {
    flex: 1;
    transition: all .5s ease-in-out;
    height: 450px;
    position: relative;
}

.card_s-container .card_s:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    transition: all .3s;
}

.card_s-container .card_s:hover:before {
    background: rgba(0, 0, 0, .5)
}

.card_s-container .card_s .card__head {
    color: #000;
    background: #12e3f1;
    padding: 0.5em;
    transform: rotate(-90deg);
    transform-origin: 0% 0%;
    transition: all 0.5s ease-in-out;
    min-width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    font-family: inherit;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.card_s-container .card_s:hover {
    flex: 5;
}

.card_s-container .card_s:hover .card__head {
    text-align: center;
    top: calc(100% - 2em);
    color: #000;
    font-size: 2em;
    transform: rotate(0deg) skew(0deg);
}

.card_s-container .card_s img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.card_s-container .card_s:not(:last-child) {
    margin-right: 1em;
}

.card_s-container .card_s p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 10px;
    color: #fff;
    transition: all .5s ease-in-out;
    opacity: 0;
    margin: 0;
}

.card_s-container .card_s:hover p {
    opacity: 1;
    visibility: visible;
    transition-delay: .5s
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ========== EXPERIENCE SECTION ========== */

.experience-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Featured card - Current position */
.exp-card-featured {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 2px solid #00bfe7;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 191, 231, 0.12);
    transition: all 0.3s ease;
}

.exp-card-featured:hover {
    box-shadow: 0 12px 40px rgba(0, 191, 231, 0.18);
    transform: translateY(-3px);
}

/* Row of other cards */
.exp-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Regular experience cards */
.exp-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.exp-card:hover {
    border-color: #00bfe7;
    box-shadow: 0 8px 24px rgba(0, 191, 231, 0.12);
    transform: translateY(-4px);
}

/* Card header with icon */
.exp-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
}

.exp-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ff;
    border: 2px solid #00bfe7;
    border-radius: 8px;
    color: #00bfe7;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.exp-card:hover .exp-card-icon {
    background: #00bfe7;
    color: #fff;
    transform: scale(1.1);
}

.exp-card-icon-secondary {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: #fff5f5;
}

.exp-card:hover .exp-card-icon-secondary {
    background: #ff6b6b;
    color: #fff;
}

.exp-card-icon-tertiary {
    border-color: #ffa502;
    color: #ffa502;
    background: #fff9e6;
}

.exp-card:hover .exp-card-icon-tertiary {
    background: #ffa502;
    color: #fff;
}

/* Metadata - Status and Duration */
.exp-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-card-status {
    display: inline-block;
    background: #e3f2fd;
    color: #00bfe7;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: fit-content;
    text-transform: uppercase;
}

.exp-card-duration {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Job Title */
.exp-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin: 1rem 0 0.5rem;
    line-height: 1.3;
}

.exp-card-featured .exp-card-title {
    font-size: 1.5rem;
    color: #00bfe7;
}

/* Company Name */
.exp-card-company {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Responsibilities */
.exp-card-tasks {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.exp-card-tasks li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.2s ease;
}

.exp-card-tasks li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00bfe7;
    font-weight: bold;
}

.exp-card:hover .exp-card-tasks li {
    color: #333;
}

/* Technology Tags */
.exp-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.exp-card-tech span {
    background: #f5f5f5;
    color: #666;
    padding: 0.4rem 0.85rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.exp-card:hover .exp-card-tech span {
    background: rgba(0, 191, 231, 0.1);
    border-color: #00bfe7;
    color: #00bfe7;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .exp-cards-row {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .experience-container {
        gap: 2rem;
    }

    .exp-card-featured {
        padding: 2rem;
    }

    .exp-card {
        padding: 1.5rem;
    }

    .exp-card-title {
        font-size: 1.15rem;
    }

    .exp-card-featured .exp-card-title {
        font-size: 1.3rem;
    }

    .exp-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .exp-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exp-card-tasks li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .exp-card-tech span {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .experience-container {
        gap: 1.5rem;
    }

    .exp-card-featured,
    .exp-card {
        padding: 1.25rem;
        border-radius: 6px;
    }

    .exp-card-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .exp-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .exp-card-title {
        font-size: 1.05rem;
        margin: 0.8rem 0 0.3rem;
    }

    .exp-card-featured .exp-card-title {
        font-size: 1.2rem;
    }

    .exp-card-company {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .exp-card-duration {
        font-size: 0.8rem;
    }

    .exp-card-tasks li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 1.2rem;
    }

    .exp-card-tech {
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 0.8rem;
    }

    .exp-card-tech span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ========== EXPERIENCE SECTION - STUNNING UI OVERRIDES ========== */

/* These rules intentionally come after the base experience styles to provide
   enhanced 'stunning' hover effects without changing HTML. */

.experience-container { perspective: 1200px; }

.exp-card-featured {
  border-radius: 16px;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms ease;
  box-shadow: 0 20px 40px rgba(6,10,25,0.08), 0 2px 8px rgba(18,227,241,0.04) inset;
  overflow: visible;
}
.exp-card-featured .accent-bar { display:block; }

.exp-card {
  border-radius: 12px;
  transition: transform 360ms cubic-bezier(.2,.9,.2,1), box-shadow 300ms ease, border-color 260ms ease;
  will-change: transform;
}

/* subtle layered pseudo-shine and glow (last rules win) */
.exp-card::before { display: block; }
.exp-card::after { display: block; }

/* Hover: upscale, tilt, stronger shadow, animated shine */
.exp-card:hover {
  transform: translateY(-16px) rotateX(5deg) scale(1.01);
  box-shadow: 0 36px 72px rgba(6,10,25,0.16), 0 8px 26px rgba(18,227,241,0.06);
  border-color: rgba(18,227,241,0.22);
}

/* speed up icon animation on hover */
.exp-card:hover .exp-card-icon { animation: rotate 3s infinite;; }

/* title underline expand faster */
.exp-card:hover .exp-card-title::after { transition-duration: 250ms; }

/* Tech tags pop more */
.exp-card:hover .exp-card-tech span { transform: translateY(-8px) scale(1.05); }

/* CTA appears with slight bounce */
.exp-card .view-cta { transition: transform 360ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease; }
.exp-card:hover .view-cta { transform: translateY(-6px); opacity: 1; }

/* Reduce intensity on small screens & touch devices */
@media (hover: none) and (pointer: coarse) { 
  .exp-card, .exp-card-featured { transform: none !important; box-shadow: 0 10px 20px rgba(6,10,25,0.06) !important; }
  .exp-card::before, .exp-card::after, .exp-card-featured::before { display:none !important; }
  .exp-card .view-cta { display:none !important; }
}

/* ========== STUNNING EXPERIENCE SECTION ========== */

.exp-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.exp-block {
    position: relative;
    margin-bottom: 1.5rem;
}

.exp-block .exp-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 191, 231, 0.2);
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.exp-block:focus-within .exp-inner {
    outline: 2px solid #00bfe7;
    outline-offset: 2px;
}

.exp-block:hover .exp-inner {
    border-color: rgba(0, 191, 231, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 191, 231, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
}

.exp-block-featured .exp-inner {
    background: linear-gradient(135deg, #f0fdff 0%, #ffffff 100%);
    border: 2px solid rgba(0, 191, 231, 0.4);
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 191, 231, 0.12);
}

.exp-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 191, 231, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.exp-horizon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.exp-period {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00a5c2;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exp-pulse {
    width: 10px;
    height: 10px;
    background: #00bfe7;
    border-radius: 50%;
    display: inline-block;
    animation: exp-pulse-anim 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 191, 231, 0.6);
}

@keyframes exp-pulse-anim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.exp-badge-main {
    background: linear-gradient(135deg, #00bfe7, #3a0ca3);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.9rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 191, 231, 0.3);
}

.exp-main-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.exp-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(0, 191, 231, 0.12) 0%, rgba(0, 191, 231, 0.06) 100%);
    border: 2px solid rgba(0, 191, 231, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #00bfe7;
    transition: all 0.3s ease;
}

.exp-block:hover .exp-icon-wrap {
    background: linear-gradient(135deg, #00bfe7 0%, #3a0ca3 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 191, 231, 0.35);
    border-color: transparent;
}

.exp-icon-secondary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-color: rgba(255, 107, 107, 0.35);
    color: #e05555;
}

.exp-block:hover .exp-icon-secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #e04444 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.exp-icon-tertiary {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.1) 0%, rgba(255, 165, 2, 0.05) 100%);
    border-color: rgba(255, 165, 2, 0.35);
    color: #d98b00;
}

.exp-block:hover .exp-icon-tertiary {
    background: linear-gradient(135deg, #ffa502 0%, #e67d00 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 165, 2, 0.3);
}

.exp-text {
    flex: 1;
}

.exp-position {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.exp-block-featured .exp-position {
    font-size: 1.55rem;
}

.exp-company-name {
    font-size: 1rem;
    color: #555;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.exp-company-name i {
    color: #00bfe7;
    font-size: 1.1rem;
}

.exp-achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.65rem;
}

.exp-achievements li {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.65;
    padding-left: 1.4rem;
    position: relative;
}

.exp-achievements li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #00bfe7, #3a0ca3);
    border-radius: 50%;
}

.exp-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.exp-tech-row span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #00a5c2;
    background: rgba(0, 191, 231, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 191, 231, 0.3);
    transition: all 0.25s ease;
}

.exp-tech-row span:hover {
    background: rgba(0, 191, 231, 0.18);
    border-color: rgba(0, 191, 231, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 191, 231, 0.2);
}

.exp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
    gap: 0.75rem;
}

.exp-divider-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 231, 0.3), transparent);
}

.exp-divider-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #00bfe7, #3a0ca3);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 191, 231, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    .exp-block:hover .exp-inner,
    .exp-block:hover .exp-icon-wrap,
    .exp-tech-row span:hover,
    .exp-block:hover .exp-pulse {
        transform: none;
        animation: none;
        transition: none;
    }

    .exp-pulse {
        animation: none;
    }
}

@media (max-width: 768px) {
    .exp-block .exp-inner {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .exp-block-featured .exp-inner {
        padding: 1.75rem 1.5rem;
    }

    .exp-main-content {
        flex-direction: column;
        gap: 1rem;
    }

    .exp-icon-wrap {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .exp-position {
        font-size: 1.2rem;
    }

    .exp-block-featured .exp-position {
        font-size: 1.35rem;
    }

    .exp-achievements li {
        font-size: 0.88rem;
    }

    .exp-company-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .exp-horizon {
        flex-direction: column;
        align-items: flex-start;
    }

    .exp-period {
        font-size: 0.88rem;
    }

    .exp-tech-row span {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .exp-achievements li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .exp-position {
        font-size: 1.15rem;
    }
}
