/* General Resets & Base Styles */
* {
    margin: 1px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Modern font stack */
    line-height: 1.6;
    color: #360bf7;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0px 0;
}

/* Header & Navigation */
header {
    background: #fff;
    color: #000000;
    padding: -1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Adjust logo size */
}

nav ul.nav-links {
    list-style: none;
    display: flex;
}

nav ul.nav-links li {
    margin-left: 30px;
}

nav ul.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
    color: #007bff;
    /* Primary accent color */
}

/* Hamburger Menu (for mobile) */
.burger-menu {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    z-index: 1000;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #007bff;
    /* Primary button color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: backgroun 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    /* Secondary button color */
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/file_0000000099586230899c937df502b981.png') no-repeat center center/cover;
    color: #fff;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 105px;
}


.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 872px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Intro & Featured Projects */
.about-intro,
.featured-projects,
.testimonials {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.about-intro h2,
.featured-projects h2,
.testimonials h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #555;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 30px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-card h3 {
    padding: 15px;
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 5px;
}

.project-card p {
    padding: 0 15px 15px;
    font-size: 1em;
    color: #666;
}

.project-card .btn-small {
    margin: 0 15px 20px;
}

/* Testimonials */
.testimonial-card {
    max-width: 700px;
    margin: 20px auto;
    background: #f0f8ff;
    /* Light blue background */
    border-left: 5px solid #007bff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #444;
}

.testimonial-card cite {
    display: block;
    font-weight: 600;
    color: #007bff;
    margin-top: 15px;
}

/* Footer */
footer {
    background: #2c3e50;
    /* Darker footer */
    color: #ecf0f1;
    text-align: center;
    padding: 30px 0;
    margin-top: 2px;
}

footer p {
    margin-bottom: 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    transition: transform 0.2s ease-in-out;
}

.social-links img:hover {
    transform: scale(1.1);
}


/* Responsive Design (Media Queries) */
@media (max-width: 768px) {
    nav ul.nav-links {
        flex-direction: column;
        position: fixed;
        right: 0;
        top: 0;
        background-color: #333;
        width: 60%;
        height: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 60px;
        /* Space for logo/header */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    nav ul.nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    nav ul.nav-links li a {
        color: #fff;
        font-size: 1.2em;
    }

    nav ul.nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .about-intro h2,
    .featured-projects h2,
    .testimonials h2 {
        font-size: 2em;
    }

    .project-grid {
        grid-template-columns: 1fr;
        /* Stack cards on small screens */
    }
}

/* Burger Menu Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

div .name {
    margin-left: -29rem;
    margin-top: 0rem;
    font-style: oblique;

}

.message-box button:hover {
    background-color: #c0392b;
    /* Darker red on hover */
}
.container2{
     padding: 180px 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    }
