* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: black;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #c4ef17;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    max-height: 40px;
    max-width: 200px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c4ef17;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: translateX(0);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c4ef17;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c4ef17;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: #c4ef17;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    background: #0a0a0a;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 239, 23, 0.05) 0%, transparent 100%);
    top: 0;
    left: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.content {
    z-index: 1;
    padding: 2rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge span {
    color: #c4ef17;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 .highlight {
    color: #c4ef17;
    position: relative;
}

.description {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.submit-btn {
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    background: #c4ef17;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 239, 23, 0.2);
}

.features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 239, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #c4ef17;
}

.feature-text {
    font-size: 0.875rem;
    color: #999;
}

.feature-text strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 60px;

    
}

.trustpilot {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #c4ef17;
}

.rating-text {
    font-size: 0.875rem;
    color: #999;
}

/* About Section */

.about-section {
    background-color: #0a0a0a;
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #c4ef17;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 600px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-highlight {
    color: #c4ef17;
}

.about-content p {
    color: #a0a0a0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(196, 239, 23, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(196, 239, 23, 0.1), rgba(196, 239, 23, 0));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.about-feature-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 15px rgba(196, 239, 23, 0.1);
}

.about-feature-item:hover::before {
    transform: translateX(0);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: #c4ef17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: rotate(360deg);
}

.about-feature-icon svg {
    transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon svg {
    transform: scale(1.2);
}

.about-feature-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-text {
    transform: translateX(5px);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.about-cta-button {
    display: inline-block;
    background-color: #c4ef17;
    color: #0a0a0a;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.about-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 239, 23, 0.2);
}


/* Responsive Styles for nav*/
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 2rem;
        flex-direction: column;
        gap: 2rem;
        transition: 0.3s ease;
    }

    .nav-menu.active {
        top: 4rem;
    }

    .social-icons {
        display: none;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .container {
        grid-template-columns: 1fr;
        padding: 1rem 2rem;
        min-height: auto;
    }

    .content {
        padding: 1rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .description {
        max-width: 100%;
    }

    .features {
        flex-direction: column;
    }

    .image-container {
        min-height: 300px;
    }
}

/* Scroll Animation */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-container {
    padding: 0.5rem 2rem;
}

/* Typing effect styles */
.typed-cursor {
    color: #c4ef17;
    font-size: 4rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .typed-cursor {
        font-size: 2.5rem;
    }
}

/* Add this to ensure the typed text has the same styling as the highlight class */
#typed-text {
    color: #c4ef17;
    position: relative;
}


/* Responsive Styles for About Section */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
    
    .about-feature-item:hover {
        transform: scale(1.02);
    }

    .about-image-container {
        height: 400px;
    }
}


/* Base styles */
.services-section {
    background-color: #000000;
    padding: 20px 0;
}

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

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    color: #c4ef17;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background-color: rgb(0, 0, 0);
    padding: 10px 10px 60px 10px;
    margin-bottom: 60px;
}




.item1 {
    grid-column: 1 / 2;
}

.design-image {
    grid-column: 2 / 3;
    height: auto;
    width: 100%;
    position: relative;
    align-self: start;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    max-height: 350px;
}

.item3 {
    grid-column: 1 / 3;
    margin-top: 20px;
}

.service-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #c4ef17;
    font-weight: 700;
    line-height: 1.1;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #999;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(196, 239, 23, 0.3);
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
    width: fit-content;
}

.service-cta:hover {
    background-color: rgba(196, 239, 23, 0.1);
    border-color: rgba(196, 239, 23, 0.5);
}

.arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-cta:hover .arrow {
    transform: translateX(5px);
}

/* Design Expertise Section */
.design-expertise-header {
    color: #c4ef17;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    margin-left: 20px;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: transparent;
}

.design-grid-item {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.8));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(201, 32, 226, 0.1);
}

.design-grid-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(25, 25, 25, 0.9));
    border-color: rgba(201, 32, 226, 0.3);
    box-shadow: 0 8px 20px rgba(201, 32, 226, 0.15);
}

.design-grid-item svg {
    width: 40px;
    height: 40px;
    color: #c4ef17;
    padding: 10px;
    background: rgba(201, 32, 226, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.design-grid-item:hover svg {
    background: rgba(201, 32, 226, 0.2);
    transform: scale(1.1);
}

.design-grid-item span {
    color: #999;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Large desktop and down */
@media (max-width: 1200px) {
    .service-title {
        font-size: 3.5rem;
    }
    
    .service-description {
        max-width: 100%;
    }
    
    .design-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* Tablet and down */
@media (max-width: 992px) {
    .service-title {
        font-size: 3rem;
    }
    
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small tablet and down */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .item1, .design-image, .item3 {
        grid-column: 1 / -1;
    }
    
    .design-image {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }

  
}

/* Mobile and down */
@media (max-width: 480px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .design-grid-item svg {
        width: 35px;
        height: 35px;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    color: #ffffff;
}

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

.portfolio-section-accent {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(197, 255, 69, 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.portfolio-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.portfolio-section-subtitle {
    color: #c5ff45;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.portfolio-section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #c5ff45;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #9a9a9a;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    background-color: #141414;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 240px;
    background-color: #1c1c1c;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

.portfolio-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #c5ff45;
    color: #0f0f0f;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.portfolio-description {
    color: #9a9a9a;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: #9a9a9a;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #c5ff45;
    color: #0f0f0f;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    color: #c5ff45;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.portfolio-link svg {
    margin-left: 5px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    opacity: 0.8;
}

.portfolio-link:hover svg {
    transform: translateX(4px);
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    background-color: #c5ff45;
    color: #0f0f0f;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover:before {
    left: 100%;
}

/* Animation for portfolio items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-item {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

   /* Responsive adjustments */
   @media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-section-title {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 70px 0;
    }
    
    .portfolio-section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-section-description {
        font-size: 1rem;
    }
}



    /* Testimonials Section Styles */
    .testimonials-section {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        background-color: #0a0a0a;
        color: #ffffff;
    }

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

    .testimonials-section-accent {
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background-color: rgba(197, 255, 69, 0.03);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .testimonials-section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    .testimonials-section-subtitle {
        color: #c5ff45;
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .testimonials-section-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }

    .testimonials-section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: #c5ff45;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonials-section-description {
        max-width: 700px;
        margin: 0 auto;
        color: #9a9a9a;
        font-size: 1.1rem;
    }

    /* Carousel styles */
    .testimonials-carousel {
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin: 0 auto;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial-slide {
        flex: 0 0 33.333%;
        padding: 0 15px;
        box-sizing: border-box;
        opacity: 0.5;
        transition: opacity 0.5s ease;
    }

    .testimonial-slide.active {
        opacity: 1;
    }

    .testimonial-item {
        background-color: #141414;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        padding: 30px;
        height: 100%;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .testimonial-quote {
        font-size: 4rem;
        position: absolute;
        top: 20px;
        right: 25px;
        color: rgba(197, 255, 69, 0.1);
        line-height: 1;
    }

    .testimonial-content {
        position: relative;
        z-index: 2;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 25px;
        font-style: italic;
        color: #e0e0e0;
        flex-grow: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: auto;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        margin-right: 15px;
        background-color: #1c1c1c;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-logo img {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }

    .testimonial-info {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .testimonial-name {
        font-weight: 600;
        font-size: 1.1rem;
        margin: 0;
    }

    .testimonial-position {
        color: #9a9a9a;
        font-size: 0.85rem;
        margin-top: 5px;
    }

    .company-links {
        display: flex;
        margin-top: 10px;
    }

    .company-link {
        display: flex;
        align-items: center;
        color: #c5ff45;
        text-decoration: none;
        font-size: 0.85rem;
        margin-right: 15px;
        transition: opacity 0.3s ease;
    }

    .company-link:hover {
        opacity: 0.8;
    }

    .company-link svg {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

    /* Carousel Navigation */
    .carousel-nav {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 15px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background-color: #c5ff45;
        transform: scale(1.2);
    }

    .carousel-arrows {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(20, 20, 20, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .carousel-arrow:hover {
        background-color: #c5ff45;
    }

    .carousel-arrow svg {
        width: 24px;
        height: 24px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .carousel-arrow:hover svg {
        color: #0f0f0f;
    }

    /* Animation for items */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-item {
        opacity: 0;
        animation: fadeInUp 0.7s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .testimonial-slide {
            flex: 0 0 50%;
        }
    }

    @media (max-width: 992px) {
        .carousel-arrows {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .testimonials-section-title {
            font-size: 2.2rem;
        }
        
        .testimonial-slide {
            flex: 0 0 100%;
        }

        .testimonial-text {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .testimonials-section {
            padding: 70px 0;
        }
        
        .testimonials-section-title {
            font-size: 1.8rem;
        }
        
        .testimonials-section-description {
            font-size: 1rem;
        }

        .testimonial-item {
            padding: 20px;
        }

        .company-logo {
            width: 50px;
            height: 50px;
        }
    }

    /* Contact Section Styles */
    .contact-section {
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        background-color: #0f0f0f;
        color: #fff;
    }
    
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .contact-section-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    .contact-section-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
        color: #ffff;
    }
    
    .contact-section-title span {
        color: #c5ff45;
    }
    
    .contact-section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: #c5ff45;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 20px;
    }
    
    .contact-info {
        flex: 1;
        min-width: 250px;
    }
    
    .contact-form-container {
        flex: 2;
        min-width: 300px;
    }
    
    .contact-card {
        background-color: #1a1a1a;
        border-radius: 12px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: #c5ff45;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.6s ease;
    }
    
    .contact-card:hover::before {
        transform: scaleY(1);
    }
    
    .info-item {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .info-item:last-child {
        margin-bottom: 0;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(197, 255, 69, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #c5ff45;
        font-size: 16px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .info-item:hover .info-icon {
        background-color: #c5ff45;
        color: #0f0f0f;
        transform: scale(1.1);
    }
    
    .info-content h4 {
        margin: 0 0 3px;
        font-size: 1.1rem;
    }
    
    .info-content p, .info-content a {
        margin: 0;
        color: #9a9a9a;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .info-content a:hover {
        color: #c5ff45;
    }
    
    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 0px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color:#ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background-color:#c5ff45;
        color: #0f0f0f;
        transform: translateY(-5px);
    }
    
    /* Form Styles */
    .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-group.full-width {
        grid-column: span 2;
    }
    
    .form-label {
        display: block;
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #9a9a9a;
    }
    
    .form-control {
        width: 100%;
        padding: 10px 15px;
        background-color: #252525;
        border: 1px solid #333;
        border-radius: 8px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #c5ff45;
        box-shadow: 0 0 0 2px rgba(197, 255, 69, 0.2);
    }
    
    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L0 3h12z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
    }
    
    textarea.form-control {
        min-height: 100px;
        resize: vertical;
    }
    
    .submit-btn {
        background-color: #c5ff45;
        color: #0f0f0f;
        border: none;
        border-radius: 8px;
        padding: 12px 25px;
        font-size: 0.95rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        transition: width 0.3s ease;
        z-index: -1;
    }
    
    .submit-btn:hover::before {
        width: 100%;
    }
    
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-item {
        opacity: 0;
        animation: fadeInUp 0.7s ease forwards;
    }
    
    .delay-1 {
        animation-delay: 0.1s;
    }
    
    .delay-2 {
        animation-delay: 0.2s;
    }
    
    .delay-3 {
        animation-delay: 0.3s;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .contact-wrapper {
            flex-direction: column;
        }
    }
    
    @media (max-width: 768px) {
        .contact-section-title {
            font-size: 1.8rem;
        }
        
        .contact-form {
            grid-template-columns: 1fr;
        }
        
        .form-group.full-width {
            grid-column: span 1;
        }
    }
    
    @media (max-width: 480px) {
        .contact-section {
            padding: 70px 0;
        }
        
        .contact-section-title {
            font-size: 1.6rem;
        }
        
        .contact-card {
            padding: 20px;
        }
        
        .info-icon {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    }



     /* Footer Section Styles */
     .footer-section {
        padding: 80px 0 40px;
        position: relative;
        overflow: hidden;
        background-color: #0c0c0c;
        color: #ffffff;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .footer-accent {
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background-color: rgba(197, 255, 69, 0.03);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        position: relative;
        z-index: 1;
        margin-bottom: 60px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-branding {
        grid-column: span 1;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-logo img {
        max-width: 150px;
        height: auto;
    }

    .footer-about {
        color: #9a9a9a;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #1c1c1c;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background-color: #c5ff45;
        color: #0a0a0a;
        transform: translateY(-3px);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 3px;
        background-color: #c5ff45;
        bottom: 0;
        left: 0;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 12px;
    }

    .footer-menu a {
        color: #9a9a9a;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
    }

    .footer-menu a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        background-color: #c5ff45;
        bottom: -2px;
        left: 0;
        transition: width 0.3s ease;
    }

    .footer-menu a:hover {
        color: #c5ff45;
        transform: translateX(5px);
    }

    .footer-menu a:hover::after {
        width: 100%;
    }

    .legal-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .legal-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .legal-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #1c1c1c;
        color: #c5ff45;
        flex-shrink: 0;
    }

    .legal-item p {
        color: #9a9a9a;
        margin: 0;
        line-height: 1.5;
        display: flex;
        align-items: center;
        height: 40px;
    }

    .legal-item a {
        color: #9a9a9a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .legal-item a:hover {
        color: #c5ff45;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1;
    }

    .copyright p {
        color: #9a9a9a;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-contact {
        display: flex;
        gap: 20px;
    }

    .footer-contact a {
        color: #9a9a9a;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-contact a:hover {
        color: #c5ff45;
    }

    /* Animation for items */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-item {
        opacity: 0;
        animation: fadeInUp 0.7s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-branding {
            grid-column: span 2;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .footer-section {
            padding: 60px 0 30px;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        
        .footer-legal {
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .footer-branding {
            grid-column: span 1;
        }
        
        .footer-column {
            margin-bottom: 30px;
        }
        
        .footer-title {
            font-size: 1.1rem;
        }
    }