/* ===================================
   CSS Variables
=================================== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===================================
   Reset & Base Styles
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--text-white);
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   Preloader
=================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-container {
    text-align: center;
}

.loading {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

#loading-icon img {
    width: 40px;
    height: 40px;
}

/* ===================================
   Topbar
=================================== */
.topbar {
    background: var(--primary-color);
    padding: 8px 0;
    color: var(--text-white);
}

.topbar-contact-info ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.topbar-contact-info a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social-links {
    text-align: right;
}

.topbar-social-links ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.topbar-social-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.topbar-social-links a:hover {
    color: var(--accent-color);
}

/* ===================================
   Header
=================================== */
.main-header {
    background: var(--text-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.header-btn {
    margin-left: auto;
}

/* ===================================
   Buttons
=================================== */
.btn-default {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-default:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-highlighted {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-highlighted:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* ===================================
   Hero Section
=================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    opacity: 0.85;
    z-index: 2;
    transition: opacity 0.6s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title h1 span {
    color: var(--accent-color);
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-white);
    opacity: 0.95;
}

.section-title p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.6;
}

/* Ensure hero content text is always white */
.hero .section-title h1,
.hero .section-title h2,
.hero .section-title p {
    color: var(--text-white) !important;
}

.hero-btn {
    margin-bottom: 40px;
}

.hero-list {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.hero-list li {
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
}

.hero-list li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

/* ===================================
   Hero Navigation Buttons
=================================== */
.hero-nav-buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    pointer-events: all;
    z-index: 6;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-nav-btn i {
    transition: transform 0.3s ease;
}

.hero-nav-btn:hover i {
    transform: scale(1.2);
}

.hero-prev-btn {
    left: 30px;
}

.hero-next-btn {
    right: 30px;
}

/* ===================================
   Swiper Pagination
=================================== */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--text-white);
    transform: scale(1.2);
}

/* ===================================
   Company Activities (About Section)
=================================== */
.company-activities {
    padding: 100px 0;
    background: var(--bg-light);
}

.company-activity-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.company-activity-image {
    flex: 1;
}

.company-activity-image figure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.company-activity-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.company-activity-content {
    flex: 1;
    padding-left: 40px;
}

.section-title h3 {
    font-size: 1rem !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.company-activity-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.company-activity-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.company-activity-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* ===================================
   Contact Section
=================================== */
.our-faqs {
    padding: 100px 0;
    background: var(--text-white);
}

.our-faq-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer - Professional & Classy Design
=================================== */
.main-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.footer-top {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.footer-company {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-links .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-links .social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Force visibility for About and Mission headers */
.about-text h3 {
    font-size: 0.95rem !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    animation-play-state: running !important;
    position: relative;
    padding-bottom: 12px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(37, 99, 235, 0.5));
    border-radius: 2px;
}

.mission-vision-heading h3 {
    font-size: 0.95rem !important;
    color: var(--accent-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    animation-play-state: running !important;
    position: relative;
    padding-bottom: 12px;
}

.mission-vision-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), rgba(59, 130, 246, 0.5));
    border-radius: 2px;
}

/* About Section Layout Fix */
.about-content {
    display: flex !important;
    align-items: stretch !important;
    gap: 60px !important;
    min-height: 500px !important;
    flex-direction: row !important;
}

.about-image {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

.about-text {
    flex: 1 !important;
    padding-left: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.about-text h2 {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.about-text h2 span {
    color: var(--primary-color) !important;
    position: relative;
    display: inline-block;
}

.about-text h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.about-text > p {
    font-size: 1.15rem !important;
    color: var(--text-light) !important;
    line-height: 1.8 !important;
    margin-bottom: 35px !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Mission & Vision Section Spacing Fix */
.mission-vision-top-row {
    margin-bottom: 40px !important;
}

.mission-vision-cards {
    margin-top: 20px !important;
}

/* Mission & Vision Cards Row */
.mission-vision-cards-row {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
}

.mission-vision-cards-row .col-lg-6 {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}

.mission-vision-cards-row .col-lg-6:first-child {
    padding-right: 20px;
}

.mission-vision-cards-row .col-lg-6:last-child {
    padding-left: 20px;
}

.mission-vision-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), rgba(59, 130, 246, 0.5), var(--accent-color));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .mission-vision-cards-row {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .mission-vision-cards-row .col-lg-6 {
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .mission-vision-cards-row .col-lg-6:first-child {
        padding-right: 15px;
    }
    
    .mission-vision-cards-row .col-lg-6:last-child {
        padding-left: 15px;
    }
    
    .mission-vision-card {
        padding: 35px 30px;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .card-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}

/* Professional Get in Touch Button */
.about-text .btn-default {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(37, 99, 235, 0.9) 100%) !important;
    color: var(--text-white) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 18px 45px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35),
                0 4px 12px rgba(37, 99, 235, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-text .btn-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about-text .btn-default:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
}

.about-text .btn-default:hover::before {
    left: 100%;
}

.about-text .btn-default:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    text-transform: none;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact h3 {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    letter-spacing: 0.3px;
}

/* ===================================
   Modern Transitions & Animations
=================================== */
/* Smooth transitions for interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section transitions */
section {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Card hover effects */
.card, .service-card, .solution-category {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
}

/* Image transitions */
img {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Modern button transitions */
.btn-default, .btn-highlighted, .btn-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-default::before, .btn-highlighted::before, .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-default:hover::before, .btn-highlighted:hover::before, .btn-cta:hover::before {
    left: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Navigation transitions */
.nav-link, .footer-links a {
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover, .footer-links a:hover {
    transform: translateX(2px);
}

/* Form input transitions */
.form-control, .form-group input, .form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-control:focus, .form-group input:focus, .form-group textarea:focus {
    transform: translateY(-1px);
}

/* Hero content animations */
.hero-content {
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page load animation */
@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.6s ease;
}

/* Section fade-in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 991px) {
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .topbar {
        display: none;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .header-btn {
        margin: 20px 0 0 0;
    }
    
    .section-title h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-list ul {
        gap: 12px;
    }
    
    .hero-list li {
        font-size: 0.95rem;
        padding: 8px 15px;
    }
    
    .company-activity-item {
        flex-direction: column;
        gap: 40px;
    }
    
    .company-activity-content {
        padding-left: 0;
    }
    
    .company-activity-image img {
        height: 400px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Navigation improvements */
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        border-radius: 5px;
        padding: 5px 10px;
    }
    
    .navbar-collapse {
        background: var(--bg-light);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }
}

@media (max-width: 767px) {
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-prev-btn {
        left: 15px;
    }
    
    .hero-next-btn {
        right: 15px;
    }
    
    .hero-pagination {
        bottom: 20px;
    }
    
    .section-title h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-list {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-list ul {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    
    .hero-list li {
        font-size: 0.9rem;
        padding: 8px 14px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .company-activities,
    .our-faqs,
    .about-section,
    .mission-vision-section,
    .services-section {
        padding: 60px 0;
    }
    
    .company-activity-image img {
        height: 300px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .main-header {
        padding: 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-prev-btn {
        left: 10px;
    }
    
    .hero-next-btn {
        right: 10px;
    }
    
    .hero-pagination {
        bottom: 15px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .section-title h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .section-title p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        margin-bottom: 30px;
    }
    
    .hero-btn .btn-default,
    .hero-btn .btn-highlighted {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .hero-list li {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .company-activity-image img {
        height: 250px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .topbar {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .topbar-contact-info a {
        font-size: 12px;
    }
    
    .topbar-social-links a {
        font-size: 14px;
    }
}

/* ===================================
   Animations
=================================== */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-anime-style-2 {
    animation: textAnime 1s ease forwards;
}

@keyframes textAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Utility Classes
=================================== */
/* Override Bootstrap container padding - MUST be at the end to override Bootstrap */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 5px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 5px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 5px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 5px;
}

.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 5px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 5px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 5px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
}

.align-items-center {
    align-items: center;
}

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

.d-inline-flex {
    display: inline-flex;
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

/* ===================================
   Bootstrap Overrides
=================================== */
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
}

.navbar-toggler {
    display: none;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: block;
    }
}

/* Company Overlay - Bottom Left Corner */

.company-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideAnimation 3s ease-in-out infinite;
    z-index: 10;
    max-width: 180px;
}

.overlay-text {
    color: #ffffff;
    font-size: 10px;
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.overlay-logo img {
    height: 24px;
    width: auto;
}

@keyframes slideAnimation {
    0% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(-5px);
    }
}

/* ===================================
   Additional Styles from Index Page
=================================== */

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.about-image {
    position: relative;
    overflow: visible;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
                0 12px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Animated Logo Overlay */
.animated-logo-overlay {
    position: absolute;
    top: 30px;
    right: -40px;
    width: 220px;
    height: 110px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: slideLeftRight 3s ease-in-out infinite;
    z-index: 10;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.animated-logo-overlay:hover {
    transform: translateX(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2),
                0 6px 20px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.55rem;
    font-style: italic;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    height: 50px;
    max-height: 50px;
    overflow: hidden;
}

.logo-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.safety-logo {
    max-width: 80% !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@keyframes slideLeftRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

.about-list {
    margin-bottom: 45px;
    position: relative;
}

.about-list::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), rgba(37, 99, 235, 0.3));
    border-radius: 2px;
}

.about-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

.about-list li {
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.75;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.about-list li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.about-list li::before {
    content: '✓';
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color), rgba(37, 99, 235, 0.8));
    font-weight: bold;
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.about-list li:hover::before {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--text-white);
    overflow: hidden;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.services-header {
    margin-bottom: 90px;
    position: relative;
}

.services-header h3 {
    font-size: 0.95rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.services-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(37, 99, 235, 0.5));
    border-radius: 2px;
}

.services-header .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-header .section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.services-header .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.services-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
}

.services-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.services-slider {
    display: flex;
    width: 100%;
    min-height: 400px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    align-items: stretch;
}

.service-slide.slide-single-card {
    grid-template-columns: 1fr;
    justify-items: center;
}

.service-slide.slide-single-card .service-card {
    max-width: 400px;
}

.service-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(37, 99, 235, 0.9) 100%);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35),
                0 4px 12px rgba(37, 99, 235, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-nav-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45),
                0 6px 16px rgba(37, 99, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.service-prev-btn {
    left: 0;
}

.service-next-btn {
    right: 0;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(37, 99, 235, 0.95) 100%);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25),
                0 4px 16px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--text-white), rgba(255, 255, 255, 0.5), var(--text-white));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px 24px 0 0;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.98) 0%, var(--primary-color) 100%);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.4),
                0 8px 24px rgba(37, 99, 235, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card > * {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    z-index: 2;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--text-white);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--text-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: scale(1.15) rotate(5deg);
    border-color: var(--text-white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 0 4px rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.4));
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
    flex-shrink: 0;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.service-card:hover h4::after {
    width: 60px;
}

.service-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.service-arrow {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-arrow i {
    font-size: 1.1rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    background: linear-gradient(135deg, var(--text-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: scale(1.15) translateX(3px);
    border-color: var(--text-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 0 2px rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-arrow i {
    color: var(--primary-color);
    transform: translateX(2px);
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.3));
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 120px 0;
    background: #0f172a;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.mission-vision-section .section-title,
.mission-vision-section .section-description,
.mission-vision-section h2,
.mission-vision-section h3,
.mission-vision-section p {
    color: var(--text-white);
}

.mission-vision-section .highlight {
    color: var(--accent-color);
}

.mission-vision-section .card-content h3,
.mission-vision-section .card-content p {
    color: var(--text-white);
}

.mission-vision-section .card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mission-vision-section .card-icon i {
    color: var(--accent-color);
}

.mission-vision-top-row {
    margin-bottom: 80px;
    align-items: center;
    position: relative;
}

.mission-vision-heading {
    padding-right: 30px;
}

.mission-vision-heading .section-title {
    margin-bottom: 0;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mission-vision-content {
    padding-left: 30px;
}

.mission-vision-content .section-description {
    margin: 0;
    text-align: left;
}

.mission-vision-bottom-row {
    margin-bottom: 60px;
}

.mission-vision-heading h3 {
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-vision-section h3 {
    color: var(--accent-color);
}

.mission-vision-section .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mission-vision-section .section-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.mission-vision-section .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 100%;
}

.mission-vision-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.mission-vision-cards {
    margin-top: 20px;
}

.card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.5));
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.mission-vision-card:hover .card-content h3::after {
    width: 80px;
}

.card-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.card-content p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.mission-vision-image-top,
.mission-vision-image-bottom {
    height: 100%;
    display: flex;
    align-items: center;
}

.mission-vision-image-top img,
.mission-vision-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.mission-vision-image-top img {
    min-height: 300px;
}

.mission-vision-image-bottom img {
    min-height: 400px;
}

.mission-vision-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--text-white);
}

/* Page Header Styles */
.page-header {
    background: var(--bg-light);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: var(--text-white);
}

.contact-info-list {
    margin-top: 50px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-content a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Solutions Page Styles */
.solutions-page-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.solution-category {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.solution-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.solution-category-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.solution-section {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
}

.solution-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.solution-list li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.solution-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Responsive Styles */
@media (max-width: 991px) {
    .services-grid-wrapper {
        padding: 20px 25px;
        max-width: 1000px;
    }
    
    .service-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .services-header .section-title {
        font-size: 2rem;
    }
    
    .service-slide {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .service-slide .service-card:nth-child(3),
    .service-slide .service-card:nth-child(n+4) {
        display: none !important;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-category {
        padding: 30px;
    }

    .solution-category-header {
        flex-direction: column;
        text-align: center;
    }

    .solution-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    /* Contact & Solutions Page Responsive */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info-content {
        text-align: center;
    }
    
    .google-map-iframe {
        height: 400px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .services-slider {
        min-height: auto !important;
    }
    
    .service-slide {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .service-slide .service-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .service-slide .service-card:nth-child(n+2) {
        display: none !important;
    }

    .services-grid-wrapper {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .service-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .services-header .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 320px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .solution-category {
        padding: 25px;
    }

    .solution-category-title {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
    
    /* Contact & Solutions Mobile */
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-section,
    .solutions-page-section {
        padding: 60px 0;
    }
    
    .google-map-iframe {
        height: 300px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .icon-box i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-grid-wrapper {
        padding: 20px 15px;
    }
    
    .service-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* ===================================
   FORCE OVERRIDE BOOTSTRAP PADDING
   Placed at end for maximum priority
=================================== */
body .container,
body .container-fluid,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl,
body .container-xxl,
section .container,
section .container-fluid,
.about-section .container,
.mission-vision-section .container,
.services-section .container,
.hero .container {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Override Bootstrap column padding */
[class*="col-"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

@media (max-width: 991px) {
    body .container,
    body .container-fluid,
    body .container-sm,
    body .container-md,
    body .container-lg,
    body .container-xl,
    body .container-xxl,
    section .container,
    section .container-fluid,
    .about-section .container,
    .mission-vision-section .container,
    .services-section .container,
    .hero .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 767px) {
    body .container,
    body .container-fluid,
    body .container-sm,
    body .container-md,
    body .container-lg,
    body .container-xl,
    body .container-xxl,
    section .container,
    section .container-fluid,
    .about-section .container,
    .mission-vision-section .container,
    .services-section .container,
    .hero .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    body .container,
    body .container-fluid,
    body .container-sm,
    body .container-md,
    body .container-lg,
    body .container-xl,
    body .container-xxl,
    section .container,
    section .container-fluid,
    .about-section .container,
    .mission-vision-section .container,
    .services-section .container,
    .hero .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
