/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navigation Bar
   ============================================ */
.custom-navbar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.2);
    padding: 15px 0;
    border-bottom: 3px solid #FF6D00;
}

.navbar-logo {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
    animation: slideInLeft 0.6s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text {
    letter-spacing: 2px;
}

.nav-link {
    transition: all 0.3s ease;
    margin-left: 20px;
    position: relative;
    font-weight: 600;
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6D00 0%, #FF8C42 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FF6D00 !important;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 2px solid #FF6D00;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 109, 0, 0.25);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,133.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease;
}

.hero-section img {
    animation: zoomIn 0.8s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-primary {
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: #FF6D00 !important;
}

/* ============================================
   Service Cards Section
   ============================================ */
#services {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #FF6D00;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: #FF8C42;
}

.service-icon {
    font-size: 3rem;
    color: #FF6D00;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    margin-bottom: 25px;
    color: #666;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-weight: 500;
}

.service-features i {
    margin-right: 10px;
    width: 20px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
#about {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature-box {
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-box i {
    font-size: 2.5rem;
    color: #FF6D00;
}

.feature-box h5 {
    color: #1a1a2e;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Courses Development & Articulate 360 Section
   ============================================ */
#courses {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 0;
    position: relative;
}

#courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6D00 0%, #FF8C42 100%);
}

.articulate-features {
    animation: slideInLeft 0.8s ease;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 109, 0, 0.05);
    transform: translateX(10px);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.feature-item h5 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.articulate-showcase {
    animation: slideInRight 0.8s ease;
}

.articulate-logo-header {
    animation: slideInDown 0.8s ease;
    filter: drop-shadow(0 5px 15px rgba(255, 109, 0, 0.3));
    transition: transform 0.3s ease;
}

.articulate-logo-header:hover {
    transform: scale(1.05);
}

.showcase-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 4px solid #FF6D00;
}

.showcase-card img {
    max-height: 300px;
    object-fit: cover;
}

.list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    color: #555;
    transition: all 0.3s ease;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    padding-left: 10px;
    color: #FF6D00;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Integrations Section
   ============================================ */
#integrations {
    padding: 100px 0;
    position: relative;
}

#integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6D00 0%, #FF8C42 100%);
}

.integration-tabs {
    border-bottom: 3px solid #FF6D00;
    animation: slideInDown 0.8s ease;
}

.nav-tabs {
    border-bottom: none !important;
}

.nav-tabs .nav-link {
    color: #1a1a2e !important;
    background: transparent !important;
    border: none;
    border-bottom: 3px solid transparent;
    margin: 0 10px;
    padding: 15px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:not(.active) {
    color: #1a1a2e !important;
}

.nav-tabs .nav-link:hover {
    color: #FF6D00 !important;
    border-bottom-color: #FF8C42;
}

.nav-tabs .nav-link.active {
    color: #050505 !important;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    border-bottom: 3px solid #FF6D00;
    border-radius: 8px 8px 0 0;
    padding: 12px 20px;
}

.integration-tab-btn {
    cursor: pointer;
    outline: none;
}

/* ============================================
   Tab Heading Styles
   ============================================ */
#crm-tab {
    color: black;
}

#communication-tab {
    color: black;
}

#assessment-tab {
    color: black;
}

#productivity-tab {
    color: black;
}

.integration-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #FF6D00;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.15);
    border-left-color: #FF8C42;
}

.integration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.integration-card h5 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.integration-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.integration-features i {
    color: #FF6D00;
    margin-right: 10px;
    font-size: 0.85rem;
    width: 16px;
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #FF6D00;
    transform: scale(1.05);
}

.pricing-card h5 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    color: #FF6D00;
    font-weight: 800;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #999;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #FF6D00;
    margin-right: 10px;
}

/* ============================================
   Contact Section
   ============================================ */
#contact {
    background: white;
    padding: 80px 0;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #FF6D00;
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 0, 0.25);
}

.form-label {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 0 20px;
}

footer h5 {
    color: #FF6D00;
    font-weight: 700;
    margin-bottom: 15px;
}

footer p {
    color: #aaa;
    margin-bottom: 10px;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FF6D00 !important;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .service-card {
        padding: 30px 20px;
    }

    .btn-md {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary {
    color: #FF6D00 !important;
}

.bg-gradient {
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

/* Section Heading Styles */
#services h2,
#about h2,
#contact h2 {
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    width: 100%;
}

#services h2::after,
#about h2::after,
#contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF8C42 100%);
    border-radius: 2px;
}

/* Smooth Transitions */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Accessibility */
*:focus {
    outline: 2px solid #FF6D00;
}

button:focus,
a:focus {
    outline-offset: 2px;
}
