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

@font-face {
    font-family: 'Chronical Display Light';
    src: url('fonts/Chronical.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Chronical Display Light';
    margin: 0;
    padding: 0;
}

/* Hero Section */
.container {
    background-image: url('imgs/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.company-logo {
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 515px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15)) brightness(1.1);
}

.tagline {
    font-size: 1.7rem;
    font-weight: 600;
    color: #C9A96E;
    letter-spacing: 0.3em;
    opacity: 0.9;
    font-family: 'Chronical Display Light', serif;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.arrow-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* About Section Styles */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    width: 100%;
    z-index: 2;
    background-image: url('imgs/diamonds-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
    background-image: url('imgs/whyus.png')
}

#rjcScrollArrow {
    bottom: 13px;
}

.about-container {
    max-width: 1100px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.about-content {
    text-align: center;
    color: #666;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-heading-container {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading {
    font-family: 'Chronical Display Light', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #C9A96E;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
}

.content-section {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.content-section:first-of-type .content-text > * {
    position: relative;
    z-index: 2;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    text-align: left;
}

.content-text h3 {
    font-family: 'Chronical Display Light', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #C9A96E;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.content-text p {
    font-family: 'Chronical Display Light', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.content-text em {
    color: #C9A96E;
    font-style: italic;
    font-weight: 500;
}

.content-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-info {
    font-family: 'Chronical Display Light', serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 10px;
}

.email-link {
    color: #C9A96E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #B8985E;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-section {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .content-text {
        text-align: center;
    }

    .content-text p {
        text-align: justify;
    }

    .content-image {
        flex: none;
    }

    .content-section:first-of-type .content-text {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) { 
    .logo-image {
        max-width: 450px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 40px 15px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .section-heading-container {
        margin-bottom: 40px;
    }
    
    .content-text p {
        font-size: 1.1rem;
    }
    
    .content-text h3 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .content-image {
        flex: 0 0 250px;
    }

    .content-section:first-of-type .content-text {
        padding: 40px;
    }

    .content-section:first-of-type .content-text::before {
        background: rgba(255, 255, 255, 0.75);
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 350px;
    }
    
    .tagline {
        font-size: 1rem;
    }

    .about-section {
        padding: 30px 15px;
    }

    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-heading-container {
        margin-bottom: 30px;
    }
    
    .content-text p {
        font-size: 0.8rem;
    }
    
    .content-text h3 {
        font-size: 1.4rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }

    .content-image {
        flex: 0 0 200px;
    }

    .content-section {
        margin-bottom: 20px;
    }

    #aboutScrollArrow{
        bottom: 50px;
    }

    .content-section:first-of-type .content-text {
        padding: 30px;
        background-size: cover;
    }

    .content-section:first-of-type .content-text::before {
        background: rgba(255, 255, 255, 0.8);
    }
}

/* RJC Section Styles */
.rjc-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 50%, #f5f5f5 100%);
    padding: 30px 20px;
    position: relative;
    width: 100%;
}

.rjc-section::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 50%;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rjc-container {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.rjc-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.rjc-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.rjc-heading {
    font-family: 'Chronical Display Light', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #C9A96E;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rjc-main-image {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.rjc-main-image img {
    max-width: 400px;
    width: 100%;
    height: 200px;
    border-radius: 15px;
}

.rjc-description {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 15px;
    position: relative;
}

.rjc-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 15px;
    z-index: 1;
}

.rjc-description p {
    font-family: 'Chronical Display Light', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.rjc-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.rjc-value-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rjc-value-image {
    margin-bottom: 20px;
}

.rjc-value-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.rjc-value-caption {
    font-family: 'Chronical Display Light', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C9A96E;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.rjc-value-caption a {
    color: #C9A96E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rjc-value-caption a:hover {
    color: #B8985E;
    text-decoration: underline;
}

/* Responsive Design for RJC Section */
@media (max-width: 1024px) {
    .rjc-value-image img{
        width: 5rem;
        height: 5rem;
        object-fit: cover;
        border-radius: 10px;
    }

    .rjc-values {
        grid-template-columns: repeat(2, 2fr);
        gap: 22px;
    }
}

@media (max-width : 2560px) {
    /* .rjc-value-image img{
        width: 5rem;
        height: 5rem;
        object-fit: cover;
        border-radius: 10px;
    } */
    .rjc-values {
        /* grid-template-columns: repeat(2, 2fr); */
        gap: 22px;
    }
}
 
@media(min-width : 1400px) and (max-width : 1900px){
    #rjcScrollArrow{
        display: none;
    }
} 

@media (min-width: 1920px) and (max-width: 2560px) {
    .scroll-arrow{
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.5s ease-out;
    }
    /* First Scroll - Hero Section */
    .container {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-image {
        max-width: 1300px;
        width: 100%;
    }
    
    .tagline {
        font-size: 3.5rem;
        letter-spacing: 0.4em;
        margin-top: 70px;
    }

    /* Second Scroll - About Section */
    .about-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
    }
    
    .about-container {
        max-width: 1800px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .section-heading {
        font-size: 5rem;
        margin-bottom: 80px;
        text-align: center;
    }
    
    .content-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 80px;
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .content-text {
        text-align: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .content-text p {
        font-size: 2.5rem;
        line-height: 1.8;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Third Scroll - RJC Section */
    .rjc-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
    }
    
    .rjc-container {
        max-width: 1800px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .rjc-heading {
        font-size: 5rem;
        margin-bottom: 80px;
        text-align: center;
    }
    
    .rjc-main-image {
        margin-bottom: 70px;
        display: flex;
        justify-content: center;
    }
    
    .rjc-main-image img {
        max-width: 700px;
        width: 100%;
        height: auto;
    }
    
    .rjc-description {
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }
    
    .rjc-description p {
        font-size: 2.5rem;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 40px;
    }

    #rjcScrollArrow{
        display: none;
    }

    /* Fourth Scroll - RJC Values + Footer */
    .rjc-values {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        margin: 80px 0;
        max-width: 1800px;
        width: 100%;
        justify-items: center;
    }
    
    .rjc-value-item {
        text-align: center;
        padding: 40px 30px;
        background: rgba(255,255,255,0.4);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255,255,255,0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        max-width: 400px;
    }
    
    .rjc-value-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .rjc-value-image {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }
    
    .rjc-value-image img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .rjc-value-caption {
        font-size: 1.6rem;
        line-height: 1.6;
        font-weight: 600;
    }
    
    .rjc-value-caption a {
        color: #C9A96E;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .rjc-value-caption a:hover {
        color: #B8985E;
        text-decoration: underline;
    }

    /* Footer adjustments for fourth scroll */
    .footer-section {
        padding: 60px 40px 40px 40px;
        margin-top: 0;
    }
    
    .footer-container {
        max-width: 1800px;
    }
    
    .footer-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        flex: 0 0 400px;
    }
    
    .footer-logo-image {
        max-width: 300px;
    }
    
    .footer-contact {
        flex: 1;
        display: flex;
        justify-content: space-around;
        gap: 60px;
    }
    
    .footer-contact-item h4 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .footer-contact-item p {
        font-size: 1.4rem;
    }
    
    .footer-copyright {
        font-size: 1.2rem;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .rjc-section {
        padding: 20px 0px;
    }

    .rjc-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .rjc-main-image img {
        max-width: 500px;
    }

    .rjc-description {
        padding: 30px;
        background-size: contain;
    }


    .rjc-description p {
        font-size: 1.1rem;
        text-align: left;
    }

    .rjc-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rjc-value-image img {
        width: 100px;
        height: 100px;
    }

    .rjc-value-caption {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rjc-heading {
        font-size: 1.5rem;
    }

    .rjc-main-image img {
        max-width: 300px;
    }

    .rjc-description {
        padding: 2px;
        background-size: cover;
    }

    .rjc-description p {
        font-size: 1rem;
    }

    .rjc-values {
        gap: 10px;
    }

    .rjc-value-item {
        padding: 0px 5px;
    }

    .rjc-value-image img {
        width: 80px;
        height: 80px;
    }

    .rjc-value-caption {
        font-size: 0.8rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg,#304c5a 100%);
    padding: 10px 5px 10px 5px;
    position: relative;
    width: 100%;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.footer-logo {
    flex: 0 0 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-image {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: brightness(0.9) drop-shadow(0 2px 8px rgba(201,169,110,0.3));
    transition: filter 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(201,169,110,0.4));
}

.footer-contact {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
}

.footer-contact-item {
    text-align: center;
    flex: 1;
}

.footer-contact-item h4 {
    font-family: 'Chronical Display Light', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #C9A96E;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-contact-item p {
    font-family: 'Chronical Display Light', serif;
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.footer-email {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.3) 20%, rgba(201,169,110,0.6) 50%, rgba(201,169,110,0.3) 80%, transparent 100%);
    margin-bottom: 25px;
}

.footer-copyright {
    font-family: 'Chronical Display Light', serif;
    font-size: 0.9rem;
    color: #999999;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0 20px;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-logo {
        flex: none;
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
        max-width: 600px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 15px 25px 15px;
    }

    .footer-logo-image {
        max-width: 200px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .footer-contact-item {
        max-width: 200px;
    }

    .footer-contact-item h4 {
        font-size: 1rem;
    }

    .footer-contact-item p {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    #rjcScrollArrow{
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 20px 10px 10px 5px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-logo-image {
        max-width: 180px;
    }

    .footer-contact {
        gap: 20px;
    }

    .footer-contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .footer-contact-item p {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.5rem;
        padding: 0 10px;
    }
}