/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================== Root Variables ===================== */
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Colors */
    --text-dark: #222;
    --text-black: #000;
    --text-muted: #555;
    --text-light: #fff;

    --border-light: #ccc;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    /* Brand Colors */
    --primary: #ff6600;
    --primary-dark: #ff3300;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #ff6600, #ff3300);

    /* Radius */
    --radius-lg: 30px;
    --radius-md: 18px;
    --radius-sm: 10px;
}


/* ===================== Base Styling ===================== */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
}

/* ===================== Top Bar ===================== */
.top-bar {
    background: var(--bg-light);
    font-size: 14px;
}

.top-bar a {
    color: var(--text-dark);
    text-decoration: none;
}

/* ===================== Navbar ===================== */
.navbar-brand {
    font-weight: 700;
    font-size: 22px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link.active {
    color: var(--primary) !important;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--text-light) !important;
    border-radius: var(--radius-lg);
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
}

.top-bar {
    background: #f8f9fa;
}

.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* body ko top space dena, taaki header content ke upar na aaye */
body {
    padding-top: 120px;
    /* adjust according to height */
}

/* Shrink effect class added on scroll */
.shrink {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: var(--smooth);
}

.shrink .navbar-brand img {
    height: 30px !important;
    /* logo size decrease on scroll */
    transition: 0.3s ease;
}




.nav-link {
    color: #000 !important;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff4500 !important;
    /* Orange hover color */
}

/* underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    /* height: 1px; */
    background: linear-gradient(90deg, #ff6a00, #ff3300);
    /* orange gradient */
    transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Button hover */
.btn-gradient {
    background: linear-gradient(90deg, #ff6a00, #ff3300);
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 25px;
    transition: transform 0.3s, opacity 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}
/* ===================== Hero Section ===================== */
.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-black);
}

.hero form input {
    border-radius: var(--radius-lg);
    padding: 12px 18px;
}

.hero form button {
    border-radius: var(--radius-lg);
    padding: 12px 20px;
}

.video-box img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
}

.rating img {
    height: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
}

/* ===================== Services Section ===================== */


/* instant Section start */
.instant-section {
    background: url("images/instant-replies01.png") no-repeat center/cover;
    height: 780px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instant-wrapper {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: #fff;
}

.instant-chat-btn {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.instant-chat-btn img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.instant-title {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 600;
}

.instant-subtitle {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.instant-video-box {
    width: 250px;
    height: 130px;
    background: #111;
    border-radius: 10px;
    margin: 0 auto 30px auto;
}

.instant-description {
    width: 70%;
    margin: 25px auto;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.instant-stats {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 700;
}

.stat-item p {
    margin-top: 6px;
    font-size: 15px;
}
/* instant Section End */


        /* Process Section Start */
.process-header-section {
    background: #ffffff;
}

.process-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 12px;
}

.process-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 0;
}

.process-desc {
    font-size: 20px;
    color: #444;
    line-height: 1.7;
    /* width: 90%; */
    margin-top: 45px;
/* border: #000 2px solid;} */
}


    /* Process Section End */


/* Digital Solutions section start  */
.services-header {
    background: #ffffff;
}

.service-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.service-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 0;
}

.service-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    width: 95%;
    margin-top: 45px;
}


.service-cards-section-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.service-card {
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.left-area h3 {
    font-size: 32px;
    font-weight: 700;
}


.role {
    font-size: 15px;
    color: #555;
        margin-bottom: 50px;
}

.right-area ul {
    padding: 0;
    margin: 0 0 15px 0;
    /* list-style: none; */
}

.right-area ul li {
    font-size: 15px;
    margin-bottom: 5px;
}

.bottom-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.gradient-btn {
    background: linear-gradient(135deg, #ff9d00, #ff3300);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.gradient-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}


/* .service-cards-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 40px 0;
}

.service-card {
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: 0.3s ease;
    background: #ffffff;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.left-area h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.role {
    color: #555;
    font-size: 15px;
}

.right-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.right-area ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.bottom-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.bottom-area .avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -8px;
}

.gradient-btn {
    background: linear-gradient(135deg, #ff9d00, #ff3300);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
} */

/* Digital Solutions section end  */




/* industry section start */
.industry-section {
    background: #ffffff;
}

.industry-box {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.industry-label {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.industry-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.industry-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.industry-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    width: 23%;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    opacity: 0.9;
}

.industry-card span {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.08);
    border-top-right-radius: 8px;
}

.view-btn-container {
    text-align: right;
}

.view-btn {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.view-btn i {
    margin-left: 6px;
    font-size: 18px;
}
/* industry section End */



/* Emergency Section start */
.emergency-section {
    margin-top: 40px;
}

.emergency-box {
    background-image: url('images/call-image.png');
    /* change your image */
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 55px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Black gradient shadow overlay */
.emergency-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    border-radius: 25px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    z-index: 0;
}

.emergency-text h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.call-btn {
    background: #ffffff;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
    position: relative;
    transition: 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}
  /* < !-- Emergency Section End--> */



/* Testimonal Section Start */
.testimonial-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.testimonial-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 35px;
}

.testimonial-wrapper {
    display: flex;
    gap: 25px;
}

/* .testimonial-card {
    background: linear-gradient(135deg, #fff, #ffe6f1, #e0f2ff, #fff0d4, #e8e0ff);
    padding: 30px;
    border-radius: 16px;
    width: 50%;
    border: 1px solid #eee;
    position: relative;
} */

.testimonial-card {
    background: linear-gradient(135deg, #fff4e6, #ffe0cc, #ffd5e5, #f8e8ff);
    padding: 30px;
    border-radius: 16px;
    width: 50%;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .testimonial-card {
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, #fff4e6, #ffe0cc, #ffd5e5, #f8e8ff) padding-box,
        linear-gradient(135deg, #ff6a00, #ff3300) border-box;
} */

.category {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.stars {
    font-size: 15px;
    margin-bottom: 18px;
}

.rating {
    margin-left: 5px;
    font-weight: 600;
}

.quote {
    position: absolute;
    bottom: 22px;
    right: 25px;
    font-size: 35px;
    font-weight: 700;
    opacity: 0.45;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
/* Testimonal Section End */


/* Faq Section Start */

.faq-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 18px 0;
    cursor: pointer;
}

.faq-question {
    font-size: 21px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: 0.3s;
    font-size: 20px;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    width: 95%;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}
/* Faq Section End */