﻿
/* 1. Promo Banner - Clean & Modern */
.promo-banner {
    background: #1e293b; /* Deep Professional Slate */
    color: #f8fafc;
    padding: 12px 0;
    border-bottom: 3px solid #e11d48; /* Crimson Red Accent */
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.promo-btn {
    background: #e11d48;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .promo-btn:hover {
        background: white;
        color: #1e293b !important;
        transform: translateY(-2px);
    }

/* 2. Hero Section - Typography focus */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
}

/* 3. Modern Search Bar */
.search-wrapper {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

    .search-wrapper input {
        flex: 1;
        border: none;
        padding: 18px 25px;
        font-size: 16px;
        outline: none;
    }

    .search-wrapper button {
        background: #0f172a;
        color: white;
        border: none;
        padding: 0 35px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .search-wrapper button:hover {
            background: #e11d48;
        }

/* 4. Professional Carousel & Image Enhancements */
.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

    .carousel-inner .item img {
        height: 450px !important; /* Standardized height */
        object-fit: cover;
        filter: brightness(0.85); /* Makes caption text pop */
        transition: transform 5s ease; /* Slow zoom effect */
    }

    .carousel-inner .item.active img {
        transform: scale(1.05);
    }

.carousel-caption {
    bottom: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
    text-shadow: none;
}

    .carousel-caption h3 {
        color: white;
        font-weight: 700;
        margin: 0;
        font-size: 24px;
    }

/* Global Styles */
.dsi-body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding-bottom: 50px;
}

/* Special Banner */
.promo-banner {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 15px 25px;
    margin: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0px !important;
    background-color: #0f172a !important;
    border-radius: 0 0 40px 40px;
    margin-bottom: -60px; /* Overlap with slider */
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search Bar */
.search-container {
    max-width: 700px;
    margin: 30px auto 0;
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

    .search-container input {
        flex: 1;
        border: none;
        padding: 12px 20px;
        border-radius: 50px;
        outline: none;
        color: #333;
    }

/* Slider/Carousel */
.welcome {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

#myCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.carousel-inner img {
    object-fit: cover;
    filter: brightness(0.85);
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 10px 20px;
    bottom: 30px;
}

/* Service Grid */
.services-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.dsi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.dsi-service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none !important;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .dsi-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-color: #2563eb;
    }

    .dsi-service-card i {
        font-size: 24px;
        color: #2563eb;
        margin-bottom: 12px;
    }

    .dsi-service-card span {
        font-size: 12px;
        font-weight: 600;
        color: #334155;
    }

.dsi-main-wrapper {
    font-family: 'Poppins', sans-serif;
    background: #fcfcfc;
    padding-bottom: 60px;
}

/* Carousel Styling */
.welcome {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#myCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.carousel-inner img {
    object-fit: cover;
    filter: brightness(0.9);
    transition: 0.5s;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 15px 25px;
    bottom: 40px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 250px;
}

    .carousel-caption h3 {
        margin: 0;
        font-weight: 600;
        font-size: 24px;
        color: #fff;
    }

/* Service Grid Styling */
.services-title-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0 20px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dsi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.dsi-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .dsi-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: #2563eb;
    }

    .dsi-service-card i {
        font-size: 26px;
        color: #2563eb;
        margin-bottom: 12px;
        background: #eff6ff;
        width: 55px;
        height: 55px;
        line-height: 55px;
        border-radius: 50%;
    }

    .dsi-service-card span {
        font-size: 13px;
        color: #334155;
        font-weight: 600;
        line-height: 1.3;
    }

.carousel.slide {
    padding: 0 0 !important;
    margin-top: 0 !important;
}

:root {
    --dsi-primary: #333340;
    --dsi-accent: #4f46e5;
    --dsi-bg: #f8fafc;
    --dsi-text: #1e293b;
}

body {
    font-family: 'Inter', 'Calibri', sans-serif;
    background-color: var(--dsi-bg);
    color: var(--dsi-text);
    line-height: 1.6;
}

/* --- New Year 2026 Promo Bar --- */
.dsi-promo-bar {
    background: linear-gradient(135deg, #333340, #1f2933);
    color: #ffffff;
    padding: 15px 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* --- Hero / Jumbotron Section --- */
.dsi-hero {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

    .dsi-hero h2 {
        font-weight: 800;
        font-size: 42px;
        color: var(--dsi-primary);
        margin-bottom: 10px;
        letter-spacing: -1px;
    }

    .dsi-hero .lead {
        color: #64748b;
        font-weight: 400;
        margin-bottom: 35px;
    }

/* --- Modern Search Bar --- */
.dsi-search-container {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

    .dsi-search-container input {
        border: none !important;
        box-shadow: none !important;
        font-size: 16px;
        padding: 12px 20px;
        flex: 1;
    }

.dsi-search-btn {
    background: var(--dsi-primary);
    color: white !important;
    border-radius: 8px !important;
    padding: 10px 25px !important;
    font-weight: 600;
    transition: 0.3s;
}

/* --- Carousel Refinement --- */
.carousel-inner, .carousel-inner img {
    border-radius: 0px;
}

.carousel.slide {
    padding: 0 15px;
    margin-top: 30px;
}

.carousel-caption {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    width: fit-content;
    margin: 0 auto;
    padding: 5px 25px;
    border-radius: 50px;
    bottom: 40px;
}

/* --- Services Grid (Instead of the old list) --- */
.dsi-services-section {
    padding: 50px 15px;
    background: white;
}

.dsi-section-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dsi-primary);
}

.dsi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.dsi-service-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

    .dsi-service-card i {
        font-size: 24px;
        color: var(--dsi-accent);
        margin-bottom: 12px;
    }

    .dsi-service-card span {
        font-size: 14px;
        font-weight: 600;
        color: var(--dsi-primary);
    }

    .dsi-service-card:hover {
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transform: translateY(-5px);
        border-color: var(--dsi-accent);
    }

.ny-offer-bar {
    background-color: #333340; /* Brand color */
    color: #ffffff;
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
}

.ny-offer-text strong {
    color: #ffd966; /* subtle highlight */
}

.ny-offer-btn {
    background-color: #ffffff;
    color: #333340;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
}

    .ny-offer-btn:hover {
        background-color: #f2f2f2;
        text-decoration: none;
    }

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.services-paragraph {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    background: lightgrey;
    border-radius: 10px;
}

.service-item {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

    .service-item i {
        margin-right: 5px;
    }

    .service-item:hover {
        background-color: #333340 !important;
        color: white !important;
        transform: scale(1.05);
    }


.panel-heading h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.shop-page-content {
    margin-bottom: 20px;
}

.single-shop-item {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    transition: box-shadow 0.3s ease-in-out;
}

    .single-shop-item:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.service-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.meta {
    margin-top: 15px;
}

    .meta h4 {
        font-size: 18px;
        font-weight: bold;
    }

    .meta p {
        color: #333;
        font-size: 14px;
    }

.btn {
    border-radius: 20px;
}

.nav-tabs .nav-item {
    margin: 0 5px;
}

.nav-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    color: #007bff; /* Primary color */
    transition: background-color 0.3s, color 0.3s;
}

    .nav-tabs .nav-link img {
        width: 70px;
        height: auto;
        margin-bottom: 5px;
    }

    .nav-tabs .nav-link h6 {
        margin: 0;
        font-size: 14px;
    }

    .nav-tabs .nav-link:hover,
    .nav-tabs .nav-link:focus,
    .nav-tabs .nav-link.active {
        color: #fff;
        background-color: #007bff; /* Primary color on hover and active */
        border-radius: 5px;
    }

.carousel-caption {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background to the text */
    border-radius: 5px;
}

    .carousel-caption h3 {
        font-size: 24px;
        margin: 0;
    }

    .carousel-caption p {
        font-size: 16px;
        margin: 0;
    }


.img-circle {
    border-radius: 50%;
}

.review-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

    .review-card img {
        margin-bottom: 15px;
    }

    .review-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: arial;
}

.price {
    color: grey;
    font-size: 15px;
}

.card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
}

    .card button:hover {
        opacity: 0.7;
    }

.section-headings {
    text-align: center;
    margin-bottom: 32px;
    z-index: 99;
    position: relative;
}

.pboldh {
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    position: relative;
    color: #313131;
}

.section-headings h4 {
    font-size: 17px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    color: #383535;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.section-headings h4:after, .section-headings h4:before {
    display: block;
    position: absolute;
    background: #000;
    top: 50%;
    content: '';
    width: 30px;
    height: 1px;
}

.section-headings h4:before {
    left: -39px;
}

.section-headings h4:after {
    right: -39px;
}

body {
    font-family: Calibri;
    /*    font-size: 15px;*/
}

p {
    font-family: Calibri;
    font-size: 15px;
}

a {
    color: #000;
}

    a:hover {
        text-decoration: none;
    }

ul {
    list-style: none;
}

.top-header {
    background: #ed5b4d;
    padding: 4px;
}

    .top-header p {
        font-size: 20px;
        color: #fff;
        font-weight: 600;
        padding: 0px;
        margin: 0px;
        text-transform: uppercase;
    }

.img-responsive {
    width: 100%;
}

.top-logo img {
    max-width: 175px;
    max-height: 60px;
}

.red {
    color: #fe3e3e;
}

.home-banner {
    position: relative;
}

.home-caption h1 {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Kaushan Script', cursive;
}

.home-caption h4 {
    color: #333;
    font-family: 'Kaushan Script', cursive;
}

.home-caption {
    top: 0;
    width: 100%;
    text-align: center;
}

.nav-item {
    padding: 0px 10px;
}

    .nav-item a {
        font-size: 15px;
        font-weight: 600;
    }

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

#faqAccordion h4 {
    font-size: 15px;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 10px;
}

.faq {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}

.home-caption ul {
    list-style: disc;
    padding-left: 25px;
}

    .home-caption ul li {
        padding: 2px;
        color: #666;
    }

.title h2 {
    font-size: 22px;
}
/*=============Service Slider===========*/
.service-slider-icon {
    padding: 20px 0px;
}

.service-icon {
    text-align: center;
}

    .service-icon img {
        width: 55px !important;
        margin: auto;
    }

.service-icon {
    padding: 4px;
}

    .service-icon p {
        font-weight: 600;
    }

    .service-icon a:hover p {
        color: #666;
    }

.owl-next {
    position: absolute;
    top: 20%;
    right: 0;
}

.owl-prev {
    position: absolute;
    top: 20%;
}

.heading {
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

.service-box img {
    width: 100%;
    border-radius: 10px;
}

.service-box {
    padding: 15px;
}

    .service-box h6 {
        color: #444;
        font-weight: 600;
        text-align: center;
        padding: 10px;
        font-size: 15px;
    }

.offer-section .heading {
    padding-top: 40px;
    padding-bottom: 5px;
}

.inner-offer-box {
    border: 2px solid #fff;
}

.offer-box {
    background: #ff0000;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.offer-box {
    background: #ff0000;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin: 5px;
}

.inner-offer-box {
    border: 2px solid #fff;
}

.promo-code-label {
    max-width: 175px;
    margin: auto;
    background: #ffd200;
    padding: 20px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    color: #000;
    margin-top: -17px;
}

.promo-code h2 {
    font-size: 65px;
    font-weight: 700;
}

.promo-code {
    padding: 40px;
}

    .promo-code span {
        font-size: 21px;
    }
/*==*/
.page-banner {
    position: relative;
}

.breadcrumb {
    padding: 8px 0;
    margin-bottom: 0 !important;
    background-color: #fff !important;
}

#whitebg {
    padding: 50px 0;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.breadcrumb-item a {
    color: #ff0000;
}

.icon-area {
    text-align: center;
    font-weight: 700;
}

.icon {
    height: 75px;
    width: 75px;
    max-width: 100%;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: block;
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin: 0 auto 10px;
}

.product12 {
    box-sizing: border-box;
    background: #fff;
    background-size: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 15px;
    color: #666;
    max-width: 350px;
    min-height: 230px;
    display: inline-block;
}

.product-img12 img {
    border-radius: 7px;
}

.AC_Other_Serv_ice {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    margin-top: 50px;
}

.Other_cls_Title {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.product12 .product-body1 {
    margin-top: 10px;
}

.product-category {
    color: #000;
}

.product12 .value-text {
    line-height: 20px;
    margin-top: -8px;
    font-size: 15px;
    color: #666 !important;
    text-align: center;
}

.service_bg .box {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.service_bg .title {
    font-size: 20px;
    font-family: PT Sans Bold;
    color: #000;
    line-height: 35px;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.service_bg .box ul li {
    padding: 4px;
    border-bottom: 1px solid #e2e2e2;
    display: table;
    list-style-type: none;
    width: 100%;
}

    .service_bg .box ul li a {
        text-decoration: none;
        font-size: 15px;
        line-height: 18px;
        color: #000;
    }

    .service_bg .box ul li .left {
        display: table-cell;
        height: 60px;
        width: 60px;
        border-radius: 4px;
    }

        .service_bg .box ul li .left img {
            width: 100%;
            border-radius: 4px;
        }

    .service_bg .box ul li .right {
        display: table-cell;
        vertical-align: middle;
        padding-left: 16px;
        color: #000;
    }

#Book_Ser_vice_btn .book_service .btn {
    display: block;
    background: #e5255e;
    padding: 10px;
    margin: 12px 0 20px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    font-size: 19px;
    border-radius: 4px;
}

.text {
    padding: 15px;
}

.customer-review h2 {
    text-align: center;
    padding: 10px;
    font-size: 24px;
    font-weight: 200;
}

.top-booking-btn {
    width: 150px !important;
    padding: 5px;
    margin-left: -5px;
}

.home-service-icon-m {
    display: none;
}

    .home-service-icon-m .item {
        width: 45%;
        display: inline-block;
        border: 1px solid #ed5b4d;
        margin: 1px;
    }

.home-service-icon-m {
    padding-top: 40px;
    margin: auto;
    text-align: center;
}
/*===============*/
.tab-container {
    background: #f4f4f4;
    padding: 0;
    height: 440px;
    overflow: hidden;
    width: 100%;
}

.nav-tabs.nav-tabs-left {
    float: left;
    border-right: 0;
}

    .nav-tabs.nav-tabs-left li a {
        margin-right: 0;
        border-radius: 0;
        border-right: none;
    }

.nav-tabs.nav-tabs-left {
    border-bottom: 0;
    max-width: 33%;
}

    .nav-tabs.nav-tabs-left li {
        float: none;
        margin: 0;
        text-align: left;
    }

        .nav-tabs.nav-tabs-left li:not(:last-of-type),
        .nav-tabs.nav-tabs-right li:not(:last-of-type) {
            margin-bottom: -1px;
        }

.tab-content {
    background: #fff;
    height: 440px;
    overflow-y: scroll;
}

    .tab-content.side-tabs .tab-pane {
        display: none;
        padding: 20px;
        overflow-y: auto;
    }

    .tab-content.side-tabs-left {
        margin-left: 45px;
    }

        .tab-content.side-tabs-left .tab-pane {
            border-radius: 0;
        }

            .tab-content.side-tabs-left .tab-pane.active {
                display: block;
                background-color: #fff;
                border-color: #fff;
                color: #333;
                font-weight: 300;
                letter-spacing: 0.1em;
            }

    .tab-content.side-tabs-right {
        margin-right: 45px;
    }

        .tab-content.side-tabs-right .tab-pane {
            border-radius: 4px 0 0 4px;
        }

main > .row:not(:first-of-type) {
    margin-top: 1.1em;
}

col.time,
col.repname {
    width: 12em;
}

col.did {
    width: 9em;
}

.nav-tabs > li > a, .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: none;
}

.enquiry-form ul li {
    padding: 10px;
    width: 100%;
}

.enquiry-form .modal-dialog {
    max-width: 600px;
    border-radius: 0px;
}

.enquiry-form .modal-body {
    padding: 0px;
}

.enquiry-form .modal-content {
}

.enquiry-tab img {
    width: 30px;
}

.enquiry-form ul li.active {
    background: #fff;
}

.form-control {
    border-radius: 0px;
}

.service-drop-icon img {
    width: 30px;
    display: inline-block;
    filter: grayscale(100%);
}
/*============service box=====*/
.service-info {
    background: linear-gradient(rgba(20,20,20,.7),rgba(20,20,20,.7)),url(../images/service-bg.jpg) !important;
    background-size: cover !important;
    padding: 50px;
}

.service-info-box {
    width: 50%;
    margin: auto;
    background: #fff;
    /*border-radius: 5px;*/
    box-shadow: 0px 1px 3px 1px #fff;
}

.service-header {
    border-bottom: 1px solid #d2d2d2;
    width: 100%;
    padding: 10px;
}

    .service-header h2 {
        font-size: 24px;
        color: #777;
        font-weight: 400;
    }

.service-footer {
    padding: 20px;
    border-top: 1px solid #d2d2d2;
    width: 100%;
    text-align: center;
    background: #dbdbdb;
}

    .service-footer .next-btn {
        background: #fe3e3e;
        color: #fff;
        border-radius: 0px !important;
        padding: 5px 35px;
        font-size: 20px;
    }

.service-content {
    width: 100%;
    padding: 10px;
}

.service-list {
    display: inline-block;
    width: 100%;
    /* float: left; */
    padding: 0px;
}

    .service-list li {
        padding: 10px 15px;
        border-bottom: 1px solid #d2d2d2;
        display: inline-block;
        width: 100%;
        float: left;
    }

        .service-list li:last-child {
            border-bottom: none;
            padding-bottom: 0px;
        }

        .service-list li label {
            margin-bottom: 0px;
            font-size: 15px;
            font-weight: normal;
            margin-left: 10px;
            font-weight: 500;
        }

        .service-list li input {
            margin-right: 5px;
        }

.register_form {
    font-size: 12px;
}

    .register_form input {
        font-size: 15px;
        color: #333;
    }

    .register_form .form-control {
        border-radius: 2px;
        line-height: 26px;
    }

.submit-btn {
    width: 100%;
    background: #fe3e3e;
    color: #fff;
    border-radius: 0px !important;
    padding: 5px 35px;
    font-size: 20px;
}

.se-description {
    font-size: 12px;
    padding-left: 12px;
    color: #777;
}

.sr-price {
    float: right;
}

.service-info-box form {
    width: 100%;
}

.thank-you h2 {
    width: 100%;
    text-align: center;
    font-size: 70px;
}

.thank-you {
    width: 100%;
    padding: 48px;
}

    .thank-you h6 {
        text-align: center;
        font-size: 26px;
    }

    .thank-you p {
        text-align: center;
        font-size: 15px;
    }
/*===============Contact us====*/
.contact-info {
    padding: 50px;
}

.contact-box {
    box-shadow: 1px 3px 6px 4px #e0dada;
    border-radius: 5px;
    text-align: center;
    padding: 16px;
    background: #fdfdfd;
    min-height: 250px;
}

    .contact-box span {
        border: 1px solid #fe3e3e;
        width: 75px !important;
        height: 75px !important;
        border-radius: 50%;
        font-size: 45px;
        display: block;
        margin: auto;
        background: #fff;
        color: #fe3e3e;
    }

    .contact-box h3 {
        padding: 8px;
        font-size: 24px;
        font-weight: 500;
        color: #777;
    }

    .contact-box h6 {
        color: #777;
    }

.s-list {
    list-style: disc;
}

    .s-list li {
        padding: 0px 3px 2px 10px !important;
        border-bottom: 0px !important;
        font-size: 15px;
    }

.navbar-light .navbar-toggler {
    color: #fe3e3e;
    border-color: transparent;
}

.help-block {
    color: #ed4630;
}

.sub-link ul li {
    display: inline-block;
    padding: 2px 6px;
}

    .sub-link ul li a {
        color: #666;
        font-size: 12px;
    }

        .sub-link ul li a:hover {
            color: #fff;
        }

#feedback {
    background: #fff;
    padding: 25px;
    /* margin: 54px; */
    width: 80%;
    margin: auto;
}

.title {
    font-size: 25px;
    text-align: center;
    padding: 10px;
}
/*===========Footer=========*/
footer {
    background: #333;
    background-size: cover;
    color: #fff;
    padding: 20px 5px;
}

.quick-link {
    padding: 0px;
}

    .quick-link li {
        display: block;
        text-align: center;
    }

        .quick-link li a {
            color: #fff;
            font-size: 12px;
        }

.footer-social-link li a {
    color: #fff;
    font-size: 25px;
}

.footer-social-link {
    text-align: center;
    padding: 0px;
}

footer hr {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.shop-page-content .row,
.shop-page-content.row {
    margin-left: -10px;
    margin-right: -10px;
}

.shop-page-content .single-shop-item {
    padding: 0 10px;
    margin-bottom: 20px;
}

    .shop-page-content .single-shop-item .meta {
        background: #F8F8F8;
        padding: 30px 17px;
        text-align: center;
        border: 1px solid #F0F0F0;
    }

        .shop-page-content .single-shop-item .meta h4 {
            text-transform: uppercase;
            font-size: 15px;
            color: #000000;
            line-height: 26px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .shop-page-content .single-shop-item .meta p {
            font-size: 15px;
            font-weight: 600;
            color: #999999;
            line-height: 18px;
        }

        .shop-page-content .single-shop-item .meta span {
            display: block;
            font-family: Calibri;
            font-size: 16px;
            color: #7E7E7E;
        }

            .shop-page-content .single-shop-item .meta span b {
                font-size: 20px;
                line-height: 28px;
                color: #E22D2D;
                font-weight: 600;
            }

    .shop-page-content .single-shop-item a.add-to-cart {
        background: #FE5454;
        text-transform: uppercase;
        display: inline-block;
        line-height: 30px;
        font-weight: 700;
        color: #fff;
        padding: 0 20px;
        font-size: 15px;
        margin-top: 25px;
    }

        .shop-page-content .single-shop-item a.add-to-cart:before {
            background: #51B7E3;
        }

.shop-page-content .best-seller {
    margin-top: 80px;
    margin-left: 10px;
}

input, select, textarea {
    max-width: 100% !important;
}

.def_heading {
    font-size: 30px;
}

.sidebar-nav {
    position: relative;
}

.carousel-indicators .active {
    width: 8px !important;
    height: 9px !important;
}

.carousel-indicators li {
    background-color: #fff;
    border: 1px solid #000;
    width: 8px;
    height: 8px;
}

.mg10 {
    margin-top: 10px;
}

.owl-carousel, .owl-carousel .owl-item, .owl-carousel .owl-stage, .owl-carousel .owl-stage-outer {
    height: auto;
}

.mobile-nav-pills svg {
    height: 48px;
}

.hamburger i {
    font-size: 33px;
    color: #848da0;
}

.hamburger {
    display: block !important;
}

.pullleft {
    float: left;
}

.mdnew {
    border-color: #fff;
    padding: 0px;
    padding-top: 4px;
    padding-right: 31%;
    margin-left: -53px;
    border: none;
}

.deskrighr {
    margin-left: 3% !important;
}

button.navbar-toggle.collapsed.hamburger.ml-auto.mdnew:hover {
    background: transparent;
}

.langClass {
    padding: 5px;
    height: auto;
    margin-top: 13%;
    color: black;
    margin-left: 12%;
    border-radius: 2px;
    background: transparent;
}

.fa-stack {
    line-height: 0em !important;
}
/* --- 7. Responsive Media Queries --- */

/* For Tablets and Desktops */
@media (min-width: 768px) {
    .dsi-hero {
        padding: 60px 20px;
    }

    .service-info-box {
        width: 60%;
    }
}

/* For Small Mobile Devices */
@media (max-width: 480px) {
    .dsi-grid {
        grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns on phones */
    }

    .dsi-promo-bar {
        font-size: 12px;
    }

    .carousel-inner img {
        height: 250px !important; /* Smaller images for mobile */
    }

    .nav-tabs.nav-tabs-left {
        max-width: 100%;
        width: 100%; /* Stack tabs vertically on mobile */
        float: none;
    }

    .tab-content {
        margin-left: 0 !important;
        height: auto;
    }
}