/* Base Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

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

/* Header */
.main-header {
    background: #333;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo img {
  height: 60px;
}
.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #f15a22;
}
@media (max-width: 768px) {
    .design-hero h1 {
        font-size: 2rem;
    }

    .design-content {
        padding: 40px 8%;
    }
}

/* Hero Section */
.about-hero {
    background: linear-gradient(to right, #111,#555);
    color: white;
    padding: 100px 0;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: slideIn 1s ease forwards;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    animation: fadeIn 2s ease forwards;
}
.about-hero h1 span {
    color: #ff4b2b;
}

/* About Content */
.about-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.text-content {
    flex: 1;
    animation: zoomIn 1s ease-in-out;
}

.image-content {
    flex: 1;
    animation: fadeUp 1.5s ease-in-out;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.text-content h2 {
    font-size: 2.5rem;
    color: #f15a22;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.main-footer {
    background: #444;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .text-content h2 {
        font-size: 2rem;
    }
}
