section {
    padding: 50px 80px;
}
/* Banner Section Styles */
.hero_banner {
    overflow: hidden;
    margin-top: 70px;
}

.hero_banner:before {
    width: 100%;
    bottom: 0px;
    left: 0px;
    height: 120%;
    content: "";
    clip-path: polygon(100% 0, 100% 30%, 42% 100%, 0 100%, 0 0);
    background: linear-gradient(to right, #f9f9f9, #f1e9db);
    z-index: -1;
    position: absolute;
    top: 0px;
}

.banner_content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Content Styles */
.banner_left {
    flex: 1;
    padding-right: 40px;
}

.banner_title {
    font-size: 67px;
    font-weight: 800;
    color: #333;
    margin-bottom: 24px;
    font-family: "Georgia", serif;
    line-height: 1.2;
    text-align: left;
    margin-top: 20px;
}

.banner_description {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    font-weight: 500;
}

/* CTA Button */
.banner_cta {
    margin-top: 32px;
}

.cta_button {
    display: inline-block;
    padding: 10px 32px;
    background: var(--purple-blue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
    background-size: 300px;
}

.cta_button:hover {
    /* background: #34438f;
    color: white; */

    background-position: -200%;
    transition: background 300ms ease-in-out;
}

/* Right Image Styles */
.banner_right {
    flex: 1;
}

.banner_right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Announcement Bar Styles */
.announce {
    background: var(--light-yellow);
    padding: 16px 0;
}

.announcement_text {
    text-align: center;
    font-size: 19px;
    margin: 0;
}

.purple_link {
    background: var(--purple-blue);
    font-weight: 800;
    text-decoration: none;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support .purple_link,
.portfolio .purple_link {
    font-weight: 700;
}

a.purple_link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--purple-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a.purple_link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/*********************************** Features section  *********************************/

/* Section Header */
.section_header {
    text-align: center;
    margin-bottom: 48px;
}

.main_title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    font-family: "Georgia", serif;
}

.typed_text {
    color: var(--mustard);
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: #333;
    margin-left: 2px;
    animation: blink 1s infinite;
}

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

.subtitle {
    font-size: 17px;
    color: #555;
    font-weight: 500;
}

/* Features Grid */
.features_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Feature Card */
.feature_card {
    text-align: center;
    padding: 20px 10px;
    flex: 1 1 250px;
    flex-grow: unset;
}

.feature_card img {
    height: 80px;
    margin-bottom: 14px;
}

.feature_title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature_text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Info Section */
.info_section {
    padding: 80px 20px;
    background: var(--middle-yellow);
}

.info_wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Left Image */
.info_image {
    flex: 1;
}

.info_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Content */
.info_content {
    flex: 1;
}

.content_wrapper {
    padding-left: 48px;
}

.info_tag {
    background: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mustard);
}

.info_title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    font-family: "Georgia", serif;
}

.info_text {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 24px;
}

.info_link {
    color: #4054b2;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.info_link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.info_link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/************************ portfolio, text stack and more  ******************************/

.section_title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    font-family: "Georgia", serif;
}

.section_subtitle {
    font-size: 17px;
    color: #555;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 20px;
    background: var(--middle-yellow);
    text-align: center;
}

.portfolio_carousel {
    margin-bottom: 48px;
}

.carousel_wrapper {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.portfolio_item:hover {
    transform: translateY(-5px);
}

.portfolio_item img {
    /* width: 100%; */
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*************************************** Tech Stack Section **********************************/
.tech_stack {
    padding: 80px 20px;
}

.tech_tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tabs_header {
    margin-bottom: 40px;
}

.tab_list {
    display: flex;
    justify-content: center;
    /* gap: 24px; */
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab_list li a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-bottom: 1px solid #dedede;
    transition: all 0.3s ease;
}

.tab_list li.active a {
    border-bottom: 3px solid #dd10bc;
    color: #dd10bc;
}

.tab_panel {
    display: none; /* Hide all panels by default */
}

.tab_panel.active {
    display: block; /* Show active panel */
    opacity: 1;
    visibility: visible;
}

.tech_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tech_item {
    text-align: center;
    /* text-align: center; */
    padding: 10px;
    border: 1px solid #dfdfdf;
    min-width: 100px;
}

.tech_item img {
    height: 46px;
    max-width: 130px;
    object-fit: contain;
    /* width: 55px; */
}

.tech_item:hover img {
    transform: translateY(-5px);
}

.tech_item span {
    display: block;
    color: #333;
    font-weight: 500;
}

/****************************** Testimonials Section ***********************************/

.testimonials {
    padding: 80px 20px;
    background: var(--green-blue);
}

/* Rest of your existing styles */
.client_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.testimonials p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.client_info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
}

.client_info span {
    color: #666;
}

.swiper {
    height: 100%;
    margin: auto;
    width: 85%;
    padding: 30px 0px;
    padding-bottom: 60px;
}

.testimonials .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .slide {
    padding: 15px;
}

.testimonials .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************* Partners Section ***************************************/
.partners {
    padding: 80px 20px;
    padding-left: 40px;
    border-top: 20px dashed #f6f5f1;
}

.partners_content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.partners_info {
    flex: 1;
    text-align: center;
    flex-basis: 45%;
}

.partners_grid {
    /* flex: 2; */
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner_logo {
    width: 200px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner_logo:hover {
    transform: translateY(-5px);
}

.partner_logo img {
    width: 100%;
    height: auto;
}

/* Support Section */
.support {
    padding: 32px 0;
    background: var(--middle-yellow);
}

.support_text {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Responsive Styles */

@media (max-width: 1000px) {
    .banner_right img {
        width: 135%;
        margin-left: -50px;
    }
}

@media (max-width: 880px) {
    section {
        padding: 50px 60px;
        /* padding-right: 0px; */
    }

    .partners_content {
        flex-direction: column;
    }

    .partners {
        padding-left: 43px;
    }

    .banner_content {
        flex-direction: column;
    }

    .banner_title {
        font-size: 60px;
    }

    .banner_right img {
        width: 100%;
        margin-left: 0px;
        margin-top: -140px;
        margin-bottom: -150px;
    }

    .feature_card {
        padding: 0px 10px;
    }

}

@media (max-width: 550px) {

    .hero_banner {
        margin-top: 0px;
    }

    .info_tag {
        padding: 8px 4px;
        font-size: 14px;
    }

    .banner_left {
    padding-right: 5px;
}

    .banner_title {
        font-size: 47px;
    }

    .banner_right img {
        margin-top: -85px;
        margin-bottom: -70px;
    }

    section {
        padding: 30px 20px;
    }

    .partners {
        padding: 10px;
    }

    .partners_grid {
        margin-bottom: 45px;
        flex-wrap: wrap;
    }

}
