:root {
    --primary-orange: #ff8c42;
    --dark-blue: #2c3e50;
    --text-gray: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

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


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
                url('../img/smartsys.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Font Awesome icon smoothing */
.fas, .far, .fab, .fa {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hero Slider with Images */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 600px;
    position: relative;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.7) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.hero-badge-slide {
    display: inline-block;
    background: rgba(255, 140, 66, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-slide-title-big {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-buttons-slide {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons-slide .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons-slide .btn-outline-light {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons-slide .btn-outline-light:hover {
    background: white;
    color: var(--dark-blue);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.carousel-indicators button.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Company Intro Section */
.company-intro-section {
    padding: 80px 0;
    background: white;
}

.section-label-intro {
    display: inline-block;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title-intro {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 25px;
}

.intro-text-large {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.highlight-item i {
    color: var(--primary-orange);
    font-size: 18px;
}

.intro-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intro-service-card:hover {
    background: white;
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.intro-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #e67a33);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.intro-service-icon i {
    font-size: 28px;
    color: white;
}

.intro-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.intro-service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.3) 0%, transparent 50%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.min-vh-90 {
    min-height: 90vh;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    color: var(--primary-orange);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-features-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.feature-badge i {
    color: var(--primary-orange);
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.floating-card i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.card-1 {
    top: 10%;
    left: 0%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out 1.5s infinite;
}

.card-3 {
    bottom: 20%;
    left: 5%;
    animation: float 6s ease-in-out 3s infinite;
}

.card-4 {
    bottom: 15%;
    right: 0%;
    animation: float 6s ease-in-out 4.5s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-orange), #e67a33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.5);
}

.hero-center-icon i {
    font-size: 50px;
    color: white;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

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

/* Stats Counter Section */
.stats-counter-section {
    padding: 80px 0;
    background: var(--dark-blue);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), #e67a33);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-modern i {
    font-size: 32px;
    color: white;
}

.stat-content-modern {
    flex: 1;
}

.stat-number-modern {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-modern {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), #e67a33);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-modern i {
    font-size: 32px;
    color: var(--primary-orange);
}

.service-badge {
    background: var(--primary-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-card-modern > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features-list li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features-list i {
    color: var(--primary-orange);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* Why Choose Modern */
.why-choose-modern {
    padding: 100px 0;
    background: white;
}

.why-content-modern {
    padding-right: 50px;
}

.why-feature-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-feature-modern:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.why-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #e67a33);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon-modern i {
    font-size: 26px;
    color: white;
}

.why-feature-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.why-feature-modern p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

.why-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.visual-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.visual-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.visual-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

.v-card-1 {
    top: 10%;
    left: 10%;
    animation: float 5s ease-in-out infinite;
}

.v-card-2 {
    top: 40%;
    right: 5%;
    animation: float 5s ease-in-out 1.5s infinite;
}

.v-card-3 {
    bottom: 10%;
    left: 20%;
    animation: float 5s ease-in-out 3s infinite;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 32px;
    color: var(--primary-orange);
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.process-section .section-title-modern,
.process-section .section-description {
    color: white;
}

/* CTA Modern */
.cta-modern {
    padding: 100px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
}

.cta-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-text-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-features-inline {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-features-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
}

.cta-features-inline i {
    color: var(--primary-orange);
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
    margin-bottom: 15px;
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
    color: white;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.cta-contact-info i {
    color: var(--primary-orange);
}
.hero-slider {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 600px;
}

.carousel-item {
    min-height: 600px;
}

.hero-slide-content {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slide-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    background: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--dark-blue);
    color: white;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hero-icon-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hero-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.hero-icon-item i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.hero-icon-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.hero-features-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
}

.hero-features-list i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(44, 62, 80, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.carousel-indicators button {
    background-color: var(--primary-orange);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Company Character Section */
.company-character-section {
    padding: 80px 0;
    background: white;
}

.service-approach-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

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

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 140, 66, 0.2);
    line-height: 1;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.approach-icon i {
    font-size: 36px;
    color: var(--primary-orange);
}

.service-approach-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-approach-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Business Focus Section */
.business-focus-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.business-types {
    margin-top: 30px;
}

.business-type-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.business-type-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-type-item i {
    font-size: 36px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.business-type-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.business-type-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.stats-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.stat-item-large {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 15px;
}

.stat-item-large .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67a33 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-item-large .stat-icon i {
    font-size: 28px;
    color: white;
}

.stat-item-large .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-item-large .stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Simple CTA Section */
.simple-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #34495e 100%);
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-blue);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.navbar-brand:hover {
    color: var(--primary-orange) !important;
    transform: scale(1.05);
}

.navbar-brand img {
    transition: all 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(255, 140, 66, 0.4));
}

.nav-link {
    color: var(--dark-blue) !important;
    font-weight: 600;
    padding: 10px 20px !important;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-orange) !important;
}

.nav-link.active::after {
    width: 80%;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
                 url('../img/smartsys.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/smartsys.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
}

.hero-feature::before {
    content: '●';
    color: var(--primary-orange);
    font-size: 12px;
}

.btn-primary-orange {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-orange:hover {
    background-color: #e67a33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    color: white;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 1.5s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.service-icon i {
    font-size: 60px;
    color: var(--primary-orange);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
}

.service-detail-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    transition: all 1.5s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-more {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.btn-more:hover {
    color: #e67a33;
}

/* Why Choose Us Section */
.why-section {
    padding: 60px 0;
    background: transparent;
}

.why-section-old {
    padding: 60px 0;
    background: transparent;
}

.why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67a33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.why-icon i {
    font-size: 24px;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.why-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--dark-blue);
}

.contact-item-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.contact-item-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0;
    color: white;
}

.cta-section .section-title {
    color: white;
    font-size: 32px;
}

.cta-section a {
    color: white;
    text-decoration: underline;
}

.cta-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 66, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 20px;
    color: var(--primary-orange);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-content p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-form h3 {
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.btn-submit {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e67a33;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #34495e 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Services Details Page */
.services-details {
    padding: 60px 0;
    background: transparent;
}

.service-detail-section {
    margin-bottom: 40px;
}

.service-icon-large {
    display: inline-block;
    margin-bottom: 20px;
}

.service-icon-large i {
    font-size: 48px;
    color: var(--primary-orange);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    font-size: 16px;
}

.service-features i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.service-image {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
}

/* About Page */
.about-section {
    padding: 60px 0;
    background: transparent;
}

.about-image {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
}

.info-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 30px;
    color: var(--primary-orange);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 1.5s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 36px;
    color: var(--primary-orange);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.stat-card {
    background: var(--light-bg);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.team-icon {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.cert-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.cert-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background: transparent;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary-orange);
}

.contact-info-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-info-box a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.social-links-contact {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.social-links-contact h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    color: var(--dark-blue);
    margin-right: 15px;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
    color: var(--dark-blue);
}

.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-placeholder {
    background: white;
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-section {
    padding: 60px 0;
    background: transparent;
}

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-slide-title {
        font-size: 32px;
    }

    .hero-slide-text {
        font-size: 16px;
    }

    .hero-icon-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: space-around;
    }

    .hero-stat-number {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .business-type-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .simple-cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* New Modern Responsive */
    .hero-title-modern {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title-modern {
        font-size: 32px;
    }

    .service-card-modern {
        padding: 30px 20px;
    }

    .why-content-modern {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-visual {
        display: none;
    }

    .process-arrow {
        display: none;
    }

    .cta-title-modern {
        font-size: 28px;
    }

    .btn-cta-modern {
        width: 100%;
        justify-content: center;
    }

    .cta-contact-info {
        justify-content: center;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
    }
}


/* Hover Effects */
.service-card, .service-detail-card, .value-card, .team-card, .cert-card {
    transition: all 0.3s ease;
}

.service-card:hover, .service-detail-card:hover {
    border: 2px solid var(--primary-orange);
}

/* Button Animations */
.btn-primary-orange, .btn-submit {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-orange::before, .btn-submit::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;
    z-index: -1;
}

.btn-primary-orange:hover::before, .btn-submit:hover::before {
    left: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* Enhanced Form Styles */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
    border-color: var(--primary-orange);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Social Links Hover */
.social-links a, .social-link {
    transition: all 0.3s ease;
}

.social-links a:hover, .social-link:hover {
    transform: scale(1.1);
}

/* Navbar Enhancement */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Footer Links Hover Effect */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Print Styles */
@media print {
    .navbar, .footer, .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 500px;
    }

    .hero-slide-title-big {
        font-size: 32px;
    }

    .hero-slide-description {
        font-size: 16px;
    }

    .hero-buttons-slide {
        flex-direction: column;
    }

    .hero-buttons-slide .btn {
        width: 100%;
        text-align: center;
    }

    .section-title-intro {
        font-size: 28px;
    }

    .intro-text-large {
        font-size: 16px;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .intro-services-grid {
        grid-template-columns: 1fr;
    }
}
