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

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    background-color: #b0e7e7;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    padding-top: 80px;  /* Add top padding to prevent navbar from overlapping */
}

h1, h2 {
    color: #66bfbf;
}

h3 {
    color: #808080;
}

.logo {
    color: #66bfbf;
    font-size: 24px;
}

.logo a {
    color: #66bfbf;
    text-decoration: none;
}

span {
    color: #000000;
    opacity: 0.6;
}

.logo a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Navigation bar */
/* .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    position: fixed;
    background-color: #b0e7e7;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
} */
/* 
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
} */
/* 
.nav-links ul li {
    display: inline;
} */

/* .nav-links ul li a {
    color: #66bfbf;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
} */


/* .nav-links ul li a i:hover {
    color: #000000;
    opacity: 0.6;
} */



/* Navigation bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    background-color: #b0e7e7;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo {
    color: #038383;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #000000;
    opacity: 0.8;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    color: #038383;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* Hover effect */
.nav-links ul li a:hover {
    color: #026666;
}

/* Active link */
.nav-links ul li a.active {
    color: #026666;
    font-weight: 700;
}

/* Underline animation */
.nav-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #026666;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

/* Mobile menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #038383;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.close-menu {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 102;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-bar {
        padding: 15px 5%;
    }
    
    .hamburger {
        display: block;
    }
    
    .close-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #038383;
        z-index: 100;
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .nav-links ul li a {
        color: white;
        font-size: 1.2rem;
    }
    
    .nav-links ul li a:hover {
        color: #b0e7e7;
    }
    
    .nav-links ul li a::after {
        background: #b0e7e7;
    }
    
    .hamburger.active span {
        background-color: white;
    }
}


/* Hero section */
.hero-section {
    padding-top: 80px;  /* Adjust to match navbar height */
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;  /* Adjust height as needed */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;  /* Add extra padding to accommodate navbar */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 110px;  /* More space for very small screens */
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 10px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links ul li a {
        font-size: 12px;
    }

    .hero-section {
        padding-top: 110px;  /* More space for very small screens */
    }
}


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

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-cont {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 100vh; /* Adjust to fit the screen */
    padding: 40px;
    gap: 40px;
}

/* Hero Image */
.hero-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Text */
.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-text span {
    color: #038383;
    font-weight: bold;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
    opacity: 0.7;
}

.hero-text p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a i {
    color: #66bfbf;
    font-size: 28px;
    transition: 0.3s ease-in-out;
}

.social-links a i:hover {
    color: #000000;
    opacity: 0.7;
}

/* Button */
button {
    padding: 10px 20px;
    border: 1px solid #038383;
    border-radius: 16px;
    background-color: #66bfbf;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: #333333;
}

button .resume-section {
    padding: 10px 20px;
    border: 1px solid #038383;

}


button a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

button .btn-cv {
    

}
button:hover {
    background-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-cont {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
        margin-bottom: 20px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cont {
        padding: 20px;
        gap: 20px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .social-links a i {
        font-size: 24px;
    }

    button {
        padding: 8px 16px;
    }
}

footer {
    margin-top: auto; /* Push footer to the bottom of the page */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    color: #333;
    font-size: 14px;
}
/*

.about-me {
    width: 100%;
    padding: 78px 0px;
}

.about-me img {
    height: auto;
    width: 420px;
}

.about-text {
    width: 550px;
}

.main {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text h1 {
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.about-text h5 {
    font-size: 20px;
    color: #808080;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #333333;
}
*/ 

.about-me {
    width: 100%;
    padding: 78px 0;
}

.about-me img {
    height: auto;
    width: 100%; /* Responsive width */
    max-width: 420px; /* Limit the maximum size */
    margin: 0 auto;
    display: block; /* Center image */
}

.about-text {
    width: 100%;
    max-width: 550px; /* Limit the max width for responsiveness */
    margin: 0 auto; /* Center text on smaller screens */
    text-align: center; /* Default alignment for smaller screens */
}

.main {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center;
    gap: 20px; /* Add space between items */
}

.about-text h1 {
    font-size: 2rem; /* Responsive font size */
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-text h5 {
    font-size: 1.25rem; /* Responsive font size */
    color: #808080;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem; /* Responsive font size */
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6; /* Better readability */
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .main {
        flex-direction: row; /* Side-by-side layout for larger screens */
        align-items: center;
        justify-content: space-between;
    }

    .about-text {
        text-align: left; /* Align text to the left on larger screens */
    }
}

@media (min-width: 1024px) {
    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text h5 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1.125rem;
    }
}

/* General container */
.contact-container {
    width: 80%;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Heading */
.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-container p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

/* Contact box layout */
.contact-box {
    display: flex;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Left section styling */
.contact-left {
    flex-basis: 60%;
    padding: 20px;
    background-color: #808080;
}

.contact-left h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 3px;
    font-size: 0.8rem;
    color: #666;
}

input, textarea {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

textarea {
    resize: none;
}



/* Right section styling */
.contact-right {
    flex-basis: 40%;
    background-color: #66bfbf; /* Updated color */
    color: #fff;
    padding: 20px;
}

.contact-right h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-right p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex-basis: 100%;
        padding: 15px;
    }
}

.btn-2 {
        width: 100px;
        padding: 10px 20px;
        border: 1px solid #038383;
        border-radius: 16px;
        background-color: #66bfbf;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        color: #333333;
}

tr td:first-child {
    padding-right: 20px;

}

/* Initial hidden state */
/* Initial hidden state */
.page-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Animated visible state */
.page-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}
/* General Section Styling */
.projects-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #a8dadc, #457b9d);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* Section Header */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* Projects Container */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Project Card */
.project-card {
    background-image: url('images/images/Screenshot\ from\ 2025-01-30\ 15-08-31.png');
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #fff;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    color: #ffdd59; /* Vibrant icon color */
    margin-bottom: 15px;
}

/* Project Title */
.project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fdfdfd;
}

/* Project Description */
.project-card p {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Links Container */
.project-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Individual Link Styling */
.project-links a {
    text-decoration: none;
    font-size: 0.9rem;
  /*  background: linear-gradient(90deg, #06beb6, #48b1bf); /* Gradient button */
    background-color: #b0e7e7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.project-links a:hover {
    background: linear-gradient(90deg, #48b1bf, #06beb6); /* Reverse gradient on hover */
    transform: scale(1.05);
}

/* Icons in Links */
.project-links i {
    font-size: 1rem;
}

/* Project Card Images */
.project-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Subtle Fade-in Animation */
.projects-container > .project-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.projects-container > .project-card:nth-child(1) {
    animation-delay: 0.1s;
}
.projects-container > .project-card:nth-child(2) {
    animation-delay: 0.2s;
}
.projects-container > .project-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .skills-section {
    max-width: 1200px;
/* .skills-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
}

.skills-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.skills-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #333;
    margin: 15px auto 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.skill-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.skill-card:hover .skill-icon img {
    filter: grayscale(0%);
}

.skill-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.skill-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-weight: 400;
} */
