:root {
    /* Primary Color Palette */
    --primary-blue: #1f51e6;
    --primary-blue-light: #2961ff;
    --primary-blue-dark: #0f2fb6;
    
    --secondary-orange: #c29061;
    --secondary-orange-light: #fe9e48;
    --secondary-orange-dark: #fd8002;
    
    --accent-green: #1ed1a1;
    --accent-green-light: #21cb80;
    --accent-green-dark: #019379;
    
    --neutral-gray: #6b7281;
    --neutral-gray-light: #b2b4b8;
    --neutral-gray-dark: #3b4b5c;
    
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --text-dark: #191f2a;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 19px;
    --font-size-lg: 21px;
    --font-size-xl: 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    backdrop-filter: blur(10px);
    box-shadow: 0 7px 20px rgba(43, 99, 254, 0.10);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.65rem !important;
    font-weight: 700;
    color: var(--background-white) !important;
}

.navbar-nav .nav-link {
    color: var(--background-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-orange-light) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    color: var(--background-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../JAN_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.63rem;
    font-weight: 300;
    margin-bottom: 1.61rem;
    color: var(--secondary-orange-light);
}

.hero-section p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.py-5 {
    padding: 80px 0 !important;
}

/* About Section */
.about-section {
    background-color: var(--background-light);
}

.about-section h2 {
    font-size: 2.58rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.about-section h3 {
    font-size: 1.33rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.feature-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 109, 237, 0.15);
}

.feature-card i {
    color: var(--primary-blue);
}

.feature-card h4 {
    font-size: 1.16rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.96rem;
}

/* Services Section */
.services-section {
    background-color: var(--background-white);
}

.services-section h2 {
    font-size: 2.51rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.services-section h3 {
    font-size: 1.29rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.service-card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(16, 53, 210, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 0.93rem;
}

.service-card p {
    color: var(--neutral-gray);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.71rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--neutral-gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-green);
    position: absolute;
    left: 0;
}

.service-card .price {
    font-size: 1.62rem;
    font-weight: 700;
    color: var(--secondary-orange);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--background-light), var(--background-white));
}

.features-section h2 {
    font-size: 2.63rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.features-section h3 {
    font-size: 1.38rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.feature-item {
    padding: 2rem 1rem;
}

.feature-item i {
    color: var(--accent-green);
}

.feature-item h4 {
    font-size: 1.22rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--background-white);
}

.contact-section h2 {
    font-size: 2.60rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-section h3 {
    font-size: 1.39rem;
    color: var(--secondary-orange-light);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #fdfdfd;
    border-radius: 11px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(18, 120, 234, 0.10);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-orange-light));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--secondary-orange-dark), var(--secondary-orange));
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--background-white);
}

.footer h5, .footer h6 {
    color: var(--secondary-orange-light);
    font-weight: 600;
}

.footer a {
    color: var(--neutral-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-orange-light);
}

.footer hr {
    border-color: var(--neutral-gray-dark);
}

/* Utilities */
.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.text-secondary {
    color: var(--secondary-orange) !important;
}

.bg-secondary {
    background-color: var(--secondary-orange) !important;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Additional Sections Styling */

/* Team Section */
.team-section {
    background-color: var(--background-light);
}

.team-section h2 {
    font-size: 2.53rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.team-section h3 {
    font-size: 1.35rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Reviews/Testimonials Section */
.reviews-section {
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-green-light));
    color: var(--background-white);
}

.reviews-section h2 {
    font-size: 2.61rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reviews-section h3 {
    font-size: 1.27rem;
    color: var(--secondary-orange-light);
    margin-bottom: 1rem;
}

.review-card {
    background: var(--background-white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.review-card .stars {
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 2.52rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.faq-section h3 {
    font-size: 1.27rem;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--background-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: var(--primary-blue);
    color: var(--background-white);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question::after {
    content: '+';
    float: right;
    font-size: 1.59rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--background-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--background-light), var(--background-white));
}

.process-section h2 {
    font-size: 2.58rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-orange);
    color: var(--background-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-steps {
    counter-reset: step-counter;
}

/* Blog Section */
.blog-section {
    background-color: var(--background-light);
}

.blog-section h2 {
    font-size: 2.57rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.blog-card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--background-white);
}

.priceplan-section h2 {
    font-size: 2.60rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.priceplan-card {
    background: var(--background-white);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.priceplan-card:hover {
    transform: translateY(-10px);
}

.priceplan-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-orange);
    margin: 1rem 0;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--background-light);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--neutral-gray-light);
}

.timeline-item:last-child::after {
    display: none;
}

/* Career Section */
.career-section {
    background-color: var(--background-white);
}

.career-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.64rem;
    border-left: 4px solid var(--primary-blue);
    transition: box-shadow 0.3s ease;
}

.career-card:hover {
    box-shadow: 0 8px 30px rgba(42, 106, 245, 0.15);
}

/* Core Info Section */
.coreinfo-section {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: var(--background-white);
}

.coreinfo-item {
    text-align: center;
    padding: 2rem 1rem;
}

.coreinfo-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-orange-light);
}

/* Case Study Section */
.casestudy-section {
    background-color: var(--background-light);
}

.casestudy-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.casestudy-card:hover {
    transform: translateY(-5px);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: brightness(0.7);
}

/* Additional Page Sections */
.additional-page-section {
    padding: 4rem 0;
}

.additional-page-section:nth-child(even) {
    background-color: var(--background-light);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
