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

:root {
    --primary-color: #d62828;
    --light-color: #f4f4f6;
    --dark-color: #111;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #333;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NavBar */
.navbar {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .main-menu ul {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

.lang-toggle {
    background: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: transform var(--transition-speed) ease;
}
.lang-toggle:hover {
    transform: scale(1.05);
}

/* Hero & Heero */
.hero, .heero {
    margin: 0 10px 50px 10px;
}

.hero .container {
    background-image: url('../images/background.JPG'); 
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/background.JPG');
}

.heero .container {
    background-size: cover;
    background-position: center bottom;
    min-height: 300px;       
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.hero .hero-content, .heero .hero-content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;     
    text-align: center;   
}

.hero .hero-text, .heero .hero-text {
    margin-bottom: 20px;
    text-align: center;
}

/* Video */
.video {
    padding: 60px 0;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-preview {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
  border-radius: 15px;
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px; 
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-speed);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* History Slider */
.history-slider {
    padding: 80px 0;
}

.slider-wrapper {
    overflow: hidden; 
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    min-width: 100%; 
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.range-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    padding: 0;
}

.history-range {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 15px;
    background: #e0e0e0;
    outline: none;
    margin: 0;
}

.history-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px; 
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed);
}

.history-range::-webkit-slider-thumb:hover {
    transform: scale(1.2); 
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.5);
}

/* Timeline Labels*/
.range-labels {
    display: flex;
    justify-content: space-between; 
    margin-top: 20px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 0 12.5px; 
}

.range-labels span {
    width: 0;
    display: flex;
    justify-content: center;
    white-space: nowrap; 
}
/* Process Timeline Styling */
.process-timeline {
    padding: 80px 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

.step-content {
    flex: 1;
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 0;
}

.step-content h3, .step-content p {
    position: relative;
    z-index: 1;
}


/* Cards & Grids */
.testimonials { 
    padding: 60px 0; 
}
.ttestimonials { 
    padding: 60px 0; 
}

.testimonials-grid {
    color: #000 !important; 
}

.pricing-footer {
    margin-top: 3em; 
}

.testimonials-grid, .pricing-grid {
    display: grid;
    gap: 30px;
}

.testimonials-grid { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
}

.pricing-grid { 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px; 
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing ul li { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
}

.pricing ul li i {
    margin-right: 15px; 
    font-size: 8px; 
    color: var(--primary-color); 
}

/* Footer & Foter */
.footer, .foter {
    padding: 60px 0;
    color: #ccc;
}
.foter { 
    margin-top: 100px; 
}

.footer-grid, .foter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer h4, .foter h4 { 
    color: #fff;
    margin-bottom: 20px; 
    font-size: 1.2rem; 
}
.footer ul li, .foter ul li { 
    line-height: 2; 
}
.footer a, .foter a { 
    color: #ccc; 
    transition: color var(--transition-speed); 
}

.footer a:hover, .foter a:hover { 
    color: var(--primary-color); 
}

/* Social-icons */
.social-icons { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
}

.social-icons i { 
    font-size: 24px; 
    transition: transform 0.3s;
}

.social-icons i:hover { 
    transform: scale(1.2); 
    color: var(--primary-color); 
}

/* Utilities */
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.container-sm { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.logo { 
    width: 140px; 
    height: auto; 
}

.llogo { 
    width: 100%; 
    max-height: 150px; 
    object-fit: contain;
}

.btn {
   display: inline-block;
   padding: 12px 25px;
   background: var(--light-color); 
   color: #333;
   font-weight: 600;
   border-radius: 30px;
   transition: all var(--transition-speed);
}
.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.btn-primary { 
    background: var(--primary-color); 
    color: #fff; 
}

.btn-dark { 
    background: var(--dark-color); 
    color: #fff; 
}

.text-xxl { 
    font-size: 3.5rem; 
    line-height: 1.2;
     font-weight: 700; 
     margin: 20px 0; 
}

.text-xl { 
    font-size: 2.2rem; 
    font-weight: 600;
     margin: 20px 0; 
}

.text-lg { 
    font-size: 1.5rem; 
    font-weight: 600; 
    margin: 15px 0; 
}

.text-md { 
    font-size: 1.2rem; 
    margin: 15px 0; 
}

.text-sm { 
    font-size: 0.9rem;
    margin: 10px 0; 
}

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

.bg-primary { 
    background: var(--primary-color); 
    color: #fff; 
}

.bg-light { 
    background: var(--light-color); 
    color: #333; 
}

.bg-dark { 
    background: var(--dark-color);
     color: #fff; 
}

.bg-black { 
    background: #000; 
    color: #fff; 
}

/* Mobile Menu */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line { 
    width: 30px; 
    height: 3px; 
    background: #333; 
    margin: 6px 0; 
    transition: 0.3s; 
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    z-index: 1000;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding-top: 80px;
}

.mobile-menu.active {
     right: 0;
}

.mobile-menu ul li {
     margin: 20px 30px; 
     border-bottom: 1px solid #eee; 
     padding-bottom: 10px;
}

/* --- Balance Sheets Layout --- */
.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.balance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-color);
    cursor: pointer;
    border: 2px solid transparent;
}

.balance-card:hover {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.balance-card i.fa-file-pdf {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform var(--transition-speed);
}

.balance-card:hover i.fa-file-pdf {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 960px) {
  .text-xxl { font-size: 2.8rem; }
  .text-xl { font-size: 1.8rem; }
}

@media(max-width: 768px) {
    .navbar .main-menu {
         display: none; 
        }
    .navbar .hamburger-button {
         display: block; 
        }
    
    .hero .container, .heero .container { 
        min-height: 60vh; 
        background-size: cover; 
        padding: 40px 0;
    }

    .process-step, .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 60px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
    
    .testimonials-grid, .pricing-grid, .footer-grid, .foter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Centers stack footer */
    .footer-grid, .foter-grid { 
        text-align: center; 
        justify-content: center; 
    }
    
    .hero .container, .heero .container {
         min-height: 60vh; background-size: cover; padding: 40px 0;
    }
    
    .footer-grid, .foter-grid {
         text-align: center; justify-content: center; 
    }
    .social-icons {
          justify-content: center;
    }
    
    .range-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    padding: 0;
}

.history-range {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 15px;
    background: #e0e0e0;
    outline: none;
    margin: 0;
}

.history-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px; 
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed);
}

.history-range::-webkit-slider-thumb:hover {
    transform: scale(1.2); 
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.5);
}

/* Timeline Labels */
.range-labels {
    display: flex;
    justify-content: space-between; 
    margin-top: 20px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 0 12.5px; 
}

.range-labels span {
    width: 0;
    display: flex;
    justify-content: center;
    white-space: nowrap; 
}
}

@media (max-width: 500px) {
   .text-xxl { 
     font-size: 2.2rem; 
    }
}


.social-icons { 
    justify-content: center; 
}
