@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap'); /* Old typewriter font */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
}

.navbar .logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
/* Right-side menu for the Download CV link */
.right-menu {
    display: flex;
    list-style: none;
}

.right-menu li {
    margin-left: 20px;
}

.right-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.right-menu li a:hover {
    color: #007bff; /* Blue color on hover */
}

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

    .nav-links, .right-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li, .right-menu li {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-bottom: 10px;
    }

    .download-cv {
        margin-top: 10px;
    }
}
.name-font {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

        
.tag-lines {
    font-family: 'Special Elite', 'Courier New', Courier, monospace; /* Vintage typewriter font */
    /* font-family: 'Courier New', Courier, monospace; */
    /* text-align: left; */
    /* background-color: #ffffff; */
    padding: 20px;
    /* border: 2px solid #000; */
    /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); */
    font-size: 1.5em;
    line-height: 1.6;
    /* text-align: left; */
}
.tag-lines div {
    margin-bottom: 10px;
}        

 
.navbar .nav-links {
    list-style: none;
}

.navbar .nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.navbar .nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5em;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.5em;
    margin: 20px 0;
}

.cta-button {
    padding: 10px 30px;
    background-color: #fff;
    color: #007bff;
    font-size: 1.2em;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f4f4f4;
}

/* Section Titles */
section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.about-section p {
    /* max-width: 700px; */
    margin: 0 auto;
    font-size: 1.2em;
    padding: 10px;
}

/* Skills Section */
.skills-section {
    padding: 60px 0;
    background-color: #fff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.skill-item {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    align-content: center;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.05);
}

/* Experience Section */
.experience-section {
    padding: 60px 0;
    background-color: #f4f7fc;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.experience-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: monospace;
}

.company-name {
    font-size: 1.10em;
    color: #00b66c;
}

.experience-date{
}

.experience-points{
    font-size: 14px;
    font-family: fantasy;
    padding-left: 11px;
}

/* Projects Section */
.projects-section {
    padding: 60px 0;
    background-color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: scale(1.03);
}

.project-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
}

.project-header {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.tools-used {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: monospace;
    font-size: 1.0em;
}

.tools-used i {
    margin-right: 8px;
    font-size: 1.2em;
    color: #3498db; /* tool icon color */
}

.project-points {
    list-style-type: none;
    padding-left: 0;
    font-family: fantasy;
    font-size: 0.8em;
}

.project-points li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.project-points i {
    margin-right: 8px;
    color: #ffa500; /* star color */
}

/* Contact Section */
.contact-section {
    background-color: #f8f8f8;
    padding: 50px 20px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: 32   0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
}

.contact-item a:hover {
    color: #0077b5; /* LinkedIn blue for hover effect */
}

.container {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    width: 93%;

}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #f5f7fb;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Gallery Image Styling with Fixed Size and Rounded Corners */
.gallery-item img {
    width: 100%; /* Ensures the image fills the container width */
    height: auto; /* Keeps the aspect ratio intact */
    border-radius: 10px; /* Adds rounded corners */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Adds a smooth hover effect */
}

.gallery-item {
    width: 400px; /* Full width inside the gallery item */
    height: 200px; /* Fixed height for uniform size */
    object-fit: cover; /* Ensures the image covers the box without distorting */
    border-radius: 10px 10px 0 0; /* Only round the top corners of the image */
}

.gallery-item:hover {
    transform: scale(1.05); /* Slight scale on hover */
}


.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.8;
}

/* Styling for the gallery details (title and description) */
.gallery-details {
    text-align: center;
    padding: 10px 0;
}

.gallery-details h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-details p {
    font-size: 0.9em;
    color: #666;
}
