* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #2b2d3a 0%, #3a3d4f 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(43, 45, 58, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-logo {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f4c542;
            letter-spacing: 2px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #f4c542;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            transition: right 0.3s ease;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #f4c542;
        }

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2b2d3a 0%, #454861 100%);
}

.hero-logo {
    max-width: 500px;
    margin: 0 auto 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: 3rem;
    color: #f4c542;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #f4c542;
    color: #2b2d3a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.4s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.4);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: rgba(58, 61, 79, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f4c542;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #2b2d3a 0%, #3a3d4f 100%);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 197, 66, 0.3);
    border-color: #f4c542;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card > div:not(.service-image),
.service-card > h3,
.service-card > p {
    padding: 0 30px;
}

.service-card > p {
    padding-bottom: 30px;
}

.service-icon {
    font-size: 3rem;
    color: #f4c542;
    margin: 20px 0;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #f4c542;
    margin-bottom: 15px;
}

.service-card p {
    color: #d0d0d0;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2b2d3a 0%, #454861 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #f4c542;
    margin-bottom: 25px;
}

.about-text p {
    color: #d0d0d0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(244, 197, 66, 0.1);
    border-left: 4px solid #f4c542;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: rgba(58, 61, 79, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    background: linear-gradient(135deg, #2b2d3a 0%, #3a3d4f 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f4c542;
}

.contact-card h3 {
    color: #f4c542;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #d0d0d0;
    font-size: 1.1rem;
}

.contact-card a {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background: #2b2d3a;
    text-align: center;
    padding: 30px 20px;
    color: #d0d0d0;
}

footer p {
    margin-bottom: 10px;
}

.footer-tagline {
    color: #f4c542;
    font-weight: bold;
    letter-spacing: 2px;
}


 /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: rgba(43, 45, 58, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
                z-index: 1000;
                margin: 0;
                padding: 0;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                opacity: 0;
                transform: translateX(20px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) {
                transition-delay: 0.1s;
            }

            .nav-links.active li:nth-child(2) {
                transition-delay: 0.2s;
            }

            .nav-links.active li:nth-child(3) {
                transition-delay: 0.3s;
            }

            .nav-links.active li:nth-child(4) {
                transition-delay: 0.4s;
            }

            .nav-links a {
                font-size: 1.3rem;
            }

            .navbar-logo {
                height: 40px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }
        }