/* =====================================================
   RCC GROUP — PREMIUM WEBSITE
   ===================================================== */

:root {
    --green: #063f2f;
    --deep-green: #032d22;
    --gold: #b9852d;
    --cream: #f4edda;
    --off-white: #f8f7f2;
    --text: #52645d;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--off-white);
    color: var(--green);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}


/* =====================================================
   NAVBAR
   ===================================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(248, 247, 242, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(6, 63, 47, 0.08);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--green);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.nav-links a {
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-button {
    padding: 13px 24px;
    border-radius: 30px;
    background: var(--green);
    color: white !important;
}

.nav-button:hover {
    background: var(--gold);
}


/* ========================================
   RCC GROUP — HERO SECTION
======================================== */

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 80px 7%;

    background-color: #f7f5ef;

    /* POULTRY IMAGE */
    background-image:
        linear-gradient(
            90deg,
            #f7f5ef 0%,
            #f7f5ef 25%,
            rgba(247, 245, 239, 0.98) 34%,
            rgba(247, 245, 239, 0.90) 42%,
            rgba(247, 245, 239, 0.65) 52%,
            rgba(247, 245, 239, 0.30) 62%,
            rgba(247, 245, 239, 0.05) 72%,
            rgba(247, 245, 239, 0) 80%
        ),
        url("images/poultry-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;
}


/* LEFT CONTENT */

.hero > div:first-child {
    position: relative;
    z-index: 2;
    max-width: 620px;
}


/* REMOVE EMPTY IMAGE DIV */

.hero > div:last-child {
    display: none;
}

/* LEFT CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* SMALL LABEL */

.hero-tag {
    margin-bottom: 22px;

    color: #c58b25;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}


/* MAIN HEADING */

.hero h1 {
    margin: 0 0 24px;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 5.2vw, 82px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -2px;

    color: #064c3b;
}


/* GOLD WORD */

.hero h1 span {
    color: #c58b25;
}


/* DESCRIPTION */

hero-text {
    max-width: 560px;

    font-size: 18px;
    line-height: 1.7;

    color: #53635f;

    margin: 0 0 30px;
}


/* BUTTONS */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* REMOVE OLD LOGO FROM HERO */

.hero-logo {
    display: none;
}


/* BUTTON STYLE */

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 5px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 700;

    transition: all 0.25s ease;
}


.primary-btn {
    background: #064c3b;
    color: #ffffff;
}


.secondary-btn {
    border: 1px solid #064c3b;
    background: rgba(255, 255, 255, 0.45);
    color: #064c3b;
}


.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}


.primary-btn:hover {
    background: #043b2e;
}


.secondary-btn:hover {
    background: #064c3b;
    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 80px 7% 70px;

        background:
            linear-gradient(
                180deg,
                rgba(247, 245, 239, 0.97) 0%,
                rgba(247, 245, 239, 0.90) 48%,
                rgba(247, 245, 239, 0.35) 100%
            ),
            url("images/poultry-hero.jpg");

        background-size: cover;
        background-position: center;
    }

    .hero > div:first-child {
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(52px, 9vw, 72px);
    }
}


@media (max-width: 600px) {

    .hero {
        padding: 65px 6% 60px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 50px;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn,
    .secondary-btn {
        width: 190px;
    }
}


/* =====================================================
   STATS
   ===================================================== */

.stats {
    padding: 32px 7%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: var(--green);
    color: white;
}

.stat {
    padding: 15px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
    border-right: none;
}

.stat h3 {
    margin-bottom: 7px;

    font-family: Georgia, serif;
    font-size: 34px;
    color: #d19a3a;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   ABOUT
   ===================================================== */

.section {
    padding: 120px 7%;
}

.section-label {
    display: block;

    margin-bottom: 18px;

    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title {
    max-width: 800px;
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;

    color: var(--green);
}

.section-text {
    max-width: 720px;

    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
}


/* =====================================================
   BUSINESS SECTION
   2 TOP + 1 CENTER BOTTOM
   ===================================================== */

.services {
    background: var(--green);
}

.services .section-label {
    color: #d19a3a;
}

.services .section-title {
    color: white;
    max-width: 750px;
}

.service-grid {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 300px;

    padding: 38px 32px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.035);

    transition: 0.35s ease;
}



.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(209, 154, 58, 0.5);
    background: rgba(255, 255, 255, 0.075);
}

.service-number {
    margin-bottom: 75px;

    color: #d19a3a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.service-card h3 {
    margin-bottom: 15px;

    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
}

.service-card p {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT / CTA
   ===================================================== */

.contact-section {
    margin: 100px 7%;

    padding: 85px 7%;

    background:
    linear-gradient(
        rgba(247, 245, 239, 0.70),
        rgba(247, 245, 239, 0.70)
    ),
    url("images/poultry-farm.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
    text-align: center;
}

.contact-content {
    max-width: 1050px;
    margin: 0 auto;
}

.contact-section .section-label {
    margin-bottom: 20px;
}

.contact-section h2 {
    max-width: 850px;
    margin: 0 auto 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;

    color: var(--green);
}

.contact-section > .contact-content > p {
    max-width: 650px;
    margin: 0 auto 38px;

    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-bottom: 38px;
}

.contact-btn {
    display: inline-block;

    padding: 15px 27px;

    border-radius: 4px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.3s ease;
}

.contact-btn.primary {
    background: var(--green);
    color: white;
}

.contact-btn.secondary {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn.primary:hover {
    background: var(--gold);
}

.contact-btn.secondary:hover {
    background: var(--green);
    color: white;
}

.contact-details {
    display: flex;
    justify-content: center;

    gap: 100px;

    padding-top: 32px;

    border-top: 1px solid rgba(6, 63, 47, 0.18);
}

.contact-details div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-details span {
    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-details strong {
    color: var(--green);
    font-size: 16px;
}


/* =====================================================
   FOOTER
   ===================================================== */

footer {
    margin-top: 0;
    padding: 65px 7% 30px;

    background: var(--deep-green);
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.footer-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: Georgia, serif;
    font-size: 26px;
}

.footer-brand p {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-bottom {
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 850px) {

    nav {
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 130px 7% 80px;

        text-align: center;
    }

    .hero > div:first-child {
        max-width: none;
    }

    .hero-logo {
        order: -1;
        min-height: 330px;
    }

    .hero-logo::before {
        width: 300px;
        height: 300px;
    }

    .hero-logo img {
        width: 280px;
    }

    .hero-logo::after {
        bottom: 0;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .section {
        padding: 85px 7%;
    }

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

    .service-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
    }

    .contact-section {
        margin: 60px 5%;
        padding: 60px 25px;
    }

    .contact-details {
        flex-direction: column;
        gap: 25px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}
/* ================================
   BUSINESS SECTION - CENTER FIX
================================ */

.service-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
}

.service-card:nth-child(3) {
    grid-column: 1 / 3;
    width: calc(50% - 12px);
    justify-self: center;
}

@media (max-width: 700px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
    }
}
/* ================================
   BUSINESS SECTION BACKGROUND
================================ */

.services {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(4, 70, 52, 0.90),
            rgba(4, 70, 52, 0.90)
        ),
        url("images/poultry.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services > * {
    position: relative;
    z-index: 1;
}
/* ================================
   HERO IMAGE — CLEAN & SMOOTH
================================ */

.hero {
    position: relative;
    overflow: hidden;
}

/* Hero image */
.hero::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 50%;
    height: 100%;

    background-image: url("images/poultry-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 120px 0 0 120px;

    z-index: 0;
}

/* Text ko image ke upar nahi aane dena */
.hero > div:first-child {
    position: relative;
    z-index: 2;
}

/* Hero ki right-side image ko smooth fade */
.hero::before {
    content: "";
    position: absolute;

    top: 0;
    right: 35%;

    width: 25%;
    height: 100%;

    background: linear-gradient(
        to right,
        #f7f5ef 0%,
        rgba(247, 245, 239, 0.8) 35%,
        rgba(247, 245, 239, 0) 100%
    );

    z-index: 1;
    pointer-events: none;
}
.hero-highlights {
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px 7%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;

    background: #f7f5ef;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.highlight-number {
    font-size: 13px;
    font-weight: 700;
    color: #c58b25;
    letter-spacing: 2px;
}

.highlight span {
    display: block;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #064f3e;
}

.highlight p {
    margin: 8px 0 0;

    font-size: 15px;
    line-height: 1.6;

    color: #53635f;
}
@media (max-width: 700px) {

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 7%;
    }

}
/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: 120px 7%;
    background: #f7f5ef;
    border-top: none;
}

.about-content {
    max-width: 1300px;
    margin: 0 auto;

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

.about-text {
    max-width: 580px;
}

.about-text .section-label {
    margin-bottom: 24px;

    color: #c58b25;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-text h2 {
    margin: 0 0 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1;
    letter-spacing: -2px;

    color: #064c3b;
}

.about-text h2 span {
    color: #c58b25;
}

.about-text p {
    margin: 0 0 20px;

    max-width: 540px;

    font-size: 18px;
    line-height: 1.7;
    color: #53635f;
}

.about-image {
    width: 100%;
    overflow: hidden;

    border-radius: 0 80px 0 80px;
}

.about-image img {
    display: block;

    width: 100%;
    height: 560px;

    object-fit: cover;
}


/* ========================================
   ABOUT RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .about-section {
        padding: 80px 7%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image img {
        height: 450px;
    }
}


@media (max-width: 600px) {

    .about-section {
        padding: 70px 6%;
    }

    .about-text h2 {
        font-size: 42px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image {
        border-radius: 0 45px 0 45px;
    }

    .about-image img {
        height: 350px;
    }
}
/* ========================================
   HERO CONTENT FIX
======================================== */

.hero-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 620px;
}

.hero > div:first-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative;
    z-index: 10;
}
/* HERO TEXT FIX */
.hero-text {
    max-width: 450px;
}