* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Space Grotesk, sans-serif;
}

body {
    background-color: #f5f5f5;
}

header {
    background-color: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.contact-btn {
    /* background-color: #00ffb3; */
    /* background-color: linear-gradient(90deg, #02FFFB 50%, #76FF04 50%); */
    background-image: linear-gradient(90deg, #02FFFB 10%, #76FF04 90%);
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-btn .circle {
    background-color: transparent;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.arrow{
    padding-left: 10px;
    width: 40px;
}

.logo-container{
    margin-left: 100px;
}

.contact-btn{
    margin-right: 100px;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: white;
    display: flex;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-left {
    width: 80%;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.highlight-img {
    position: relative;
    display: inline-block;
}

.highlight-img::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('images/Circle_Arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    right: -5px;
}

.strategic {
    font-size: 16px;
    color: #7BFF00;
    display: inline-block;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 3px 15px;
    vertical-align: middle;
    font-weight: 500;
    position: relative;
    top: -5px;
}

.precision-container {
    position: relative;
    display: inline-block;
}

.precision {
    position: absolute;
    background-color: #7BFF00;
    color: #000;
    font-size: 16px;
    padding: 3px 15px;
    border-radius: 30px;
    bottom: -15px;
    right: -30px;
    font-weight: 500;
}

.hero-description {
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px dashed white;
    border-radius: 30px;
    padding: 15px 30px;
    text-decoration: none;
    color: #7BFF00;
    font-size: 14px;
    font-weight: 500;
}

.services-btn img {
    width: 20px;
    height: 20px;
}

.hero-right {
    width: 20%;
    position: relative;
}

.circle-arrow {
    position: absolute;
    right: 10%;
    top: 5%;
    width: 100px;
    height: 100px;
    border: 1px dashed white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.circle-arrow img {
    width: 30px;
    height: 30px;
}

.lines {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.6;
}

.frame {
    position: absolute;
    right: -20%;
    bottom: -10%;
    z-index: 2;
}

.marker1, .marker2 {
    position: absolute;
    z-index: 3;
}

.marker1 {
    right: 60%;
    top: 26%;
}

.marker2 {
    right: 50%;
    top: 54%;
}
@media screen and (max-width: 1450px) {
.marker1, .marker2{
    display:none;
}
}
@media screen and (max-width: 1070px) {
    .marker1, .marker2{
        display: none;
    }
}
/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        max-width: 60px;
    }

    .lines {
        opacity: 0.3;
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .marker1 {
        width: 80px;
        right: 60%;
        top: 25%;
    }

    .marker2 {
        width: 80px;
        right: 20%;
        top: 44%;
    }

    .services-btn {
        width: 100%;
        justify-content: center;
    }

    header {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: center;
    }

    .service-title {
        font-size: 16px;
        max-width: 80%;
    }
    
    .service-content {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 12px;
    }

    header {
        padding: 15px;
    }

    .logo-container, .contact-btn {
        margin: 0;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 12px;
    }
}

/* About Section */
.about-section {
    /* background-color: #002620; */
    background-image: linear-gradient(to bottom right, #002620 1%, black 30%);
    color: white;
    display: flex;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    flex-wrap: wrap;
}

.about-left {
    width: 50%;
    z-index: 2;
    position: relative;
}

.about-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 40px;
}

.about-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 120px;
}

.opportunity {
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.opportunity::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    bottom: -20px;
    left: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(90deg, #02FFFB 10%, #76FF04 90%);
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: bold;
}

.circle-black {
    background-color: transparent;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-black img {
    padding-left:10px;
    width: 40px;
    
}

.about-right {
    width: 50%;
    z-index: 2;
    position: relative;
    padding-top: 60px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    float: left;
}

.arrow-up, .arrow-down {
    font-size: 20px;
    margin: 5px 0;
    color:#03FEF7;
}

.about-lines {
    position: absolute;
    bottom: -50px;
    left: 30%;
    opacity: 0.4;
    transform: scaleX(-1);
    z-index: 1;
}

/* Mobile responsiveness for About section */
@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .about-tag {
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-lines {
        width: 100%;
        left: 0;
    }
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 12px;
    }
}

/* Stats Section */
.stats-section {
    background-color: #000;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    flex: 1;
    border: 2px solid #03FFF8;
    
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    background-color: #000;
    position: relative;
    min-width: 200px;
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    
}

.stat-box h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.stat-box p {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #000;
    padding: 80px 100px;
    display: flex;
    color: white;
}

.why-choose-left {
    width: 40%;
    position: relative;
}

.why-choose-left h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-choose-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 40px;
}

.shape-3d {
    max-width: 250px;
    /* margin-top: 20px; */
}

.why-choose-right {
    width: 60%;
    padding-left: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: relative;
    flex-wrap: wrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-title {
    font-size: 18px;
    font-weight: 500;
}

.arrow-right {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.service-item.active .arrow-right {
    transform: rotate(90deg);
}

.service-content {
    display: none;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 15px;
    border-radius: 5px;
    padding: 20px;
}

.service-item.active .service-content {
    display: block;
    
}

.service-item.active {
    border-bottom: 1px solid #333;
}

.service-item.active .service-title {
    color: #7BFF00;
    font-weight: bold;
}

.service-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.learn-more {
    color: #7BFF00;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile responsiveness for Stats and Why Choose sections */
@media screen and (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-box {
        min-width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }
    
    .why-choose-section {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .why-choose-left, .why-choose-right {
        width: 100%;
        padding-left: 0;
    }
    
    .why-choose-left {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .shape-3d {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .stat-box p {
        font-size: 12px;
    }
    
    .service-title {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-box {
        min-width: 100%;
    }
}

/* What We Do Section */
.what-we-do-section {
    background-color: #001810;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    color: white;
    margin-bottom: 50px;
    font-weight: 800;
}

.services-slider {
    position: relative;
    width: 100%;
    margin-top: 30px;
    z-index: 10;
}

.slider-navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #03FEF7;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: #7BFF00;
    color: #7BFF00;
}

.slider-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    margin-top: 30px;
}

.service-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-slide.active {
    display: flex;
    opacity: 1;
}

.slide-image {
    width: 40%;
    padding-right: 30px;
}

.slide-main-image {
    max-width: 100%;
    height: auto;
}

.slide-content {
    margin: auto auto;
    width: 60%;
}

.slide-icon {
    margin-bottom: 15px;
}

.slide-title {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
}

.slide-link {
    color: #7BFF00;
    text-decoration: none;
    font-size: 14px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #7BFF00;
}

.get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px dashed white;
    border-radius: 30px;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-top: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.get-started-btn .arrow {
    font-size: 16px;
}

.section-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0.4;
}

/* Mobile responsiveness for What We Do section */
@media screen and (max-width: 1024px) {
    .what-we-do-section {
        padding: 60px 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 20px;
    }
    
    .slider-navigation {
        position: relative;
        top: unset;
        right: unset;
        justify-content: center;
        margin-top: 20px;
    }
    
    .service-slide {
        flex-direction: column;
    }
    
    .slide-image, .slide-content {
        width: 100%;
        padding-right: 0;
    }
    
    .slide-image {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .slide-main-image {
        max-width: 80%;
    }
    
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .roadmap-tag {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .slide-description {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .get-started-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Case Studies Section */
.case-studies-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-heading-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.case-studies-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    flex: 0 0 30%;
}

.case-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 400px;
    flex: 0 0 40%;
    color: #cccccc;
}

.contact-us-btn {
    background-image: linear-gradient(90deg, #02FFFB 10%, #76FF04 90%);
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.circle-dark {
    background-color: transparent;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-dark img {
    width: 40px;
    padding-left: 10px;
}

.case-studies-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-card {
    flex: 1;
    min-width: 300px;
    border: 2px solid #03FFF8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    padding: 0;
    background-color: #000;
    overflow: hidden;
}

.case-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

.case-image img {
    max-width: 100%;
    max-height: 100%;
    
    object-fit: contain;
}

.case-title {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.case-text {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

.case-card .learn-more {
    display: block;
    padding: 0 20px 20px;
    color: #7BFF00;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile responsiveness for Case Studies section */
@media screen and (max-width: 1024px) {
    .case-studies-section {
        padding: 60px 40px;
    }
    
    .case-heading-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-studies-title {
        flex: 0 0 100%;
    }
    
    .case-description {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-us-btn {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .case-studies-section {
        padding: 40px 20px;
    }
    
    .case-studies-title {
        font-size: 36px;
    }
    
    .case-studies-grid {
        flex-direction: column;
    }
    
    .case-card {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .case-studies-title {
        font-size: 28px;
    }
    
    .case-title {
        font-size: 18px;
    }
    
    .case-description, .case-text {
        font-size: 14px;
    }
    
    .contact-us-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Clients Section */
.clients-section {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.dot-marker {
    width: 8px;
    height: 8px;
    background-color: #7BFF00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    left: 190px;
    top: 50px;
}

.clients-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    width: 150px;
    height: 80px;
    background-color: #001810;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-img {
    max-width: 100%;
    max-height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-img {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #001810;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.feedback-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
    margin-left: 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
}

.slider-navigation {
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #03FEF7;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    border-color: #7BFF00;
    color: #7BFF00;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.testimonial {
    padding: 30px;
}

.client-info {
    margin-bottom: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.client-position {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for Clients and Testimonials sections */
@media screen and (max-width: 1024px) {
    .feedback-tag{
        margin-left: 0;
    }
    .testimonials-section {
        padding: 60px 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .dot-marker {
        left: 120px;
    }
}

@media screen and (max-width: 768px) {
    .clients-section {
        padding: 40px 20px;
    }
    
    .testimonials-section {
        padding: 40px 20px;
    }
    
    .clients-title, .testimonials-title {
        font-size: 32px;
    }
    
    .client-logo {
        width: 120px;
        height: 70px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .slider-navigation {
        position: relative;
        top: unset;
        right: unset;
        justify-content: center;
        margin-top: 20px;
    }
    
    .dot-marker {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .clients-title, .testimonials-title {
        font-size: 28px;
    }
    
    .client-name {
        font-size: 16px;
    }
    
    .client-position {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .clients-grid {
        gap: 10px;
    }
    
    .client-logo {
        width: 100px;
        height: 60px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
    margin-left: 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, #02FFFB);
    bottom: -15px;
    left: 0;
}

.faq-items {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
}

.arrow-icon {
    font-size: 24px;
    color: #03FEF7;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
    transform: rotate(90deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    max-width: 80%;
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    margin-top: 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.faq-lines {
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1;
    opacity: 0.4;
    transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
    color: #7BFF00;
    font-weight: bold;
}

/* Mobile responsiveness for FAQ section */
@media screen and (max-width: 1024px) {
    .faq-section {
        padding: 60px 40px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-lines {
        opacity: 0.2;
    }
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .arrow-icon {
        font-size: 20px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #001810;
    background-image: linear-gradient(to bottom, #001810, #000);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.lets-talk-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00FFB3;
    background-image: linear-gradient(90deg, #02FFFB 10%, #76FF04 90%);
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.circle-arrow {
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 14px;
}

.cta-lines {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.5;
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    color: white;
    padding: 60px 100px 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.company-info p {
    margin: 5px 0;
    color: #cccccc;
    font-size: 14px;
}

.company-name {
    margin-top: 15px !important;
}

.company-tagline {
    max-width: 250px;
}

.company-reg {
    font-size: 12px !important;
    color: #777 !important;
    margin-top: 10px !important;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info {
    margin-bottom: 40px;
    text-align: right;
}

.contact-item {
    display: block;
    margin: 15px 0;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #7BFF00;
    color: #7BFF00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #555;
}

/* Mobile responsiveness for CTA and Footer */
@media screen and (max-width: 1024px) {
    .site-footer {
        padding: 60px 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .cta-title {
        font-size: 36px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        align-items: flex-start;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }
    
    .lets-talk-tag {
        font-size: 12px;
    }
    
    .schedule-btn {
        width: 100%;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.arrow-right-schedule{
    width: 40px;
    padding-left: 10px;
}

.social-icon{
    width: 60px;
}