@charset "utf-8";
/* Amrut Jivan Technologies – Brand colors: #f59507 (orange), #387bbd (blue) */

:root {
    --aj-orange: #f59507;
    --aj-orange-light: #f9b84d;
    --aj-orange-dark: #c47606;
    --aj-blue: #387bbd;
    --aj-blue-light: #5c9ad4;
    --aj-blue-dark: #2a5d8f;
}

/* Global font – used across all pages */
.page-head,
body,
h1, h2, h3, h4, h5, h6,
p,
.button {
    font-family: 'Inter', sans-serif !important;
}

/* Header & nav brand styling – white background, never change on scroll */
.aj-header .rd-navbar-wrap,
.aj-header .rd-navbar.rd-navbar-fixed .rd-navbar-wrap,
.rd-navbar.aj-navbar .rd-navbar-wrap,
.rd-navbar.aj-navbar.rd-navbar--is-clone .rd-navbar-wrap,
.aj-header .rd-navbar-inner,
.rd-navbar.aj-navbar .rd-navbar-inner,
.rd-navbar.aj-navbar.rd-navbar--is-clone .rd-navbar-inner {
    background: #ffffff !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    /* animation: ajHeaderSlide 0.5s ease-out; */
}

.aj-header .rd-navbar-inner,
.rd-navbar.aj-navbar .rd-navbar-inner {
    box-shadow: none;
}

/* Header: fixed + hide on scroll down, show on scroll up */
.page > header.page-head.aj-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    transition: transform 0.1s ease-out;
}
.page > header.page-head.aj-header.aj-header-hidden {
    transform: translateY(-100%);
}
.page.page-with-aj-header {
    padding-top: 80px;
}

.aj-header .rd-navbar-panel {
    min-height: 70px;
    display: flex;
    align-items: center;
}

.aj-header .rd-navbar-brand {
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
}

/* Hamburger icon dark on white header */
.aj-header .rd-navbar-toggle span,
.aj-header .rd-navbar-toggle span:after,
.aj-header .rd-navbar-toggle span:before,
.rd-navbar.aj-navbar .rd-navbar-toggle span,
.rd-navbar.aj-navbar .rd-navbar-toggle span:after,
.rd-navbar.aj-navbar .rd-navbar-toggle span:before {
    background-color: #333333 !important;
}

@keyframes ajHeaderSlide {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aj-brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aj-brand img {
    display: block !important;
    height: 56px !important;
    max-height: 56px !important;
    width: auto !important;
    min-width: 200px;
    object-fit: contain;
    vertical-align: middle;
}

/* Larger logo on bigger screens */
@media (min-width: 992px) {
    .aj-brand img {
        height: 62px !important;
        max-height: 62px !important;
        min-width: 220px;
    }
}

.aj-brand:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.aj-logo-text {
    color: #fff;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.aj-logo-tech {
    color: var(--aj-orange);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* When header BG is white → nav font dark (and vice versa: when BG dark → font light) */
.aj-header .rd-navbar-nav > li > a,
.rd-navbar.aj-navbar .rd-navbar-nav > li > a,
.rd-navbar.aj-navbar.rd-navbar-static .rd-navbar-nav > li > a,
.rd-navbar.aj-navbar.rd-navbar-fixed .rd-navbar-nav > li > a,
.rd-navbar.aj-navbar.rd-navbar--is-clone .rd-navbar-nav > li > a {
    color: #333333 !important;
    transition: color 0.25s ease, background 0.25s ease;
}

.aj-header .rd-navbar-nav > li > a:hover,
.aj-header .rd-navbar-nav > li.active > a,
.rd-navbar.aj-navbar .rd-navbar-nav > li > a:hover,
.rd-navbar.aj-navbar .rd-navbar-nav > li.active > a {
    color: var(--aj-orange) !important;
}

.aj-navbar .rd-navbar-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--aj-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: ajDropdownFade 0.25s ease;
}

.aj-navbar .rd-navbar-dropdown li a {
    color: #333333 !important;
}

@keyframes ajDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aj-navbar .rd-navbar-dropdown li a:hover {
    color: var(--aj-orange) !important;
    background: rgba(245, 149, 7, 0.08);
    padding-left: 8px;
    transition: padding-left 0.2s ease, color 0.2s ease;
}

/* Footer */
.aj-footer {
    background: linear-gradient(180deg, var(--aj-blue-dark) 0%, #1a3a5c 100%) !important;
    border-top: 4px solid var(--aj-orange);
    animation: ajFooterFade 0.6s ease 0.1s both;
}

@keyframes ajFooterFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.aj-footer .h7 {
    color: var(--aj-orange) !important;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.aj-footer a:hover {
    color: var(--aj-orange-light) !important;
}

.aj-product-name {
    color: var(--aj-orange) !important;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Buttons & accents */
.button-primary-outline,
.button-primary-outline-v2,
.box-btn,
a.button.button-primary-outline {
    border-color: var(--aj-orange) !important;
    color: var(--aj-orange) !important;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.button-primary-outline:hover,
.button-primary-outline-v2:hover,
.box-btn:hover,
a.button.button-primary-outline:hover {
    background: var(--aj-orange) !important;
    color: #fff !important;
    border-color: var(--aj-orange) !important;
    transform: translateY(-2px);
}

.divider.bg-accent {
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue)) !important;
    height: 3px;
    border-radius: 2px;
}

/* Section backgrounds */
.bgyellow,
.bgyellows {
    background: linear-gradient(180deg, rgba(245, 149, 7, 0.08) 0%, rgba(56, 123, 189, 0.06) 100%) !important;
}

.bgblu {
    background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-blue-dark) 100%) !important;
}

/* Carousel / slider – readable on blue images */
.banner .carousel-caption h3.medium {
    color: var(--aj-orange) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.banner .carousel-caption .slider-header {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.banner .carousel-caption p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.carousel-caption .text-primary { color: var(--aj-orange) !important; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
}

/* Box / cards */
.icon-box .box-header h5 a {
    color: var(--aj-blue) !important;
    transition: color 0.25s ease;
}

.icon-box .box-header h5 a:hover {
    color: var(--aj-orange) !important;
}

/* Enhanced About Us Page Design */
.aj-about-hero {
    background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-orange) 100%);
    position: relative;
    overflow: hidden;
}

.aj-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.aj-about-hero-content {
    position: relative;
    z-index: 2;
}

.aj-about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.aj-about-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-weight: 300;
}

.aj-about-section {
    padding: 5rem 0;
    position: relative;
}

.aj-about-section-alt {
    background: linear-gradient(180deg, rgba(56,123,189,0.05) 0%, rgba(245,149,7,0.05) 100%);
}

.aj-about-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.aj-about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue));
}

.aj-about-image-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.aj-about-image-modern img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.aj-about-image-modern:hover img {
    transform: scale(1.05);
}

.aj-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.aj-about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.aj-about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56,123,189,0.15);
    border-color: var(--aj-orange);
}

.aj-about-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(245,149,7,0.3);
}

.aj-about-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aj-blue);
    margin-bottom: 1rem;
}

.aj-about-feature-text {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Contact Us Page Design - Premium Version */
.aj-contact-hero {
    background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-orange) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.aj-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.aj-contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.aj-contact-hero-content {
    position: relative;
    z-index: 2;
}

.aj-contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.aj-contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aj-contact-section {
    padding: 6rem 0;
    position: relative;
}

.aj-contact-section-alt {
    background: linear-gradient(180deg, rgba(56,123,189,0.03) 0%, rgba(245,149,7,0.03) 100%);
}

.aj-contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.aj-contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue));
}

.aj-contact-form-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,149,7,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.aj-contact-form-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.aj-contact-form-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.aj-contact-form-group {
    margin-bottom: 2rem;
    position: relative;
}

.aj-contact-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1.15rem;
}

.aj-contact-form-input {
    width: 100%;
    padding: 1.35rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.aj-contact-form-input:focus {
    outline: none;
    border-color: var(--aj-orange);
    background: #fff;
    box-shadow: 0 0 0 6px rgba(245,149,7,0.1);
    transform: translateY(-2px);
}

.aj-contact-form-textarea {
    min-height: 200px;
    resize: vertical;
    font-size: 1.15rem;
}

.aj-contact-form-submit {
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
    border: none;
    padding: 1.35rem 4rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245,149,7,0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

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

.aj-contact-form-submit:hover::before {
    left: 100%;
}

.aj-contact-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245,149,7,0.4);
}

/* Contact Information – custom channels section */
.aj-contact-channels-section {
    padding: 4.5rem 0 5rem;
    background: #fff;
    position: relative;
}
.aj-contact-channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,123,189,0.2), transparent);
}
.aj-contact-channels-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.aj-contact-channels-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}
.aj-contact-channels-lead {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.aj-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.aj-contact-channel-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aj-contact-channel-card:hover {
    border-color: var(--aj-orange);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(56, 123, 189, 0.1);
}
.aj-contact-channel-card-static {
    cursor: default;
    pointer-events: none;
}
.aj-contact-channel-card-static:hover {
    transform: none;
    border-color: transparent;
    background: #f8f9fa;
    box-shadow: none;
}
.aj-contact-channel-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
    font-size: 2.2rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(245, 149, 7, 0.25);
}
.aj-contact-channel-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aj-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.aj-contact-channel-value {
    font-size: 1.3rem;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}
.aj-contact-channel-card:not(.aj-contact-channel-card-static):hover .aj-contact-channel-value {
    color: var(--aj-blue);
}
@media (max-width: 991px) {
    .aj-contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
@media (max-width: 575px) {
    .aj-contact-channels-section {
        padding: 3rem 0 4rem;
    }
    .aj-contact-channels-title {
        font-size: 1.65rem;
    }
    .aj-contact-channels-header {
        margin-bottom: 2rem;
    }
    .aj-contact-channel-card {
        padding: 1.5rem 1.25rem;
    }
    .aj-contact-channel-value {
        font-size: 1rem;
    }
}

.aj-contact-info-section {
    background: linear-gradient(180deg, rgba(56,123,189,0.05) 0%, rgba(245,149,7,0.05) 100%);
    padding: 6rem 0;
    position: relative;
}

.aj-contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aj-orange), transparent);
}

.aj-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.aj-contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.aj-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.aj-contact-info-card:hover::before {
    transform: scaleX(1);
}

.aj-contact-info-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(56,123,189,0.15);
    border-color: var(--aj-orange);
}

.aj-contact-info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 15px 30px rgba(245,149,7,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.aj-contact-info-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-blue));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aj-contact-info-card:hover .aj-contact-info-icon::after {
    opacity: 0.3;
}

.aj-contact-info-card:hover .aj-contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(245,149,7,0.4);
}

.aj-contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aj-contact-info-text {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.aj-contact-info-link {
    color: var(--aj-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.aj-contact-info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aj-orange);
    transition: width 0.3s ease;
}

.aj-contact-info-link:hover::after {
    width: 100%;
}

.aj-contact-info-link:hover {
    color: var(--aj-orange);
}

/* Enhanced Features Section */
/* Why Choose Us – Contact page (refined UI) */
.aj-why-choose-section {
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.aj-why-choose-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 2.75rem;
}
.aj-why-choose-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}
.aj-why-choose-lead {
    font-size: 1.12rem;
    color: #444;
    line-height: 1.65;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.aj-why-choose-statement {
    max-width: 700px;
    margin: 0 auto 2.75rem;
    padding: 1.75rem 2.25rem;
    background: linear-gradient(135deg, var(--aj-blue) 0%, #2a5d8f 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(56, 123, 189, 0.25);
    position: relative;
    overflow: hidden;
}
.aj-why-choose-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-orange-light));
}
.aj-why-choose-statement p {
    margin: 0;
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.aj-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.aj-why-choose-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.aj-why-choose-item:hover {
    box-shadow: 0 8px 24px rgba(56, 123, 189, 0.1);
    border-color: rgba(245, 149, 7, 0.2);
    transform: translateY(-2px);
}
.aj-why-choose-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 123, 189, 0.1), rgba(245, 149, 7, 0.08));
    color: var(--aj-blue);
    font-size: 1.9rem;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    transition: background 0.25s ease, color 0.25s ease;
}
.aj-why-choose-item:hover .aj-why-choose-item-icon {
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
}
.aj-why-choose-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin: 0 0 0.5rem;
    font-family: 'Inter', sans-serif;
}
.aj-why-choose-item-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
@media (max-width: 767px) {
    .aj-why-choose-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .aj-why-choose-section {
        padding: 3.5rem 0 4rem;
    }
    .aj-why-choose-title {
        font-size: 1.8rem;
    }
    .aj-why-choose-lead {
        font-size: 1.05rem;
    }
    .aj-why-choose-header {
        margin-bottom: 2.25rem;
    }
    .aj-why-choose-statement {
        padding: 1.5rem 1.5rem;
        margin-bottom: 2.25rem;
    }
    .aj-why-choose-statement p {
        font-size: 1.05rem;
    }
    .aj-why-choose-item {
        padding: 1.5rem 1.25rem;
    }
    .aj-why-choose-item-title {
        font-size: 1.1rem;
    }
    .aj-why-choose-item-desc {
        font-size: 0.95rem;
    }
}

.aj-features-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.aj-feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.aj-feature-item:hover {
    background: rgba(245,149,7,0.05);
    transform: translateY(-5px);
}

.aj-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.aj-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aj-blue);
    margin-bottom: 0.5rem;
}

.aj-feature-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Map Section */
.aj-map-section {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(56,123,189,0.1) 0%, rgba(245,149,7,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aj-map-placeholder {
    text-align: center;
    color: var(--aj-blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.aj-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aj-contact-title {
        font-size: 2.5rem;
    }
    
    .aj-contact-subtitle {
        font-size: 1.1rem;
    }
    
    .aj-contact-form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .aj-contact-form-title {
        font-size: 2.15rem;
    }
    .aj-contact-form-subtitle {
        font-size: 1.1rem;
    }
    .aj-contact-form-label {
        font-size: 1.1rem;
    }
    .aj-contact-form-input {
        font-size: 1.1rem;
        padding: 1.15rem 1.25rem;
    }
    .aj-contact-form-submit {
        font-size: 1.15rem;
        padding: 1.2rem 3rem;
    }
    
    .aj-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .aj-contact-info-card {
        padding: 2.5rem 2rem;
    }
    
    .aj-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Service Cards for About Us */
.aj-service-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aj-service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.aj-service-card-modern:hover::before {
    transform: scaleX(1);
}

.aj-service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(56,123,189,0.15);
}

.aj-service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(245,149,7,0.3);
}
.aj-service-icon-modern .fa { font-size: 2rem; }

.aj-service-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aj-blue);
    margin-bottom: 1rem;
}

.aj-service-text-modern {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Counter / stats */
.box22 {
    margin-top: 10px;
    background: none;
    color: var(--aj-orange) !important;
    font-size: 55px !important;
    font: 700 38px/42px "Inter", sans-serif;
}

/* Modal overrides (index / global) */
.modal-header {
    padding: 0;
}
.modal-header .close {
    padding: 0;
    background-color: #f00;
    color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    z-index: 1;
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    line-height: 17px;
    margin: 0;
    font-size: 20px;
    text-shadow: 0;
}
.modal-dialog {
    max-width: 600px;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    margin: 0 auto;
}
.modal-body {
    padding: 0;
}

/* Service detail modal – improved UI & larger fonts */
body.aj-modal-open {
    overflow: hidden;
}
.aj-service-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}
.aj-service-modal[hidden] {
    display: none !important;
}
.aj-service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.aj-service-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.aj-service-modal-content {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.aj-service-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(56, 123, 189, 0.08) 0%, rgba(245, 149, 7, 0.06) 100%);
    border-bottom: 3px solid var(--aj-orange);
    flex-shrink: 0;
}
.aj-service-modal-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--aj-blue);
    letter-spacing: -0.02em;
}
.aj-service-modal-close {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #555;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.aj-service-modal-close:hover {
    background: var(--aj-orange);
    color: #fff;
    transform: scale(1.05);
}
.aj-service-modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 123, 189, 0.35);
}
.aj-service-modal-close-x {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
}
.aj-service-modal-close-x::before,
.aj-service-modal-close-x::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2.5px;
    background: currentColor;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}
.aj-service-modal-close-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.aj-service-modal-body {
    padding: 1.75rem 1.75rem 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.aj-service-detail-lead {
    color: #222;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 1.15rem;
    font-weight: 600;
}
.aj-service-detail p {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0 0 1.15rem;
}
.aj-service-detail-list {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
    color: #444;
    font-size: 1.08rem;
    line-height: 1.8;
}
.aj-service-detail-list li {
    margin-bottom: 0.5rem;
}
.aj-service-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    border-radius: 0 0 20px 20px;
}
.aj-service-modal-cta {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(245, 149, 7, 0.35);
}
.aj-service-modal-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 149, 7, 0.4);
}
.aj-service-modal-btn-close {
    padding: 0.85rem 1.5rem;
    border: 2px solid #d0d0d0;
    background: #fff;
    color: #555;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.aj-service-modal-btn-close:hover {
    border-color: var(--aj-blue);
    color: var(--aj-blue);
    background: rgba(56, 123, 189, 0.06);
}

/* Numbers Matter – custom stats section */
.aj-stats-section {
    background: linear-gradient(160deg, #1a1d24 0%, #2a3142 50%, #1e2430 100%);
    padding: 4rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}
.aj-stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aj-blue), var(--aj-orange));
    opacity: 0.9;
}
.aj-stats-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.aj-stats-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.aj-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.aj-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.aj-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 149, 7, 0.15);
    border-color: rgba(245, 149, 7, 0.35);
}
.aj-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    font-size: 2.25rem;
}
.aj-stat-card:hover .aj-stat-icon {
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
}
.aj-stat-number {
    color: var(--aj-orange);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.aj-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.35;
}
@media (max-width: 991px) {
    .aj-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .aj-stats-section {
        padding: 3rem 0 3.5rem;
    }
    .aj-stats-title {
        font-size: 1.65rem;
    }
    .aj-stats-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .aj-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .aj-stat-card {
        padding: 1.5rem 1rem;
    }
    .aj-stat-number {
        font-size: 1.85rem;
    }
}

/* Blogs & Insights – custom section */
.aj-blog-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #fff 0%, rgba(56, 123, 189, 0.04) 100%);
}
.aj-blog-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.75rem;
}
.aj-blog-title {
    color: var(--aj-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.aj-blog-subtitle {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
.aj-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.aj-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.aj-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(56, 123, 189, 0.12);
}
.aj-blog-card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.aj-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.aj-blog-card:hover .aj-blog-card-image {
    transform: scale(1.05);
}
.aj-blog-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--aj-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.03em;
}
.aj-blog-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.aj-blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.75rem;
}
.aj-blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.aj-blog-card-title a:hover {
    color: var(--aj-blue);
}
.aj-blog-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}
.aj-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--aj-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}
.aj-blog-card-link:hover {
    color: var(--aj-orange);
    gap: 0.65rem;
}
.aj-blog-card-link .fa {
    font-size: 0.85em;
}
.aj-blog-cta-wrap {
    text-align: center;
}
.aj-blog-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2.25rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 149, 7, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aj-blog-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 149, 7, 0.4);
    color: #fff !important;
}

/* Blog page – hero and back link */
.aj-blog-page {
    padding-top: 2rem;
}
.aj-blog-hero {
    background: linear-gradient(135deg, rgba(56, 123, 189, 0.08) 0%, rgba(245, 149, 7, 0.06) 100%);
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.aj-blog-hero .aj-blog-header {
    margin-bottom: 0;
}
.aj-blog-cta-secondary {
    background: transparent !important;
    color: var(--aj-blue) !important;
    border: 2px solid var(--aj-blue);
    box-shadow: none;
}
.aj-blog-cta-secondary:hover {
    background: var(--aj-blue) !important;
    color: #fff !important;
    border-color: var(--aj-blue);
    box-shadow: 0 4px 16px rgba(56, 123, 189, 0.3);
}
@media (max-width: 991px) {
    .aj-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .aj-blog-section {
        padding: 3rem 0 4rem;
    }
    .aj-blog-title {
        font-size: 1.6rem;
    }
    .aj-blog-subtitle {
        font-size: 0.95rem;
    }
    .aj-blog-header {
        margin-bottom: 2rem;
    }
    .aj-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .aj-blog-card-body {
        padding: 1.25rem 1.25rem 1.5rem;
    }
    .aj-blog-card-title {
        font-size: 1.05rem;
    }
}

/* Our Services – home page custom grid */
.aj-services-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(165deg, #f8fafc 0%, rgba(56, 123, 189, 0.06) 50%, #f0f4f8 100%);
    position: relative;
}
.aj-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(56, 123, 189, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 149, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.aj-services-header {
    text-align: center;
    margin-bottom: 2.75rem;
    position: relative;
}
.aj-services-title {
    color: var(--aj-blue);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.aj-services-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.aj-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}
.aj-service-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.aj-service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(56, 123, 189, 0.12);
    border-color: rgba(245, 149, 7, 0.2);
}
.aj-service-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 123, 189, 0.12), rgba(245, 149, 7, 0.12));
    color: var(--aj-blue);
    font-size: 2.2rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.aj-service-card-modern:hover .aj-service-card-icon {
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
}
.aj-service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.aj-service-card-title a {
    color: var(--aj-blue);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 0.35rem;
    border-bottom: 3px solid var(--aj-orange);
    transition: color 0.2s ease;
}
.aj-service-card-title a:hover {
    color: var(--aj-orange-dark);
}
.aj-service-card-desc {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex: 1;
}
.aj-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--aj-orange);
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}
.aj-service-card-link:hover {
    color: var(--aj-blue);
    gap: 0.6rem;
}
.aj-service-card-link .fa {
    font-size: 0.85em;
}
@media (max-width: 991px) {
    .aj-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .aj-services-section {
        padding: 3rem 0 4rem;
    }
    .aj-services-title {
        font-size: 1.6rem;
    }
    .aj-services-header {
        margin-bottom: 2rem;
    }
    .aj-services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .aj-service-card-modern {
        padding: 1.5rem 1.25rem;
    }
    .aj-service-card-title {
        font-size: 1.1rem;
    }
}

/* About Us – home page custom section */
.aj-about-home {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a73 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}
.aj-about-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--aj-orange), var(--aj-orange-dark));
}
.aj-about-home-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.aj-about-home-content {
    position: relative;
}
.aj-about-home-accent {
    display: block;
    width: 48px;
    height: 4px;
    background: var(--aj-orange);
    margin-bottom: 1rem;
    border-radius: 2px;
}
.aj-about-home-title {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}
.aj-about-home-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.aj-about-home-contact {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 1.25rem 0 1.5rem;
}
.aj-about-home-contact a {
    color: var(--aj-orange-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.aj-about-home-contact a:hover {
    color: #fff;
}
.aj-about-home-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.aj-about-home-btn:hover {
    background: #fff;
    color: var(--aj-blue);
    border-color: #fff;
}
.aj-about-home-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.aj-about-home-card {
    background: #fff;
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.aj-about-home-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
@media (max-width: 991px) {
    .aj-about-home-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .aj-about-home-visual {
        order: -1;
    }
    .aj-about-home-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    .aj-about-home {
        padding: 3rem 0 4rem;
    }
    .aj-about-home-title {
        font-size: 1.75rem;
    }
    .aj-about-home-text,
    .aj-about-home-contact {
        font-size: 0.95rem;
    }
}

/* Testimonials – card UI */
.aj-testimonials {
    background: linear-gradient(180deg, rgba(56, 123, 189, 0.06) 0%, rgba(245, 149, 7, 0.05) 100%);
}

.aj-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--aj-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aj-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(56, 123, 189, 0.15);
}

.aj-testimonial-card .aj-quote-icon {
    color: var(--aj-orange);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.aj-testimonial-card .aj-testimonial-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aj-testimonial-card .aj-testimonial-author {
    font-weight: 700;
    color: var(--aj-blue);
    font-size: 1rem;
}

.aj-testimonial-card .aj-testimonial-role {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.aj-testimonials .section-title {
    color: var(--aj-blue);
    margin-bottom: 0.5rem;
}

.aj-testimonials .section-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* Menu page */
.aj-menu-page .aj-menu-card {
    background: linear-gradient(145deg, #fff 0%, rgba(56, 123, 189, 0.06) 100%);
    border-left: 4px solid var(--aj-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: ajCardIn 0.5s ease both;
}

.aj-menu-page .aj-menu-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(56, 123, 189, 0.2);
}

.aj-menu-page .aj-menu-card h3 {
    color: var(--aj-blue);
    margin-bottom: 0.5rem;
}

.aj-menu-page .aj-menu-card a {
    color: var(--aj-blue);
    transition: color 0.2s ease;
}

.aj-menu-page .aj-menu-card a:hover {
    color: var(--aj-orange);
}

.aj-menu-list.aj-standalone li {
    list-style: none;
    margin: 0.5rem 0;
}

.aj-menu-list.aj-standalone li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.25s ease, color 0.25s ease;
}

.aj-menu-list.aj-standalone li a:hover {
    background: rgba(245, 149, 7, 0.15);
    color: var(--aj-orange);
}

/* General page animations */
.wow.fadeInLeft,
.wow.fadeInRight,
.wow.fadeInUp {
    animation-duration: 0.7s;
}

.readmore a {
    color: var(--aj-blue) !important;
    font-weight: 600;
    transition: color 0.25s ease;
}

.readmore a:hover {
    color: var(--aj-orange) !important;
}

/* Utility */
.text-aj-orange { color: var(--aj-orange) !important; }
.text-aj-blue   { color: var(--aj-blue) !important; }
.bg-aj-orange  { background-color: var(--aj-orange) !important; }
.bg-aj-blue    { background-color: var(--aj-blue) !important; }

/* Inner pages – header still fixed so scroll-hide works; ensure visible when not hidden */
.aj-inner-page .page > header.page-head.aj-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1100;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.aj-inner-page .aj-header .rd-navbar-wrap {
    display: block !important;
}
.aj-inner-page .aj-page-hero {
    padding-top: 90px;
}
.aj-page-hero {
    background: linear-gradient(135deg, rgba(56, 123, 189, 0.08) 0%, rgba(245, 149, 7, 0.06) 100%);
    border-bottom: 3px solid var(--aj-orange);
}
.aj-page-title {
    color: var(--aj-blue);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.aj-page-lead {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}
.aj-section-title {
    color: var(--aj-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.aj-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.aj-about-image-wrap img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.aj-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--aj-orange);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aj-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(56, 123, 189, 0.12);
}
.aj-service-icon {
    display: inline-block;
    background: linear-gradient(135deg, var(--aj-blue), var(--aj-blue-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.aj-service-title {
    color: var(--aj-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.aj-service-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
.aj-cta-section {
    background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-blue-dark) 100%);
    border-radius: 12px;
}
.aj-cta-section .button-primary {
    background: var(--aj-orange);
    border-color: var(--aj-orange);
    color: #fff;
}
.aj-cta-section .button-primary:hover {
    background: var(--aj-orange-dark);
    border-color: var(--aj-orange-dark);
    color: #fff;
}

/* About page CTA – compact card */
.aj-about-cta-section {
    padding: 3rem 0;
}
.aj-about-cta-card {
    background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-blue-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 40px rgba(56, 123, 189, 0.25);
    text-align: center;
}
.aj-about-cta-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.aj-about-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.aj-about-cta-text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.aj-about-cta-text a:hover { color: var(--aj-orange); }
.aj-about-cta-btn {
    display: inline-block;
    background: var(--aj-orange);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}
.aj-about-cta-btn:hover {
    background: var(--aj-orange-dark);
    color: #fff;
    transform: translateY(-2px);
}

.aj-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--aj-orange);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aj-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(56, 123, 189, 0.12);
}
.aj-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--aj-orange), var(--aj-orange-dark));
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}
.aj-contact-title {
    color: var(--aj-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.aj-contact-card p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}
.aj-contact-link {
    color: var(--aj-blue) !important;
    font-weight: 600;
    text-decoration: none;
}
.aj-contact-link:hover {
    color: var(--aj-orange) !important;
}
.aj-contact-form .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.aj-contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
}
.aj-contact-form .form-control:focus {
    border-color: var(--aj-blue);
    box-shadow: 0 0 0 3px rgba(56, 123, 189, 0.15);
}
.aj-contact-form .button-primary {
    background: var(--aj-orange);
    border-color: var(--aj-orange);
    color: #fff;
}
.aj-contact-form .button-primary:hover {
    background: var(--aj-orange-dark);
    border-color: var(--aj-orange-dark);
    color: #fff;
}

/* ========== Contact page (contact-us.html) ========== */
.aj-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--aj-orange);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.aj-toast.aj-toast-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.aj-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59507, #c47606);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.aj-toast-message {
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}
.aj-contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.aj-contact-form-wrapper .aj-section-title {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}
.aj-form-required-note {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem !important;
}
/* Contact hero uses same gradient as About Us – see Enhanced Contact Us section above */
.aj-contact-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin-bottom: 0.75rem;
}
.aj-contact-hero-lead {
    font-size: 1.15rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}
.aj-contact-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--aj-orange), var(--aj-blue));
    border-radius: 2px;
    margin-top: 1.5rem;
}
.aj-contact-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}
.aj-contact-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.aj-contact-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(56, 123, 189, 0.12);
    border-color: rgba(245, 149, 7, 0.3);
}
.aj-contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--aj-orange), #c47606);
    color: #fff;
    font-size: 1.6rem;
    border-radius: 16px;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(245, 149, 7, 0.35);
}
.aj-contact-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.aj-contact-card-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--aj-blue);
    margin: 0;
    line-height: 1.5;
    text-decoration: none;
    display: inline-block;
}
.aj-contact-card-modern a.aj-contact-card-value:hover {
    color: var(--aj-orange);
}
.aj-contact-form .aj-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.aj-contact-form .aj-form-label {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    order: -1;
}
.aj-contact-form .aj-form-input,
.aj-contact-form .aj-form-textarea {
    border: 1px solid #c9c9c9;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.aj-contact-form .aj-form-input:hover,
.aj-contact-form .aj-form-textarea:hover {
    border-color: #aaa;
}
.aj-contact-form .aj-form-input::placeholder,
.aj-contact-form .aj-form-textarea::placeholder {
    color: #888;
    font-size: 1rem;
}
.aj-contact-form .aj-form-input:focus,
.aj-contact-form .aj-form-textarea:focus {
    border-color: var(--aj-blue);
    box-shadow: 0 0 0 4px rgba(56, 123, 189, 0.18);
    outline: none;
}
.aj-contact-form .aj-form-textarea {
    resize: vertical;
    min-height: 140px;
}
.aj-contact-form .aj-required {
    color: #dc3545;
}
.aj-contact-form #submitBtn {
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.aj-contact-form #submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 149, 7, 0.4);
}
@media (min-width: 992px) {
    .aj-contact-hero-title {
        font-size: 2.5rem;
    }
}

/* Footer / header – moved from inline styles */
.aj-footer-about-wrap {
    max-width: 510px;
}
.aj-footer-about-text,
.aj-footer-link-white {
    color: #fff;
}
.aj-footer-link-white:hover {
    color: rgba(255, 255, 255, 0.9);
}
.aj-header .rd-navbar-group.aj-navbar-group-padding {
    padding: 10px 15px;
}

/* About Us blockquote (index) – white text */
.blockquote-complex.blockquote-complex-inverse .aj-about-blockquote-text {
    color: #fff !important;
}

/* Index – about section bg image */
.aj-about-bg-displaced.bg-displaced.bg-image {
    background-image: url(../images/home_about-main.webp);
}

/* Stats / counter labels – center */
.aj-box-header-center {
    text-align: center !important;
}

/* Read more links in service cards */
.aj-link-read-more {
    color: #1e0788;
}
.aj-link-read-more:hover {
    color: var(--aj-orange);
}

/* Underline link (aboutus) */
.aj-link-underline {
    text-decoration: underline;
}
