/* ========================================
   Penfran - Professional Company Website
   Custom CSS Styles
======================================== */

:root {
    --primary-color: #0B1F3A;
    --primary-light: #1a3a5c;
    --primary-dark: #061224;
    --accent-color: #d4a03c;
    --accent-light: #e8c16d;
    --text-color: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar but allow scrolling */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 10px 0;
    font-size: 13px;
    color: var(--white);
}

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left i {
    color: var(--accent-color);
    margin-right: 5px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: var(--accent-color);
}

/* Logo Bar */
.logo-bar {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    padding: 10px 25px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--primary-light);
    border-radius: 12px;
    opacity: 0.5;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.2);
    border-color: var(--primary-light);
}

.logo-img {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    margin-top: 5px;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 13px;
    color: var(--accent-color);
    font-style: italic;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

/* Main Navbar */
.main-navbar {
    background: var(--primary-color);
    padding: 0;
}

.main-navbar .navbar-nav {
    width: 100%;
}

.main-navbar .nav-link {
    color: var(--white) !important;
    padding: 18px 20px !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
}

.main-navbar .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 220px;
}

.main-navbar .dropdown-item {
    padding: 10px 20px 10px 35px;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.main-navbar .dropdown-item::before {
    content: '\F270';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.main-navbar .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 40px;
}

.main-navbar .dropdown-item:hover::before {
    color: var(--accent-color);
    left: 15px;
}

.main-navbar .dropdown-item:last-child {
    border-bottom: none;
}

.main-navbar .dropdown-item.dropdown-toggle::before {
    content: '\F4D5';
}

.main-navbar .dropdown-item.dropdown-toggle::after {
    display: none;
}

/* Mega Menu */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown > .mega-menu {
    width: 100%;
    max-width: none;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    padding: 20px 0;
    border-radius: 0;
    margin-top: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.mega-menu .container {
    max-width: 1140px;
}

.mega-menu .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.mega-menu [class*="col-"] {
    padding: 5px 15px;
}

.mega-menu .dropdown-item {
    border-bottom: none !important;
    padding: 10px 15px !important;
    display: block !important;
    white-space: nowrap;
    font-size: 14px;
    color: var(--text-color);
    border-radius: 5px;
    margin-bottom: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover,
.mega-menu .dropdown-item:focus {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

@media (max-width: 991.98px) {
    .mega-dropdown > .mega-menu {
        position: relative !important;
        padding: 10px 15px;
        box-shadow: none;
    }
    
    .mega-menu .container {
        padding: 0;
    }
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-toggle::after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    border: none;
    color: var(--accent-color);
}

.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-menu .dropdown-item {
    padding: 8px 15px 8px 35px;
    font-size: 13px;
    border-bottom: none;
    border-radius: 0;
    position: relative;
}

.dropdown-submenu .dropdown-menu .dropdown-item::before {
    content: '\F26D';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.dropdown-submenu .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding-left: 40px;
}

.dropdown-submenu .dropdown-menu .dropdown-item:hover::before {
    color: var(--white);
    content: '\F272';
}

/* Systems submenu with many items */
.systems-submenu {
    max-height: 400px;
    overflow-y: auto;
}

.systems-submenu::-webkit-scrollbar {
    width: 6px;
}

.systems-submenu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.systems-submenu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.systems-submenu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Mega Menu Submenu */
.mega-menu .dropdown-submenu {
    position: relative;
}

.mega-menu .dropdown-submenu > .dropdown-toggle::after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    float: right;
    margin-left: 10px;
    font-size: 10px;
}

.mega-menu .dropdown-submenu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 10px 0;
}

.mega-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.mega-menu .dropdown-submenu .dropdown-menu .dropdown-item {
    padding: 8px 20px !important;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .mega-menu .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 0;
        box-shadow: none;
        padding-left: 15px;
        background: rgba(0,0,0,0.02);
    }
}

/* Buttons */
.btn-gradient {
    background: var(--gradient);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.4);
    color: var(--white);
}

.btn-gradient:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.3);
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.35);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient);
    min-height: 80vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(26, 58, 92, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 100px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 160, 60, 0.2);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    z-index: 2;
}

.hero-slider .carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-slider .carousel-inner {
    border-radius: 20px;
}

.hero-slider .carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.hero-slider .carousel-control-prev {
    left: 15px;
}

.hero-slider .carousel-control-next {
    right: 15px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .carousel-indicators {
    bottom: 15px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    margin: 0 5px;
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .hero-slider .carousel-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item img {
        height: 250px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape svg {
    width: 100%;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(11, 31, 58, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-icon.has-logo {
    background: transparent;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(212, 160, 60, 0.3);
}

.service-icon.has-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Card Large */
.service-card-large {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-large .service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-image img {
    transform: scale(1.1);
}

.service-card-large .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-large .service-overlay i {
    font-size: 48px;
    color: var(--white);
}

.service-card-large .service-content {
    padding: 25px;
}

.service-card-large .service-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card-large .service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-sub-list {
    margin-bottom: 20px;
}

.service-sub-list h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-sub-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sub-list ul li {
    padding: 5px 0;
}

.service-sub-list ul li a {
    color: var(--text-light);
    font-size: 13px;
}

.service-sub-list ul li a:hover {
    color: var(--primary-color);
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 20px;
}

.project-category {
    display: inline-block;
    background: rgba(11, 31, 58, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
}

.project-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-content h4 a {
    color: var(--primary-color);
}

.project-content h4 a:hover {
    color: var(--accent-color);
}

.project-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Project Filter */
.project-filter {
    text-align: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Why Choose Us */
.bg-primary-gradient {
    background: var(--gradient);
}

.why-choose-section .section-header h2 {
    color: var(--white);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Statistics Section */
.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-content {
    font-size: 15px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* About Section */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    max-width: 80%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 50px;
    background: var(--gradient);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 13px;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--success);
    font-size: 18px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-stats .label {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
}

.cta-content {
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(212, 160, 60, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(212, 160, 60, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light), var(--accent-color));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.6;
}

.footer-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
    border-radius: 10px;
}

.footer-logo:hover::after {
    left: 100%;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.footer-widget p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact span {
    opacity: 0.8;
}

/* Partners Banner */
.footer-partners {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark), transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark), transparent);
}

.partners-track {
    display: flex;
    gap: 50px;
    animation: scrollPartners 25s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 
                0 0 10px rgba(212, 160, 60, 0.3);
    overflow: hidden;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(212, 160, 60, 0.5);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.footer-newsletter h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 30px;
    border-radius: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: var(--gradient);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-list li a:hover,
.service-list li.active a {
    background: var(--primary-color);
    color: var(--white);
}

.contact-widget {
    background: var(--gradient);
    color: var(--white);
}

.contact-widget h4 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-widget p {
    opacity: 0.9;
}

.contact-widget .contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.contact-widget .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-widget .contact-info i {
    color: var(--accent-color);
}

/* Contact Page */
.contact-info {
    padding-right: 30px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-info-item .content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-info-item .content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 31, 58, 0.3);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(11, 31, 58, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    color: var(--white);
    font-size: 18px;
}

.team-social a:hover {
    color: var(--accent-color);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-content span {
    font-size: 14px;
    color: var(--text-light);
}

/* MVV Cards (Mission, Vision, Values) */
.mvv-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mvv-icon i {
    font-size: 32px;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.values-list li i {
    color: var(--success);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 30px;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content .year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Feature Box */
.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-list li i {
    color: var(--success);
}

/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 32px;
    color: var(--white);
}

/* Platform Card - Social Media */
.platform-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.15);
}

.platform-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.platform-card h6 {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.15);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(11, 31, 58, 0.3);
}

/* Project Detail */
.project-detail-image img {
    border-radius: 15px;
}

.project-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.content-body p {
    margin-bottom: 15px;
}

.project-info-widget {
    background: var(--light-bg);
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.project-info-list li:last-child {
    border-bottom: none;
}

.project-info-list .label {
    font-weight: 600;
    color: var(--primary-color);
}

.project-info-list .value {
    color: var(--text-light);
}

.project-info-list .value .badge {
    margin: 2px;
    font-weight: 500;
}

.related-projects {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-project-item a {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-project-item a:hover {
    background: var(--primary-color);
}

.related-project-item a:hover .related-content h6,
.related-project-item a:hover .related-content span {
    color: var(--white);
}

.related-project-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

.related-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px;
    color: var(--primary-color);
}

.related-content span {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    
    .logo-bar {
        padding: 15px 0;
    }
    
    .header-info {
        display: none;
    }
    
    .main-navbar .navbar-toggler {
        border: none;
        padding: 10px;
    }
    
    .main-navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .hero-content {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
        right: auto;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-newsletter .row {
        text-align: center;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    z-index: 99999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cookie-text i {
    font-size: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cookie-buttons .btn-link {
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-buttons .btn-link:hover {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9997;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    font-size: 24px;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Floating Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    font-family: inherit;
}

.whatsapp-float {
    bottom: 30px;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(11, 31, 58, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.5);
}

.chat-button i {
    font-size: 26px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 370px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-box.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.chat-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-status i {
    font-size: 8px;
    color: #4caf50;
    margin-right: 4px;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chat-welcome {
    text-align: center;
    padding: 20px;
}

.welcome-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.chat-welcome h6 {
    color: var(--primary);
    margin-bottom: 10px;
}

.chat-welcome p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
}

.chat-message.visitor {
    justify-content: flex-end;
}

.chat-message.admin {
    justify-content: flex-start;
}

.chat-message .message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message.visitor .message-bubble {
    background: var(--gradient);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.chat-message.admin .message-bubble {
    background: var(--white);
    color: var(--text);
    border: 1px solid #e0e0e0;
    border-bottom-left-radius: 5px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.chat-input-area {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
}

.chat-user-info {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-user-info input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
}

.chat-user-info input:focus {
    border-color: var(--primary);
}

.chat-input-row {
    display: flex;
    gap: 10px;
}

.chat-input-row input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.chat-input-row input:focus {
    border-color: var(--primary);
}

.chat-input-row button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-row button:hover {
    transform: scale(1.05);
}

.chat-input-row button i {
    font-size: 18px;
}

.chat-typing {
    padding: 10px 15px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 576px) {
    .chat-widget {
        bottom: 80px;
        right: 15px;
    }
    
    .chat-box {
        width: calc(100vw - 30px);
        height: calc(100vh - 180px);
        right: -15px;
        bottom: 70px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-button i {
        font-size: 22px;
    }
}

/* Dark Blue Frame for Images */
.dark-blue-frame {
    border: 3px solid #0B1F3A;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.3);
    transition: all 0.3s ease;
}

.dark-blue-frame:hover {
    box-shadow: 0 6px 20px rgba(11, 31, 58, 0.4);
    transform: translateY(-3px);
}

