body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

h1 { font-size: 2rem !important; }
h2 { font-size: 1.6rem !important; }
h3 { font-size: 1.3rem !important; }
h4 { font-size: 1.1rem !important; }
h5 { font-size: 0.95rem !important; }
p  { font-size: 14px; }

.navbar-nav .nav-link {
    font-size: 14px;
}

.topbar {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar a:hover {
    color: #dc3545;
}

.topbar span {
    color: #fff;
}

.navbar{
    background-color: #000 !important; 
    color: #fff !important;
}

.navbar-nav .nav-link, .navbar-nav .nav-link {
    color: #fff !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff !important;
}

/* HERO SECTION  */

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    width: 100%;
    max-width: 100%;
}

.hero-slider .carousel-item {
    min-height: 70vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-height {
    min-height: 70vh;
}

@media (max-width: 992px) {
    .hero-height { min-height: 60vh; }
}

@media (max-width: 576px) {
    .hero-height { min-height: 50vh; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 2.69rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.animate {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: .3s; }
.delay-2 { animation-delay: .6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ABOUT US  */
.about-section {
    background: #000;
}

.about-badge {
    display: inline-block;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-title-line {
    width: 50px;
    height: 3px;
    background: #dc3545;
    border-radius: 3px;
    margin-bottom: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
}

.about-list i {
    color: #dc3545;
    margin-right: 8px;
}

.about-section ul.about-list li i {
    font-size: 1rem;
}

/* Stats Row */
.about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-stat-box {
    background: #111;
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: 12px;
    padding: 16px 22px;
    text-align: center;
    flex: 1;
    min-width: 90px;
    transition: border-color 0.3s, transform 0.3s;
}

.about-stat-box:hover {
    border-color: #dc3545;
    transform: translateY(-4px);
}

.about-stat-box h3 {
    color: #dc3545 !important;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-stat-box span {
    color: #aaa;
    font-size: 12px;
}

/* Image Frame */
.about-img-wrap {
    position: relative;
    display: inline-block;
}

.about-img-wrap img {
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img-wrap img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.4);
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: -15px;
    background: #dc3545;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(220,53,69,0.4);
}

.about-img-badge strong {
    font-size: 1.4rem;
    display: block;
    line-height: 1;
}

.about-img-badge small {
    font-size: 11px;
    opacity: 0.9;
}

/* SERVICES SECTION  */

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.5);
}

.service-icon i {
    transition: transform 0.3s, color 0.3s;
}

.service-card:hover .service-icon i {
    transform: scale(1.3);
    color: #ff4d4d;
}

.btn-danger {
    transition: background 0.3s, transform 0.3s;
}

.btn-danger:hover {
    background-color: #ff4d4d;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .service-card {
        text-align: center;
    }
}

/* Testimoniyal  */
.testimonial-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.5);
}

.rating i {
    margin-right: 2px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 100%;
    }
}

/* BLOG  */
.blog-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .blog-card img {
        height: 180px !important;
    }
}

/* BLOG */
.blog-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.category-btn.active {
    background-color: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
}

@media (max-width: 768px) {
    .blog-card img {
        height: 180px !important;
    }
}


/* FAQS - Modern Trending Design */

.faq-section {
    background-color: #000;
}

.faq-badge {
    display: inline-block;
    background: rgba(220,53,69,0.15);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,0.4);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-stat-row {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.faq-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Accordion Items */
.faq-item {
    border: 1px solid #222;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active,
.faq-item:has(.show) {
    border-color: rgba(220,53,69,0.5);
}

.faq-question {
    width: 100%;
    background: #111;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: left;
}

.faq-question:hover {
    background: #1a1a1a;
}

.faq-num {
    font-size: 12px;
    font-weight: 700;
    color: #dc3545;
    min-width: 28px;
    font-family: 'Poppins', sans-serif;
}

.faq-q-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.faq-icon {
    color: #dc3545;
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item:has(.show) .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: #0d0d0d;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    padding: 16px 20px 18px 62px;
    border-top: 1px solid #1e1e1e;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    background: url('../img/slider1.jpg') center center / cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* PAGE HERO (inner pages) */
.page-hero {
    position: relative;
    background: url('../img/slider1.jpg') center center / cover no-repeat;
    border-bottom: 1px solid #1e1e1e;
    padding: 90px 0 65px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero-sub {
    color: #888;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #555;
}

/* FOOTER */
.footer-main {
    background: #080808;
    border-top: 1px solid #1e1e1e;
    color: #aaa;
    font-size: 14px;
}

.footer-logo img {
    filter: brightness(1.1);
}

.footer-desc {
    color: #888;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #aaa;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #dc3545;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #dc3545;
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: #dc3545;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: #000;
    border-top: 1px solid #1e1e1e;
    padding: 14px 0;
    font-size: 13px;
    color: #555;
}

.footer-bottom strong {
    color: #dc3545;
}

.footer-legal-link {
    color: #555;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}
.footer-legal-link:hover {
    color: #dc3545;
}

/* =====================================================
   GLOBAL HOVER EFFECTS
   ===================================================== */

/* --- Navbar Links --- */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #dc3545;
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
    left: 20%;
}
.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

/* --- Buttons: outline-danger --- */
.btn-outline-danger {
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-outline-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,53,69,0.35);
}

/* --- Buttons: outline-light --- */
.btn-outline-light {
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

/* --- Buttons: btn-light --- */
.btn-light {
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* --- Blog Cards (listing + related) --- */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220,53,69,0.25);
    border-color: rgba(220,53,69,0.6) !important;
}

/* --- Related Article Cards (service detail swiper) --- */
.relatedSwiper article {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.relatedSwiper article:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(220,53,69,0.2);
    border-color: rgba(220,53,69,0.5) !important;
}
.relatedSwiper article img {
    transition: transform 0.4s ease;
}
.relatedSwiper article:hover img {
    transform: scale(1.05);
}

/* --- Blog Detail Sidebar Related Posts --- */
.col-lg-4 .d-flex.gap-3 a {
    transition: transform 0.25s ease;
}
.col-lg-4 .d-flex.gap-3 a:hover {
    transform: translateX(4px);
}
.col-lg-4 .d-flex.gap-3 a img {
    transition: box-shadow 0.25s ease;
}
.col-lg-4 .d-flex.gap-3 a:hover img {
    box-shadow: 0 4px 14px rgba(220,53,69,0.3);
}

/* --- Mission / Vision / Why-Choose Cards (about page) --- */
.rounded-4[style*="background:#111"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rounded-4[style*="background:#111"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(220,53,69,0.18);
    border-color: rgba(220,53,69,0.4) !important;
}

/* --- Support Option Cards --- */
.col-md-4 .rounded-4 {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.col-md-4 .rounded-4:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(220,53,69,0.22);
    border-color: rgba(220,53,69,0.6) !important;
}
.col-md-4 .rounded-4 i {
    transition: transform 0.3s ease;
}
.col-md-4 .rounded-4:hover i {
    transform: scale(1.15);
}

/* --- Process Steps Hover --- */
.process-step {
    transition: background 0.2s ease;
    border-radius: 10px;
    padding: 6px 8px 0;
}
.process-step:hover {
    background: rgba(220,53,69,0.06);
}
.process-step:hover .process-num {
    background: #dc3545;
    color: #fff;
}

/* --- Technology Badges --- */
.badge[style*="rgba(220,53,69"] {
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: default;
}
.badge[style*="rgba(220,53,69"]:hover {
    background: rgba(220,53,69,0.35) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

/* --- Sidebar Client Review Cards --- */
.col-lg-4 .rounded-3[style*="background:#0d0d0d"] {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.col-lg-4 .rounded-3[style*="background:#0d0d0d"]:hover {
    transform: translateY(-3px);
    border-color: rgba(220,53,69,0.4) !important;
    box-shadow: 0 8px 24px rgba(220,53,69,0.15);
}

/* --- Category Filter Buttons (blog) --- */
.category-btn {
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.category-btn:hover {
    background: rgba(220,53,69,0.15);
    transform: translateY(-2px);
}

/* --- Breadcrumb Links --- */
.breadcrumb-item a {
    transition: color 0.2s ease, opacity 0.2s ease;
}
.breadcrumb-item a:hover {
    opacity: 0.75;
}

/* --- Contact Form Inputs / Textarea / Select --- */
.form-control,
.form-select {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.18) !important;
}

/* --- Service Detail: Gallery Thumb Items --- */
.gallery-thumb-item {
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.gallery-thumb-item:hover {
    border-color: rgba(220,53,69,0.7);
    transform: scale(1.05);
}

/* --- Services Page Cards (services listing) --- */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.service-card:hover {
    border-color: rgba(220,53,69,0.6) !important;
}

/* --- CTA Section Button pulse on hover --- */
.cta-content .btn-danger:hover {
    box-shadow: 0 8px 28px rgba(220,53,69,0.5);
    transform: translateY(-3px) scale(1.04);
}

/* --- FAQ Item hover --- */
.faq-item {
    transition: border-color 0.3s ease, transform 0.2s ease;
}
.faq-item:hover {
    border-color: rgba(220,53,69,0.4);
    transform: translateX(3px);
}

/* =====================================================
   SERVICE CARD ICON + NUMBER BADGE
   ===================================================== */

.service-icon-bg {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.service-card:hover .service-icon-bg {
    background: rgba(220,53,69,0.22);
    border-color: rgba(220,53,69,0.5);
    transform: scale(1.08);
}

.svc-num-badge {
    font-size: 22px;
    font-weight: 700;
    color: rgba(220,53,69,0.18);
    letter-spacing: -1px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    transition: color 0.3s;
}

.service-card:hover .svc-num-badge {
    color: rgba(220,53,69,0.45);
}

/* Center title line (use with mx-auto) */
.about-title-line {
    display: block;
}

/* Stats bar cards hover */
.col-6 .rounded-4,
.col-md-3 .rounded-4 {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.col-6 .rounded-4:hover,
.col-md-3 .rounded-4:hover {
    transform: translateY(-4px);
    border-color: rgba(220,53,69,0.4) !important;
    box-shadow: 0 10px 28px rgba(220,53,69,0.15);
}