@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 9px 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(53, 33, 20, 0.237);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(253, 181, 0, 0);
}

.logo {
    display: flex;
    align-items: center;
    color: #DAA520;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
    text-decoration: none;
}

.logo i {
    margin-right: 12px;
    font-size: 2rem;
    color: #B8860B;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li .hean {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
}

nav ul li .hean:hover,
nav ul li .hean.active {
    color: #0a0a0a;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.1), transparent 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23DAA520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease 0.5s forwards;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #DAA520, #B8860B, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    color: #DAA520;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.6);
}

.hero p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-image-container {
    position: relative;
    width: 45%;
    height: 600px;
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease 0.7s forwards;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 20px;
}

.hero-main-image {
    min-width: 90%;
    max-height: 90%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 30px;
    height: 50px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(201, 210, 99, 1);
    background: linear-gradient(135deg, #f4b005, #ffca43);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-30px) rotate(60deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    filter: blur(20px) brightness(0.6);
    opacity: 0.6;
    z-index: 0;
    border: transparent;
    border-radius: 0%;
    animation: floatY 4s ease-in-out infinite;
}

.hero-main-image.rotated {
    position: relative;
    z-index: 1;
    max-width: 90%;
    border: transparent;
    border-radius: 0%;
    filter: brightness(1.1) contrast(1.0);
    animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: rotate(90deg) translateY(0);
    }

    50% {
        transform: rotate(90deg) translateY(5px);
    }

    100% {
        transform: rotate(90deg) translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

.btn i {
    margin-left: 8px;
}

.services {
    padding: 100px 5%;
    background: linear-gradient(135deg, #111111, #1a1a1a);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #191512, #272219);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
    box-shadow: 0 25px 50px rgba(218, 165, 32, 0.2);
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #DAA520;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.portfolio {
    padding: 100px 5%;
    background-color: #0a0a0a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #1a1a1a, #252525);
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(218, 165, 32, 0.3);
}

.portfolio-image {
    width: 120%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 5px;
}

.portfolio-desc {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* See More Button styles */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease 0.1s forwards;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.5);
}

.see-more-btn i {
    margin-left: 6px;
    font-size: 0.8rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about {
    padding: 100px 5%;
    background: linear-gradient(135deg, #111111, #1a1a1a);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(1.1);
}

.contact {
    padding: 100px 5%;
    background-color: #0a0a0a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-left: 4px solid #DAA520;
}

.contact-item i {
    color: #DAA520;
    margin-right: 20px;
    font-size: 1.8rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: #DAA520;
    font-size: 1.2rem;
}

.contact-text p,
.contact-text a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-text a:hover {
    color: #DAA520;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-icons a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
}

.location iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

footer {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 60px 5% 30px;
    text-align: left;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: #DAA520;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DAA520;
}

.footer-section .social-icons {
    margin-top: 20px;
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    color: #888888;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image-container {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }

    .hero-image-container {
        width: 80%;
        height: 500px;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 3%;
    }

    nav ul {
        display: none;
    }

    .hero {
        padding: 120px 3% 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services,
    .portfolio,
    .about,
    .contact {
        padding: 80px 3%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-container {
        width: 90%;
        height: 400px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-container {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-item {
        padding: 15px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}