:root {
    --primary: #0045be;
    --primary-light: #007ee9;
    --secondary: #ff6e00;
    --secondary-light: #ffaf00;
    --dark: #2E2E2E;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #7D7D7D;
    --shadow: rgba(0, 69, 190, 0.1);
    --shadow-hover: rgba(0, 69, 190, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text .orange-text {
    color: var(--secondary);
    font-weight: 800;
}

.logo-text .blue-text {
    color: var(--primary);
    font-weight: 800;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s;
    border-radius: 2px;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-buttons .btn {
    margin-left: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 69, 190, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 69, 190, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-outline.ayuda{
    background-color: transparent;
    color: var(--secondary-light);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 69, 190, 0.3);
    padding: 10px 20px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    z-index: 1002;
}

.mobile-menu:hover {
    transform: scale(1.1);
    background-color: rgba(0, 69, 190, 0.1);
}

.mobile-menu:active {
    transform: scale(0.95);
}

/* =====================================================
   RESPONSIVE HEADER STYLES - FIXED VERSION
   ===================================================== */

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.mobile-nav.active {
    right: 0;
    pointer-events: auto;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 100px 0 0 0;
    list-style: none;
    margin: 0;
    flex: 1;
}

.mobile-nav ul li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--primary);
    background: rgba(0, 69, 190, 0.05);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.mobile-nav .header-buttons {
    padding: 30px;
    border-top: 2px solid #f0f0f0;
    background: rgba(0, 69, 190, 0.02);
}

.mobile-nav .header-buttons .btn {
    width: 100%;
    margin: 8px 0;
    padding: 15px;
    text-align: center;
    display: block;
    font-weight: 600;
}

.nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    pointer-events: auto;
    user-select: none;
}

.nav-close:hover {
    color: var(--primary);
    background: rgba(0, 69, 190, 0.1);
    transform: rotate(90deg);
}

.nav-close:active {
    transform: rotate(90deg) scale(0.95);
    background: rgba(0, 69, 190, 0.2);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    nav ul li {
        margin: 0 10px;
    }
    
    .header-buttons .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 15px 4%;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    nav {
        display: none;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    header {
        padding: 12px 4%;
    }
    
    .logo img {
        height: 35px;
        margin-right: 8px;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
}

/* Header scroll behavior enhancement */
@media (max-width: 768px) {
    header.scrolled {
        padding: 10px 5%;
    }
    
    header.scrolled .logo img {
        height: 35px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    /* Fallback en caso de que el video no cargue */
    background: url('https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849825_1280.jpg') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 69, 190, 0.7), rgba(0, 126, 233, 0.6));
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--light));
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 60px rgba(0, 69, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent, rgba(0, 126, 233, 0.03)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border-radius: 30px;
    z-index: -1;
    animation: tech-pattern 10s linear infinite;
}

@keyframes tech-pattern {
    0% { background-position: 0% 0%, 0 0, 0 0; }
    100% { background-position: 100% 100%, 20px 20px, -20px -20px; }
}

.hero-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary-light), var(--secondary-light));
    border-radius: 32px;
    z-index: -2;
    background-size: 400% 400%;
    animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: none;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 50%;
    max-width: 700px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 69, 190, 0.2));
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 17px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Certification Section */
.certification {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.certification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.siat-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 2px solid rgba(0, 69, 190, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.siat-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 126, 233, 0.1), transparent);
    transition: left 0.6s;
}

.siat-logo:hover::before {
    left: 100%;
}

.siat-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-hover);
    border-color: var(--primary);
}

.siat-logo img {
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.siat-logo:hover img {
    transform: scale(1.1);
}

.siat-logo p {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.05));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.4s;
    border: 2px solid rgba(0, 69, 190, 0.1);
    position: relative;
    overflow: hidden;
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 110, 0, 0.1), transparent);
    transition: left 0.8s;
}

.certification-badge:hover::before {
    left: 100%;
}

.certification-badge::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--secondary), transparent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.certification-badge:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-hover);
    border-color: var(--primary);
}

.certification-badge img {
    height: 100px;
    margin-bottom: 20px;
}

.certification-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.detail-card {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    width: 200px;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary);
}

.detail-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.detail-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--light), rgba(255, 110, 0, 0.02));
}

.section-title.fade-in.centrar{
    /*centrar toto*/
    text-align: center;
    margin: 0 auto 50px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--secondary-light));
    transition: width 0.4s;
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 110, 0, 0.03), rgba(255, 175, 0, 0.03));
    transition: width 0.4s;
    z-index: -1;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px var(--shadow-hover);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.feature-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.feature-card a:hover::after {
    width: 100%;
}

/* Demo Section */
.demo {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: move-pattern 20s linear infinite;
}

@keyframes move-pattern {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.demo h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.demo p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.demo-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.step {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    width: 250px;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step:hover {
    transform: translateY(-15px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--white), var(--light));
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-table {
    padding: 80px 5%;
    background-color: var(--white);
    text-align: center;
}

.pricing-table .subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
}

.pricing-grid {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.grid-header, .grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 600;
    border-radius: 15px 15px 0 0;
}

.grid-item {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.grid-row {
    background-color: var(--white);
    transition: all 0.3s;
}

.grid-row:nth-child(even) {
    background-color: var(--light);
}

.pricing-table .grid-row.highlight {
    background-color: rgba(255, 107, 53, 0.1) !important;
    position: relative;
    z-index: 2;
    /* Resetear los estilos de texto gradient */
    -webkit-text-fill-color: initial;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.pricing-table .grid-row.highlight::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: -1px;
    right: 10px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 0 0 8px 8px;
    z-index: 10;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.grid-row:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.special-prices {
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    text-align: left;
    border-radius: 0 0 15px 15px;
}

.special-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.special-item:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-plan {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 25px;
    background-color: var(--light);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-plan i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.custom-plan p {
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-item {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .pricing-table .grid-row.highlight::after {
        right: 5px;
        top: -1px;
        font-size: 0.6rem;
        font-weight: 600;
        padding: 3px 8px;
        z-index: 10;
        display: block;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .special-item {
        flex-direction: column;
        text-align: center;
    }
    
    .special-item span:first-child {
        margin-bottom: 5px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--light), rgba(0, 69, 190, 0.02));
    text-align: center;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
    min-height: 300px;
}

.testimonial {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    margin: 0 20px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    width: calc(100% - 40px);
    border: 2px solid transparent;
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
    position: relative;
    border-color: var(--primary);
}

.testimonial img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid var(--primary);
    transition: all 0.3s;
}

.testimonial:hover img {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.6;
}

.testimonial h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.testimonial .position {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: var(--gray);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.4s;
}

.dot.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 110, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-white {
    background: linear-gradient(135deg, var(--white), var(--light));
    color: var(--primary);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
}

.btn-white:hover {
    background: linear-gradient(135deg, var(--light), var(--white));
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
    color: var(--secondary);
}

.btn-transparent {
    background-color: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    color: var(--white);
    padding: 60px 5% 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-column .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-column .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 69, 190, 0.2), rgba(0, 126, 233, 0.2));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.footer-column .social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: translateY(-5px) scale(1.1);
    border-color: var(--white);
}

.newsletter input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter .btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 1rem;
}

.newsletter .btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 69, 190, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn:active {
    transform: scale(0.98);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* About Page Styles - Inspired by Orange Pay */

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 5%;
}

/* Breadcrumb */
.breadcrumb {
    padding: 120px 0 20px;
    background: linear-gradient(135deg, var(--light), rgba(0, 126, 233, 0.02));
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s; 
}

.breadcrumb-nav a:hover {
    color: var(--secondary);
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: var(--gray);
}

.breadcrumb-nav .current {
    color: var(--dark);
    font-weight: 600;
}

/* About Hero */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 69, 190, 0.7);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px;
}

.about-hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 1.3em;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

/* What is Orange Bill Section */
.what-is-orangebill {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light), rgba(255, 110, 0, 0.02));
}

.what-is-orangebill .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.what-is-orangebill .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.orangebill-description {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.description-content {
    flex: 2;
    min-width: 300px;
}

.description-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
}

.description-logo {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.description-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 69, 190, 0.2));
    transition: transform 0.3s;
}

.description-logo img:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 126, 233, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Sections */
.benefits-clients, .benefits-users {
    padding: 80px 0;
}

.benefits-clients {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
}

.benefits-users {
    background: linear-gradient(135deg, var(--light), rgba(255, 110, 0, 0.02));
}

.benefits-clients .section-title,
.benefits-users .section-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark);
    line-height: 1.2;
}

.highlight {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 110, 0, 0.03), rgba(255, 175, 0, 0.03));
    transition: width 0.4s;
    z-index: -1;
}

.benefit-item:hover::after {
    width: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-hover);
    border-color: var(--primary);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-item p {
    color: var(--dark);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* User Benefits Grid */
.user-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.user-benefit-item {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.user-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 110, 0, 0.1), transparent);
    transition: left 0.8s;
}

.user-benefit-item:hover::before {
    left: 100%;
}

.user-benefit-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-hover);
    border-color: var(--primary);
}

.user-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.user-benefit-item:hover .user-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.user-benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.user-benefit-item p {
    color: var(--dark);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: linear-gradient(135deg, var(--white), rgba(0, 126, 233, 0.02));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 126, 233, 0.1), transparent);
    transition: left 0.6s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-hover);
    border-color: var(--primary);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Active navigation link */
nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    width: 100%;
}

/* Responsive for About Page */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .orangebill-description {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .description-content {
        min-width: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Features section responsive for tablets */
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 30px 25px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero .hero-video-bg {
        width: 120%;
        height: 120%;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .what-is-orangebill .section-title,
    .benefits-clients .section-title,
    .benefits-users .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .user-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Features section responsive for mobile */
    .features-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .what-is-orangebill .section-title,
    .benefits-clients .section-title,
    .benefits-users .section-title {
        font-size: 1.5rem;
    }

    .description-content p {
        font-size: 1rem;
        text-align: left;
    }

    .description-logo img {
        max-width: 150px;
    }

    /* Features section responsive for small mobile */
    .features {
        padding: 60px 4%;
    }

    .features-container {
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

/* About Hero Cover Section */
.about-hero-cover {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 0;
}

.hero-cover-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 69, 190, 0.8), rgba(0, 126, 233, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-overlay .hero-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 110, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Logo in Description */
.company-logo {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(0, 126, 233, 0.05));
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 69, 190, 0.1);
    border: 2px solid rgba(0, 69, 190, 0.1);
    transition: all 0.4s;
    text-align: center;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 69, 190, 0.2);
    border-color: var(--primary);
}

.company-logo img {
    max-height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.company-logo:hover img {
    transform: scale(1.05);
}

.company-name {
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
    font-weight: 500;
}

.company-name strong {
    color: var(--primary);
    font-weight: 700;
}

/* Enhanced responsive styles for new sections */
@media (max-width: 992px) {
    .hero-overlay h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-overlay p {
        font-size: 1.1rem;
    }
    
    .about-hero-cover {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .hero-overlay .hero-content {
        padding: 30px 20px;
    }
    
    .about-hero-cover {
        height: 40vh;
        min-height: 300px;
    }
    
    .company-logo {
        margin-top: 20px;
        padding: 20px;
    }
    
    .company-logo img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay .hero-divider {
        width: 80px;
    }
    
    .hero-overlay p {
        font-size: 0.9rem;
    }
}
