/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: #333;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.preloader-logo-img {
    width: 120px;
    height: auto;
    filter: none;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(51, 51, 51, 0.3);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: rgba(51, 51, 51, 0.6);
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: rgba(51, 51, 51, 0.9);
    animation-delay: 0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.loading-text {
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(51, 51, 51, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(51, 51, 51, 0.6);
    }
}

.loading-dots {
    display: inline-block;
}

.dot {
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite both;
    font-size: 1.5rem;
    font-weight: bold;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* Preloader fade out animation */
.preloader.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Mobile responsive for preloader */
@media (max-width: 768px) {
    .preloader-logo-img {
        width: 80px;
    }
    
    .preloader-spinner {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
    
    .preloader-text {
        font-size: 1rem;
    }
    
    .dot {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .preloader-logo-img {
        width: 60px;
    }
    
    .preloader-spinner {
        width: 50px;
        height: 50px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 35px;
        height: 35px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 20px;
        height: 20px;
        top: 15px;
        left: 15px;
    }
}

/* Global Styles */
:root {
    --primary-color: #f44d24;
    --secondary-color: #d43914;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --bs-primary-rgb: #d43914;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Container fixes */
.container, .container-fluid {
    max-width: 100%;
}

.row {
    max-width: 100%;
}

/* Add proper page margins */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Ensure all sections don't overflow */
section {
    max-width: 100vw;
}

/* Additional fixes for horizontal scroll */
* {
    box-sizing: border-box;
}

/* Fix for any potential table or image overflow */
table, img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure cards don't overflow */
.card {
    max-width: 100%;
}

/* Fix for any potential form overflow */
form {
    max-width: 100%;
}

/* Ensure modals don't cause overflow */
.modal {
    max-width: 100vw;
}

.modal-content {
    max-width: 100%;
}

/* Fix for any potential navigation overflow */
.navbar {
    max-width: 100vw;
}

.navbar-nav {
    max-width: 100%;
}

/* Ensure all Bootstrap columns behave properly */
[class*="col-"] {
    max-width: 100%;
}

/* Navigation Styles */
#mainNav {
    transition: all 0.3s ease;
    background: transparent;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease;
}

#mainNav .navbar-brand img {
    height: 45px;
    width: auto;
}

/* Mobile responsive for navbar brand */
@media (max-width: 991.98px) {
    #mainNav .navbar-brand img {
        height: 35px;
        width: auto;
    }
}

@media (max-width: 576px) {
    #mainNav .navbar-brand img {
        height: 30px;
        width: auto;
    }
}

#mainNav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

#mainNav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

#mainNav .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled state for toggler */
#mainNav.navbar-scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-scrolled .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%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled State */
#mainNav.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

#mainNav.navbar-scrolled .nav-link {
    color: #1a1a1a;
}

#mainNav.navbar-scrolled .nav-link:hover {
    color: var(--primary-color);
}

#mainNav.navbar-scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-scrolled .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%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #mainNav {
        /* background: white !important; */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    #mainNav .nav-link {
        color: #1a1a1a !important;
    }
    
    #mainNav .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(244, 77, 36, 0.1);
    }
    
    #mainNav .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    #mainNav .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Mobile scrolled state */
    #mainNav.navbar-scrolled .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1);
    }
    
    #mainNav.navbar-scrolled .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%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Override scrolled state for mobile */
    #mainNav.navbar-scrolled {
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    color: white;
    overflow: hidden;
    background-color: black;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-section .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

.hero-image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    padding: 2rem;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    z-index: 1;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    color: var(--text-color);
}

.price .h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Icons */
.fa-3x {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

/* Contact Section Styles */
.contact-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-card .input-group-text {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-right: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-form-card .form-control {
    border: 1px solid #e2e8f0;
    border-left: 0;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 77, 36, 0.1);
    z-index: 1;
}

.location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.contact-info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(244, 77, 36, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info-item:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.contact-info-item:hover .contact-icon-wrapper i {
    color: white;
}

.contact-info .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info .contact-icon i {
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Contact Form */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Footer */
footer {
    background-color: #1f2937;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .featured-badge {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Additional Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

.list-unstyled i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 1rem !important;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

/* Spacing Utilities */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Form Validation Styles */
.was-validated .form-control:valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
}

/* Use Cases Section Styles */
.use-cases-details {
    margin-top: 4rem;
}

.use-case-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.use-case-detail:last-child {
    border-bottom: none;
}

.use-case-detail h3 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.use-case-detail .lead {
    color: #4b5563;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.features-list span {
    font-size: 1.1rem;
    color: #374151;
}

.use-case-detail img {
    transition: transform 0.3s ease;
}

.use-case-detail img:hover {
    transform: scale(1.02);
}

/* Success Stories */
.success-stories {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.success-stories h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.success-stories .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-stories .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.success-stories img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.success-stories h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.success-stories small {
    font-size: 0.875rem;
}

.success-stories p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .use-case-detail {
        text-align: center;
    }

    .use-case-detail .features-list {
        text-align: left;
        display: inline-block;
    }

    .use-case-detail img {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .use-case-detail h3 {
        font-size: 1.75rem;
    }

    .use-case-detail .lead {
        font-size: 1.1rem;
    }

    .features-list span {
        font-size: 1rem;
    }
}

/* Industry Filter */
.industry-filter {
    margin-bottom: 3rem;
}

.industry-filter .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-filter .btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 2rem;
}

/* Interactive Demo */
.chat-demo {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.bot {
    margin-right: auto;
}

.message.user {
    margin-left: auto;
    text-align: right;
}

.message p {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin: 0;
    display: inline-block;
}

.message.bot p {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.message.user p {
    background: var(--primary-color);
    color: white;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Use Case Cards Stats */
.stats {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.stats .d-flex {
    margin-bottom: 0.5rem;
}

.stats .text-primary {
    font-weight: 600;
}

/* Industry-specific animations */
[data-industry] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-industry].hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-filter .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .chat-messages {
        height: 250px;
    }
}

/* Chat Demo Enhancements */
.message.typing p {
    background: #f3f4f6;
    color: #6b7280;
    font-style: italic;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.message-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.message-suggestions .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.message-suggestions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Message Animations */
.message {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.message.bot {
    transform: translateX(-20px);
    opacity: 0;
}

.message.bot.visible {
    transform: translateX(0);
    opacity: 1;
}

.message.user {
    transform: translateX(20px);
    opacity: 0;
}

.message.user.visible {
    transform: translateX(0);
    opacity: 1;
}

/* Chat Input Enhancements */
.chat-input input {
    transition: all 0.3s ease;
}

.chat-input input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.chat-input button {
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Chat Adjustments */
@media (max-width: 767.98px) {
    .message-suggestions {
        flex-direction: column;
    }
    
    .message-suggestions .btn {
        width: 100%;
        text-align: left;
    }
    
    .chat-messages {
        height: 250px;
    }
}

/* Feature Categories */
.feature-categories {
    margin-bottom: 3rem;
}

.feature-category {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-category.active {
    background: var(--primary-color);
    color: white;
}

.feature-category i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-category.active i {
    color: white;
}

/* Feature Content */
.feature-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Feature Comparison Table */
.feature-comparison {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-comparison table {
    margin-bottom: 0;
}

.feature-comparison th {
    font-weight: 600;
    background: #f8fafc;
}

.feature-comparison td, .feature-comparison th {
    padding: 1rem;
    vertical-align: middle;
}

.feature-comparison i {
    font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .feature-category {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .feature-category {
        margin-bottom: 1rem;
    }
    
    .feature-comparison {
        padding: 1rem;
    }
    
    .feature-comparison td, .feature-comparison th {
        padding: 0.75rem;
    }
}

/* Feature Demo Styles */
.demo-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.demo-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-header i {
    font-size: 1.5rem;
}

.demo-content {
    padding: 1.5rem;
}

.demo-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.demo-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.demo-output {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.demo-message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.demo-message.bot {
    margin-right: auto;
}

.demo-message.user {
    margin-left: auto;
    text-align: right;
}

.demo-message p {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin: 0;
    display: inline-block;
}

.demo-message.bot p {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.demo-message.user p {
    background: var(--primary-color);
    color: white;
}

/* Analytics Preview */
.analytics-preview {
    height: 300px;
}

.analytics-chart {
    height: 200px;
    margin-bottom: 1rem;
}

.analytics-stats {
    display: grid;
    gap: 1rem;
}

.stat-item h5 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.progress {
    height: 0.5rem;
    background-color: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    transition: width 1s ease;
}

/* Enhanced Feature Comparison */
.comparison-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.feature-tooltip {
    color: #6b7280;
    cursor: help;
    transition: color 0.3s ease;
}

.feature-tooltip:hover {
    color: var(--primary-color);
}

.feature-row {
    transition: all 0.3s ease;
}

.feature-row:hover {
    background-color: #f8fafc;
}

.feature-row.hidden {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .demo-card {
        margin-bottom: 1.5rem;
    }
    
    .comparison-filters {
        flex-wrap: wrap;
    }
    
    .comparison-filters .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 767.98px) {
    .demo-input {
        flex-direction: column;
    }
    
    .demo-input button {
        width: 100%;
    }
    
    .feature-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Getting Started Section Styles */
.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

#getting-started .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

#getting-started .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
}

#getting-started .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#getting-started .card:hover .feature-icon {
    transform: scale(1.1);
}

#getting-started .card-body {
    padding: 2rem;
}

#getting-started .h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Step Features Styles */
.step-features {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.step-feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.step-feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step-feature-item i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    #getting-started .card {
        margin-bottom: 1rem;
    }
    
    #getting-started .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    #getting-started .card-body {
        padding: 1.5rem;
    }

    .step-features {
        padding: 0.75rem;
    }

    .step-feature-item {
        font-size: 0.85rem;
    }
}

/* Enhanced Features Section */
.feature-category-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-category-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.feature-category-content h3 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.feature-category-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-category-stats {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-enhanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.feature-card-header h4 {
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e0f2fe;
}

.highlight-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0ea5e9;
}

.highlight-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive adjustments for Enhanced Features */
@media (max-width: 768px) {
    .feature-category-section {
        padding: 2rem 1.5rem;
    }
    
    .feature-category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-category-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-category-stats {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-card-enhanced {
        padding: 1.5rem;
    }
    
    .feature-icon-enhanced {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card-header h4 {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 0.7rem 0.8rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-category-section {
        padding: 1.5rem 1rem;
    }
    
    .feature-category-content h3 {
        font-size: 1.6rem;
    }
    
    .feature-category-content p {
        font-size: 1rem;
    }
    
    .feature-card-enhanced {
        padding: 1.25rem;
    }
    
    .highlight-item {
        padding: 0.6rem 0.7rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
}

/* New styles for illustrations */
.feature-illustration {
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.feature-category-section:hover .feature-illustration {
    transform: scale(1.05);
}

/* Styles for stat icons */
.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-card:hover .stat-icon {
    opacity: 1;
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

/* CTA Button Styles */
.feature-cta {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .feature-illustration {
        max-height: 200px;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
    
    .feature-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(244, 77, 36, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 77, 36, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Scroll to Top Button Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.scroll-to-top.show {
    animation: bounceIn 0.6s ease;
}

/* Mobile responsive for scroll to top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Course Card Styles */
.course-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.course-icon {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.course-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.course-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.course-features ul li:last-child {
    border-bottom: none;
}

/* CEO Section Styles */
.ceo-image-wrapper {
    position: relative;
    display: inline-block;
}

.ceo-image {
    border: 6px solid white;
    transition: all 0.3s ease;
    object-fit: cover;
}

.ceo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceo-badge i {
    font-size: 1.1rem;
}

.ceo-content {
    padding-left: 2rem;
}

.ceo-description p {
    line-height: 1.8;
    color: #6c757d;
}

.ceo-achievements ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.ceo-achievements ul li:hover {
    background: rgba(37, 99, 235, 0.05);
    padding-left: 10px;
    border-radius: 5px;
}

.ceo-achievements ul li:last-child {
    border-bottom: none;
}

.ceo-social .social-links {
    gap: 0.75rem;
}

.ceo-social .social-links .btn {
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-width: 2px;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ceo-social .social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.ceo-social .social-links .btn i {
    font-size: 1rem;
}

/* Mobile responsive for CEO section */
@media (max-width: 768px) {
    .ceo-content {
        padding-left: 0;
        text-align: center;
    }
    
    .ceo-image {
        width: 250px !important;
        height: 250px !important;
    }
    
    .ceo-badge {
        bottom: 15px;
        right: 15px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .ceo-image {
        width: 200px !important;
        height: 200px !important;
    }
    
    .ceo-badge {
        bottom: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .ceo-social .social-links {
        justify-content: center;
    }
    
    .ceo-social .social-links .btn {
        min-width: 120px;
        margin-bottom: 0.5rem;
    }
}

/* Facility Item Styles */
.facility-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .course-card {
        margin-bottom: 2rem;
    }
    
    .instructor-card {
        margin-bottom: 2rem;
    }
    
    .facility-item {
        margin-bottom: 1rem;
    }
    
    .facility-icon {
        min-width: 60px;
        height: 60px;
    }
    
    .facility-icon i {
        font-size: 1.5rem !important;
    }
}

/* Webinars Section */
.webinar-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.webinar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    border-color: rgba(37,99,235,0.15);
}

.webinar-card-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.webinar-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.webinar-card:hover .webinar-cover-image {
    transform: scale(1.05);
}

.webinar-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 77, 36, 0.8), rgba(212, 57, 20, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.webinar-card:hover .webinar-cover-overlay {
    opacity: 1;
}

.webinar-cover-overlay i {
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.webinar-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.webinar-title {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.webinar-text {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.webinar-card-body .btn {
    margin-top: auto;
}

/* Modal tweaks */
#webinarModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

#webinarModal .modal-header {
    border-bottom: 0;
}

#webinarModal .modal-footer {
    border-top: 0;
}

/* Webinar form UX enhancements */
#webinarModal .modal-content {
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

#webinarModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
}

#webinarModal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#webinarModal .modal-header .btn-close:hover {
    opacity: 1;
}

#webinarModal .modal-body {
    padding: 2rem;
    background: #fafbfc;
}

#webinarModal .modal-footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
}

#webinarModal .input-group-text {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-right: 0;
    color: #64748b;
    font-size: 0.9rem;
}

#webinarModal .input-group .form-control,
#webinarModal .input-group .form-select {
    border: 1px solid #e2e8f0;
    border-left: 0;
    background: white;
    transition: all 0.3s ease;
}

#webinarModal .input-group .form-control:focus,
#webinarModal .input-group .form-select:focus {
    z-index: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 77, 36, 0.1);
}

#webinarModal .input-with-icon .form-control,
#webinarModal select.form-select {
    min-height: 48px;
    font-size: 0.95rem;
}

#webinarModal .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#webinarModal .form-label i {
    font-size: 0.85rem;
}

#webinarModal .progress {
    background: #f1f5f9;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

#webinarModal .progress-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.6s ease;
    position: relative;
}

#webinarModal .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#webinarModal .success-check i {
    font-size: 4rem;
    color: var(--success-color);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#webinarModal .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.1rem;
}

#webinarModal .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 77, 36, 0.2);
}

#webinarModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#webinarModal .form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

#webinarModal .modal-icon {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
}

#webinarModal .form-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

#webinarModal .form-text i {
    color: var(--primary-color);
}

#webinarModal #webinarForm.was-validated .form-control:invalid,
#webinarModal #webinarForm.was-validated .form-select:invalid {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

#webinarModal #webinarForm.was-validated .form-control:valid,
#webinarModal #webinarForm.was-validated .form-select:valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#webinarModal .alert {
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
}

#webinarModal .alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

#webinarModal .alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

#webinarModal .alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

#webinarModal .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#webinarModal .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(244, 77, 36, 0.3);
}

#webinarModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 77, 36, 0.4);
}

#webinarModal .btn-outline-secondary {
    border: 2px solid #e5e7eb;
    color: #6b7280;
    background: white;
}

#webinarModal .btn-outline-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

#webinarModal .row {
    margin: 0 -0.75rem;
}

#webinarModal .col-md-6,
#webinarModal .col-12 {
    padding: 0 0.75rem;
}

#webinarModal .form-check {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 1rem;
}

#webinarModal .form-check:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
}

#webinarModal .whatsapp-hint {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
}

#webinarModal .whatsapp-hint i {
    color: #0ea5e9;
}

#webinarModal .success-features {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

#webinarModal .success-features .d-flex {
    font-size: 0.85rem;
}

#webinarModal .progress-wrapper {
    position: relative;
}

#webinarModal .progress-wrapper small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Enhanced form animations */
#webinarModal .form-control,
#webinarModal .form-select {
    transition: all 0.3s ease;
}

#webinarModal .form-control:focus,
#webinarModal .form-select:focus {
    transform: translateY(-1px);
}

#webinarModal .input-group:hover .input-group-text {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Navbar Mobile Optimization */
    .navbar-brand img {
        max-height: 35px !important;
        width: auto;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Section Spacing Mobile */
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cards Mobile */
    .card {
        margin-bottom: 1.5rem;
    }
    
    .webinar-card {
        margin-bottom: 1.5rem;
    }
    
    .webinar-card-cover {
        height: 200px;
    }
    
    .webinar-card-title {
        font-size: 1.3rem;
    }
    
    /* Course Grid Mobile */
    .course-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item h4 {
        font-size: 2.5rem;
    }
    
    /* About Section Mobile */
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    /* Contact Section Mobile */
    .contact-info .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-info .contact-icon i {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .contact-form .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Contact Cards Mobile */
    .contact-form-card,
    .location-card {
        border-radius: 15px;
    }
    
    .contact-form-card .card-body,
    .location-card .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .contact-info-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.25rem;
    }
    

    
    /* Footer Mobile */
    .footer-content {
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    /* Webinar Modal Mobile */
    #webinarModal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #webinarModal .modal-body {
        padding: 1.5rem 1rem;
    }
    
    #webinarModal .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    #webinarModal .modal-footer .btn {
        width: 100%;
        order: 2;
    }
    
    #webinarModal .modal-footer small {
        order: 1;
        text-align: center;
    }
    
    #webinarModal .form-label {
        font-size: 0.85rem;
    }
    
    #webinarModal .input-with-icon .form-control,
    #webinarModal select.form-select {
        min-height: 44px;
        font-size: 1rem;
    }
    
    #webinarModal .row {
        margin: 0;
    }
    
    #webinarModal .col-md-6,
    #webinarModal .col-12 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    #webinarModal .form-check {
        padding: 0.75rem;
    }
    
    /* Button Mobile */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Text Mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    
    p { font-size: 1rem; }
    
    /* Spacing Mobile */
    .mb-5 { margin-bottom: 2rem !important; }
    .mt-5 { margin-top: 2rem !important; }
    .py-5 { padding: 2rem 0 !important; }
    .px-5 { padding: 0 1rem !important; }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand img {
        max-height: 30px !important;
    }
    
    #webinarModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    #webinarModal .modal-body {
        padding: 1rem 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn, .nav-link, .form-control, .form-select {
        min-height: 44px;
    }
    
    /* Better scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Mobile navigation improvements */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
    
    /* Mobile card improvements */
    .card {
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .webinar-card {
        border-radius: 15px;
        overflow: hidden;
    }
    
    /* Mobile form improvements */
    .form-control:focus,
    .form-select:focus {
        transform: none;
    }
    
    /* Mobile button improvements */
    .btn {
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Mobile modal improvements */
    #webinarModal .modal-content {
        border-radius: 15px;
    }
    
    #webinarModal .modal-header {
        border-radius: 15px 15px 0 0;
    }
    
    #webinarModal .modal-footer {
        border-radius: 0 0 15px 15px;
    }
    
    /* Mobile progress bar */
    #webinarModal .progress {
        height: 6px;
    }
    
    /* Mobile success state */
    #webinarModal .success-check i {
        font-size: 3rem;
    }
    
    /* Mobile spacing adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Mobile grid improvements */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col, .col-md-6, .col-lg-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Mobile performance optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile video optimization */
    video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    /* Mobile image optimization */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile smooth scrolling */
    .smooth-scroll {
        scroll-behavior: smooth;
    }
    
    /* Mobile loading states */
    .loading {
        opacity: 0.7;
        pointer-events: none;
    }
    
    /* Mobile focus states */
    .btn:focus,
    .form-control:focus,
    .form-select:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Mobile accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Core Values CREST Section Styles */
.core-value-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(244, 77, 36, 0.15) !important;
}

.core-value-icon {
    transition: all 0.3s ease;
}

.core-value-card:hover .core-value-icon {
    transform: scale(1.1);
}

.core-value-card:hover .core-value-icon i {
    color: var(--secondary-color) !important;
}

.core-value-card.bg-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #2c3e50;
}

.core-value-card.bg-gradient:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3) !important;
}

.core-value-card.bg-gradient .core-value-icon i {
    color: #2c3e50 !important;
}

.core-value-card.bg-gradient:hover .core-value-icon i {
    color: #1a252f !important;
}

.core-value-card.bg-gradient h2 {
    color: #2c3e50 !important;
}

.core-value-card.bg-gradient p {
    color: #34495e !important;
}

/* Responsive adjustments for core values */
@media (max-width: 768px) {
    .core-value-card {
        margin-bottom: 1rem;
    }
    
    .core-value-card:hover {
        transform: translateY(-5px);
    }
    
    .core-value-card.bg-gradient:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Vision & Mission Cards - Clean Design */
.vm-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 77, 36, 0.15);
}

.vm-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.vm-card-header::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.vm-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.vm-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.vm-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vm-card-body {
    padding: 2rem;
    background: white;
}

.vm-card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    text-align: center;
}

.vm-card-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.vm-highlight {
    text-align: center;
}

.vm-highlight-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(244, 77, 36, 0.3);
    transition: all 0.3s ease;
}

.vm-card:hover .vm-highlight-text {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 77, 36, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vm-card-header {
        padding: 1.5rem;
    }
    
    .vm-card-header h3 {
        font-size: 1.5rem;
    }
    
    .vm-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .vm-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .vm-card-body {
        padding: 1.5rem;
    }
    
    .vm-card-body p {
        font-size: 1rem;
    }
    
    .vm-card-footer {
        padding: 1rem 1.5rem;
    }
}

/* About Section Image Slider Styles */
#aboutSlider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-image-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover .slider-image {
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.slider-content {
    text-align: center;
}

.slider-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-content p {
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carousel Controls Styling */
#aboutSlider .carousel-control-prev,
#aboutSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(244, 77, 36, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

#aboutSlider .carousel-control-prev {
    left: 10px;
}

#aboutSlider .carousel-control-next {
    right: 10px;
}

#aboutSlider .carousel-control-prev:hover,
#aboutSlider .carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators Styling */
#aboutSlider .carousel-indicators {
    bottom: 20px;
}

#aboutSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(244, 77, 36, 0.5);
    border: 2px solid white;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#aboutSlider .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

#aboutSlider .carousel-indicators button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slider-image-container {
        height: 300px;
    }
    
    .slider-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slider-content h4 {
        font-size: 1.1rem;
    }
    
    .slider-content p {
        font-size: 0.9rem;
    }
    
    #aboutSlider .carousel-control-prev,
    #aboutSlider .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .slider-image-container {
        height: 250px;
    }
    
    .slider-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .slider-content h4 {
        font-size: 1rem;
    }
    
    .slider-content p {
        font-size: 0.8rem;
    }
}

