
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
   cursor: url('images/icons8-3d-pointer-240.png'), auto; 
}

a:hover,
button:hover {
   cursor: url('images/icons8-3d-pointer-240.png'), auto; 
}

html {
   scroll-behavior: smooth;
}

body {
   color: #ededed;
   background-color: #081b29;
}

 
 
 .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #051129;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
 }
 
 
 .logo {
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
 }
 
 
 .navbar {
    display: flex;
    align-items: center;
 }
 
 
 .navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
 }
 
 
 .navbar a:hover {
    color: #0ef;
 }
 
 
 section {
    padding: 100px 10%;
    scroll-margin-top: 80px;
 }
 
 
 .home {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
 }
 
 
 .home-content {
    max-width: 500px;
    text-align: left;
    margin-right: 40px;
 }
 
 
 .home-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #ededed;
 }
 
 
 .home-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0;
 }
 
 
 .home-content p {
    font-size: 18px;
    color: #b0c4de;
    margin: 15px 0;
 }
 
 
 .highlight {
    color: #0ef;
    font-weight: bold;
 }
 
 
 
 
 .home-sci {
    display: flex;
    gap: 15px;
    margin: 20px 0;
 }
 
 
 .home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #0ef;
    font-size: 28px;
    color: #0ef;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
 }
 
 
 .home-sci a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
 }
 
 
 
 
 .btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
 }
 
 
 .btn-box:hover {
    background: #08f;
    box-shadow: 0 0 10px #08f, 0 0 35px #08f;
 }
 
 
 .about {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
 }
 
 
 .about-img img {
    max-width: 630px;
    height: auto;
    width: 100%;
    border-radius: 8px;
 }
 .about-text h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
 }
 
 
 .about-text h2 span {
    color: #0ef;
 }
 
 
 
 
 
 
 .about-text h4 {
    font-size: 29px;
    font-weight: 600;
    color: #fff;
    margin: 15px 0 30px;
 }
 
 
 .about-text p {
    font-size: 20px;
    color: #b0c4de;
    line-height: 1.6;
 }
 .profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    padding: 10px;
    border-radius: 50%;
    margin-left: 40px;
 }
 
 
 .profile-photo {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee) border-box;
    padding: 5px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
 }
 
 
 
 
 .skills {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(135deg, #1f1c2c, #928dab); /* Updated gradient to match portfolio theme */
    color: #ffffff;
 }
 
 
 .skills h2 {
    font-size: 50px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #0ef; /* Accent color */
 }
 
 
 .skill-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px; /* Adds space between categories */
    margin-top: 20px;
}

.skill-category {
    background-color: #232639; /* Darker background for contrast */
    padding: 20px; /* Increases size of the boxes */
    border: 2px solid #00d8ff; /* Matches the border style */
    border-radius: 10px;
    width: 45%; /* Adjusts size for better fit */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Adds depth */
}

.skill-category h3 {
    color: #00d8ff; /* Matches the highlight color */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.skill-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between icons */
    flex-wrap: wrap;
}

.skill-icon {
    width: 100px; 
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skill-icon:hover {
    transform: scale(1.3); }

@media (max-width: 768px) {
    .skill-category {
        width: 90%; 
        padding: 15px;
    }
    .skill-icon {
        width: 50px; \
        height: 50px;
    }
}

 
 
 
 /* Project Section */
 .projects {
    padding: 80px 10%;
    background-color: #081b29;
    text-align: center;
 }
 
 
 .projects h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 40px;
 }
 
 
 .projects h2 span {
    color: #0ef;
 }
 
 
 .project-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
 }
 
 
 .project-card {
    background: #1c2833;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 
 .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
 }
 
 
 .project-details {
    padding: 20px;
    text-align: left;
    color: #e8e8e8;
 }
 
 
 .project-details h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
 }
 
 
 .project-details p {
    font-size: 16px;
    margin-bottom: 15px;
 }
 
 
 .tech-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
 }
 
 
 .tech-icons i {
    font-size: 24px;
    color: #0ef;
 }
 
 
 .project-link {
    display: inline-block;
    background: #0ef;
    color: #081b29;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
 }
 
 
 .project-link:hover {
    background: #08f;
    transform: translateY(-3px);
 }
 
 
 
 
 .project-image-frame {
    padding: 10px;
    background: #ffffff;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 
 .project-image {
    width: 100%;
    height: 200px;
   
    border-radius: 10px;
    object-fit: cover;
 }
 
 
 .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
 }
 .project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px; /* Adjust based on your layout */
    height: auto; /* Ensure flexibility */
}

 
 
 .contact-section {
    background: linear-gradient(135deg, #1f1c2c, #928dab); /* Match your portfolio background */
    padding: 60px 10%;
    text-align: center;
 }
 
 
 .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
 }
 
 
 
 
 
 
 
 
 
 
 /* Contact Section */
 .contact-section {
    background: linear-gradient(145deg, #1c1c26, #252535); /* Gradient background */
    padding: 80px 10%;
    color: #fff;
    text-align: center;
 }
 
 
 
 
 .contact-header {
    margin-bottom: 50px;
 }
 
 
 .contact-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
  
   
 }
 
 
 
 
 
 
 
 
 
 
 
 
 .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
 }
 
 
 
 
 .contact-box {
    background-color: #2e3b4e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
 }
 
 
 .contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
 }
 
 
 
 
 .contact-icon {
    font-size: 3rem;
    color: #00d8ff;
    margin-bottom: 15px;
 }
 
 
 
 
 .contact-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
 }
 
 
 .contact-box p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 20px;
 }
 
 
 
 
 .contact-link {
    font-size: 1rem;
    color: #00d8ff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
 }
 
 
 .contact-link:hover {
    color: #00aaff;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 .footer {
    text-align: center;
    background: #081b29;
    color: #ededed;
    padding: 20px 10px;
    font-size: 16px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
 }
 
 
 .footer p {
    margin: 0;
    font-weight: 500;
 }
 
 
 .footer p span {
    color: #0ef;
    font-weight: 600;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 @keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
 }
 
 
 @keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
 }
 
 
 @keyframes slideTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
 }
 
 
 @keyframes slideBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
 }
 
 
 
 
 
 
 