/* ========================================
   GLOBAL RESET & VARIABLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Exact Oxico Color Palette */
    --primary-green: #1B7940;
    --dark-green: #0F5029;
    --light-green: #E8F5E9;
    --bright-green: #7FFF00;
    --orange: #D4862A;
    --dark-orange: #B8721F;
    --cream: #F5E6C8;
    --light-cream: #FFF8E7;
    --dark-navy: #0A1F3F;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-gray: #666666;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVIGATION SECTION STYLES
   ======================================== */

.navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 45px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.navbar-link:hover {
    color: var(--primary-green);
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    background-image: url('/image/oxigo-hero-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}


.hero-section .container{
 padding-top: 80px;
}
.hero-image-column {
    position: relative;
}


.hero-main-title {
   
    color: var(--white);
    font-size: 48px;
    font-weight:500;
    letter-spacing: 2px;
    line-height: 63px;
    /* margin-bottom: 25px; */
     font-family: "Racing Sans One", sans-serif;


    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: var(--white);
    font-size: 16px;
    font-weight: inherit;
    line-height: 1.6;
    margin-bottom: 35px;
      font-family: "Poppins", sans-serif;
}

.hero-button-group {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 15px 25px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.hero-btn-login a{
    color: white;
    text-decoration: none;
}
.hero-btn-login {
    background: var(--orange);
    color: var(--white);
}
.hero-btn-register a{
   color: white;
    text-decoration: none;
}
.hero-btn-register {
    background: var(--orange);
    color: var(--white);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 134, 42, 0.5);
}

/* ========================================
   ABOUT SECTION STYLES
   ======================================== */

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content-row {
    align-items: center;
}

.about-text-column {
    padding-right: 30px;
}

.about-main-heading {
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
         font-family: "Racing Sans One", sans-serif;

    line-height: 1.2;
}

.about-description-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
      font-family: "Poppins", sans-serif;

}

.about-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img{
    width: 500px;
}
.about-img{
     transition: transform 0.5s ease-in-out;
  transform-origin: center;
}
.about-img:hover{
      transform: rotate(360deg);

}
    /* ========================================
   FEATURES SECTION STYLES
   ======================================== */

.features-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    z-index: 1;
        background-image: url('/image/features_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.features-header-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.features-main-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 500;
     font-family: "Racing Sans One", sans-serif;
    margin-bottom: 15px;
}

.features-subtitle-text {
    color: var(--white);
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-cards-row {
    position: relative;
    z-index: 2;
}

.feature-card-column {
    margin-bottom: 30px;
}

.feature-card-wrapper {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-container {
    width: 200px;
      height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    
}





.feature-card-heading {
    color: var(--orange);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 15px;
     font-family: "Racing Sans One", sans-serif;
}

.feature-card-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
      font-family: "Poppins", sans-serif;

}

/* ========================================
   FOREX & CONTACT SECTION STYLES
   ======================================== */

.forex-contact-section {
    padding: 100px 0;
    background: var(--white);
}

.forex-contact-row {
    gap: 40px;
}

/* Forex Table Styles */
.forex-table-column {
    margin-bottom: 40px;
}

.forex-rates-heading {
    color: var(--orange);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    font-style: italic;
}

.forex-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.forex-rates-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.forex-table-head {
    background: var(--light-gray);
}

.forex-table-header-row {
    border-bottom: 2px solid #ddd;
}

.forex-table-header {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.forex-table-body {
    background: var(--white);
}

.forex-table-data-row {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.forex-table-data-row:hover {
    background: var(--light-cream);
}

.forex-currency-label {
    padding: 15px 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.forex-rate-cell {
    padding: 15px 10px;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.forex-rate-highlight {
    background: var(--light-green);
    font-weight: 700;
    color: var(--primary-green);
}

.currency-flag {
    font-size: 1.3rem;
    margin-right: 5px;
}

/* Contact Form Styles */
.contact-form-column {
    margin-bottom: 40px;
}

.contact-form-container {
    background: var(--primary-green);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
    width: 100%;
}

.form-field-group {
    margin-bottom: 20px;
}

.form-field-label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input-field,
.form-textarea-field {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-field:focus,
.form-textarea-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 134, 42, 0.3);
}

.form-textarea-field {
    resize: vertical;
    min-height: 100px;
}

.form-submit-button {
    background: var(--orange);
    color: var(--white);
    padding: 15px 60px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit-button:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 134, 42, 0.5);
}

/* ========================================
   TESTIMONIALS SECTION STYLES (AUTO SCROLL)
   ======================================== */

.testimonials-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    z-index: 1;
}

.testimonials-header-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-main-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonials-subtitle-text {
    color: var(--white);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
      font-family: "Poppins", sans-serif;

    line-height: 1.8;
}

.testimonials-slider-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider-track {
    display: flex;
    gap: 30px;
    animation: slideTestimonials 20s linear infinite;
    width: fit-content;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider-track:hover {
    animation-play-state: paused;
}

.testimonial-card-item {
    flex: 0 0 350px;
    width: 350px;
}

.testimonial-card-wrapper {
    background: #efd396;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-image-wrapper {
    margin-bottom: 20px;
}

.testimonial-client-image {
    width: 120px;
    height: 120px;
   
    object-fit: cover;
 
}
.testimonials-section .rating{
    color: gold;
}

.testimonial-client-name {
    color: var(--text-dark);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 5px;
         font-family: "Racing Sans One", sans-serif;

}

.testimonial-client-role {
    color: #7CB342;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: start;
  
  
}

.testimonial-client-review {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
     font-family: "Poppins", sans-serif;

}

/* ========================================
   FOOTER SECTION STYLES
   ======================================== */

.footer-section {
    margin-top: 37px;
    position: relative;
    padding: 60px 0 20px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    z-index: 1;
}

.footer-content-row {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.footer-info-column,
.footer-links-column,
.footer-contact-column {
    margin-bottom: 30px;
}

.footer-column-heading {
    color: var(--white);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-column-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
      font-family: "Poppins", sans-serif;

}

.footer-navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
      font-family: "Poppins", sans-serif;

}

.footer-navigation-item {
    margin-bottom: 10px;
      font-family: "Poppins", sans-serif;

}

.footer-navigation-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
      font-family: "Poppins", sans-serif;

}

.footer-navigation-link:hover {
    color: var(--orange);
    padding-left: 8px;
}

.footer-contact-info {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
      font-family: "Poppins", sans-serif;

}

.footer-bottom-section {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: start;
      font-family: "Poppins", sans-serif;

}

.footer-copyright-text {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
      font-family: "Poppins", sans-serif;

}

/* ========================================
   SCROLL TO TOP BUTTON STYLES
   ======================================== */

.scroll-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top-button.show {
    display: flex;
}

.scroll-to-top-button:hover {
    background: var(--dark-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 134, 42, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .about-main-heading {
        font-size: 2.2rem;
    }
    
    .features-main-title,
    .testimonials-main-title {
        font-size: 2.2rem;
    }
    
    .chart-background {
        width: 300px;
        height: 300px;
    }
    
    .about-circle-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .about-inner-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-item {
        width: 100%;
    }
    
    .navbar-link {
        padding: 10px 0;
    }
    /* hero section start */
    .hero-section{
        height: 100vh;

    }
    .hero-section .container{
        padding-top: 70px;
    }
    .hero-section .container  .main-img img{
        height: 300px;
    } 
    
    .hero-main-title {
        margin-top: 50px;
        font-size: 30px;
        text-align: start;
        line-height: 36px;
    }
    
    .hero-description {
        text-align: start;
    }
    
    .hero-button-group {
       position: absolute;
       top: 10%;
       width: 100%;
       justify-content: space-around;
    
    }
    
    .hero-text-column {
        padding-left: 15px;
    }
    
    .hero-visual-container {
        height: 400px;
    }
    
    /* about section start */
    .about-section{
        padding: 0 10px 70px 0;
    }
    .about-img img{
    width: 350px;
}
    .about-main-heading {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .forex-rates-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .testimonial-card-item {
        flex: 0 0 300px;
        width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.6rem;
    }
    
    .hero-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .about-main-heading,
    .forex-rates-heading {
        font-size: 1.5rem;
    }
    
    .features-main-title,
    .testimonials-main-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-submit-button {
        width: 100%;
    }
}