/* ================================
   Color Variables
   ================================ */
:root {
    --color-primary: #EC6A36;
    --color-secondary: #36B8EC;
    --color-accent: #5DEC36;
    --dark-bg: #f8f9fa;
    --darker-bg: #ffffff;
    --card-bg: #ffffff;
    --text-light: #2c3e50;
    --text-muted: #6c757d;
    --footer-text: #c9d6dc;
}

/* ================================
   Global Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

section {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(236, 106, 54, 0.3);
}

html {
    scroll-behavior: smooth;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    background: #2c3e50;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #ffffff !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 80%;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-primary) !important;
}

.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: #2c3e50;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.dropdown-header {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.875rem;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 106, 54, 0.25);
}

/* ================================
   Hero Section
   ================================ */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    padding-top: 80px;
    min-height: 100vh;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(236, 106, 54, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(54, 184, 236, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-icon {
    font-size: 20rem;
    color: var(--color-blue);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* ================================
   Buttons
   ================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #d95a26 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(236, 106, 54, 0.35), 0 2px 8px rgba(236, 106, 54, 0.2);
    position: relative;
    overflow: hidden;
}

.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 {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(236, 106, 54, 0.5), 0 4px 12px rgba(236, 106, 54, 0.3);
    background: linear-gradient(135deg, #d95a26 0%, var(--color-primary) 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.15);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.25), 0 4px 12px rgba(44, 62, 80, 0.15);
    border-color: var(--color-primary);
}

/* ================================
   Features Section
   ================================ */
.features-section {
    background: var(--card-bg);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 236, 54, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(197, 54, 236, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: var(--darker-bg);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(236, 106, 54, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ================================
   Color Classes
   ================================ */
.color-orange, .color-primary {
    color: var(--color-primary) !important;
}

.color-blue, .color-secondary {
    color: var(--color-secondary) !important;
}

.color-green, .color-accent {
    color: var(--color-accent) !important;
}

.color-purple {
    color: var(--color-secondary) !important;
}

.feature-icon.color-orange, .feature-icon.color-primary {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.2) 0%, rgba(236, 106, 54, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(236, 106, 54, 0.3), 0 2px 8px rgba(236, 106, 54, 0.2), inset 0 1px 0 rgba(236, 106, 54, 0.2);
    border: 2px solid rgba(236, 106, 54, 0.3);
}

.feature-icon.color-blue, .feature-icon.color-secondary {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.2) 0%, rgba(54, 184, 236, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(54, 184, 236, 0.3), 0 2px 8px rgba(54, 184, 236, 0.2), inset 0 1px 0 rgba(54, 184, 236, 0.2);
    border: 2px solid rgba(54, 184, 236, 0.3);
}

.feature-icon.color-green, .feature-icon.color-accent {
    background: linear-gradient(135deg, rgba(93, 236, 54, 0.2) 0%, rgba(93, 236, 54, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(93, 236, 54, 0.3), 0 2px 8px rgba(93, 236, 54, 0.2), inset 0 1px 0 rgba(93, 236, 54, 0.2);
    border: 2px solid rgba(93, 236, 54, 0.3);
}

.feature-icon.color-purple {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.2) 0%, rgba(54, 184, 236, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(54, 184, 236, 0.3), 0 2px 8px rgba(54, 184, 236, 0.2), inset 0 1px 0 rgba(54, 184, 236, 0.2);
    border: 2px solid rgba(54, 184, 236, 0.3);
}

/* ================================
   Services Section
   ================================ */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(236, 106, 54, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(54, 184, 236, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(236, 106, 54, 0.1);
    border-color: rgba(236, 106, 54, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon.color-orange {
    background: linear-gradient(135deg, var(--color-orange) 0%, #d95a26 100%);
    box-shadow: 0 8px 25px rgba(236, 106, 54, 0.4), 0 3px 8px rgba(236, 106, 54, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-icon.color-green {
    background: linear-gradient(135deg, var(--color-green) 0%, #4dc52e 100%);
    box-shadow: 0 8px 25px rgba(93, 236, 54, 0.4), 0 3px 8px rgba(93, 236, 54, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-icon.color-blue {
    background: linear-gradient(135deg, var(--color-blue) 0%, #2a9fd4 100%);
    box-shadow: 0 8px 25px rgba(54, 184, 236, 0.4), 0 3px 8px rgba(54, 184, 236, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-icon.color-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, #a82ed4 100%);
    box-shadow: 0 8px 25px rgba(197, 54, 236, 0.4), 0 3px 8px rgba(197, 54, 236, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

/* ================================
   Training Section
   ================================ */
.training-section {
    background: var(--card-bg);
}

.training-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.training-icon-large.color-blue {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.2) 0%, rgba(54, 184, 236, 0.1) 100%);
}

.training-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.training-feature-item i {
    font-size: 1.5rem;
}

.training-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.training-card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.training-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.training-card:hover::after {
    left: 100%;
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(236, 106, 54, 0.4);
}

.training-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.training-card h5 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.training-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ================================
   Software Section
   ================================ */
.software-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.software-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.software-icon {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.software-icon.color-orange {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.2) 0%, rgba(236, 106, 54, 0.1) 100%);
    box-shadow: 0 10px 40px rgba(236, 106, 54, 0.2);
}

.software-icon.color-green {
    background: linear-gradient(135deg, rgba(93, 236, 54, 0.2) 0%, rgba(93, 236, 54, 0.1) 100%);
    box-shadow: 0 10px 40px rgba(93, 236, 54, 0.2);
}

.software-features .software-feature {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.software-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.software-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(236, 106, 54, 0.3);
}

.software-card-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.software-card-header.color-orange {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.3) 0%, rgba(236, 106, 54, 0.1) 100%);
}

.software-card-header.color-green {
    background: linear-gradient(135deg, rgba(93, 236, 54, 0.3) 0%, rgba(93, 236, 54, 0.1) 100%);
}

.software-card-header i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.software-card-header h4 {
    color: var(--text-light);
    margin: 0;
}

.software-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.software-card ul li:last-child {
    border-bottom: none;
}

.software-card ul li i {
    font-size: 1.3rem;
}

/* ================================
   Blogs & FAQ Section
   ================================ */
.blogs-section {
    background: var(--card-bg);
}

.blog-card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 6px 15px rgba(236, 106, 54, 0.2);
    border-color: rgba(236, 106, 54, 0.3);
}

.blog-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-tag.color-orange {
    background: rgba(236, 106, 54, 0.2);
    color: var(--color-orange);
}

.blog-tag.color-green {
    background: rgba(93, 236, 54, 0.2);
    color: var(--color-green);
}

.blog-tag.color-blue {
    background: rgba(54, 184, 236, 0.2);
    color: var(--color-blue);
}

.blog-tag.color-purple {
    background: rgba(197, 54, 236, 0.2);
    color: var(--color-purple);
}

.blog-card h5 {
    color: var(--text-light);
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.accordion-item {
    background: var(--darker-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.2) 0%, rgba(54, 184, 236, 0.1) 100%);
    color: var(--color-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--darker-bg);
    color: var(--text-muted);
    padding: 1.5rem;
}

/* ================================
   Calendar Section
   ================================ */
.calendar-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.calendar-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.calendar-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.calendar-header.color-orange {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.3) 0%, rgba(236, 106, 54, 0.1) 100%);
}

.calendar-header.color-blue {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.3) 0%, rgba(54, 184, 236, 0.1) 100%);
}

.calendar-header i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    color: var(--text-light);
    margin: 0;
}

.calendar-body {
    padding: 2rem;
}

.calendar-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--darker-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.calendar-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.calendar-item:hover.calendar-item:nth-child(1) {
    border-left-color: var(--color-orange);
}

.calendar-item:hover.calendar-item:nth-child(2) {
    border-left-color: var(--color-green);
}

.calendar-item:hover.calendar-item:nth-child(3) {
    border-left-color: var(--color-blue);
}

.calendar-item:hover.calendar-item:nth-child(4) {
    border-left-color: var(--color-purple);
}

.calendar-date {
    flex-shrink: 0;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.calendar-date.color-orange {
    background: rgba(236, 106, 54, 0.2);
}

.calendar-date.color-green {
    background: rgba(93, 236, 54, 0.2);
}

.calendar-date.color-blue {
    background: rgba(54, 184, 236, 0.2);
}

.calendar-date.color-purple {
    background: rgba(197, 54, 236, 0.2);
}

.calendar-date strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar-date span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calendar-info h6 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-box {
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid rgba(54, 184, 236, 0.4);
    box-shadow: 0 6px 20px rgba(54, 184, 236, 0.15), 0 2px 8px rgba(54, 184, 236, 0.1), inset 0 1px 0 rgba(54, 184, 236, 0.1);
    backdrop-filter: blur(10px);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: var(--card-bg);
}

.contact-info-wrapper {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: 20px 20px 0 0;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.contact-icon.color-orange {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.2) 0%, rgba(236, 106, 54, 0.1) 100%);
}

.contact-icon.color-green {
    background: linear-gradient(135deg, rgba(93, 236, 54, 0.2) 0%, rgba(93, 236, 54, 0.1) 100%);
}

.contact-icon.color-blue {
    background: linear-gradient(135deg, rgba(54, 184, 236, 0.2) 0%, rgba(54, 184, 236, 0.1) 100%);
}

.contact-icon.color-purple {
    background: linear-gradient(135deg, rgba(197, 54, 236, 0.2) 0%, rgba(197, 54, 236, 0.1) 100%);
}

.contact-info-item h6 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
}

.social-link.color-orange {
    background: rgba(236, 106, 54, 0.2);
    color: var(--color-orange);
}

.social-link.color-green {
    background: rgba(93, 236, 54, 0.2);
    color: var(--color-green);
}

.social-link.color-blue {
    background: rgba(54, 184, 236, 0.2);
    color: var(--color-blue);
}

.social-link.color-purple {
    background: rgba(197, 54, 236, 0.2);
    color: var(--color-purple);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.color-orange:hover {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 8px 25px rgba(236, 106, 54, 0.5), 0 3px 10px rgba(236, 106, 54, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.color-green:hover {
    background: var(--color-green);
    color: white;
    box-shadow: 0 8px 25px rgba(93, 236, 54, 0.5), 0 3px 10px rgba(93, 236, 54, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.color-blue:hover {
    background: var(--color-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(54, 184, 236, 0.5), 0 3px 10px rgba(54, 184, 236, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.color-purple:hover {
    background: var(--color-purple);
    color: white;
    box-shadow: 0 8px 25px rgba(197, 54, 236, 0.5), 0 3px 10px rgba(197, 54, 236, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form-wrapper {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: 20px 20px 0 0;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: #ffffff;
    border: 2px solid #dee2e6;
    color: #2c3e50;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.form-control:focus,
.form-select:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    color: #2c3e50;
    box-shadow: 0 4px 12px rgba(236, 106, 54, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select option {
    background: var(--card-bg);
    color: var(--text-light);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #2c3e50;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5,
.footer h6 {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange) 0%, #d95a26 100%);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(236, 106, 54, 0.5), 0 2px 10px rgba(236, 106, 54, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(236, 106, 54, 0.6), 0 4px 15px rgba(236, 106, 54, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ================================
   Responsive Styles
   ================================ */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-icon {
        font-size: 10rem;
    }
    
    .training-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .software-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .training-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .calendar-item {
        flex-direction: column;
        text-align: center;
    }
    
    .calendar-date {
        margin: 0 auto;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ================================
   Utility Classes
   ================================ */
.text-muted {
    color: var(--text-muted) !important;
}

section {
    scroll-margin-top: 80px;
}

/* ================================
   Page Header
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 150px 0 80px;
    position: relative;
    box-shadow: inset 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 106, 54, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 20% 80%, rgba(54, 184, 236, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* Badge Styles */
.badge.bg-orange {
    background: var(--color-orange) !important;
}

.badge.bg-green {
    background: var(--color-green) !important;
}

.badge.bg-blue {
    background: var(--color-blue) !important;
}

.badge.bg-purple {
    background: var(--color-purple) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(54, 184, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 106, 54, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-section {
    background: var(--card-bg);
}

.programs-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.benefits-section {
    background: var(--card-bg);
}

.faq-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.comparison-section {
    background: var(--card-bg);
}

.process-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.resources-section {
    background: var(--card-bg);
}

.quick-ref-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.why-contact-section {
    background: var(--card-bg);
}

.services-overview-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.map-section {
    background: var(--card-bg);
}

.map-placeholder {
    background: var(--darker-bg);
    border-radius: 20px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================================
   Statistics Cards
   ================================ */
.stat-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    display: inline-block;
}

.stat-card h3 {
    color: var(--text-light);
    font-weight: 700;
}

.stat-card p {
    font-size: 1.1rem;
}

/* ================================
   Process Flow Steps
   ================================ */
.process-step {
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 2rem;
}

.process-icon {
    font-size: 3rem;
    display: inline-block;
    margin-top: 1rem;
}

.process-step h5 {
    font-weight: 600;
}

/* ================================
   Timeline Styles
   ================================ */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--dark-bg);
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
}

/* ================================
   Pricing Cards
   ================================ */
.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 106, 54, 0.3);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.1), rgba(54, 184, 236, 0.05));
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

.price-tag small {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ================================
   Testimonial Cards
   ================================ */
.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ================================
   Industry Cards
   ================================ */
.industry-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(54, 184, 236, 0.2);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* ================================
   FAQ Accordion Styles
   ================================ */
.accordion-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(236, 106, 54, 0.1), rgba(54, 184, 236, 0.05));
    color: var(--color-primary);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--darker-bg);
    color: var(--text-muted);
    padding: 1.5rem;
}

/* ================================
   Comparison Table
   ================================ */
.comparison-table {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table table {
    margin: 0;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ================================
   Enhanced Service Feature Cards
   ================================ */
.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary) !important;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ================================
   Form Styling Enhancements
   ================================ */
.form-control:focus,
.form-select:focus {
    background: var(--card-bg);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(236, 106, 54, 0.25);
    color: var(--text-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 106, 54, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ================================
   Sidebar Card Animations
   ================================ */
.sidebar-card {
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
}

.related-services a {
    display: block;
    transition: all 0.3s ease;
}

/* ================================
   Icon Pulse Animation
   ================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-icon:hover {
    animation: pulse 1s infinite;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ================================
   Process Step Enhancements
   ================================ */
.process-step:hover .process-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.process-step:hover .process-number {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* ================================
   Top Contact Bar Enhancements
   ================================ */
.top-contact-bar {
    background: #2c3e50 !important;
    padding: 12px 0 !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
}

.top-contact-bar a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-contact-bar a:hover {
    color: #EB5C23 !important;
    transform: translateX(3px);
}

.top-contact-bar i {
    color: #EB5C23;
    font-size: 16px;
}

/* ================================
   Header Call Button (Desktop/Tablet)
   ================================ */
.header-call-button {
    background: linear-gradient(135deg, #EB5C23 0%, #FF7A45 100%);
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(235, 92, 35, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 92, 35, 0.6);
    color: white !important;
    background: linear-gradient(135deg, #FF7A45 0%, #EB5C23 100%);
}

.header-call-button i {
    font-size: 20px;
    color: white;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* ================================
   Mobile Call Button
   ================================ */
.mobile-call-button {
    display: flex;
    background: linear-gradient(135deg, #EB5C23 0%, #FF7A45 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(235, 92, 35, 0.4);
    transition: all 0.3s ease;
    margin: 10px auto;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

.mobile-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 92, 35, 0.6);
    color: white !important;
}

.mobile-call-button i {
    font-size: 18px;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* ================================
   Mobile Responsive Styles
   ================================ */
/* Navbar layout improvements */
.navbar .container > .d-flex {
    flex-wrap: nowrap;
    width: auto !important;
}

.navbar-collapse {
    flex-grow: 0;
}

@media (min-width: 992px) {
    .navbar-brand {
        margin-right: 0 !important;
    }
    
    .navbar .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-nav {
        margin-left: auto !important;
    }
}

@media (max-width: 768px) {
    /* Center logo on mobile */
    .navbar-brand {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .navbar-brand img {
        max-width: 180px;
        height: auto;
    }

    /* Show mobile call button below logo */
    .mobile-call-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 10px 0 15px 0;
        font-size: 14px;
        padding: 10px 20px;
    }

    /* Hide desktop call button on mobile */
    .header-call-button {
        display: none !important;
    }

    /* Center the navbar container items */
    .navbar .container > .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Adjust top contact bar for mobile */
    .top-contact-bar {
        font-size: 13px !important;
        padding: 10px 0 !important;
    }

    .top-contact-bar a {
        font-size: 13px !important;
        display: inline-block;
        padding: 5px 0;
    }

    .top-contact-bar .me-4 {
        margin-right: 0 !important;
    }

    /* Stack navigation items */
    .navbar-collapse {
        margin-top: 15px;
    }

    .nav-link {
        text-align: center;
        padding: 10px 0 !important;
    }

    /* Improve hero section on mobile */
    .hero-section {
        padding: 40px 0 !important;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    /* Center CTAs on mobile */
    .hero-section .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto !important;
    }

    /* Adjust service cards */
    .service-card {
        margin-bottom: 20px;
    }

    /* Footer adjustments */
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }

    /* Form improvements */
    .contact-form-section input,
    .contact-form-section textarea,
    .contact-form-section select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* ================================
   Light Theme Overrides for Forms
   ================================ */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.contact-form-section select option {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background: #ffffff !important;
    color: #2c3e50 !important;
    border: 2px solid #dee2e6 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(236, 106, 54, 0.2) !important;
}

.contact-form-section .form-control::placeholder {
    color: #6c757d !important;
}

.contact-form-section label {
    color: #2c3e50 !important;
}

.contact-form-section h3,
.contact-form-section h2 {
    color: #2c3e50 !important;
}

@media (max-width: 576px) {
    /* Extra small devices */
    .navbar-brand img {
        max-width: 150px;
    }

    .mobile-call-button {
        font-size: 15px;
        padding: 10px 20px;
    }

    .hero-section h1 {
        font-size: 1.75rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 991.98px) {
    /* Push Zoho authorized partner badge below the fixed header so it's not hidden */
    .zoho-badge {
        display: block;
        margin: calc(56px + 12px) auto 1rem auto; /* navbar height + gap */
        max-width: 80%;
        width: auto;
    }

    /* Extra spacing on very small screens where navbar may be taller */
    @media (max-width: 575.98px) {
        .zoho-badge {
            margin-top: calc(64px + 14px);
            max-width: 90%;
        }
    }

    /* Ensure hero has reasonable spacing on small screens */
    .hero-section {
        padding-top: 30px;
    }
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #2c3e50; /* keep dark background */
    color: #ffffff;
}
.footer h5,
.footer h6 {
    color: #ffffff;
}
.footer p,
.footer li,
.footer .footer-links a,
.footer .text-muted,
.footer .social-link {
    color: var(--footer-text) !important;
}
.footer a {
    color: var(--footer-text) !important;
    text-decoration: none;
}
.footer a:hover {
    color: var(--color-primary) !important;
    text-decoration: underline;
}
.footer .social-link {
    font-size: 1.05rem;
    opacity: 0.95;
}
.footer .social-link:hover {
    color: var(--color-primary) !important;
    opacity: 1;
}

