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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    /* width: 240px !important; */
    height: auto;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.6s ease-in-out;
}

.header-content {
  transition: all 0.6s ease-in-out;
}

.logo {
    /* background: linear-gradient(135deg, #2563eb, #06b6d4); */
    color: white;
    /* padding: 0.5rem 1rem; */
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

.logo-bold {
    font-weight: 700;
}

.logo-light {
    font-weight: 400;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.btn-contact {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
}

.btn-raise-ticket {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.ticket-header {
    background: linear-gradient(135deg, #ef4444, #f59e0b) !important;
    color: white;
}

.btn-raise-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-raise-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    /* background: linear-gradient(135deg, #ef4444, #f59e0b); */
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-raise-message:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4); */
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link,
.mobile-contact-link {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #4b5563;
    font-size: 1.5rem;
    border-radius: 8px;
    transition: background 0.5s ease, color 0.5s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #eff6ff;
    color: #2563eb;
}

.mobile-contact-link {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Pages */
main {
    padding-top: 70px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: #f9fafb;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: #9ca3af;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb li.active {
    color: #6b7280;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e40af, #0891b2);
    color: white;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    display: none;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #2563eb;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: #2563eb;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
}

.btn-full {
    width: 50%;
}

.icon {
    font-style: normal;
}

/* Sections */
.services-section,
.stats-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2563eb;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: #eff6ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    /* color: white;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #1e40af, #0891b2) border-box;
    -webkit-background-clip: border-box;
    background-clip: border-box; */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
}

.service-card:hover .service-icon {
    color: white;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #1e40af, #0891b2) border-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.stats-section .section-header p {
    color: #d1d5db;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    /* background: rgba(255, 255, 255, 0.08); */
    background: linear-gradient(135deg, #1e40af, #0891b2) border-box;
    color: white;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
}

.service-detail {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    order: 2;
}

.service-detail.reverse .service-detail-image {
    order: 1;
}

.service-detail-icon {
    font-size: 4rem;
    background: #eff6ff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: white;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #1e40af, #0891b2) border-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;

}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style-type: '✓    ';
}

.feature-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 1rem;
}

.feature-list li::marker {
    color: rgb(13 202 240);
    /* Standard Blue */
    font-weight: bold;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-cta {
    background: #f9fafb;
    padding: 4rem 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-cta p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: #6b7280;
}

.mission-vision {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2563eb;
}

.mission-card:nth-child(2) {
    border-top-color: #06b6d4;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: #eff6ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

.achievements-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.achievements-header {
    text-align: center;
    margin-bottom: 3rem;
}

.achievement-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.achievements-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.achievements-header p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.achievements-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.achievement-item {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1.1rem;
}

.why-choose {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.why-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-item p {
    color: #6b7280;
}

/* Gallery Page */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

#lightboxImage {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* Testimonials Page */
.testimonial-stats {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.stats-row {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    padding: 4rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.quote-icon {
    font-size: 2rem;
    color: #dbeafe;
    font-family: Georgia, serif;
}

.rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-cta {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.testimonial-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.testimonial-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Work With Us Page */
.work-content {
    padding: 4rem 0;
}

.work-grid {
    display: grid;
    gap: 3rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-section>p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.opportunities-section,
.benefits-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-card h3,
.opportunities-section h3,
.benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: #4b5563;
    line-height: 1.6;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.emergency {
    color: #2563eb !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

.opportunity-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.opportunity-icon {
    font-size: 2rem;
    background: #eff6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #1e40af, #0891b2) border-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.opportunity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.opportunity-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.benefits-card {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.benefits-list {
    list-style-type: '✓    ';
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #374151;
}

.benefits-list li::marker {
    color: rgb(13 202 240);
    /* Standard Blue */
    font-weight: bold;
}

.map-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo {
    /* background: linear-gradient(135deg, #2563eb, #06b6d4); */
    /* color: white; */
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding-left: 0 !important;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-contact {
    list-style: none;
    padding-left: 0 !important;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .btn-contact {
        display: inline-flex;
    }

    .btn-raise-ticket {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .service-detail,
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .ticket-content {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }

    .ticket-form-container {
        grid-column: 1;
    }

    .ticket-sidebar {
        grid-column: 2;
        position: sticky;
        top: 90px;
    }
}

@media (min-width: 1024px) {
    .page-header h1 {
        font-size: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ticket Page Styles */
.mobile-ticket-btn {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ticket-content {
    padding: 3rem 0;
    display: grid;
    gap: 2rem;
}

.ticket-info-banner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    padding: 2rem;
    border-radius: 12px;
    /* margin-bottom: 2rem; */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.ticket-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticket-form-header {
    margin-bottom: 2rem;
}

.ticket-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ticket-form-header p {
    color: #6b7280;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.form-row {
    display: grid;
    /* gap: 1.5rem; */
    /* grid-template-columns: 1fr; */
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.form-note {
    /* text-align: center; */
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.ticket-submit-section {
    padding-top: 1rem;
}

.ticket-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.ticket-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.ticket-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.ticket-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.priority-info {
    border-left: 4px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.priority-item {
    margin-bottom: 1rem;
}

.priority-item:last-child {
    margin-bottom: 0;
}

.priority-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.priority-item p {
    font-size: 0.9rem;
    color: #6b7280;
}

.priority-urgent {
    color: #dc2626;
}

.priority-high {
    color: #f97316;
}

.priority-medium {
    color: #fdcf00;
}

.priority-low {
    color: #16a34a;
}

.emergency-contact {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-left: 4px solid #f59e0b;
}

.emergency-contact p {
    color: #78350f;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #dc2626;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.emergency-phone:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.emergency-note {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: #78350f;
}

.response-time {
    border-left: 4px solid #16a34a;
    background: linear-gradient(135deg, #dcfce7, #86efac);
}

.response-list {
    list-style: none;
}

.response-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.response-list li:last-child {
    border-bottom: none;
}

.faq-link {
    /* background: #f9fafb; */
    border-left: 4px solid #4b5563;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

/* .faq-list {
    list-style: none;
}

.faq-list li {
    padding: 0.5rem 0;
    color: #4b5563;
} */

.faq-list {
    list-style-type: '✓    ';
}

.faq-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 1rem;
}

.faq-list li::marker {
    color: rgb(13 202 240);
    /* Standard Blue */
    font-weight: bold;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a34a;
}

.modal-body {
    padding: 2rem;
}

.ticket-number-display {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.ticket-number-display strong {
    font-size: 1.5rem;
}

.ticket-details-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.ticket-details-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ticket-details-box ul {
    list-style: none;
}

.ticket-details-box li {
    padding: 0.5rem 0;
    color: #4b5563;
}

.modal-body .note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Our Clients Section */
.clients-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
    transform: translateY(-4px);
}

.client-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-box:hover img {
    transform: scale(1.05);
}

/* Products Page */
.products-content {
    padding: 3rem 0;
}

.products-section {
    margin-bottom: 4rem;
}

.products-section .section-header {
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.product-image {
    width: 100%;
    padding: 1.5rem;
    /* height: 300px; */
    /* height: 200px; */
    overflow: hidden;
    /* background: #f0f4f8; */
    /* background: #f0f4f8; */
}

.product-image img {
    width: 100%;
    height: 200px;
    /* height: 100%; */
    padding: 1rem;
    border-radius: 12px;
    background: #f0f4f8;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* .product-card .btn-sm {
    align-self: flex-start;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
} */

.products-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 4rem;
}

.notice-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.notice-box i {
    font-size: 1.8rem;
    color: #0ea5e9;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-box h3 {
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: #0c4a6e;
    line-height: 1.6;
}

.facebook-follow {
    border: none;
    overflow: hidden;
    /* width: 300px; */
    /* height: 125px; */
    height: 68px;
    background: #fff;
    /* display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1877f2;
    color: white; */
    /* border-radius: 8px; */
    text-decoration: none;
    /* font-weight: 600; */
    transition: all 0.3s ease;
}
.navbar-brand img {
    width: 200px !important;
}
/* style=" */

/* Responsive Design */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .notice-box {
        flex-direction: column;
    }

    .notice-box i {
        font-size: 1.5rem;
    }
}



@media (max-width: 480px) {
    .header-content {
        /* padding: 0; */
        justify-content: space-between;
    }

    .navbar-brand img {
        width: 180px !important;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn-full {
        width: 100%;
    }

    .ticket-form-container {
        padding: 2.5rem 1rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        gap: 0.3rem;
    }

    .breadcrumb li:not(:last-child)::after {
        margin-left: 0.3rem;
        margin-right: 0.3rem;
    }

    .breadcrumb a {
        gap: 0.2rem;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu,
    .btn,
    .footer {
        display: none;
    }

    main {
        padding-top: 0;
    }
}