
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: #0f172a; color: white; overflow-x: hidden; }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0 10%;
            background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
        }

        /* Text Content Styling */
        .hero-text {
            flex: 1;
            max-width: 600px;
            animation: fadeInRight 1s ease forwards;
        }

        /* Image Styling */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: fadeInLeft 1s ease forwards;
        }

        .profile-img {
            width: 350px;
            height: 350px;
            border-radius: 50%; /* This makes it round */
            object-fit: cover;
            border: 4px solid #38bdf8;
            box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
            transition: transform 0.5s ease;
        }

        .profile-img:hover {
            transform: scale(1.05) rotate(2deg);
            border-color: #7dd3fc;
        }

        /* Animations */
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        h1 { font-size: 3.5rem; margin-bottom: 1rem; }
        .accent { color: #38bdf8; }
        
        .cta-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 12px 30px;
            background: #38bdf8;
            color: #0f172a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero { flex-direction: column-reverse; text-align: center; padding-top: 50px; }
            .profile-img { width: 250px; height: 250px; margin-bottom: 2rem; }
            h1 { font-size: 2.5rem; }
        }

/*--------------------------my about section css code started-------------------------------------------- */
/* Section Base */
    .about-section {
        background-color: #0f172a;
        overflow: hidden;
    }

    .accent { color: #38bdf8; }

    /* Glassmorphism Passion Box */
    .passion-box {
        background: rgba(30, 41, 59, 0.5);
        border: 1px solid rgba(56, 189, 248, 0.2);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease;
    }

    .passion-box:hover {
        transform: scale(1.02);
        border-color: #38bdf8;
    }

    /* Education Card Styling */
    .bg-dark-soft {
        background-color: #1e293b;
        border-radius: 0 15px 15px 0;
        transition: background 0.3s;
    }

    .edu-card:hover {
        background-color: #334155;
    }

    /* Reusing your Jump Animation */
    .jump-animation {
        opacity: 0;
        animation: jumpIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes jumpIn {
        0% { opacity: 0; transform: translateY(50px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* Bootstrap Color Override */
    .text-primary { color: #38bdf8 !important; }
    .bg-primary { background-color: #38bdf8 !important; }

/*--------------------------my foooter section css code ended-------------------------------------------- */

 /*--------------------------my skills section css code started-------------------------------------------- */
    .skills-section {
        padding: 60px 0;
        background-color: #0f172a;
        overflow: hidden;
    }

    .skills-title {
        text-align: center;
        color: #38bdf8;
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* The viewport for the scrolling content */
    .skills-container {
        width: 100%;
        display: flex;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    /* The moving track */
    .skills-scroll {
        display: flex;
        width: calc(250px * 14); /* Width of card * total number of cards */
        animation: scroll 20s linear infinite;
    }

    /* Individual skill cards */
    .skill-card {
        width: 180px;
        padding: 20px;
        margin: 0 15px;
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 12px;
        color: white;
        text-align: center;
        font-weight: bold;
        font-size: 1.1rem;
        transition: transform 0.3s, border-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .skill-card:hover {
        transform: translateY(-5px);
        border-color: #38bdf8;
        color: #38bdf8;
    }

    /* Keyframes for the marquee effect */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 7 - 30px * 7)); } /* Moves by half the cards */
    }
    /* Pause animation on hover so users can read */
    .skills-container:hover .skills-scroll {
        animation-play-state: paused;
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
        .skill-card {
            width: 140px;
            font-size: 0.9rem;
        }
        .skills-title { font-size: 1.5rem; }
    }
/*--------------------------my skills section css code ended-------------------------------------------- */

/*--------------------------my skills project css code started-------------------------------------------- */

  .project-section {
        padding: 80px 10%;
        background-color: #0f172a;
    }

    .project-title {
        text-align: center;
        color: white;
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    /* Grid Layout */
    .project-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* The Project Card */
    .project-card {
        background: #1e293b;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #334155;
        cursor: pointer;
        transition: box-shadow 0.3s ease;
    }

    /* The Zoom Effect on Touch/Hover */
    .project-img-container {
        overflow: hidden; /* Clips the image when it zooms */
    }

    .project-img-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .project-card:hover .project-img-container img {
        transform: scale(1.15); /* Zoom effect */
    }

    .project-card:hover {
        box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
        border-color: #38bdf8;
    }

    /* Jumping Entrance Animation */
    .jump-animation {
        opacity: 0;
        animation: jumpIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes jumpIn {
        0% {
            opacity: 0;
            transform: translateY(100px) scale(0.5);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Info Styling */
    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        color: #38bdf8;
        margin-bottom: 10px;
    }

    .project-info p {
        color: #94a3b8;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .tags span {
        font-size: 0.75rem;
        background: #334155;
        padding: 5px 10px;
        border-radius: 20px;
        margin-right: 5px;
        color: #cbd5e1;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .project-section { padding: 50px 5%; }
        .project-title { font-size: 2rem; }
    }

/*--------------------------my skills section css code ended-------------------------------------------- */


/*--------------------------my contact section css code ended-------------------------------------------- */
  .contact-section {
        padding: 100px 10%;
        background-color: #0f172a;
        display: flex;
        justify-content: center;
    }

    .contact-container {
        background: #1e293b;
        padding: 40px;
        border-radius: 20px;
        width: 100%;
        max-width: 600px;
        text-align: center;
        border: 1px solid #334155;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* Reuse the Jumping Animation */
    .jump-animation {
        animation: jumpIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .contact-title {
        color: #38bdf8;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .contact-subtitle {
        color: #94a3b8;
        margin-bottom: 30px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .input-group input, .input-group textarea {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #334155;
        background: #0f172a;
        color: white;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s;
    }

    .input-group input:focus, .input-group textarea:focus {
        border-color: #38bdf8;
    }

    .send-btn {
        background: #38bdf8;
        color: #0f172a;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.3s, background 0.3s;
    }

    .send-btn:hover {
        background: #7dd3fc;
        transform: scale(1.02);
    }

    /* Response Message Style */
    .hidden { display: none; }
    #responseMessage {
        margin-top: 20px;
        padding: 15px;
        background: rgba(56, 189, 248, 0.1);
        color: #38bdf8;
        border-radius: 10px;
        border: 1px solid #38bdf8;
    }

    @media (max-width: 600px) {
        .contact-container { padding: 20px; }
        .contact-title { font-size: 2rem; }
    }

/*--------------------------my contact section css code ended-------------------------------------------- */


/*--------------------------my footer section css code started-------------------------------------------- */
  .main-footer {
        background-color: #020617; /* Deeper dark than the sections */
        padding: 80px 10% 30px 10%;
        color: #94a3b8;
        border-top: 1px solid #1e293b;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr; /* First column is wider */
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-column h3 {
        color: white;
        margin-bottom: 20px;
        font-size: 1.2rem;
        position: relative;
    }

    .footer-logo {
        color: white;
        font-size: 2rem;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .accent { color: #38bdf8; }

    .brand-info p {
        line-height: 1.8;
        max-width: 400px;
    }

    /* List Styling */
    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer-column ul li a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
    }

    .footer-column ul li a:hover {
        color: #38bdf8;
        padding-left: 8px; /* Subtle interaction */
    }

    /* Social Links */
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 25px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: #1e293b;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: bold;
        transition: 0.3s;
    }

    .social-links a:hover {
        background: #38bdf8;
        color: #0f172a;
        transform: translateY(-5px);
    }

    /* Bottom Section */
    .footer-divider {
        border: 0;
        border-top: 1px solid #1e293b;
        margin-bottom: 25px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .main-footer { padding: 60px 5% 20px 5%; }
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .brand-info p { margin: 0 auto; }
        .social-links { justify-content: center; }
        .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    }
 
/*--------------------------my foooter section css code ended-------------------------------------------- */