/* Global Styles */
:root {
    --primary-color: #C850C0;
    --secondary-color: #4158D0;
    --pink-color: #f43f5e;
    --purple-color: #8b5cf6;
    --orange-color: #f59e42;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --text-muted: #6b7280;
    --light-bg: #fafafa;
    --dark-bg: #111827;
    --gradient-primary: linear-gradient(135deg, #C850C0, #4158D0);
    --gradient-pink: linear-gradient(120deg, #e83e8c 0%, #6f42c1 100%);
    --gradient-purple: linear-gradient(120deg, #6f42c1 0%, #4e73df 100%);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: var(--dark-bg);
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .bg-white {
    background-color: #1f2937 !important;
    color: #fff;
}

body.dark-mode .text-muted {
    color: #9ca3af !important;
}

body.dark-mode .card,
body.dark-mode .service-card,
body.dark-mode .testimonial-card,
body.dark-mode .news-card {
    background-color: #1f2937;
    border-color: #374151;
}

body.dark-mode .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .navbar {
    background-color: #111827 !important;
    border-color: #374151;
}

body.dark-mode .nav-link {
    color: #e5e7eb !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar Styles */
.navbar-top-line {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.custom-navbar {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: relative;
    width: 150px;
    height: 40px;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: opacity 0.3s;
}

.dark-logo {
    opacity: 0;
}

body.dark-mode .light-logo {
    opacity: 0;
}

body.dark-mode .dark-logo {
    opacity: 1;
}

.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-pill:hover,
.nav-pill.active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Modern Section Styles */
.section-padding {
    padding: 100px 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: #4f46e5;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: #db2777;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 10s ease-in-out infinite;
}

/* Hero Badge */
.hero-badge .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(200, 80, 192, 0.2);
}

.btn-gradient:hover {
    box-shadow: 0 6px 8px -1px rgba(200, 80, 192, 0.3);
    color: #fff;
}

.btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 4rem;
}

.trust-item {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-number {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decor-brace {
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: monospace;
}

.decor-brace-left {
    left: 5%;
    top: 20%;
}

.decor-brace-right {
    right: 5%;
    bottom: 20%;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.arrow span {
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin: -2px;
    animation: arrow 2s infinite;
}

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

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

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .trust-indicators {
        margin-top: 2rem;
    }

    .trust-item {
        padding: 0.75rem 1.5rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .decor-brace {
        font-size: 8rem;
    }
}

/* Service Cards */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Technology Slider */
.tech-section {
    background: var(--light-color);
}

.tech-slider {
    display: flex;
    gap: 2rem;
    animation: slide 30s linear infinite;
}

.tech-slide {
    flex: 0 0 150px;
    text-align: center;
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
}

.tech-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partner Cards */
.partner-card {
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 60px;
    object-fit: contain;
}

.star-rating {
    color: #fbbf24;
}

.stat-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-value {
    font-weight: 600;
}

.text-pink {
    color: var(--pink-color);
}

.text-blue {
    color: var(--primary-color);
}

.text-purple {
    color: var(--purple-color);
}

.text-orange {
    color: var(--orange-color);
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Section */
.contact-pill {
    background: linear-gradient(90deg, var(--pink-color), var(--purple-color));
    color: white;
    padding: 0.5rem 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.emergency-card {
    background: linear-gradient(135deg, var(--pink-color), var(--purple-color));
}

/* Footer */
.footer-section {
    background: var(--dark-color);
    color: white;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

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

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

/* Dark Mode Styles */
.dark-mode {
    background-color: var(--dark-color);
    color: white;
}

.dark-mode .bg-white {
    background-color: #2d3748 !important;
    color: white;
}

.dark-mode .text-muted {
    color: #a0aec0 !important;
}

.dark-mode .form-control {
    background-color: #2d3748;
    border-color: #4a5568;
    color: white;
}

.dark-mode .form-control:focus {
    background-color: #2d3748;
    border-color: var(--primary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .mega-menu {
        position: static;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .decor-brace {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

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

/* Content Section Styles */
.content-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.content-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-svg {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

/* SVG Animation Styles */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards;
}

.animate-draw-delay {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards;
    animation-delay: 1s;
}

.device-frame {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.code-elements rect {
    transition: all 0.3s ease;
}

.floating-elements circle,
.floating-elements rect {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.connection-lines path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* SVG Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover Effects */
.content-image-wrapper:hover .device-frame {
    transform: translateY(-10px);
}

.content-image-wrapper:hover .code-elements rect {
    transform: scaleX(1.1);
}

/* Dark Mode Styles */
body.dark-mode .device-frame {
    fill: #1e293b;
}

body.dark-mode .code-elements rect {
    fill: var(--primary-color);
}

body.dark-mode .floating-elements circle,
body.dark-mode .floating-elements rect {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-svg {
        max-width: 100%;
    }

    .content-image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 60px 0;
    }

    .content-svg {
        transform: scale(0.8);
    }
}

/* Services Section */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(162, 28, 175, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #a21caf);
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Technology Stack Section */
.tech-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.tech-slider-wrapper {
    position: relative;
    padding: 3rem 0;
}

.tech-slider {
    display: flex;
    gap: 3rem;
    animation: slide 30s linear infinite;
}

.tech-slide {
    flex: 0 0 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-slide:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.tech-slide:hover .tech-icon {
    transform: scale(1.1);
}

/* Statistics Section */
.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #a21caf);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

/* Testimonials Section */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-avatar img {
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* News Section Styles */
.news-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.news-pill {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.news-image {
    height: 240px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    z-index: 1;
}

.news-date .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.news-content {
    background: white;
}

.news-category .badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
}

.bg-primary-soft {
    background: rgba(79, 70, 229, 0.1);
}

.bg-success-soft {
    background: rgba(16, 185, 129, 0.1);
}

.bg-warning-soft {
    background: rgba(245, 158, 11, 0.1);
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1f2937;
}

.news-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-link {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

/* Responsive Adjustments for News Section */
@media (max-width: 768px) {
    .news-image {
        height: 200px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #a21caf);
    border-radius: 15px;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

/* Text Visibility Fixes */
.services-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

body.dark-mode .services-heading {
    color: #fff;
}

/* Service Cards Text Visibility */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

body.dark-mode .service-title {
    color: #fff;
}

.service-desc {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.dark-mode .service-desc {
    color: #e5e7eb;
}

/* Testimonial Text Visibility */
.testimonial-text {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

body.dark-mode .testimonial-text {
    color: #e5e7eb;
}

/* News Section Text Visibility */
.news-content h3 {
    color: var(--text-color);
    font-weight: 700;
}

body.dark-mode .news-content h3 {
    color: #fff;
}

.news-content p {
    color: #4b5563;
}

body.dark-mode .news-content p {
    color: #e5e7eb;
}

/* Contact Section Text Visibility */
.contact-info h2 {
    color: var(--text-color);
    font-weight: 800;
}

body.dark-mode .contact-info h2 {
    color: #fff;
}

.contact-info p {
    color: #4b5563;
}

body.dark-mode .contact-info p {
    color: #e5e7eb;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-card,
    .stat-card,
    .testimonial-card,
    .news-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .service-icon,
    .stat-icon,
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Partner Cards */
.partner-card {
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 60px;
    object-fit: contain;
}

.border-primary-gradient {
    border-image: var(--gradient-primary) 1;
}

.border-pink-gradient {
    border-image: var(--gradient-pink) 1;
}

.border-purple-gradient {
    border-image: var(--gradient-purple) 1;
}

/* Badges */
.partners-pill,
.contact-pill {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Dropdown Mega Menu Styles */
.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0 0 1rem 1rem;
}

.mega-menu {
    padding: 2rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mega-menu-group {
    margin-bottom: 1.5rem;
}

.mega-menu-title {
    color: var(--primary-color);
    
    font-size: 0.70rem;
    margin-bottom: 1rem;
}

.mega-menu ul li a {
    color: var(--text-color);
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
  
    transform: translateX(5px);
}

body.dark-mode .mega-menu-group ul li a {
    color: #e5e7eb;
}

body.dark-mode .mega-menu-group ul li a:hover {
    color: #fff;
}

/* About Page Styles */
.about-hero-section {
    background: var(--gradient-primary);
    min-height: 60vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card {
    transition: transform 0.3s;
}

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

.value-card {
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
}

.team-card {
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-social a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--primary-color);
}

body.dark-mode .team-social a {
    color: #fff;
}

body.dark-mode .team-social a:hover {
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 50vh;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 40vh;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }
}

/* Custom Variables */
:root {
    --primary-color: #C850C0;
    --secondary-color: #4158D0;
    --gradient-pink: linear-gradient(120deg, #e83e8c 0%, #6f42c1 100%);
    --gradient-purple: linear-gradient(120deg, #6f42c1 0%, #4e73df 100%);
}

/* Navbar Styles */
.navbar-top-line {
    height: 4px;
    background: var(--gradient-pink);
}

.custom-navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-pill:hover,
.nav-pill.active {
    background: rgba(111, 66, 193, 0.1);
    color: var(--primary-color);
}

/* Logo Styles */
.logo-container {
    position: relative;
    width: 120px;
}

.logo-img {
    max-height: 40px;
    transition: opacity 0.3s ease;
}

.dark-logo {
    display: none;
}

/* Mega Menu Styles */
.mega-menu {
    width: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.mega-menu-group {
    padding: 1rem;
}

.mega-menu-title {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    font-size: 14px;
}

.mega-menu ul li a {
    color: #666;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Button Styles */
.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(200, 80, 192, 0.2);
}

.btn-gradient:hover {
    box-shadow: 0 6px 8px -1px rgba(200, 80, 192, 0.3);
    color: #fff;
}

.btn-pink {
    background: var(--gradient-pink);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(232, 62, 140, 0.2);
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(232, 62, 140, 0.3);
    color: #fff;
}

/* Hero Section Styles */
.about-hero-section {
    position: relative;
    overflow: hidden;
}

.about-gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.bg-mission {
    background: linear-gradient(135deg, #fff6fb 0%, #f9f6ff 100%);
}

.bg-vision {
    background: linear-gradient(135deg, #f6f9ff 0%, #fff6fb 100%);
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
   
    color: white;
    font-size: 1.5rem;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.mv-tag {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.bg-mission-tag {
    background: rgba(232, 62, 140, 0.1);
    color: var(--secondary-color);
}

.bg-vision-tag {
    background: rgba(111, 66, 193, 0.1);
}

/* Core Values Section */
.core-value-card {
    transition: all 0.3s ease;
}

.core-value-card:hover {
    transform: translateY(-5px);
}

.core-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.bg-pink {
    background: var(--gradient-pink);
}

.bg-purple {
    background: var(--gradient-purple);
}

.bg-violet {
    background: linear-gradient(120deg, #6f42c1 0%, #4e73df 100%);
}

.bg-green {
    background: linear-gradient(120deg, #2837a7 0%, #8e20c9 100%);
}

.bg-yellow {
    background: linear-gradient(120deg, #ffc107 0%, #fd7e14 100%);
}

.bg-red {
    background: linear-gradient(120deg, #dc3545 0%, #e83e8c 100%);
}

/* Contact Section */
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: white;
    font-size: 1.2rem;
}

/* Footer Styles */
.footer-section {
    background-color: var(--light-bg);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
  
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Dark Mode Styles */
.dark-mode {
    background: #1a1a1a;
    color: #fff;
}

.dark-mode .navbar {
    background: #242424 !important;
}

.dark-mode .nav-link {
    color: #fff;
}

.dark-mode .light-logo {
    display: none;
}

.dark-mode .dark-logo {
    display: block;
}

.dark-mode .bg-white {
    background: #242424 !important;
}

.dark-mode .text-muted {
    color: #aaa !important;
}

.dark-mode .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.075) !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static !important;
        width: 100%;
    }

    .navbar-nav {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        min-height: 50vh;
    }

    .mv-title {
        font-size: 1.5rem;
    }
}

/* Careers Page Styles */
.careers-hero-section {
    position: relative;
    overflow: hidden;
}

.careers-hero-overlay {
    background: linear-gradient(120deg, rgba(120, 0, 120, 0.8) 0%, rgba(60, 0, 120, 0.8) 100%);
}

.benefit-card {
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.position-card {
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.process-card {
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Dark Mode Styles for Careers Page */
body.dark-mode .benefit-card,
body.dark-mode .position-card,
body.dark-mode .process-card {
    background: #242424;
    color: #fff;
}

body.dark-mode .text-muted {
    color: #aaa !important;
}

/* Services Page Styles */
.services-hero-section {
    position: relative;
    overflow: hidden;
}

.services-hero-overlay {
    background: linear-gradient(120deg, rgba(120, 0, 120, 0.7) 0%, rgba(60, 0, 120, 0.7) 100%);
}

.services-gradient-text {
    background: linear-gradient(120deg, #ff6b6b 0%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(120deg, rgba(120, 0, 120, 0.1) 0%, rgba(60, 0, 120, 0.1) 100%);
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(120, 0, 120, 0.1) 0%, rgba(60, 0, 120, 0.1) 100%);
    margin: 0 auto;
}

/* Dark Mode Styles for Services Page */
.dark-mode .service-card {
    background: var(--dark-bg) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-card:hover {
    border-color: var(--primary-color);
}

.dark-mode .service-icon,
.dark-mode .feature-icon {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.dark-mode .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgba(120, 0, 120, 0.1) 0%, rgba(60, 0, 120, 0.1) 100%);
    border-radius: 12px;
}

.category-card ul li a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.category-card ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

body.dark-mode .category-card {
    background: var(--dark-bg) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .category-card:hover {
    border-color: var(--primary-color);
}

body.dark-mode .category-card ul li a {
    color: #e5e7eb;
}

body.dark-mode .category-card ul li a:hover {
    color: #fff;
}

header a.navbar-brand {
    margin: 0;
    max-width: 100px
}

.navbar .navbar-nav .nav-item.active .nav-link {
    color: #dc3545
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    padding: 0;
    line-height: 45px;
    font-size: 20px
}

.nav-link {
    color: #dc3545
}

.btn {
    font-weight: 600;
    transition: .5s
}

.btn-square {
    width: 32px;
    height: 32px
}

.btn-sm-square {
    width: 34px;
    height: 34px
}

.btn-md-square {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px
}

.btn-lg-square {
    width: 56px;
    height: 56px
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400
}

.btn.border-secondary {
    transition: 0.5s
}

.btn.border-secondary:hover {
    background: #dee2e6 !important;
    color: var(--bs-white) !important
}

.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center
}

.topbar .top-link a {
    letter-spacing: 1px
}

.topbar .top-link a small:hover {
    color: #dee2e6 !important;
    transition: 0.5s
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s
}

.navbar {
    height: 70px;
    border-bottom: 1px solid rgb(255 255 255 / .1)
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #dc3545
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px
}

.btn-primary {
    background: linear-gradient(90deg, #3b82f6, #ec4899 );
    border: none;
    transition: all 0.2s ease;
}
@media (min-width:1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0
    }
}

 .dropdown-menu  {
    font-size: 15px !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1
}

#searchModal .modal-content {
    background: rgb(255 255 255 / .8)
}

.hero-header {
    background: linear-gradient(rgb(248 223 173 / .1), rgb(248 223 173 / .1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.carousel-item {
    position: relative
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgb(255 181 36 / .7), rgb(255 181 36 / .7))
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel-control-next {
    margin-right: 20px
}

.carousel-control-prev {
    margin-left: 20px
}

.page-header {
    position: relative;
    background: linear-gradient(rgb(0 0 0 / .3), rgb(0 0 0 / .3)), url(../img/plywood.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

@media (min-width:992px) {

    .hero-header,
    .page-header {
        margin-top: 152px !important
    }
}

@media (max-width:992px) {

    .hero-header,
    .page-header {
        margin-top: 97px !important
    }
}

.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: #dee2e6;
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: #dee2e6
}

.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.fruite .tab-class .nav-item a.active {
    background: #dee2e6 !important
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: #dee2e6
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
    border: 1px #dbdbdb solid
}

.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgb(0 0 0 / .4)
}

.fruite .fruite-item .fruite-img {
    height: 300px;
    margin: 15px;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0
}

.input-group .btn {
    position: relative;
    z-index: 2;
    padding: .25rem .5rem
}

button.btn {
    padding: .25rem .5rem
}

a.btn {
    border-radius: 50px
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3)
}

.pt-50 {
    padding-top: 50px
}

.pb-50 {
    padding-bottom: 50px
}

.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgb(0 0 0 / .4)
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2)
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    transition: 0.5s
}

.vesitable .owl-nav .owl-prev:hover {
    background: #dee2e6;
    color: var(--bs-white)
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    transition: 0.5s
}

.vesitable .owl-nav .owl-next:hover {
    background: #dee2e6;
    color: var(--bs-white)
}

.banner .banner-btn:hover {
    background: var(--bs-primary)
}

.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgb(0 0 0 / .05)
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase
}

.counter h1 {
    margin-bottom: 0
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: auto;
    right: 20px;
    color: var(--bs-primary);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    transition: 0.5s
}

.testimonial .owl-nav .owl-prev:hover {
    background: #dee2e6;
    color: var(--bs-white)
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    transition: 0.5s
}

.testimonial .owl-nav .owl-next:hover {
    background: #dee2e6;
    color: var(--bs-white)
}

.pagination {
    display: inline-block
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid #dee2e6;
    margin: 0 4px
}

.pagination a.active {
    background-color: #dc3545;
    color: #FFF;
    border: 1px solid #dc3545
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary)
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid #dee2e6 !important
}

footer {
    background-color: #1d365d
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgb(255 255 255 / .5);
    transition: 0.5s
}

.footer .footer-item .btn-link:hover {
    color: #dee2e6 !important
}

.footer .footer-item p.mb-4 {
    line-height: 35px
}

.btn.border-secondary:hover {
    background: #1b365b !important;
    color: var(--bs-white) !important;
    border-color: #1b365b !important;
}

.footer-logo img.img-fluid {
    max-width: 120px;
}

@media (max-width:767px) {
    .testimonial .owl-nav .owl-prev {
        top: -28px;
        left: auto;
        right: auto;
    }

    .owl-carousel .owl-nav div.owl-next {
        left: auto;
        right: 0;
        top: -30px;
    }

    .slider-area.mt-top {
        margin-top: 100px;
    }

    .navbar-brand img.img-fluid {
        max-width: 70px;
    }

    .slider-area .hero__caption.hero__caption2 p {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .table-responsive table.table {
        width: 680px;
    }

}



.custom-navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-top-line {
    height: 2px;
    background: linear-gradient(90deg, #ff69b4, #4169e1);
}

.nav-link {
    font-weight: 500;
    padding: 0.4rem 0.8rem !important;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ff69b4 !important;
}

.nav-pill {
    border-radius: 6px;
}

.nav-pill:hover {
    background-color: rgba(255, 105, 180, 0.08);
}

.mega-menu {
    margin-top: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-item {
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background-color: rgba(255, 105, 180, 0.04);
    border-radius: 4px;
}



.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 0.5rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .mega-menu {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
}


.mega-menu {
    display: none;
}

.dropdown:hover .mega-menu {
    display: block;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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



.breadcrumb-modern-container {
            background: linear-gradient(90deg, rgba(59,130,246,0.10) 0%, rgba(162,28,175,0.10) 100%);
            backdrop-filter: blur(12px);
           
            box-shadow: 0 8px 32px rgba(60, 72, 100, 0.14);
            border: 1.5px solid rgba(59,130,246,0.12);
            transition: box-shadow 0.3s;
        }
        .breadcrumb-modern {
            background: transparent;
            border-radius: 1.25rem;
        }
        .breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
            color: #a21caf;
            font-weight: bold;
            font-size: 1.1em;
        }
        .breadcrumb-modern .breadcrumb-item a {
            color: #3b82f6;
            font-weight: 500;
            transition: color 0.2s, transform 0.2s;
            display: inline-flex;
            align-items: center;
        }
        .breadcrumb-modern .breadcrumb-item a:hover {
            color: #a21caf;
            transform: scale(1.07);
            text-decoration: none;
        }
        .breadcrumb-modern .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #a21caf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.08em;
        }
        .breadcrumb-icon {
            font-size: 1.25em;
            vertical-align: middle;
        }
        .animate-fade-in {
            animation: fadeInBreadcrumb 0.8s cubic-bezier(0.4,0,0.2,1);
        }
        @keyframes fadeInBreadcrumb {
            from { opacity: 0; transform: translateY(-12px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 576px) {
            .breadcrumb-modern-container {
                padding-left: 0.2rem;
                padding-right: 0.2rem;
                border-radius: 0.75rem;
            }
            .breadcrumb-modern {
                padding-left: 0.5rem !important;
                padding-right: 0.5rem !important;
            }
            .breadcrumb-modern .gradient-text {
                font-size: 1em;
            }
            .breadcrumb-icon {
                font-size: 1.1em;
            }
        }
        
           .breadcrumb-modern .breadcrumb-item a,
        .breadcrumb-home-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb-modern .breadcrumb-item a:hover,
        .breadcrumb-home-link:hover {
            color: inherit !important;
            text-decoration: underline;
        }



        /* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Tab Styling */
  #filterTabs .nav-link {
    border: none !important;
    border-radius: 999px !important;
    font-size: 0.95rem;
    color:rgb(191, 109, 214);
    background-color: #f0f0f0;
    transition: background 0.3s, color 0.3s;
  }
  #filterTabs .nav-link.active {
    background:rgb(202, 137, 246) !important;
    color: #fff !important;
  }
  
  /* SEO URL Chips */
  .seo-url-link {
      display: inline-block;
      font-size: 0.90rem;
      padding: 0.3rem 0.2rem;
      transition: all 0.25s ease;
      white-space: nowrap;
      color: #222;
      position: relative;
      text-decoration: none;
  }
  .seo-url-link:hover {
      color: #ff69b4 !important;
     
      border-radius: 10px !important;
      transition: .5s;
      opacity: 1;
  }
  .seo-url-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -2px;
      left: 0;
      background: linear-gradient(90deg, #ff69b4, #ffb6c1);
      transition: width 0.3s ease;
  }
  .seo-url-link:hover::after {
      width: 100%;
  }
  
  /* Smooth Appearance */
  .fade-in {
    animation: fadeIn 0.4s ease-in-out;
  }
  
  /* Utility */
  #seoUrlLinksList div {
    transition: all 0.2s ease-in-out;
  }

  
.homepage-blog-card {
    position: relative;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgb(185, 101, 249);
    min-height: 420px;
    animation: fadeInCard 0.7s cubic-bezier(.4,2,.6,1);
}
.homepage-blog-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 12px 32px rgba(13,110,253,0.13), 0 2px 12px rgba(0,0,0,0.07);
    z-index: 2;
    border-color: rgb(191, 101, 251);
}
.homepage-blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.homepage-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    transition: filter 0.2s;
    display: block;
}
.homepage-blog-card:hover .homepage-blog-image img {
    filter: brightness(0.92) saturate(1.08);
}
.homepage-tech-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0d6efd;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(13,110,253,0.13);
    z-index: 2;
    letter-spacing: 0.01em;
}
.homepage-blog-title {
    transition: color 0.2s;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    min-height: 48px;
}
.homepage-city-meta {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.navbar .nav-item .nav-link.dropdown-toggle {
    display: inline-flex !important;
       align-items: center !important;
       justify-content: center !important;
       gap: 4px !important;
       line-height: 1 !important;
       position: relative !important;
       font-weight: 500 !important;
       color: #333 !important;
       font-size: .875rem !important;
   }
   .navbar .nav-item .nav-link.dropdown-toggle::after {
       position: static !important;
       margin-left: 4px !important;
       vertical-align: middle !important;
       display: inline-block !important;
       transform: translateY(-1px) !important;
   }
   .navbar .nav-item .nav-link.dropdown-toggle:hover {
       text-decoration: none !important;
   }
   .mega-menu a:hover {
       text-decoration: none !important;
   }
   .dropdown-menu a {
       transition: all 0.3s ease;
       position: relative;
        
   }
   .dropdown-menu a:hover {
       color: #ff69b4 !important;
       text-decoration: none;
   }
   .dropdown-menu a::after {
       content: '';
       position: absolute;
       width: 0;
       height: 2px;
       bottom: -2px;
       left: 0;
       background: linear-gradient(90deg, #ff69b4, #ffb6c1);
       transition: width 0.3s ease;
   }
   .dropdown-menu a:hover::after {
       width: 100%;
   }
   .dropdown-icon {
       font-size: 12px;
       margin-left: 4px;
   }

   /* Hide Bootstrap's default dropdown arrow */
   .dropdown-toggle::after {
       display: none !important;
   }
   
   /* More specific rule to ensure Bootstrap's dropdown arrow is hidden */
   .navbar .nav-item .nav-link.dropdown-toggle::after {
       display: none !important;
   }
   
   /* Hide all Bootstrap dropdown arrows */
   .dropdown-toggle::after,
   .dropdown-toggle::before {
       display: none !important;
   }

   /* Ensure dropdowns are visible and working */
   .dropdown-menu {
       z-index: 9999 !important;
   }
   
   .dropdown-menu.show {
       display: block !important;
   }
   
   /* Debug styles - remove after testing */
   .dropdown-toggle {
       cursor: pointer !important;
   }
   
   .navbar-toggler {
       cursor: pointer !important;
   }

   /* Mobile Responsive Styles */
   @media (max-width: 991.98px) {
       /* Mobile Menu Container */
       .mobile-menu-container {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100vh;
           background: rgba(0, 0, 0, 0.5);
           z-index: 9998;
           display: none;
       }
       
       .mobile-menu-container.show {
           display: block !important;
       }
       
       /* Mobile Menu Content */
       .mobile-menu-content {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100vh;
           background: white !important;
           border: none !important;
           overflow-y: auto;
           padding: 2rem 1rem;
           z-index: 9999;
           box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
       }
       
       .mobile-menu-header {
           display: flex;
           justify-content: space-between;
           align-items: center;
           margin-bottom: 2rem;
           padding-bottom: 1rem;
           border-bottom: 1px solid #e9ecef;
       }
       
       .mobile-menu-header h4 {
           color: #333;
           margin: 0;
           font-weight: 600;
       }
       
       .mobile-menu-close {
           background: linear-gradient(90deg, #ff69b4, #ffb6c1);
           color: white;
           border: none;
           padding: 0.5rem 1rem;
           border-radius: 5px;
           font-size: 1.2rem;
           cursor: pointer;
           transition: background-color 0.3s ease;
       }
       
       .mobile-menu-close:hover {
           background: linear-gradient(90deg, #ff69b4, #ffb6c1);
       }
       
       .mobile-nav {
           list-style: none;
           padding: 0;
           margin: 0;
       }
       
       .mobile-nav .nav-item {
           border-bottom: 1px solid #ccc;
           padding: 1rem 0;
       }
       
       .mobile-nav .nav-item:last-child {
           border-bottom: none;
       }
       
       .mobile-nav .nav-link {
           color: #333;
           text-decoration: none;
           font-size: 1.1rem;
           font-weight: 500;
           display: block;
           padding: 0.5rem 0;
       }
       
       .mobile-dropdown {
           background: #f8f9fa;
           margin-top: 1rem;
           padding: 1rem;
           border-radius: 8px;
           border: 1px solid #e9ecef;
           display: none;
           box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
       }
       
       .mobile-dropdown.show {
           display: block !important;
       }
       
       .mobile-dropdown-toggle {
           display: flex;
           justify-content: space-between;
           align-items: center;
           cursor: pointer;
           transition: color 0.3s ease;
       }
       
       .mobile-dropdown-toggle:hover {
           color: #6785FF;
       }
       
       .mobile-dropdown-toggle::after {
           content: '';
           display: none;
       }
       
       .dropdown-arrow {
           font-size: 0.8rem;
           transition: transform 0.3s ease;
           color: #6785FF;
       }
       
       .mobile-dropdown-toggle.active .dropdown-arrow {
           transform: rotate(180deg);
       }
       
       .mobile-dropdown .row {
           margin: 0;
       }
       
       .mobile-dropdown .col-3 {
           flex: 0 0 100%;
           max-width: 100%;
           margin-bottom: 1rem;
       }
       
       .mobile-dropdown .mega-menu-title {
           font-weight: 600;
           color: #333;
           margin-bottom: 0.5rem;
           display: block;
           transition: color 0.3s ease;
       }
       
       .mobile-dropdown .mega-menu-title:hover {
           color: #6785FF;
           text-decoration: none;
       }
       
       .mobile-dropdown ul {
           list-style: none;
           padding-left: 0;
           margin: 0;
       }
       
       .mobile-dropdown ul li {
           padding: 0.25rem 0;
       }
       
       .mobile-dropdown ul li a {
           color: #666;
           text-decoration: none;
           padding: 0.25rem 0;
           display: block;
           transition: color 0.3s ease;
       }
       
       .mobile-dropdown ul li a:hover {
           color: #6785FF;
       }
       
       .mobile-dropdown .btn {
           width: 100%;
           margin-top: 1rem;
       }
       
       /* Hide original navbar collapse on mobile */
       .navbar-collapse {
           display: none !important;
       }
   }

   /* Desktop Styles */
   @media (min-width: 992px) {
       .dropdown-menu {
           width: 1000px !important;
           left: 50% !important;
           transform: translateX(-50%) !important;
           margin-top: 0.5rem !important;
           z-index: 9999 !important;
           position: absolute !important;
       }
       
       .position-static {
           position: static !important;
       }
       
       /* Hide mobile menu on desktop */
       .mobile-menu-container {
           display: none !important;
       }
       
       /* Remove hover effects from View All buttons in desktop dropdowns */
       .dropdown-menu .btn:hover {
           background-color: var(--bs-btn-bg) !important;
           border-color: var(--bs-btn-border-color) !important;
           color: var(--bs-btn-color) !important;
           transform: none !important;
           box-shadow: none !important;
       }
       
       .dropdown-menu .btn:focus {
           background-color: var(--bs-btn-bg) !important;
           border-color: var(--bs-btn-border-color) !important;
           color: var(--bs-btn-color) !important;
           box-shadow: none !important;
       }
   }
   /* For desktop dropdowns */
.dropdown-menu {
    max-height: 650px; /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Optional: Custom scrollbar (WebKit) */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* For mobile dropdowns */
.mobile-dropdown {
    max-height: 400px; /* Adjust as needed */
    overflow-y: auto;
}


a strong {
    color: #0d6efd;
}
p a {
    color: #0d6efd;
}

p a:hover{
    color: #0d6efd;
}