/* Custom Styling for SRD Tradelink LLP */

:root {
    --brand-navy: #15123F;
    --brand-green: #069547;
    --brand-green-light: #e8f5ed;
    --text-dark: #222222;
    --text-grey: #666666;
    --bg-light: #f8faf9;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header Section */
.devay-text {
    font-size: 14px;
    color: var(--text-grey);
    font-weight: 500;
    letter-spacing: 1.5px;
}

.logo-container {
    max-width: 420px;
    margin: 0 auto;
}

.logo-img {
    width: 100%;
    height: auto;
}

/* Typography & Subtitle Section */
.hero-subtitle {
    font-weight: 600;
    color: var(--brand-navy);
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-green);
    letter-spacing: 1px;
}

.industry-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.title-line {
    flex-grow: 1;
    height: 1.5px;
    background-color: var(--brand-green);
    position: relative;
    max-width: 150px;
}

.title-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.title-line-left::after {
    right: 0;
}

.title-line-right::after {
    left: 0;
}

.industry-subtitle {
    font-weight: 600;
    color: var(--brand-navy);
    font-size: 1.3rem;
    margin: 0;
    white-space: nowrap;
}

/* Skewed Ribbon Banner */
.ribbon-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 10px 0;
}

.ribbon-banner {
    background-color: var(--brand-navy);
    color: #ffffff;
    padding: 10px 45px;
    transform: skewX(-20deg);
    box-shadow: 0 4px 15px rgba(21, 18, 63, 0.2);
}

.ribbon-content {
    transform: skewX(20deg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    flex-wrap: wrap;
}

.ribbon-content span.separator {
    color: var(--brand-green);
    font-weight: bold;
}

/* Feature Section Layout */
.hero-feature-row {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 520px;
    border-radius: 12px;
}

.green-feature-box {
    background-color: var(--brand-green);
    color: #ffffff;
    padding: 45px 50px 45px 70px;
    border-radius: 200px 0 0 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.green-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 200px 0 0 200px;
    filter: blur(10px);
}

.feature-top-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-circle {
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    color: var(--brand-green);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-item:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.feature-icon-circle svg {
    width: 28px;
    height: 28px;
    fill: var(--brand-green);
}

.feature-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Serving Diverse Industries Section */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px 15px;
    padding: 30px 0;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.industry-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1.5px solid rgba(6, 149, 71, 0.25);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.industry-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-circle {
    transform: translateY(-5px);
    border-color: var(--brand-green);
    box-shadow: 0 8px 16px rgba(6, 149, 71, 0.15);
}

.industry-card:hover .industry-circle img {
    transform: scale(1.1);
}

.industry-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.3;
    max-width: 120px;
}

/* Gallery Section */
.gallery-row img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-col {
    overflow: hidden;
}

.gallery-row img:hover {
    transform: scale(1.08);
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--brand-navy);
    color: #ffffff;
    padding: 50px 0;
}

.why-choose-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.why-choose-title span {
    color: var(--brand-green);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1.5px dashed var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.why-circle svg {
    width: 32px;
    height: 32px;
    fill: var(--brand-green);
    transition: var(--transition-smooth);
}

.why-card:hover .why-circle {
    border-color: #ffffff;
    background-color: rgba(6, 149, 71, 0.1);
    transform: scale(1.1);
}

.why-card:hover .why-circle svg {
    fill: #ffffff;
}

.why-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-light);
    padding: 40px 0;
}

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

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(6, 149, 71, 0.2);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon-circle {
    transform: scale(1.08);
    background-color: var(--brand-navy);
}

.contact-icon-circle svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.contact-detail {
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
}

.contact-detail a {
    color: var(--brand-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-detail a:hover {
    color: var(--brand-green);
}

.contact-detail-email {
    font-size: 1.15rem;
}

.contact-detail-address {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.footer-image-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    .green-feature-box {
        border-radius: 20px;
        padding: 35px;
        margin-top: 30px;
    }
    .green-feature-box::before {
        border-radius: 20px;
    }
    .footer-image-col {
        justify-content: center;
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-main-title {
        font-size: 2.2rem;
    }
    .industry-subtitle {
        font-size: 1.1rem;
    }
    .title-line {
        max-width: 60px;
    }
    .ribbon-banner {
        transform: none;
        border-radius: 8px;
        padding: 10px 20px;
        width: 100%;
    }
    .ribbon-content {
        transform: none;
        gap: 8px 15px;
        font-size: 0.85rem;
    }
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }
    .gallery-row img {
        height: 180px;
    }
    .contact-detail {
        font-size: 1.15rem;
    }
    .contact-detail-email {
        font-size: 1.05rem;
    }
    .contact-detail-address {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-row img {
        height: 150px;
    }
    .why-choose-title {
        font-size: 1.4rem;
    }
}
