/* 
 * JD Advertising - Premium Stylesheet
 * Brand Colors: 
 *   - Primary: #001F5B (Navy Blue)
 *   - Secondary: #FFC107 (Amber Gold)
 *   - Accent: #E60012 (Vibrant Red)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root { --primary-color: #001F5B; --primary-rgb: 0, 31, 91; --secondary-color: #FFC107; --secondary-rgb: 255, 193, 7; --accent-color: #b94fa1; --accent-rgb: 230, 0, 18; --bg-color: #F8F9FA; --light-bg: #FFFFFF; --text-color: #212529; --text-muted: #6C757D; /* Glassmorphism Variables */ --glass-bg: rgba(255, 255, 255, 0.7); --glass-bg-dark: rgba(0, 31, 91, 0.85); --glass-border: rgba(255, 255, 255, 0.4); --glass-shadow: 0 10px 30px 0 rgba(0, 31, 91, 0.06); --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F1F1F1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Base Elements */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Sticky Header & Navbar */
.head-logo {
    width:70px;
}
.navbar {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    padding: 15px 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color) !important;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand {
    color: #FFFFFF !important;
}

.navbar-brand span.text-gold {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--secondary-color) !important;
}

/* .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
} */

/* .nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
} */

.navbar-toggler {
    border: none;
    outline: none !important;
}

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

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}



.hero-slider-section{
    position:relative;
}

.heroSwiper,
.heroSwiper .swiper-slide{
    height:100vh;
    position:relative;
}

.hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    /* background:
    linear-gradient(
        90deg,
        rgba(0,31,91,.75) 0%,
        rgba(0,31,91,.40) 40%,
        rgba(0, 0, 0, 0) 100%
    ); */

    z-index:1;
}

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

    max-width:850px;

    padding-top:220px;
}

.hero-subtitle{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.hero-content h1{

    font-family:'Outfit',sans-serif;

    font-size:120px;

    font-weight:800;

    line-height:.95;

    color:#fff;

    margin-bottom:30px;
}

.hero-content h1 span{
    display:block;
    color:var(--secondary-color);
}

.hero-content p{

    max-width:650px;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.9);

    margin-bottom:35px;
}

.btn-hero-primary{

    background:var(--secondary-color);

    color:var(--primary-color);

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    text-decoration:none;

    margin-right:10px;
}

.btn-hero-outline{

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

    padding:16px 36px;

    border-radius:60px;

    text-decoration:none;
}

.btn-hero-outline:hover{
    background:#fff;
    color:#000;
}
/* Custom Buttons */
.btn-custom {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    text-decoration:none;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-custom-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 31, 91, 0.2);
}

.btn-custom-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-custom-secondary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-custom-accent {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

.btn-custom-accent:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.3);
}

.btn-custom-white {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.btn-custom-white:hover {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-header {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    flex-direction:column;

    gap:2px;

    z-index:9999;
}

.btn-floating{

    width:40px;
    height:40px;

    border-radius:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;

    color:#fff !important;

    text-decoration:none;

    box-shadow:none;

    transition:.4s ease;

    position:relative;
}

.btn-floating:hover{
    width:50px;
    transform:none;
}

.btn-whatsapp{
    background:#25D366;
}

.btn-call{
    background:var(--accent-color);
}

.btn-back-to-top{
    background:var(--primary-color);

    opacity:1;
    visibility:visible;
}

/* remove pulse */

.btn-floating::before{
    display:none;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 95vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;

    animation: heroZoom 12s ease-in-out infinite;
}

@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
    }

}
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.hero-content .hero-ctas {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-content .hero-ctas {
    transform: translateY(0);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #FFFFFF !important;
    opacity: 0.5 !important;
    transition: var(--transition-smooth) !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 6px !important;
    background: var(--secondary-color) !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    overflow: hidden;

}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 31, 91, 0.12);
    border-color: rgba(255, 193, 7, 0.4);
}

/* Service Card Styling */
.service-card {
    position: relative;
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-badge {
    position: absolute;
    bottom: 20px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 31, 91, 0.2);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: rotate(360deg);
}

.service-body {
    padding: 40px 25px 25px;
}

.service-body h4 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}



/* Section Header */
.badge-tagline {
    background: rgba(0, 31, 91, 0.08);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 31, 91, 0.12);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--logo-gradient);
    border-radius: 2px;
}


.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us Feature Cards */
.feature-card {
    padding: 30px;
    text-align: center;
    height: 300px;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 31, 91, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.feature-card h5 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Statistics Section */
.stats-section {
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(3, 45, 105, 0.88),
            rgba(0, 16, 48, 0.92)
        ),
        url('../images/print-slider-2.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Layout - Filterable Masonry */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-filter {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.gallery-item {
    padding: 10px;
    width: 100%;
    transition: var(--transition-smooth);
}

@media (min-width: 576px) {
    .gallery-item { width: 50%; }
}
@media (min-width: 992px) {
    .gallery-item { width: 33.333%; }
}

.gallery-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 300px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 31, 91, 0.9) 0%, rgba(0, 31, 91, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

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

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

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay-text {
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-box:hover .gallery-overlay-icon,
.gallery-box:hover .gallery-overlay-text {
    transform: translateY(0);
}

.gallery-overlay-text h5 {
    color: #FFFFFF;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-overlay-text p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lightbox Styling */
.jd-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 31, 91, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jd-lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-content { max-width: 95%; }
}

.lightbox-caption {
    color: #FFFFFF;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-bg);
}

.testimonial-card {
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 60px;
    color: rgba(0, 31, 91, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-user h6 {
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* FAQ Accordion Section */
.accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--glass-shadow);
}

.accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color) !important;
    background-color: var(--light-bg) !important;
    padding: 20px;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 31, 91, 0.03) !important;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 20px;
    background-color: var(--light-bg);
    color: var(--text-muted);
}

/* Call to Action Banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a0000d 100%);
    color: #FFFFFF;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(230, 0, 18, 0.25);
    margin-bottom: -80px;
    position: relative;
    z-index: 3;
}

.cta-banner-section h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Breadcrumbs Section */
.page-banner {
    background-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 40, 120, 0.132)
    ),
    url("../images/print-slider-2.jpg");

    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0;
    position: relative;
    color: #fff;
    animation: zoomBg 5s ease-in-out infinite alternate;
}
.page-banner-1 {
    background-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
         rgba(0, 40, 120, 0.132)
    ),
    url("../images/highway-advertisment.jpg");

    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0;
    position: relative;
    color: #fff;
    animation: zoomBg 5s ease-in-out infinite alternate;
}


.page-banner-2 {
    background-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
       rgba(0, 40, 120, 0.132)
    ),
    url("../images/other-service.jpg");

    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0;
    position: relative;
    color: #fff;

    animation: zoomBg 5s ease-in-out infinite alternate;

}
@keyframes zoomBg {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: 125%;
    }
}
.page-banner-1 h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}
.page-banner-2 h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.breadcrumb-list a:hover {
    color: #FFFFFF;
}

.breadcrumb-list span {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list .current-page {
    color: #FFFFFF;
    font-weight: 600;
}

/* Detailed Services page spacing */
.service-details-section .service-row {
    margin-bottom: 80px;
}

.service-details-section .service-row:last-child {
    margin-bottom: 0;
}

.service-details-section .service-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 400px;
}

.service-details-section .service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-section .service-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-features-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.service-features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

/* Timeline Process (About page) */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(0, 31, 91, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-badge {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(0, 31, 91, 0.1);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.2);
}

.timeline-panel {
    width: 45%;
    float: left;
    padding: 30px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-panel {
    float: right;
}

@media (max-width: 768px) {
    .timeline-container::before { left: 30px; }
    .timeline-badge { left: 30px; transform: none; }
    .timeline-panel { width: 85%; float: right !important; }
}

/* Team Section Styling */
.team-card {
    overflow: hidden;
}

.team-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-box img {
    transform: scale(1.08);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 31, 91, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.team-card:hover .team-socials {
    bottom: 0;
}

.team-socials a {
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.team-socials a:hover {
    color: var(--secondary-color);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h5 {
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Info & Forms */
.contact-info-card {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-wrap:wrap;
    gap: 20px;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #001F5B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.hero-slider-section::after{
    content: "";
    position: absolute;
    bottom: -180px;
    right: -180px;

    width: 550px;
    height: 550px;
    border-radius: 50%;

    background:
        radial-gradient(circle at 30% 30%, rgba(255, 204, 0, 0.913) 0 20px, transparent 22px),
        radial-gradient(circle at 60% 20%, rgba(0, 102, 255, 0) 0 35px, transparent 38px),
        radial-gradient(circle at 80% 40%, rgba(255, 0, 102, 0.822) 0 15px, transparent 18px),
        radial-gradient(circle at 45% 70%, rgba(0, 217, 255, 0.865) 0 25px, transparent 28px),
        radial-gradient(circle at 70% 75%, rgba(255, 204, 0, 0.772) 0 12px, transparent 15px);

    filter: blur(4px);
    opacity: .35;
    z-index: 2;
    pointer-events: none;
}


.contact-info-details h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-details p,
.contact-info-details a {
    color: #000c24;
    text-decoration: none;
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.contact-info-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    padding: 40px;
}

.form-control, .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 18px;
    border-radius: 0px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(0, 31, 91, 0.1);
    border-color: var(--primary-color);
}

/* Google Map Container */
.map-container {
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 80vh;
    border: none;
}

/* Footer Styling */
footer {
    background: #000c24;
    color: rgba(255, 255, 255, 0.75);
    padding: 140px 0 40px;
    position: relative;
}

footer h5 {
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: #FFFFFF;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-contact li span {
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* ==========================================
    NAVBAR DROPDOWN GLASSMORPHISM STYLES
========================================== */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.1);
    padding: 10px 0;
    margin-top: 15px !important;
    transition: var(--transition-smooth);
}

.dropdown-item {
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 20px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Scrolled Nav Dropdown Overrides */
.navbar.scrolled .dropdown-menu {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.navbar.scrolled .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}



.testimonial-section{
    overflow:hidden;
    background:#f8f9fc;
}

.testimonial-slider{
    width:100%;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation: scrollReviews 25s linear infinite;
}

.testimonial-track:hover{
    animation-play-state: paused;
}

.review-card{
    width:380px;
    background:#fff;
    border-radius:25px;
    padding:30px;
    transition:.4s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.review-top img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.review-top h5{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.review-top span{
    color:#777;
    font-size:14px;
}

.stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@keyframes scrollReviews{

    from{
        transform:translateX(0);
    }

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

}

@media(max-width:768px){

    .review-card{
        width:300px;
    }

}

.design-elements{
    position:fixed;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    z-index:-1;
}

.shape{
    position:absolute;
    border-radius:20px;
    opacity:.04;
}

/* Top Left */
.shape-1{
    width:220px;
    height:220px;
    background:#ffcc00;
    top:100px;
    left:-80px;
    transform:rotate(45deg);
}

/* Bottom Right */
.shape-2{
    width:300px;
    height:300px;
    background:#0066ff;
    bottom:-100px;
    right:-100px;
    border-radius:50%;
}

/* Center Right */
.shape-3{
    width:150px;
    height:150px;
    background:#ff0066;
    top:50%;
    right:5%;
    border-radius:50%;
}

/* Rings */
.ring{
    position:absolute;
    border:2px solid rgba(255,255,255,.1);
    border-radius:50%;
}

.ring-1{
    width:250px;
    height:250px;
    top:15%;
    right:10%;
}

.ring-2{
    width:180px;
    height:180px;
    bottom:15%;
    left:5%;
}

/* Dot Pattern */
.dot-grid{
    position:absolute;
    width:150px;
    height:150px;
    background-image:
        radial-gradient(#ffcc00 2px, transparent 2px);
    background-size:20px 20px;
    opacity:.2;
}

.dot-grid-1{
    top:30%;
    left:5%;
}

.dot-grid-2{
    bottom:10%;
    right:20%;
}

/* Decorative Lines */


.line-1{
    width:250px;
    height:2px;
    top:20%;
    left:50%;
}

.line-2{
    width:180px;
    height:2px;
    bottom:25%;
    right:10%;
}
.right-sec{
    position: relative;
    background: url('../images/commercial-print.jpg') center center/cover no-repeat;
    overflow: hidden;
    border-left: solid 1px #001F5B;
}

.right-sec::before{
    content: "";
    position: absolute;
    inset: 0;

    /* Blue Overlay */
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.749), rgba(255, 255, 255, 0));

    z-index: 1;
}

.right-sec > *{
    position: relative;
    z-index: 2;
}

.back-to-top{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #FFC107;
    color: #001F5B;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
    z-index: 9999;
}

.back-to-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover{
    background: #FFC107;
    transform: translateY(-3px);
}


@media (max-width:500px) {
    .hero-slider-section {
    position: relative;
    width: 100%;
    height: 132vh;
}
.heroSwiper, .heroSwiper .swiper-slide {
    height: 133vh;
    position: relative;
}
.btn-hero-outline {
    border: 2px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
  
}
.cta-banner-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a0000d 100%);
    color: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(230, 0, 18, 0.25);
    margin-bottom: -80px;
    position: relative;
    z-index: 3;
}
.feature-card {
    padding: 30px;
    text-align: center;
    height: 100%;
}
.timeline-badge {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10% !important;
    top: -19px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(0, 31, 91, 0.1);
    z-index: 2;
    transition: var(--transition-smooth);
}
}
.hero-ctas {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
      
    }

    .hero-ctas a {
        width: 100%;
        text-align: center;
    }
}