*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(100deg, #000000, #313131);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
.header{
    font-size: 20px;
}
.header h3{
    color: hsl(214, 27%, 78%);
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 300px;
    font-size: 30px;
}
h3{
    font-family: 'Times New Roman', Times, serif;
}
.nav{
    margin: 20px;  
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.nav a{
    color: whitesmoke;
    margin: 15px;
    padding: 20px; 
    padding-bottom: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav a:hover{
    border-bottom: 2px solid whitesmoke;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
.nav a.active{
    border-bottom: 2px solid #f5f5f5;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

h3{
    font-size: 30px;
    margin-left: 300px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin: 300px;
    color: hsl(214, 27%, 78%);
}
/* hero-section */
.Hero-section{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.Hero-section h3{
    font-size: 40px;
    margin: 100px 200px 20px 200px;
    text-shadow: 0 0 10px #a9aab8;
    color: hsl(214, 27%, 78%);
}
.Hero-section p{
    font-size: 20px;
    margin: 30px 200px;
    margin-bottom: 60px;
    color: #ffffff;
}
hr .border{
    width: 25%;
    margin: 10px auto;
}
.btn{
    background: transparent;
    border-radius: 5px;
    border: 2px solid #409cff !important;
    color: #ffffff !important;
    cursor: pointer;
    text-decoration: none;
    padding: 15px 40px !important;
    font-size: 20px;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin: 10px;
    display: inline-block;
}  
.btn::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(64, 156, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
    z-index: -1;
}        
.btn:hover::before {
    width: 300px;
    height: 300px;
}
        
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff; 
    background: rgba(64, 156, 255, 0.3);
}        
.btn:hover::before {
    width: 300px;
    height: 300px;
}
        
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff; 
    background: rgba(64, 156, 255, 0.3);
}
/* About and Contact Section */
.about-contact-section h3{
    text-align: center;
    margin-left: 300px;
    margin-bottom: 30px;
    font-size: 30px;
    color: hsl(214, 27%, 78%);
}
.about-contact-section p{
    font-size: 18px;
    margin: 20px 200px 10px 200px;
    text-align: justify;
    line-height: 1.6;
    color: #ffffff;
}
.about-contact-section h4{
    color: #b8c5d6;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.profile-card{
    margin-top: 50px;
    margin-bottom: 40px;
    margin-left: 400px;
    margin-right: 400px;
    border: 2px solid #409cff;
    border-radius: 10px;
    padding: 30px;
    line-height: 1.3;
}
.profile-card a{
    color: #ffffff;
}
.contact-item{
    align-items: left;
    margin-left: 40px;
    font-size: 18px;
    color: #ffffff;
}
.profile-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff; 
}
i{
    margin-right: 10px;
}
/* Skills Section */
.Skills h3{
    text-align: center;
    margin-left: 300px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 35px;
    color: hsl(214, 27%, 78%);
}
.Skills{
    margin-bottom: 25px;
}
.skills-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}
.skills-category{
    border: 2px solid #409cff;
    border-radius: 10px;
    padding: 20px;
    width: 350px;
    margin: 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.skills-category h4{
    margin-bottom: 15px;
    color: #b8c5d6;
    font-size: 25px;
}
.skills-category ul{
    list-style-type: none;
    text-align: left;
    font-size: 18px;
}
.skills-category ul li{
    margin: 10px 2px;
    padding: 5px 10px;
    display: inline-block;
    border: 1.5px solid #409cff;
    border-radius: 10px;
    color: #ffffff;
}
.skills-category:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff; 
}
.skills-category ul li:hover{
    background: linear-gradient(135deg, #9ebeef, #004c8b);
    color: #000000;
    transition: all 0.3s, color 0.3s;
}
.border{
    width: 20%;
    margin: 3px auto 30px auto;
    border: 1.2px solid #004c8b;
    border-radius: 5px;
}

/* Project Section - COMPLETELY FIXED */
.Projects {
    margin: 50px 0;
    padding: 0 20px;
}

.Projects h3{
    text-align: center;
    margin: 0 auto 25px auto;
    font-size: 35px;
    color: #b8c5d6;
}

.carousel {
    padding: 60px 0;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
}

.carousel-inner {
    padding: 0;
    position: relative;
}

.carousel-item {
    padding: 40px 100px;
    transition: transform 0.6s ease-in-out;
}

.carousel-item > div,
.carousel-item .glass-card {
    border: #409cff 2px solid;
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.carousel-item > div:hover,
.carousel-item .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
}

.carousel-item h3 {
    color: hsl(214, 27%, 78%) !important;
    margin: 0 0 25px 0 !important;
    font-size: 28px !important;
    text-align: left;
    line-height: 1.4;
}

.carousel-item em {
    color: #7d99b8;
    font-size: 0.85em;
}

.carousel-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.carousel-item ul li {
    padding: 0 0 0 25px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
}

.carousel-item ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #409cff;
    font-weight: bold;
}

.carousel-item ul li strong {
    color: #409cff;
    font-weight: 600;
}

.carousel-item a.btn {
    margin-top: 20px;
}

.carousel-indicators {
    bottom: -30px;
    z-index: 10;
    position: relative;
}

.carousel-indicators button {
    background-color: #409cff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 0.5;
    box-shadow: 0 0 10px rgba(64, 156, 255, 0.5);
    border: none;
}

.carousel-indicators .active {
    opacity: 1;
    box-shadow: 0 0 20px rgba(64, 156, 255, 1);
    width: 14px;
    height: 14px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(53%) sepia(98%) saturate(3000%) hue-rotate(190deg);
    width: 22px;
    height: 22px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px !important;
    height: 55px !important;
    background: rgba(64, 156, 255, 0.25) !important;
    border: 2px solid #409cff !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0.85 !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
}

.carousel-control-prev {
    left: 25px !important;
}

.carousel-control-next {
    right: 25px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
    box-shadow: 0 0 30px rgba(64, 156, 255, 0.8) !important;
    background: rgba(64, 156, 255, 0.4) !important;
    transform: translateY(-50%) scale(1.15) !important;
}

/* Experience Section */
.experience h3{
    text-align: center;
    margin-left: 300px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 35px;
    color: hsl(214, 27%, 78%);
}
.experience{
    margin-bottom: 50px;
}
.experience-item{
    border-left: 2px solid #409cff;
    border-radius: 10px;
    padding: 20px;
    margin: 25px;
    margin-left: 50px;
    margin-right: 50px;
    transition: all 0.3s ease;
}
.experience-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff; 
}
.experience-item h4{
    margin-bottom: 10px;
    color: #b8c5d6;
    font-size: 25px;
}
.experience-item p{
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}
.experience-item span{
    color: #ffffff;
}
.experience-item ul{
    margin-top: 10px;
    list-style-type: none;
    padding-left: 20px;
    line-height: 1.5;
}
.experience-item ul li{
    color: #ffffff;
}
.experience-item em{
    color: #ffffff;
}
.education-item ul{
    list-style-type: "> ";
}
.certifications-section{
    padding: 20px;
    color: #ffffff;
    margin: 25px;
    margin-left: 50px;
    margin-right: 50px;
    transition: all 0.3s ease;
}
.certifications-section h4{
    margin-bottom: 20px;
    color: #b8c5d6;
    font-size: 30px;
}
.certifications-section ul{
    margin-top: 10px;
    list-style-type: none;
    padding-left: 20px;
    line-height: 1.5;
}
.certifications-section ul li{
    color: #ffffff;
    border-left: #004c8b 2px solid;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 18px;
}
.certifications-section ul li:hover{
    transform: translateY(3px);
    box-shadow: 0 10px 30px rgba(6, 73, 243, 0.5);
    color: #fff;
}
/* Contact section */
.contact h3{
    text-align: center;
    margin-left: 300px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 35px;
    color: hsl(214, 27%, 78%);
}
.contact{
    margin-bottom: 50px;
}
.contact p{
    font-size: 18px;
    margin: 20px 300px 10px 400px;
    text-align: justify;
    line-height: 1.6;
    color: #ffffff;
}
.contact a{
    color: #409cff;
}
.contact-section{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
/* footer */
.footer{
    text-align: center;
    padding: 20px;
    background: #111111;
    color: #ffffff;
    font-size: 16px;
    border-top: 2px solid #409cff;
}
/* responsive design */
/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
}

/* Circular Ripple Menu Icon */
.ripple-icon {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple-icon .circle-outer {
    width: 45px;
    height: 45px;
    border: 2px solid #409cff;
    border-radius: 50%;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(64, 156, 255, 0.1);
}

.ripple-icon .circle-inner {
    width: 20px;
    height: 20px;
    background: #409cff;
    border-radius: 50%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lines inside the circle */
.ripple-icon .menu-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: absolute;
}

.ripple-icon .menu-lines span {
    width: 12px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active state - Ripple effect */
.ripple-icon.active .circle-outer {
    width: 60px;
    height: 60px;
    border-width: 3px;
    background: rgba(64, 156, 255, 0.2);
    box-shadow: 0 0 20px rgba(64, 156, 255, 0.5);
}

.ripple-icon.active .circle-inner {
    width: 30px;
    height: 30px;
    background: #409cff;
    box-shadow: 0 0 15px rgba(64, 156, 255, 0.8);
}

/* Transform lines to X */
.ripple-icon.active .menu-lines span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
    width: 16px;
}

.ripple-icon.active .menu-lines span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.ripple-icon.active .menu-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
    width: 16px;
}

/* Mobile Navigation Menu */
.nav {
    position: relative;
}

.nav nav {
    display: flex;
}

/* Hide desktop nav and show mobile toggle on small screens */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header h3 {
        margin-right: 80px;
    }
    
    .nav {
        flex-direction: column;
        align-items: flex-start;
        border-left: none;
    }
    
    .nav nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
        border-top: 2px solid #409cff;
        z-index: 998;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }
    
    .nav nav.active {
        display: flex;
        animation: slideDown 0.4s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav nav a {
        width: 100%;
        text-align: center;
        padding: 20px;
        margin: 0;
        border-bottom: 1px solid rgba(64, 156, 255, 0.2);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav nav a:hover {
        background: rgba(64, 156, 255, 0.1);
        border-left: 3px solid #409cff;
        border-bottom: 1px solid rgba(64, 156, 255, 0.4);
        padding-left: 25px;
    }
    
    .nav nav a.active {
        background: rgba(64, 156, 255, 0.15);
        border-left: 3px solid #409cff;
    }
    
    /* Carousel Tablet Responsive */
    .Projects {
        padding: 0 15px;
    }
    
    .Projects h3 {
        font-size: 30px;
    }
    
    .carousel {
        padding: 50px 0;
    }
    
    .carousel-item {
        padding: 30px 70px;
    }
    
    .carousel-item > div,
    .carousel-item .glass-card {
        padding: 30px;
    }
    
    .carousel-item h3 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }
    
    .carousel-item ul li {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 48px !important;
        height: 48px !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-control-prev {
        left: 15px !important;
    }
    
    .carousel-control-next {
        right: 15px !important;
    }
}

/* Small Tablets and Large Phones (600px - 768px) */
@media screen and (max-width: 768px) {
    .header h3 {
        margin-right: 80px;
        font-size: 26px;
        margin-left: 20px;
    }
    
    h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 26px;
        text-align: center;
    }
    
    .about-contact-section h3,
    .Skills h3,
    .Projects h3,
    .experience h3,
    .contact h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 30px;
        text-align: center;
    }
    
    .about-contact-section p {
        margin: 20px 50px 10px 50px;
        font-size: 17px;
        text-align: justify;
    }
    
    .profile-card {
        margin-left: 100px;
        margin-right: 100px;
        padding: 25px;
    }
    
    .skills-container {
        gap: 20px;
    }
    
    .skills-category {
        width: 300px;
    }
    
    .experience-item {
        margin-left: 30px;
        margin-right: 30px;
        padding: 18px;
    }
    
    .experience-item h4 {
        font-size: 23px;
    }
    
    .experience-item p {
        font-size: 17px;
    }
    
    .certifications-section {
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .certifications-section h4 {
        font-size: 28px;
        text-align: center;
    }
    
    .certifications-section ul li {
        font-size: 17px;
    }
    
    .contact p {
        margin: 20px 50px 10px 50px;
        font-size: 17px;
        text-align: center;
    }
    
    .border {
        width: 30%;
    }
}

/* Mobile Devices (480px - 600px) */
@media screen and (max-width: 600px) {
    .mobile-menu-toggle {
        top: 15px;
        right: 15px;
    }
    
    .ripple-icon {
        width: 42px;
        height: 42px;
    }
    
    .ripple-icon .circle-outer {
        width: 42px;
        height: 42px;
    }
    
    .ripple-icon.active .circle-outer {
        width: 55px;
        height: 55px;
    }
    
    .header h3 {
        margin-right: 60px;
        font-size: 24px;
        margin-left: 15px;
    }
    
    .nav nav {
        top: 70px;
    }
    
    .nav nav a {
        padding: 18px;
        font-size: 16px;
    }
    
    .Hero-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    
    .Hero-section h3 {
        font-size: 26px;
        margin: 60px 30px 15px 30px;
        text-align: center;
    }
    
    .Hero-section p {
        font-size: 16px;
        margin: 25px 30px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .btn {
        padding: 10px 25px !important;
        font-size: 16px;
        margin: 6px;
        letter-spacing: 1px;
    }
    
    h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 24px;
        text-align: center;
    }
    
    .about-contact-section h3,
    .Skills h3,
    .Projects h3,
    .experience h3,
    .contact h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 28px;
        text-align: center;
    }
    
    .about-contact-section p {
        margin: 20px 30px 10px 30px;
        font-size: 16px;
        text-align: justify;
    }
    
    .profile-card {
        margin-left: 30px;
        margin-right: 30px;
        padding: 20px;
    }
    
    .profile-card h4 {
        font-size: 22px;
        text-align: center;
    }
    
    .contact-item {
        margin-left: 20px;
        font-size: 16px;
    }
    
    .skills-container {
        gap: 15px;
    }
    
    .skills-category {
        width: 280px;
    }
    
    .skills-category h4 {
        font-size: 22px;
    }
    
    .skills-category ul {
        font-size: 16px;
    }
    
    /* Carousel Mobile Responsive */
    .Projects h3 {
        font-size: 28px;
    }
    
    .carousel {
        padding: 40px 0;
    }
    
    .carousel-item {
        padding: 25px 60px;
    }
    
    .carousel-item > div,
    .carousel-item .glass-card {
        padding: 25px 20px;
    }
    
    .carousel-item h3 {
        font-size: 21px !important;
        margin-bottom: 18px !important;
        text-align: center;
    }
    
    .carousel-item ul li {
        font-size: 15px;
        margin-bottom: 14px;
        line-height: 1.6;
        padding-left: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 42px !important;
        height: 42px !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    
    .carousel-control-prev {
        left: 10px !important;
    }
    
    .carousel-control-next {
        right: 10px !important;
    }
    
    .experience-item {
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px;
    }
    
    .experience-item:hover {
        transform: translateY(-30px);
    }
    
    .experience-item h4 {
        font-size: 21px;
    }
    
    .experience-item p {
        font-size: 16px;
    }
    
    .certifications-section {
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px;
    }
    
    .certifications-section h4 {
        font-size: 26px;
        text-align: center;
    }
    
    .certifications-section ul li {
        font-size: 16px;
        padding: 8px;
    }
    
    .contact p {
        margin: 20px 30px 10px 30px;
        font-size: 16px;
        text-align: center;
    }
    
    .border {
        width: 40%;
    }
    
    .footer {
        font-size: 14px;
        padding: 15px;
    }
}

/* Small Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) {
    .mobile-menu-toggle {
        top: 12px;
        right: 12px;
    }
    
    .ripple-icon {
        width: 40px;
        height: 40px;
    }
    
    .ripple-icon .circle-outer {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .ripple-icon .circle-inner {
        width: 18px;
        height: 18px;
    }
    
    .ripple-icon .menu-lines span {
        width: 10px;
        height: 1.5px;
    }
    
    .ripple-icon.active .circle-outer {
        width: 50px;
        height: 50px;
    }
    
    .ripple-icon.active .circle-inner {
        width: 26px;
        height: 26px;
    }
    
    .ripple-icon.active .menu-lines span:nth-child(1),
    .ripple-icon.active .menu-lines span:nth-child(3) {
        width: 14px;
    }
    
    .header h3 {
        margin-right: 60px;
        font-size: 22px;
        margin-left: 10px;
        margin-top: 8px;
    }
    
    .nav nav {
        top: 65px;
    }
    
    .nav nav a {
        padding: 16px;
        font-size: 15px;
    }
    
    .Hero-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .Hero-section h3 {
        font-size: 22px;
        margin: 40px 25px 15px 25px;
        text-align: center;
    }
    
    .Hero-section p {
        font-size: 14px;
        margin: 20px 25px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .btn {
        padding: 8px 20px !important;
        font-size: 14px;
        margin: 5px;
        letter-spacing: 1px;
    }
    
    .btn::before {
        width: 0;
        height: 0;
    }
    
    .btn:hover::before {
        width: 200px;
        height: 200px;
    }
    
    h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 22px;
        text-align: center;
    }
    
    .about-contact-section h3,
    .Skills h3,
    .Projects h3,
    .experience h3,
    .contact h3 {
        margin-left: 0;
        margin-right: 0;
        font-size: 24px;
        text-align: center;
    }
    
    .about-contact-section p {
        margin: 15px 20px 10px 20px;
        font-size: 15px;
        text-align: justify;
    }
    
    .profile-card {
        margin-left: 20px;
        margin-right: 20px;
        padding: 18px;
    }
    
    .profile-card h4 {
        font-size: 20px;
        text-align: center;
    }
    
    .contact-item {
        margin-left: 15px;
        font-size: 14px;
    }
    
    .skills-container {
        gap: 12px;
        margin-top: 30px;
    }
    
    .skills-category {
        width: 260px;
        padding: 18px;
    }
    
    .skills-category h4 {
        font-size: 20px;
    }
    
    .skills-category ul {
        font-size: 14px;
    }
    
    .skills-category ul li {
        margin: 8px 2px;
        padding: 4px 8px;
        font-size: 14px;
    }
    
    /* Carousel Small Mobile */
    .Projects h3 {
        font-size: 24px;
    }
    
    .carousel {
        padding: 30px 0;
    }
    
    .carousel-item {
        padding: 20px 50px;
    }
    
    .carousel-item > div,
    .carousel-item .glass-card {
        padding: 20px 15px;
    }
    
    .carousel-item h3 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        text-align: center;
        line-height: 1.3;
    }
    
    .carousel-item ul li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 18px;
    }
    
    .carousel-item ul li::before {
        font-size: 12px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        background: rgba(64, 156, 255, 0.35) !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .carousel-control-prev {
        left: 8px !important;
    }
    
    .carousel-control-next {
        right: 8px !important;
    }
    
    .experience-item {
        margin-left: 15px;
        margin-right: 15px;
        padding: 12px;
    }
    
    .experience-item:hover {
        transform: translateY(-20px);
    }
    
    .experience-item h4 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    
    .experience-item p,
    .experience-item ul li {
        font-size: 14px;
    }
    
    .experience-item span {
        font-size: 14px;
    }
    
    .certifications-section {
        margin-left: 15px;
        margin-right: 15px;
        padding: 12px;
    }
    
    .certifications-section h4 {
        font-size: 22px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .certifications-section ul {
        padding-left: 15px;
    }
    
    .certifications-section ul li {
        font-size: 14px;
        padding: 8px;
        margin-bottom: 12px;
    }
    
    .contact p {
        margin: 15px 20px 10px 20px;
        font-size: 15px;
        text-align: center;
    }
    
    .contact-section {
        margin-top: 25px;
        margin-bottom: 40px;
    }
    
    .border {
        width: 50%;
    }
    
    .footer {
        font-size: 13px;
        padding: 12px;
    }
    
    .footer p {
        margin: 5px 0;
    }
}

/* Extra Small Devices (max-width: 320px) */
@media screen and (max-width: 320px) {
    .mobile-menu-toggle {
        top: 10px;
        right: 10px;
    }
    
    .ripple-icon {
        width: 38px;
        height: 38px;
    }
    
    .ripple-icon .circle-outer {
        width: 38px;
        height: 38px;
    }
    
    .ripple-icon .circle-inner {
        width: 16px;
        height: 16px;
    }
    
    .ripple-icon.active .circle-outer {
        width: 48px;
        height: 48px;
    }
    
    .ripple-icon.active .circle-inner {
        width: 24px;
        height: 24px;
    }
    
    .header h3 {
        font-size: 20px;
        margin-right: 55px;
    }
    
    .nav nav {
        top: 60px;
    }
    
    .nav nav a {
        font-size: 14px;
        padding: 15px;
    }
    
    .Hero-section h3 {
        font-size: 20px;
        margin: 30px 15px 10px 15px;
        text-align: center;
    }
    
    .Hero-section p {
        font-size: 13px;
        margin: 15px 15px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .btn {
        padding: 7px 15px !important;
        font-size: 13px;
    }
    
    .about-contact-section h3,
    .Skills h3,
    .Projects h3,
    .experience h3,
    .contact h3 {
        font-size: 22px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    
    .about-contact-section p {
        margin: 12px 15px 8px 15px;
        font-size: 14px;
        text-align: justify;
    }
    
    .profile-card {
        margin-left: 15px;
        margin-right: 15px;
        padding: 15px;
    }
    
    .profile-card h4 {
        text-align: center;
    }
    
    .skills-category {
        width: 240px;
        padding: 15px;
    }
    
    /* Carousel Extra Small Mobile */
    .Projects h3 {
        font-size: 22px;
    }
    
    .carousel {
        padding: 25px 0;
    }
    
    .carousel-item {
        padding: 15px 45px;
    }
    
    .carousel-item > div,
    .carousel-item .glass-card {
        padding: 18px 12px;
    }
    
    .carousel-item h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
        text-align: center;
    }
    
    .carousel-item ul li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 16px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px !important;
        height: 38px !important;
        background: rgba(64, 156, 255, 0.4) !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    .carousel-control-prev {
        left: 5px !important;
    }
    
    .carousel-control-next {
        right: 5px !important;
    }
    
    .experience-item,
    .certifications-section {
        margin-left: 12px;
        margin-right: 12px;
    }
    
    .certifications-section h4 {
        text-align: center;
    }
    
    .contact p {
        margin: 12px 15px 8px 15px;
        text-align: center;
    }
    
    .border {
        width: 60%;
    }
}