

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}
/* nav {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}
nav ul li a:hover {
    color: #ff6347;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.title{
    color: #f7f3f3;
    font-size:x-large;
}
.title1{
    color: #f7f3f3;
    font-size:small;
    width: 10;;
}
nav {
    background-color: #0e2522;
    text-align: center;
    padding: 15px 0;
    position: fixed; /* Fix the nav at the top */
    width: 100%; /* Ensure it stretches across the viewport */
    top: 0; /* Position it at the top */
    left: 0;
    height: 10%;
    z-index: 1000; 
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content:space-around; /* Space between logo and nav items */
    /* Background color for the nav bar */
    padding: 10px 20px;
   
}

ul {
    list-style-type: none;
}

ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #00bcd4;
}

ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

ul li a:hover::after {
    width: 100%;
}



.logo img {
    height: 50px; /* Adjust logo height */
    width: auto; /* Maintain aspect ratio */
}

nav ul {
    list-style: none; /* Remove bullet points */
    display: flex; /* Flexbox for horizontal layout */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

nav li {
    margin-left: 20px; /* Space between menu items */
}

nav a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Text color */
    font-weight: bold; /* Bold text */
}

nav a:hover {
    color: #ff6600; /* Change color on hover */
}


section { 
    padding: 100px 0;
    text-align: center;
}
h1, h3 {
    color: #f3ba2f;
}
h2, h3{
 color: #2cdee4;
}
p {
    color: #fff;
    line-height: 1.6;
}


button {
    background-color: #f32f9b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #393838;
    color: #fff;
}
.home {
    height: 100vh;
    background: url('https://i.pinimg.com/originals/ef/e4/91/efe4911c1514bd6da486c87cab240f60.gif') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay effect */
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.home-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.home-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* .btn {
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(45deg, #ff5722, #e91e63);
    transform: scale(1.05);
} */


button {
    background-color: #f3ba2f;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #393838;
    color: #fff;
}

.btn {
    padding: 10px 30px;
    background-color: #007bff; /* Blue background */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin: 20px;
}

.btn:hover {
    background: linear-gradient(45deg, #007bff, #00d4ff);
    transform: scale(1.05);
}
/* Image Styling */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 20px;
    
}

/* Hover Effect on Image */
.profile-img:hover {
    transform: scale(1.6);
    box-shadow: 0 10px 20px rgba(186, 210, 26, 0.6);
    
}

/* Responsive */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2.5em;
    }

    .home-content p {
        font-size: 1em;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.home-content {
    z-index: 2;
}
h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}
.btn {
    padding: 10px 30px;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(45deg, #ff3700, #eed085);

    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}
/* .btn:hover {
    background-color: #ff4500;
    transform: scale(1.05);
} */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.contact {
    background-color: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.contact a {
    text-decoration: none;
}

.btn-contact {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin: 10px;
    display: inline-block;
}

.btn-contact:hover {
    background: linear-gradient(45deg, #007bff, #00d4ff);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2em;
    }

    .contact p {
        font-size: 1em;
    }

    .btn-contact {
        padding: 12px 25px;
        font-size: 14px;
    }
}

.footer {
    background-color: #333;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    position: relative;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-content h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #1effd2; /* Highlight color for the heading */
}

.footer-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #1e90ff; /* Change color on hover */
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a img {
    width: 30px; /* Set icon size */
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1); /* Slightly enlarge icons on hover */
}

.footer p {
    margin: 0;
    font-size: 14px;
}
