* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    background: #121212;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
}

.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    background: #FFFFFF;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Canvas Menu */
.canvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #1E1E1E;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 999;
    padding-top: 60px;
}

.canvas-menu.active {
    transform: translateX(0);
}

.canvas-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}

.canvas-links li {
    margin: 20px 0;
}

.canvas-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.canvas-links a:hover {
    color: #FFD700;
}

.canvas-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
}

.social-icon i {
    color: #FFFFFF;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: #FFD700;
}

.contact-text {
    color: #FFFFFF;
    font-size: 18px;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.hero-content {
    max-width: 500px;
    background: rgba(18, 18, 18, 0.8);
    padding: 15px;
    position: relative;
    top: -20px;
    left: 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.hero-text h1:hover {
    transform: translateY(-5px);
}

.hero-text p {
    font-size: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(18, 18, 18, 0.8);
    padding: 10px;
    margin-left: 20px;
}

.hero-contact p {
    font-size: 18px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #121212;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    background: #FFFFFF;
    transform: scale(1.05);
}

/* Intro Section (New) */
.intro {
    padding: 100px 40px;
    background: linear-gradient(135deg, #121212 0%, #1E1E1E 100%);
    position: relative;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0), rgba(30, 30, 30, 0.2));
}

.intro-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.intro-text {
    width: 50%;
}

.intro-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.intro-text h2:hover {
    transform: translateY(-3px);
}

.intro-text h2:hover + .underline {
    width: 120px;
}

.intro-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.intro-image {
    width: 50%;
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 100px 40px;
    background: linear-gradient(135deg, #121212 0%, #1E1E1E 100%);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0), rgba(30, 30, 30, 0.2));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-text h2:hover {
    transform: translateY(-3px);
}

.underline {
    width: 80px;
    height: 4px;
    background: #FFD700;
    margin: 0 auto 40px;
    transition: width 0.3s ease;
}

.about-text h2:hover + .underline {
    width: 120px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 120px 40px;
    background-image: url('images/3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7);
    z-index: 0;
}

.services h2 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.services h2:hover {
    transform: translateY(-3px);
}

.services h2:hover + .underline {
    width: 120px;
}

.services-grid {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    z-index: 1;
}

.services-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.service-card:hover h3 {
    transform: translateY(-5px);
}

.service-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #DDDDDD;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    transition: transform 0.4s ease;
}

.service-card ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    color: #DDDDDD;
}

.service-card li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-card:hover p, .service-card:hover ul {
    transform: translateY(-5px);
}

/* Why Work With Us Section */
.why-choose-us {
    padding: 120px 40px;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('images/3.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    position: relative;
    min-height: 800px;
}

.why-choose-us h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.why-choose-us h2:hover {
    transform: translateY(-3px);
}

.why-choose-us h2:hover + .underline {
    width: 120px;
}

.why-content {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    background: rgba(30, 30, 30, 0.1);
    padding: 30px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item i {
    color: #FFD700;
    font-size: 40px;
    margin-bottom: 20px;
}

.why-item .accordion-header {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.why-item .accordion-header:hover {
    color: #FFD700;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.panel.active {
    max-height: 500px;
}

.panel ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    color: #DDDDDD;
}

.panel li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.panel.active li {
    opacity: 1;
    transform: translateY(0);
}

/* Vision Section */
.vision {
    padding: 100px 40px;
    background: #1E1E1E;
    text-align: center;
}

.vision h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.vision h2:hover {
    transform: translateY(-3px);
}

.vision h2:hover + .underline {
    width: 120px;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.image-container img {
    width: 40%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vision-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-content ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.vision-content li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background: #121212;
    text-align: center;
    position: relative;
}

.contact h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact h2:hover {
    transform: translateY(-3px);
}

.contact h2:hover + .underline {
    width: 120px;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info p:hover {
    color: #FFD700;
    transform: translateY(-3px);
}

.contact-info i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 24px;
}

.contact-socials {
    display: flex;
    gap: 30px;
}

.contact-socials .social-icon {
    font-size: 40px;
    color: #FFFFFF;
    transition: transform 0.4s ease, color 0.4s ease;
}

.contact-socials .social-icon:hover {
    transform: scale(1.3) rotate(15deg);
    color: #FFD700;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #1E1E1E;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-links li a:hover {
    color: #FFD700;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #FFFFFF;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2);
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 16px;
    color: #FFFFFF;
}

/* Section Animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 15px;
        top: 0;
        left: 0;
    }

    .hero-text h1 { font-size: 36px; }
    .hero-text p { font-size: 16px; }
    .hero-contact { flex-direction: column; align-items: flex-start; margin-left: 0; }
    .hero-contact p { font-size: 14px; }
    .contact-button { font-size: 16px; padding: 10px 20px; }

    .intro-content {
        flex-direction: column;
    }

    .intro-text {
        width: 100%;
        margin-bottom: 40px;
    }

    .intro-text h2 { font-size: 36px; }
    .intro-text p { font-size: 18px; }

    .intro-image {
        width: 100%;
    }

    .intro-image img {
        height: 200px;
    }

    .about-text h2 { font-size: 36px; }
    .about-text p { font-size: 18px; }

    .services h2 { font-size: 36px; }

    .services-row {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card h3 { font-size: 24px; }
    .service-card p, .service-card li { font-size: 16px; }

    .why-choose-us h2 { font-size: 36px; }

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-choose-us {
        min-height: auto;
    }

    .why-item i { font-size: 32px; }
    .why-item .accordion-header { font-size: 24px; }
    .panel li { font-size: 18px; }

    .vision h2 { font-size: 36px; }
    .vision-content p, .vision-content li { font-size: 18px; }

    .image-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-container img {
        width: 80%;
    }

    .contact h2 { font-size: 36px; }

    .contact-info p { font-size: 18px; }
    .contact-info i { font-size: 20px; }

    .contact-socials .social-icon {
        font-size: 32px;
    }

    .footer-logo h3 { font-size: 24px; }
    .footer-links li a { font-size: 16px; }
    .footer-socials a { font-size: 20px; }
    .footer-bottom p { font-size: 14px; }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}