/* Home Page Company Branding Styles */

@import url(main.css);
/* Global Container Fix */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/static/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar Overlay */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1035; /* Lower than navbar (1040) but higher than content */
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

/* Enhanced Navbar Styling */
.navbar {
    z-index: 1040;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.navbar-nav .nav-link:hover {
    color: #FF6B35 !important;
    background-color: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF6B35;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link.active {
    color: #FF6B35 !important;
}

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

/* Mobile Navbar Enhancement */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 0.375rem;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(220, 38, 38, 0.1);
    }
    
    .nav-link-underline {
        display: none;
    }
}

/* Company Navbar */
.company-navbar {
    background: rgba(120, 200, 132, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1040;
}

/* Company Hero Section */
.company-hero-section {
    min-height: 70vh;
    background: -webkit-linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%) !important;
    background: -moz-linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%) !important;
    background: linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%) !important;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.company-hero-section .hero-background {
    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 1200 800"><path fill="%23ffffff" fill-opacity="0.1" d="M0 0h1200v800H0z"/><circle cx="300" cy="200" r="100" fill="%23ffffff" fill-opacity="0.05"/><circle cx="900" cy="600" r="150" fill="%23ffffff" fill-opacity="0.05"/></svg>');
}

.company-hero-section .hero-content {
    padding: 2rem 0;
    position: relative;
}

.company-hero-section .hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.company-hero-section .hero-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FF6B35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
    -webkit-box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
    -moz-box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.company-hero-section .hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.company-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-hero-section .hero-title .text-dark {
    background: linear-gradient(135deg, #FF6B35, #E65100, #BF360C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.company-hero-section .hero-title .text-dark::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35, #E65100);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

@keyframes slideInLeft {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.company-hero-section .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #34495e;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.company-hero-section .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.85;
    color: #5a6c7d;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.company-hero-section .hero-buttons {
    margin-top: 3rem;
    position: relative;
}

.company-hero-section .hero-buttons .btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-hero-section .hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.company-hero-section .hero-buttons .btn:hover::before {
    left: 100%;
}

.company-hero-section .hero-buttons .btn:first-child {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.company-hero-section .hero-buttons .btn:first-child:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6);
}

.company-hero-section .hero-buttons .btn:last-child {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.company-hero-section .hero-buttons .btn:last-child:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
}

/* Floating decorative elements */
.company-hero-section .hero-content::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.company-hero-section .hero-content::before {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
    }
}

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

.company-hero-section .hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-hero-section .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    width: 140px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.company-hero-section .floating-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
}

.company-hero-section .floating-card.card-1 {
    top: 20%;
    left: 10%;
}

.company-hero-section .floating-card.card-2 {
    top: 60%;
    right: 10%;
}

.company-hero-section .floating-card.card-3 {
    bottom: 20%;
    left: 20%;
}

.company-hero-section .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #dc2626;
}

.company-hero-section .floating-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.company-hero-section .floating-card p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

.company-hero-section .main-visual {
    background: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}

.company-hero-section .lab-equipment-visual {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.company-hero-section .equipment-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: #f8f9fa;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.company-hero-section .equipment-icon:hover {
    background: #e9ecef;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* Company Navbar */
.company-navbar {
    background: rgba(120, 200, 132, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.company-navbar .navbar-brand {
    font-size: 1.3rem;
}

.company-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.company-navbar .nav-link:hover {
    color: white !important;
}

.company-navbar .btn-login-nav {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.company-navbar .btn-login-nav:hover {
    background: white;
    color: #78C841 !important;
}

/* About Company Section - Ultra Enhanced Beauty */
.about-company-section {
    padding: 140px 0;
    background:
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%),
        radial-gradient(circle at 20% 20%, rgba(120, 200, 132, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 122, 0, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.about-company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 200, 132, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 122, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.9;
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
        opacity: 0.7;
    }
}

/* Premium Particle Effects */
.about-company-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(249, 122, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 200, 132, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 50% 50%;
        opacity: 0.6;
    }
}

.about-company-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #F97A00 0%, #78C841 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-company-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #495057;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-company-section .company-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-company-section .company-stats .stat-item p {
    color: #6c757d;
    font-weight: 500;
}

.about-company-section .company-values .value-item {
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

.about-company-section .company-values .value-item span {
    font-weight: 500;
}

/* Enhanced Card Styling for About Section */
.about-company-section .card {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: white !important;
    overflow: hidden !important;
    position: relative !important;
}

.about-company-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-company-section .card:hover::before {
    transform: scaleX(1);
}

.about-company-section .card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.about-company-section .card-body {
    padding: 2rem !important;
    position: relative;
    z-index: 2;
}

/* Enhanced Icon Styling */
.about-company-section .icon-wrapper {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 1rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-company-section .icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 122, 0, 0.1), rgba(120, 200, 132, 0.1));
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.about-company-section .card:hover .icon-wrapper::before {
    transform: scale(1);
}

/* Moto Card Special Styling */
.about-company-section .card[data-moto="true"] {
    background: linear-gradient(135deg, #F97A00 0%, #78C841 100%) !important;
    color: white !important;
}

.about-company-section .card[data-moto="true"] .icon-wrapper {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
}

.about-company-section .card[data-moto="true"] h5,
.about-company-section .card[data-moto="true"] p {
    color: white !important;
}

.about-company-section .card[data-moto="true"] .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Advanced Typography Enhancements */
.about-company-section h6 {
    font-weight: 800 !important;
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
    position: relative !important;
}

.about-company-section h6::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    border-radius: 1px;
}

.about-company-section .text-muted {
    color: #6c757d !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
}

.about-company-section .text-primary {
    color: #007bff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(0,123,255,0.2) !important;
}

.about-company-section .text-success {
    color: #28a745 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(40,167,69,0.2) !important;
}

.about-company-section .text-info {
    color: #17a2b8 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(23,162,184,0.2) !important;
}

.about-company-section .text-warning {
    color: #ffc107 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(255,193,7,0.2) !important;
}

.about-company-section .text-danger {
    color: #dc3545 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(220,53,69,0.2) !important;
}

/* Enhanced Border Colors */
.about-company-section .card[style*="border-left: 4px solid #F97A00"] {
    border-left: 4px solid #F97A00 !important;
}

.about-company-section .card[style*="border-left: 4px solid #78C841"] {
    border-left: 4px solid #78C841 !important;
}

/* Animation Delays for Staggered Effect */
.about-company-section .card:nth-child(1) { animation-delay: 0.1s; }
.about-company-section .card:nth-child(2) { animation-delay: 0.2s; }
.about-company-section .card:nth-child(3) { animation-delay: 0.3s; }
.about-company-section .card:nth-child(4) { animation-delay: 0.4s; }
.about-company-section .card:nth-child(5) { animation-delay: 0.5s; }
.about-company-section .card:nth-child(6) { animation-delay: 0.6s; }
.about-company-section .card:nth-child(7) { animation-delay: 0.7s; }
.about-company-section .card:nth-child(8) { animation-delay: 0.8s; }

/* Hover Text Effects */
.about-company-section .card:hover h6 {
    color: #F97A00 !important;
    transition: color 0.3s ease;
}

.about-company-section .card:hover .text-muted {
    color: #495057 !important;
    transition: color 0.3s ease;
}

/* Small Text Enhancements */
.about-company-section small {
    font-size: 0.8rem !important;
    opacity: 0.8 !important;
}

/* Bullet Points Styling */
.about-company-section .text-primary small {
    display: block;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.about-company-section .text-primary small::before {
    content: '"';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Decorative Separators */
.about-company-section .decorative-separator {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 122, 0, 0.3), transparent);
}

.about-company-section .decorative-separator::before {
    content: '&';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 1rem;
    color: #F97A00;
    font-size: 1.5rem;
}

/* Elegant Quotes Styling */
.about-company-section .quote-block {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 15px;
    border-left: 4px solid #78C841;
    box-shadow: 0 8px 25px rgba(120, 200, 132, 0.1);
    margin: 2rem 0;
}

.about-company-section .quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(249, 122, 0, 0.2);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.about-company-section .quote-block::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 4rem;
    color: rgba(120, 200, 132, 0.2);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.about-company-section .quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-company-section .quote-author {
    text-align: right;
    font-weight: 600;
    color: #78C841;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Enhanced Mission Statement */
.about-company-section .mission-statement {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    border: 1px solid rgba(120, 200, 132, 0.1);
}

.about-company-section .mission-statement::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="rgba(120,200,132,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(249,122,0,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(120,200,132,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(249,122,0,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(120,200,132,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-company-section .mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.about-company-section .mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    border-radius: 2px;
}

.about-company-section .mission-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Elegant Text Decorations */
.about-company-section .elegant-text {
    position: relative;
    display: inline-block;
}

.about-company-section .elegant-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-company-section .card:hover .elegant-text::after {
    transform: scaleX(1);
}

/* Special Highlight Boxes */
.about-company-section .highlight-box {
    background: linear-gradient(135deg, rgba(249, 122, 0, 0.05), rgba(120, 200, 132, 0.05));
    border: 1px solid rgba(249, 122, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.about-company-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F97A00, #78C841);
    border-radius: 2px 0 0 2px;
}

.about-company-section .highlight-text {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-company-section .highlight-content {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Premium Text Effects */
.about-company-section .luxury-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #F97A00 0%, #78C841 50%, #F97A00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShimmer 3s ease-in-out infinite;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.about-company-section .elegant-glow {
    text-shadow:
        0 0 5px rgba(249, 122, 0, 0.3),
        0 0 10px rgba(249, 122, 0, 0.2),
        0 0 15px rgba(249, 122, 0, 0.1),
        0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-company-section .elegant-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(249, 122, 0, 0.1), rgba(120, 200, 132, 0.1));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-company-section .card:hover .elegant-glow::before {
    opacity: 1;
}

.about-company-section .premium-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #F97A00, #78C841);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 122, 0, 0.3);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.about-company-section .premium-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: badgeShine 2s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-company-section .text-luxury {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.about-company-section .text-luxury::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-company-section .card:hover .text-luxury::after {
    transform: scaleX(1);
}

.about-company-section .floating-accent {
    position: relative;
    display: inline-block;
}

.about-company-section .floating-accent::before {
    content: '&';
    position: absolute;
    top: -8px;
    right: -8px;
    color: #F97A00;
    font-size: 0.8rem;
    animation: floatingAccent 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes floatingAccent {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-3px) rotate(180deg);
        opacity: 1;
    }
}

.about-company-section .text-elegant {
    position: relative;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.about-company-section .text-elegant:hover {
    color: #F97A00;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(249, 122, 0, 0.3);
}

.about-company-section .highlight-gradient {
    background: linear-gradient(135deg, rgba(249, 122, 0, 0.1), rgba(120, 200, 132, 0.1));
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(249, 122, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.about-company-section .highlight-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 122, 0, 0.05), transparent);
    animation: highlightSweep 3s ease-in-out infinite;
}

@keyframes highlightSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-company-section .highlight-gradient .highlight-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.about-company-section .highlight-gradient .highlight-content {
    position: relative;
    z-index: 2;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Ultimate Text Beauty */
.about-company-section .ultimate-beauty {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2em;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.about-company-section .ultimate-beauty::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F97A00, #78C841);
    border-radius: 2px;
    animation: beautyUnderline 2s ease-in-out infinite;
}

@keyframes beautyUnderline {
    0%, 100% { width: 40px; opacity: 1; }
    50% { width: 60px; opacity: 0.7; }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .about-company-section {
        padding: 80px 0;
    }

    .about-company-section .section-title {
        font-size: 2.2rem;
    }

    .about-company-section .card-body {
        padding: 1.5rem !important;
    }

    .about-company-section .icon-wrapper {
        width: 50px !important;
        height: 50px !important;
        margin-right: 0.75rem !important;
    }

    .about-company-section h6 {
        font-size: 0.9rem !important;
    }

    .about-company-section .text-muted {
        font-size: 0.85rem !important;
    }
}
/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-section .section-header {
    margin-bottom: 4rem;
}

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.services-section .service-card {
    background: white;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
}

.services-section .service-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #78C841;
}

.services-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F97A00 0%, #78C841 100%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.services-section .service-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-section .service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.services-section .service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.services-section .service-features i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -moz-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.expertise-section .expertise-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.expertise-section .expertise-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.expertise-section .expertise-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #dc2626;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.expertise-section .expertise-text h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.expertise-section .expertise-text p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.expertise-section .certifications {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-section .certification-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.expertise-section .certification-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8f9fa;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.expertise-section .certification-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
}

.expertise-section .certification-item h6 {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #2c3e50;
}

.expertise-section .certification-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

.contact-section .contact-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: #f8f9fa;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-section .contact-item:hover {
    background: #dc2626;
    color: white;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
}

.contact-section .contact-item:hover i,
.contact-section .contact-item:hover h5,
.contact-section .contact-item:hover p {
    color: white !important;
}

.contact-section .contact-item i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.contact-section .contact-item h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-section .contact-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-section .social-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    gap: 1rem;
}

.contact-section .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-section .social-link.facebook {
    background: #3b5998;
}

.contact-section .social-link.instagram {
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background: -moz-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-section .social-link.twitter {
    background: #1da1f2;
}

.contact-section .social-link.linkedin {
    background: #0077b5;
}

.contact-section .social-link:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    color: white;
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


.footer .footer-brand {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer .footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.footer .footer-links li {
    margin-bottom: 0.8rem;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: white;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer link hover effects */
.footer-link:hover {
    background-color: white !important;
    color: black !important;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

/* Modern Text Effects - 2024-2025 */

/* 1. Gradient Text (Most Popular) */
.gradient-text {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 2. Glow Text (Neon/Beauty Effect) */
.glow-text {
    font-size: 42px;
    color: #fff;
    text-shadow:
        0 0 5px #ff4ecd,
        0 0 10px #ff4ecd,
        0 0 20px #ff4ecd,
        0 0 40px #ff4ecd;
}

/* 3. Soft Shadow Elegant Text */
.elegant-text {
    font-size: 40px;
    color: #333;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.2);
}

/* 4. Glassmorphism Text */
.glass-text {
    font-size: 42px;
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.15);
    padding: 10px 25px;
    border-radius: 12px;
}

/* 5. Animated Gradient Text (Trending 2025) */
.animated-text {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #42e695);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 6s ease infinite;
}

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

/* 6. Handwritten/Aesthetic Font */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.aesthetic-text {
    font-family: 'Pacifico', cursive;
    font-size: 44px;
    color: #ff7eb3;
}

/* Custom Beauty Text for orange Theme */
.healthcare-gradient {
    background: linear-gradient(135deg, #78C841, #764ba2, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.healthcare-glow {
    color: #78C841;
    text-shadow:
        0 0 5px rgba(120, 200, 132, 0.5),
        0 0 10px rgba(120, 200, 132, 0.3),
        0 0 20px rgba(120, 200, 132, 0.2);
}

.healthcare-animated {
    background: linear-gradient(270deg, #788C84, #764ba2, #4facfe, #78C841);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: healthcareGradient 8s ease infinite;
}

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

/* White gradient text effects */
.healthcare-animated-white {
    background: linear-gradient(270deg, #ffffff, #f8fafc, #e2e8f0, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: healthcareGradientWhite 8s ease infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.healthcare-gradient-white {
    background: linear-gradient(135deg, #ffffff, #f8fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

/* Text Gradient (Original) */
.text-gradient {
    background: -webkit-linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%);
    background: -moz-linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%);
    background: linear-gradient(135deg, #FF6B35 0%, #E65100 50%, #BF360C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .company-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .company-hero-section .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .company-hero-section .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .expertise-section .certification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-section .expertise-item {
        -webkit-flex-direction: column !important;
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        -webkit-justify-content: center !important;
        -moz-justify-content: center !important;
        justify-content: center !important;
        -webkit-align-items: center !important;
        -moz-align-items: center !important;
        align-items: center !important;
    }

    .expertise-section .expertise-icon {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
        width: 70px !important;
        height: 70px !important;
        -webkit-flex-shrink: 0 !important;
        -moz-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .expertise-section .expertise-text {
        text-align: center !important;
        width: 100% !important;
    }

    .about-company-section .company-stats .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .company-hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }

    .company-hero-section .hero-title {
        font-size: 2rem;
    }

    .company-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }

    .company-hero-section .hero-description {
        font-size: 1rem;
    }

    .company-hero-section .floating-card {
        width: 120px;
        padding: 1rem;
    }

    .company-hero-section .floating-card.card-1 {
        top: 10%;
        left: 5%;
    }

    .company-hero-section .floating-card.card-2 {
        top: 70%;
        right: 5%;
    }

    .company-hero-section .floating-card.card-3 {
        bottom: 10%;
        left: 15%;
    }

    .services-section .service-card {
        padding: 2rem 1.5rem;
    }

    .expertise-section .expertise-item {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .expertise-section .expertise-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Contact Information - Horizontal Wrap Layout */
    .contact-grid .row {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-flex-wrap: wrap !important;
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    .contact-grid .col-lg-4,
    .contact-grid .col-md-6 {
        -webkit-flex: 0 0 auto !important;
        -moz-flex: 0 0 auto !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin: 0 !important;
    }

    .contact-grid .contact-card-compact {
        height: auto !important;
        margin-bottom: 1rem !important;
    }

    /* Company Features - Horizontal Wrap Layout */
    .company-features .row {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-flex-wrap: wrap !important;
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    .company-features .col-md-6 {
        -webkit-flex: 0 0 auto !important;
        -moz-flex: 0 0 auto !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin: 0 !important;
    }

    .company-features .feature-card {
        height: auto !important;
        margin-bottom: 1rem !important;
    }

    /* Expertise Content - Horizontal Wrap Layout */
    .expertise-content .expertise-list {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-flex-wrap: wrap !important;
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    .expertise-content .expertise-item {
        -webkit-flex: 0 0 auto !important;
        -moz-flex: 0 0 auto !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin: 0 !important;
        margin-bottom: 1rem !important;
    }

    .expertise-content .expertise-icon {
        width: 50px !important;
        height: 50px !important;
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .expertise-content .expertise-text {
        text-align: center !important;
        width: 100% !important;
    }

    .expertise-content .expertise-text h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .expertise-content .expertise-text p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    .section-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    .company-hero-section .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .company-hero-section .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .company-hero-section .floating-card {
        width: 100px;
        padding: 0.8rem;
    }
    
    .company-hero-section .floating-card h6 {
        font-size: 0.8rem;
    }
    
    .company-hero-section .floating-card p {
        font-size: 0.7rem;
    }
    
    .services-section .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-section .social-links {
        flex-wrap: wrap;
    }
    
    .footer .footer-brand {
        font-size: 1.2rem;
    }
}