/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff8f0;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    
}

.logo {
    height: 50px;
}

nav a {
    color: #333;
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;   /* changed from 500 to bold */
    transition: 0.3s ease;
}


nav a:hover {
    color: #ff6600;
}

/* HERO */

/* HERO SECTION - PREMIUM LOOK */
.hero {
    background: url("images/hero.jpg") center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DARK OVERLAY */
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* TEXT STYLING */
.hero h1 {
    font-size: 42px;
    color: #ff6600;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: white;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/img1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.5rem;
    animation: fadeInUp 1.2s ease forwards;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6600;
}

/* DARK SECTION */
.dark {
    background: #111;
    color: white;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card {
    background: #fff3e6;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.dark .card {
    background: #1a1a1a;
    color: white;
}
.bottom-line {
  display: block;
}

/* PROJECTS */
.projects ul {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    line-height: 1.8;
    list-style: disc;
}

/* FOUNDER */
.founder-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.founder-image img {
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.05);
}

.founder-text {
    max-width: 650px;
    text-align: left;
}


.founder-text h3 {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 1.8rem;
}


/* CONTACT FORM */
form input, form textarea {
    width: 80%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
}

button:hover {
    background: #e65c00;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: white;
    font-size: 0.95rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
/* Projects list styles */
.project-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
    background: #fff5e6;  /* soft orange background */
    padding: 25px;
    border-radius: 12px;
}

.project-list h2 {
    color: #ff6600; /* your theme orange */
    margin-bottom: 15px;
}

.project-list ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Back to Home button */
.back-home a {
    text-decoration: none;
    background-color: #ff6600; /* theme orange */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-home a:hover {
    background-color: #e65c00;
}.slide img {
    width: 100%;         /* fills container width */
    height: 500px;       /* fixed height for all slides */
    object-fit: cover;   /* crops if needed, keeps aspect ratio */
    border-radius: 12px;
}