/* Color Variables */
:root {
    --orange: #FF6B35;
    --dark-orange: #E85A2A;
    --blue: #004E89;
    --dark-blue: #003A66;
    --green: #1A936F;
    --purple: #7209B7;
    --light-gray: #F7F9FC;
    --dark-gray: #2C3E50;
}

/* General Styles */
body {
    padding-top: 76px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #2C3E50;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-k {
    color: var(--orange);
}

.brand-square {
    color: var(--blue);
}

.brand-inc {
    color: var(--dark-gray);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark-gray) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--orange) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-white {
    background: white;
    color: var(--orange);
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: var(--dark-gray);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F0F7 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark-gray);
}

.text-orange {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6C757D;
    max-width: 600px;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

.hero-stats {
    border-top: 2px solid #DEE2E6;
    padding-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6C757D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
}

.hero-main-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--orange);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -5%;
    animation-delay: 1s;
}

.card-3 {
    top: 30%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Section Styling */
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.bg-orange { background: linear-gradient(135deg, var(--orange), var(--dark-orange)); }
.bg-blue { background: linear-gradient(135deg, var(--blue), var(--dark-blue)); }
.bg-green { background: linear-gradient(135deg, var(--green), #147859); }
.bg-purple { background: linear-gradient(135deg, var(--purple), #5A0891); }

.feature-box h5 {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card-home {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #E9ECEF;
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--orange);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.service-card-home h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card-home p {
    color: #6C757D;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--dark-orange);
    gap: 10px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Industry Badges */
.industry-badge {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #E9ECEF;
    cursor: pointer;
}

.industry-badge:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.industry-badge i {
    font-size: 2.5rem;
    color: var(--orange);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.industry-badge:hover i {
    color: white;
}

.industry-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stars i {
    color: #FFB800;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #6C757D;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 2px solid #E9ECEF;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-gray);
}

.testimonial-author small {
    color: #6C757D;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1A1A2E;
    color: white;
    padding: 4rem 0 0;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #B8B8B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #B8B8B8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #B8B8B8;
    margin: 0;
}

.footer-bottom a {
    color: #B8B8B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===== ADDITIONAL STYLES FOR ABOUT, SERVICES & CONTACT PAGES ===== */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F0F7 100%);
    padding: 150px 0 100px;
    position: relative;
}

.services-hero {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
}

.contact-hero {
    background: linear-gradient(135deg, #F0F7FF 0%, #DCE8FF 100%);
}

.page-tag {
    display: inline-block;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6C757D;
    line-height: 1.8;
}

.page-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6C757D;
    font-weight: 600;
    margin: 0;
}

/* About Page Styles */
.about-image-wrapper {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 30px;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-image-badge i {
    font-size: 2.5rem;
    color: var(--orange);
}

.about-image-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.about-image-badge span {
    color: #6C757D;
    font-size: 0.9rem;
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: white;
    opacity: 0.2;
    border-radius: 20px;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 15px;
    background: #F7F9FC;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--orange);
    color: white;
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--orange);
    transition: color 0.3s ease;
}

.highlight-item:hover i {
    color: white;
}

/* Mission Cards */
.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mission-icon.vision {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: #6C757D;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mission-features span {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-features i {
    color: var(--orange);
}

/* Value Boxes */
.value-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    border: 2px solid #E9ECEF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-box:hover::before {
    opacity: 1;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.value-box h5 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-box p {
    color: #6C757D;
    margin: 0;
}

/* Timeline Container */
.timeline-container {
    padding: 2rem 0;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.timeline-content-box {
    padding: 2rem;
}

.timeline-content-box h5 {
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.timeline-content-box p {
    color: #6C757D;
    margin: 0;
}

/* Team Cards */
.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 2px solid #E9ECEF;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.team-avatar-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.team-card h5 {
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #6C757D;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

/* Certification Section */
.certification-section {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.cert-badge {
    text-align: center;
    padding: 2rem;
}

.cert-badge i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.cert-badge h6 {
    color: white;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cert-badge p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
}

.service-detail-icon.blue {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.service-detail-icon.green {
    background: linear-gradient(135deg, var(--green), #147859);
}

.service-detail-icon.purple {
    background: linear-gradient(135deg, var(--purple), #5A0891);
}

.service-detail-icon.orange {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-detail-desc {
    color: #6C757D;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags span {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-tags i {
    color: var(--orange);
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item-service {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item-service:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.feature-item-service i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-item-service:hover i {
    color: white;
}

.feature-item-service h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.feature-item-service:hover h6 {
    color: white;
}

.feature-item-service p {
    font-size: 0.9rem;
    margin: 0;
    color: #6C757D;
    transition: color 0.3s ease;
}

.feature-item-service:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Tech Features */
.tech-feature {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E9ECEF;
    transition: all 0.3s ease;
    height: 100%;
}

.tech-feature:hover {
    border-color: var(--orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-feature i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.tech-feature h5 {
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.tech-feature p {
    color: #6C757D;
    margin: 0;
}

/* Contact Page Styles */
.contact-main-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-badge i {
    font-size: 1.5rem;
}

.contact-info-section {
    padding: 1rem;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.3rem;
}

.contact-icon-small.orange {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
}

.contact-icon-small.blue {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.contact-icon-small.green {
    background: linear-gradient(135deg, var(--green), #147859);
}

.contact-detail-item h6 {
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: #6C757D;
    margin: 0;
}

.contact-detail-item a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

/* Regional Office Cards */
.regional-office-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #E9ECEF;
    transition: all 0.3s ease;
    height: 100%;
}

.regional-office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.office-header {
    background: linear-gradient(135deg, var(--light-gray), #E8F0F7);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.office-header i {
    font-size: 2rem;
    color: var(--orange);
}

.office-header h5 {
    margin: 0;
    font-weight: 800;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.office-details {
    padding: 2rem;
}

.detail-row {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row i {
    font-size: 1.2rem;
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-row p {
    color: #6C757D;
    margin: 0;
}

.detail-row a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.detail-row a:hover {
    text-decoration: underline;
}

/* Department Cards */
.department-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E9ECEF;
    height: 100%;
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.dept-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.dept-icon-large.orange {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
}

.dept-icon-large.blue {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.dept-icon-large.green {
    background: linear-gradient(135deg, var(--green), #147859);
}

.dept-icon-large.purple {
    background: linear-gradient(135deg, var(--purple), #5A0891);
}

.department-card h5 {
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.department-card p {
    color: #6C757D;
    margin-bottom: 1.5rem;
}

.dept-contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6C757D;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.dept-contact-info i {
    color: var(--orange);
}

.dept-contact-info a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.dept-contact-info a:hover {
    text-decoration: underline;
}

/* Hours Card */
.hours-card {
    background: linear-gradient(135deg, var(--light-gray), #E8F0F7);
    padding: 3rem;
    border-radius: 30px;
}

.hours-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hours-icon-large i {
    font-size: 4rem;
    color: white;
}

.hours-card h3 {
    font-weight: 800;
    color: var(--dark-gray);
}

.hours-card h6 {
    font-weight: 800;
}

.text-blue {
    color: var(--blue);
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
}

/* Social Media Large */
.social-media-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn.facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-btn.twitter {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.social-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.social-btn.linkedin {
    color: #0A66C2;
    border-color: #0A66C2;
}

.social-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.social-btn.instagram {
    color: #E4405F;
    border-color: #E4405F;
}

.social-btn.instagram:hover {
    background: #E4405F;
    color: white;
}

.social-btn.youtube {
    color: #FF0000;
    border-color: #FF0000;
}

.social-btn.youtube:hover {
    background: #FF0000;
    color: white;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .page-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .timeline-row {
        grid-template-columns: 1fr;
    }

    .contact-main-card {
        padding: 2rem;
    }

    .hours-card {
        padding: 2rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .social-media-large {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }
}