
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-banner {
    align-items: center;
    min-height: 30vh; /* This brings the content down below center */
    padding: 0 0 60px;
    background: linear-gradient(135deg, #2d5a47 0%, #1a3d2e 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrapper {
    margin-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-left: 10%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Sponsors Section */
.sponsors-section {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
}

.sponsors-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.sponsors-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.sponsors-slider {
    position: relative;
    overflow: hidden;
}

.sponsors-track {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 60px;
    align-items: center;
}

.sponsor-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.sponsor-logo:hover {
    opacity: 1;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Value Offering Section */
.value-section {
    padding: 100px 0;
    background: white;
}

.value-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 0px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0px;
    margin-bottom: 80px;
}

.value-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #ff6b35;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.value-content {
    padding: 30px;
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 15px;
}

.value-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-link:hover {
    text-decoration: underline;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.value-card {
    padding: 0 !important;
}

.value-image {
    height: 300px;
    border-radius: 0px;
    overflow: hidden;
}

/* Why Partner Section */
.partner-section {
    padding: 100px 0;
    background: #ffffff;
}

.partner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px !important;
    align-items: center;
}

.partner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 30px;
}

.partner-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-features {
    list-style: none;
    margin: 30px 0;
}

.partner-features li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.partner-features li::before {
    position: absolute;
    left: 0;
    color: #43C296;
    font-weight: bold;
}

.partner-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partner-img:hover {
transform: scale(1.03);
}

.partner-img {
width: 100%;
background-size: cover;
background-position: center;
transition: transform 0.3s ease;
}

/* Trusted Agency Section */
.agency-section {
    padding: 100px 0;
    background: white;
}

.agency-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.agency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agency-image {
    position: relative;
}

.agency-img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.agency-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 30px;
}

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

.agency-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.point-icon {
    width: 24px;
    height: 24px;
    background: #28a745;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text strong {
    color: #43C296;
    display: block;
    margin-bottom: 5px;
}

.point-text {
    color: #666;
    line-height: 1.5;
}

/* Made by You Section */
.showcase-section {
    padding: 100px 0;
    background: #2d5a47;
    color: white;
    text-align: center;
}

.showcase-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.showcase-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.showcase-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    background-size: cover;
    background-position: center;
}

.showcase-carousel {
    scrollbar-width: none; /* For Firefox */
}

.showcase-carousel::-webkit-scrollbar {
    display: none; /* For Chrome/Safari */
}

.carousel-button {
    transition: all 0.3s ease;
}

.carousel-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.showcase-item {
    transition: transform 0.3s ease;
}

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

/* Feedback Section */
.feedback-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.feedback-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feedback-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 20px;
}

.feedback-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgb(244, 241, 241);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
}

.author-info h4 {
    color: #43C296;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #43C296;
    font-size: 0.9rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 18px;
    margin-top: 15px;
}

.testimonials-carousel {
    padding: 0 40px;
}

.testimonial-nav {
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonials-grid {
    transition: transform 0.5s ease;
}

/* Questions Section */
.questions-section {
    padding: 100px 0;
    background: white;
}

.questions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.questions-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43C296;
    margin-bottom: 30px;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-panel {
    background: #19191A;
    color: white;
    padding: 40px;
    border-radius: 16px;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    opacity: 0.9;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5a47 0%, #1a3d2e 100%);
    color: white;
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.submit-button {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.submit-button:hover {
    background: #e55a2b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .partner-content,
    .agency-content,
    .questions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
        max-width: 300px;
    }

    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Hero Section CSS */
.hero {
background: linear-gradient(135deg, #2d5a47 0%, #1a3d2e 100%);
color: white;
padding: 150px 0 100px;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.hero__wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}

.hero__badge {
display: inline-block;
background: transparent;
border: none;
padding: 0;
color: #FDB94B;
font-size: 14px;
margin-bottom: 30px;
}

.hero__title {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 20px;
max-width: 600px;
}

.hero__subtitle {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 40px;
max-width: 500px;
line-height: 1.6;
}

.hero__buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.hero__button {
padding: 15px 30px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}

.hero__button--primary {
background: #43C296;
color: white;
display: inline-flex;
align-items: center;
gap: 8px;
}

.hero__button--primary:hover {
background: #3aad84;
transform: translateY(-2px);
}

.hero__button-icon {
font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.hero__title {
font-size: 2.5rem;
}
}

/* Value Section CSS */
.value {
padding: 0px 0;
background: white;
}

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

.value__title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: #1A1A1A;
margin-bottom: 0;
}

.value__subtitle {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
color: #666;
font-size: 1.1rem;
}

.value__grid {
display: flex;
flex-direction: column;
gap: 0;
}

.value__card {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 0;
}

.value__card--dark {
background: #2d5a47;
padding: 0px;
}

.value__content {
padding: 30px;
}

.value__card-title {
font-size: 1.5rem;
font-weight: 700;
color: #0A1519;
margin-bottom: 15px;
}

.value__card--dark .value__card-title {
color: white;
}

.value__card-text {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.value__card--dark .value__card-text {
color: rgba(255,255,255,0.9);
}

.value__link {
color: #ff6b35;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}

.value__link--light {
color: #8BC34A;
}

.value__link:hover {
text-decoration: underline;
}

.value__image {
height: 300px;
background-size: cover;
background-position: center;
}

.value__image--print {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Frame 2121457561.png');
}

.value__image--design {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Frame 2121457561-2.png');
}

.value__image--motion {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Frame 2121457561.png');
}

.value__image--custom {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Frame 2121457561-2.png');
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.value__card {
grid-template-columns: 1fr;
}

.value__image {
height: 250px;
}

.value__card--dark {
padding: 20px;
}
}

/* Partner Section CSS */
.partner {
padding: 100px 0;
background: #ffffff;
}

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

.partner__content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.partner__heading {
font-size: 2.5rem;
font-weight: 700;
color: #444444;
margin-bottom: 30px;
}

.partner__description {
color: #666;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 20px;
}

.partner__features {
list-style: none;
margin: 30px 0;
padding-left: 0;
}

.partner__feature {
position: relative;
padding-left: 40px;
margin-bottom: 20px;
color: #666;
}

.partner__feature:last-child {
margin-bottom: 30px;
}

.partner__feature-icon {
position: absolute;
left: 0;
top: 5px;
width: 24px;
height: 24px;
}

.partner__button {
background: #43C296;
color: white;
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.partner__button:hover {
background: #1a3d2e;
transform: translateY(-2px);
}

.partner__button-icon {
font-size: 18px;
}

.partner__gallery {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 15px;
width: 100%;
max-width: 500px;
margin-left: auto;
}

.partner__image {
background-size: cover;
background-position: center;
transition: transform 0.3s ease;
}

.partner__image:hover {
transform: scale(1.03);
}

.partner__image--top-left {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Rectangle 6.png');
grid-column: 1;
grid-row: 1;
height: 220px;
border-top-left-radius: 16px;
}

.partner__image--top-right {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Rectangle 10.png');
grid-column: 2;
grid-row: 1;
height: 180px;
border-top-right-radius: 16px;
}

.partner__image--bottom-left {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Rectangle 11.png');
grid-column: 1;
grid-row: 2;
height: 180px;
border-bottom-left-radius: 16px;
}

.partner__image--bottom-right {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Rectangle 9.png');
grid-column: 2;
grid-row: 2;
height: 220px;
border-bottom-right-radius: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.partner__content {
grid-template-columns: 1fr;
gap: 40px;
}

.partner__gallery {
margin: 0 auto;
}

.partner__heading {
font-size: 2rem;
}
}

/* Agency Section CSS */
.agency {
padding: 0px 0;
background: white;
}

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

.agency__content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.agency__main-image {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Rectangle 4-2.png');
background-size: cover;
background-position: center;
width: 100%;
height: 600px;
border-radius: 16px;
}

.agency__subheading {
color: #FEA91B;
font-size: 1rem;
margin-bottom: 10px;
}

.agency__heading {
font-size: 2.5rem;
font-weight: 700;
color: #151515;
margin-bottom: 30px;
}

.agency__points {
list-style: none;
padding-left: 0;
margin-bottom: 30px;
}

.agency__point {
position: relative;
padding-left: 40px;
margin-bottom: 20px;
padding-bottom: 20px;
}

.agency__point:last-child {
margin-bottom: 0;
padding-bottom: 0;
}

.agency__point-icon {
position: absolute;
left: 0;
top: 5px;
width: 24px;
height: 24px;
}

.agency__point-title {
color: #424141;
display: block;
margin-bottom: 5px;
}

.agency__point-text {
color: #666;
line-height: 1.5;
margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.agency__content {
grid-template-columns: 1fr;
gap: 40px;
}

.agency__main-image {
height: 400px;
}

.agency__heading {
font-size: 2rem;
}
}

/* Showcase Section CSS */
.showcase {
background: white;
color: #333;
padding: 50px 0;
}

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

.showcase__title {
color: #191C1FE5;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
text-align: center;
}

.showcase__subtitle {
text-align: center;
font-size: 1.1rem;
margin-bottom: 50px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.showcase__carousel-container {
position: relative;
margin: 40px 0;
}

.showcase__carousel {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
padding: 10px 0;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}

.showcase__item {
flex: 0 0 calc(33.333% - 15px);
min-width: 0;
border-radius: 12px;
overflow: hidden;
scroll-snap-align: start;
}

.showcase__image {
height: 450px;
border-radius: 12px;
background-size: cover;
background-position: center;
transition: transform 0.3s ease;
}

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

.showcase__image--1 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item.png');
}

.showcase__image--2 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item-2.png');
}

.showcase__image--3 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item-3.png');
}

.showcase__image--4 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item.png');
}

.showcase__image--5 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item-2.png');
}

.showcase__image--6 {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Item-3.png');
}

.showcase__nav-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
background: #43C296;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.showcase__nav-button:hover {
transform: translateY(-50%) scale(1.1);
}

.showcase__nav-button--prev {
left: -20px;
}

.showcase__nav-button--next {
right: -20px;
}

.showcase__nav-icon {
color: white;
font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.showcase__title {
font-size: 2rem;
}

.showcase__item {
flex: 0 0 calc(50% - 10px);
}

.showcase__image {
height: 350px;
}
}

@media (max-width: 480px) {
.showcase__item {
flex: 0 0 85%;
}

.showcase__nav-button {
width: 40px;
height: 40px;
}

.showcase__nav-button--prev {
left: -10px;
}

.showcase__nav-button--next {
right: -10px;
}
}

/* Feedback Section CSS */
.feedback {
padding: 0px 0;
background: #ffffff;
}

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

.feedback__badge {
color: #FDB94B;
font-size: 1rem;
text-align: center;
margin-bottom: 10px;
}

.feedback__title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: #0A1519;
margin-bottom: 20px;
}

.feedback__subtitle {
text-align: center;
color: #666;
font-size: 1.1rem;
margin-bottom: 60px;
}

.feedback__carousel {
position: relative;
width: 100%;
}

.feedback__viewport {
width: 100%;
overflow: hidden;
}

.feedback__grid {
display: flex;
gap: 30px;
transition: transform 0.5s ease;
}

.feedback__pair {
display: flex;
gap: 30px;
min-width: 100%;
}

.feedback__card {
flex: 1;
background: rgb(244, 241, 241);
padding: 40px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feedback__text {
font-size: 1.1rem;
line-height: 1.6;
color: #444;
margin-bottom: 30px;
}

.feedback__author {
display: flex;
align-items: center;
gap: 15px;
}

.feedback__avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-size: cover;
background-position: center;
}

.feedback__avatar--1 {
background: linear-gradient(45deg, #ff6b35, #ffa726);
}

.feedback__avatar--2 {
background: linear-gradient(45deg, #4a90e2, #357abd);
}

.feedback__avatar--3 {
background: linear-gradient(45deg, #2d5a47, #1a3d2e);
}

.feedback__avatar--4 {
background: linear-gradient(45deg, #7b68ee, #6a5acd);
}

.feedback__name {
color: #43C296;
font-weight: 600;
margin-bottom: 5px;
}

.feedback__role {
color: #666;
font-size: 0.9rem;
}

.feedback__rating {
color: #ffc107;
font-size: 18px;
margin-top: 15px;
}

.feedback__nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
background: #43C296;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.feedback__nav:hover {
transform: translateY(-50%) scale(1.1);
}

.feedback__nav--prev {
left: -25px;
}

.feedback__nav--next {
right: -25px;
}

.feedback__nav-icon {
color: white;
font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.feedback__title {
font-size: 2rem;
}

.feedback__pair {
flex-direction: column;
gap: 20px;
}

.feedback__card {
padding: 30px;
}

.feedback__nav {
width: 40px;
height: 40px;
}

.feedback__nav--prev {
left: -15px;
}

.feedback__nav--next {
right: -15px;
}
}
/* Questions Section CSS */
.questions {
padding: 100px 0;
background: white;
}

.questions__wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.questions__heading {
font-size: 2.5rem;
font-weight: 700;
color: #1A191E;
margin-bottom: 30px;
}

.questions__contact {
background: #ffffff;
padding: 30px;
border-radius: 12px;
margin-bottom: 30px;
}

.questions__contact-item {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.questions__contact-item:last-child {
margin-bottom: 0;
}

.questions__contact-icon {
width: 40px;
height: 40px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
flex-shrink: 0;
}

.questions__contact-icon--phone {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/badge.png');
}

.questions__contact-icon--email {
background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/badge-2.png');
}

.questions__contact-title {
color: #2d5a47;
display: block;
margin-bottom: 5px;
}

.questions__contact-text {
color: #666;
font-size: 0.9rem;
margin: 0;
}

.questions__description {
color: #666;
line-height: 1.6;
}

.questions__faq {
background: #19191A;
color: white;
padding: 40px;
border-radius: 16px;
}

.questions__faq-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 30px;
}

.questions__faq-item {
border-bottom: 1px solid rgba(255,255,255,0.2);
padding: 20px 0;
cursor: pointer;
}

.questions__faq-item:last-child {
border-bottom: none;
}

.questions__faq-question {
font-weight: 600;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}

.questions__faq-toggle {
font-size: 1.2rem;
}

.questions__faq-answer {
opacity: 0.9;
line-height: 1.6;
display: none;
}

.questions__faq-item--active .questions__faq-answer {
display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.questions__wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.questions__heading {
font-size: 2rem;
}

.questions__faq {
padding: 30px;
}
}

/* CTA Section CSS */
.cta {
background: #000;
color: white;
padding: 100px 0;
}

.cta__wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.cta__badge {
color: #FDB94B;
font-size: 1rem;
margin-bottom: 15px;
}

.cta__title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 30px;
}

.cta__text {
margin-bottom: 40px;
line-height: 1.6;
opacity: 0.9;
}

.cta__prompt {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: 600;
}

.cta__subtext {
margin-bottom: 40px;
line-height: 1.6;
opacity: 0.9;
}

.cta__form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}

.cta__form-group {
margin-bottom: 20px;
}

.cta__form-label {
display: block;
margin-bottom: 8px;
font-size: 0.9rem;
}

.cta__form-input,
.cta__form-textarea {
width: 100%;
padding: 15px;
border-radius: 8px;
border: 1px solid #ddd;
background: white;
color: #333;
}

.cta__form-textarea {
min-height: 150px;
resize: vertical;
}

.cta__submit-button {
background: #43C296;
color: white;
padding: 15px 30px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
transition: background 0.3s ease;
}

.cta__submit-button:hover {
background: #1a3d2e;
}

.cta__button-icon {
font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.cta__wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.cta__title {
font-size: 2rem;
}

.cta__form-row {
grid-template-columns: 1fr;
}
}











/* iPhone Responsive Styles */
@media (max-width: 768px) {
/* Hero Section */
.hero {
padding: 100px 0 60px;
}

.hero__title {
font-size: 2.2rem;
margin-bottom: 15px;
}

.hero__subtitle {
font-size: 1rem;
margin-bottom: 30px;
}

.hero__buttons {
flex-direction: column;
gap: 10px;
}

.hero__button {
width: 100%;
text-align: center;
padding: 12px 20px;
}

/* Sponsors Section */
.sponsors-section {
padding: 40px 0;
}

.sponsor-logo {
height: 30px;
}

/* Value Section */
.value {
padding: 60px 0;
}

.value__title {
font-size: 2rem;
}

.value__subtitle {
font-size: 1rem;
margin-bottom: 40px;
}

.value__card {
grid-template-columns: 1fr;
}

.value__image {
height: 250px;
order: -1;
}

.value__content {
padding: 20px;
}

.value__card-title {
font-size: 1.3rem;
}

/* Partner Section */
.partner {
padding: 60px 0;
}

.partner__content {
grid-template-columns: 1fr;
gap: 40px;
}

.partner__heading {
font-size: 2rem;
}

.partner__gallery {
grid-template-columns: 1fr 1fr;
max-width: 100%;
margin: 0 auto;
}

.partner__image--top-left,
.partner__image--bottom-right {
height: 180px;
}

.partner__image--top-right,
.partner__image--bottom-left {
height: 150px;
}

/* Agency Section */
.agency {
padding: 60px 0;
}

.agency__content {
grid-template-columns: 1fr;
gap: 40px;
}

.agency__main-image {
height: 350px;
}

.agency__heading {
font-size: 2rem;
}

/* Showcase Section */
.showcase {
padding: 60px 0;
}

.showcase__title {
font-size: 2rem;
}

.showcase__item {
flex: 0 0 calc(50% - 10px);
}

.showcase__image {
height: 300px;
}

.showcase__nav-button {
width: 40px;
height: 40px;
}

.showcase__nav-button--prev {
left: -10px;
}

.showcase__nav-button--next {
right: -10px;
}

/* Feedback Section */
.feedback {
padding: 60px 0;
}

.feedback__title {
font-size: 2rem;
}

.feedback__pair {
flex-direction: column;
gap: 20px;
}

.feedback__card {
padding: 25px;
}

.feedback__nav {
width: 40px;
height: 40px;
}

.feedback__nav--prev {
left: -15px;
}

.feedback__nav--next {
right: -15px;
}

/* Questions Section */
.questions {
padding: 60px 0;
}

.questions__wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.questions__heading {
font-size: 2rem;
}

.questions__faq {
padding: 25px;
}

/* CTA Section */
.cta {
padding: 60px 0;
}

.cta__wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.cta__title {
font-size: 2rem;
}

.cta__form-row {
grid-template-columns: 1fr;
gap: 15px;
}

.cta__form-input,
.cta__form-textarea {
padding: 12px;
}

/* General spacing adjustments */
.section-title,
.partner__heading,
.agency__heading,
.feedback__title,
.questions__heading,
.cta__title {
margin-bottom: 20px;
}

.partner__description,
.feedback__subtitle,
.showcase__subtitle {
margin-bottom: 30px;
}

/* Ensure proper text wrapping */
h1, h2, h3, p {
word-wrap: break-word;
}
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
.hero__title {
font-size: 1.8rem;
}

.value__title,
.partner__heading,
.agency__heading,
.feedback__title,
.questions__heading,
.cta__title {
font-size: 1.7rem;
}

.showcase__item {
flex: 0 0 85%;
}

.showcase__image {
height: 250px;
}

.partner__image--top-left,
.partner__image--bottom-right {
height: 150px;
}

.partner__image--top-right,
.partner__image--bottom-left {
height: 120px;
}

.agency__main-image {
height: 280px;
}

.feedback__card {
padding: 20px;
}
}



