
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

p {
    color: #484848;
    font-size: 19px !important;
    line-height: 28px !important;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f8f8f8;
    overflow-x: none;
}

body::selection {
    background: var(--primary-color);
    color: var(--white);
}

:root {
    --primary-color: #d88400;
    --secondary-color: #0a64ee;
    --accent-color: #22baf9;
    --black: #000;
    --white: #fff;
    --gradient: linear-gradient(90deg, rgba(0, 57, 163, 1) 0%, rgba(4, 157, 222, 1) 100%);
    --gradient-hover: linear-gradient(135deg, #3a6b8a 0%, #5f5285 100%);
    --transition: all 0.3s ease-in-out;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #129b44;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-sticky-btn i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.whatsapp-sticky-btn span {
    position: absolute;
    font-size: 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-sticky-btn:hover {
    width: 160px;
    border-radius: 30px;
    background: #128C7E;
}

.whatsapp-sticky-btn:hover i {
    transform: translateX(-30px);
}

.whatsapp-sticky-btn:hover span {
    font-size: 14px;
    opacity: 1;
    transform: translateX(20px);
}

.scroll i {
    color: #fff;
    background: var(--primary-color);
    padding: 13px 15px;
    font-size: 1.5rem;
    position: fixed;
    bottom: 30px;
    z-index: 99;
    left: 40px;
    border-radius: 50%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll.visible {
    opacity: 1;
    visibility: visible;
}


/* =======================animations=========== */

@keyframes blinkCursor {
    from {
        border-right-color: #ffffff;
    }

    to {
        border-right-color: transparent;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes leftright {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(100vw) translateY(-30px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleup {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ================header============= */

header {
    background: var(--gradient);
    color: var(--white);
    padding: 25px 65px 15px 65px;
    height: auto;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.355);
    z-index: 1000;
    position: relative;
}

header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 50px;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-main-left,
.header-main-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.header-main-left {
    justify-content: start;
}

.header-main-mid {
    width: 60%;
}

.header-logo-left {
    width: 70%;
}

.header-logo-left img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

/* Main Menu Styles */
.header-main-mid .header-main-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.header-main-mid .header-main-menu li {
    position: relative;
    transition: var(--transition);
    list-style: none;
    margin: 0 5px;
}

.header-main-mid .header-main-menu li>a {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.header-main-mid .header-main-menu li>a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header-main-mid .header-main-menu li.active>a,
.header-main-mid .header-main-menu li:hover>a {
    color: #ffffff;
}

.header-main-mid .header-main-menu li.active {
    background: var(--primary-color);
    border-radius: 50px;
}

/* Submenu Styles */
.header-main-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 250px;
    z-index: 9999;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.header-main-menu .submenu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.header-main-menu .submenu li a {
    color: var(--black);
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.header-main-menu .submenu li:last-child a {
    border-bottom: none;
}

.header-main-menu .submenu li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Sub-submenu Styles */
.header-main-menu .sub-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    width: 250px;
    z-index: 9999;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.header-main-menu .has-submenu:hover>.submenu,
.header-main-menu .has-submenu:hover>.sub-submenu {
    display: block;
    opacity: 1;
    transform: translate(0);
}

.header-main-menu .has-submenu:hover>.has-submenu a {
    color: #000;
}

.header-main-menu .submenu li:hover>.sub-submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.header-main-menu .submenu li.has-submenu>a {
    color: var(--black) !important;
}

.header-main-menu .submenu li>a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.header-main-menu .sub-submenu li>a {
    color: var(--black) !important;
}

.header-main-menu .sub-submenu li>a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Phone Button Styles */
.header-main-right-button {
    text-align: right;
    animation: scaleup 0.5s ease-in-out infinite alternate;
}

.header-main-right-button a {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 800;
    transition: var(--transition);
    display: inline-block;
}

.header-main-right-button a i {
    margin-right: 5px;
}

.header-main-right-button a:hover {
    background: #3a6b8a;
    color: var(--white);
}

/* ============hamburger====== */

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

/* ==============hero banner============= */

#hero-banner {
    background: var(--gradient);
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite alternate;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: #ffffff4e;
    top: 10%;
    left: -80px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #ffffff22;
    top: 40%;
    left: -100px;
    animation-delay: 1s;
}

.hero-banner-wrapper {
    display: flex;
    align-items: center;
    padding: 10px 65px;
    height: 100%;
}

.hero-banner-left,
.hero-banner-right {
    width: 50%;
}

.hero-banner-left-content {
    color: var(--white);
    width: 100%;
}

.hero-banner-left-content h3 {
    background: #257bc794;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    animation: contentFadeIn 1s ease 0.5s forwards;
    z-index: 1;
    opacity: 0;
}

.hero-banner-left-content h1 {
    font-size: 3.2rem;
    line-height: 4rem;
    font-weight: 700;
    margin: 20px 0;
}

.hero-banner-left-content h1 span {
    color: #ffaa21;
}

#typewriter-container {
    display: inline-block;
    min-width: 20px;
    height: 1.5em;
    position: relative;
}

#typewriter::after {
    content: '|';
    position: absolute;
    animation: blink 0.7s infinite;
    color: #ffaa21;
}

.hero-banner-left-content p {
    margin-top: -15px;
    padding: 0 50px 10px 0;
    color: #fff;
}

.hero-banner-left-form {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner-left-form form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hero-banner-left-form .form-group {
    flex: 1 1 60%;
}

.hero-banner-left-form form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #000;
}

.hero-banner-left-form form input:focus {
    border-color: #ffaa21;
    outline: none;
    background-color:#F8F8F8;
    color:#000;
}

.hero-banner-left-form form input::placeholder {
    color: #bdbdbd;
}

.hero-banner-left-form .form-button {
    flex: 1 1 35%;
    margin-top: -25px;
}

.hero-banner-left-form .btn {
    width: 60%;
    padding: 12px 16px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-banner-left-form .btn:hover {
    background-color: var(--accent-color);
}

.hero-banner-left-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-banner-left-buttons a {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 1px solid #fff;
    transition: var(--transition);
}

.hero-banner-left-buttons a:nth-child(2) {
    background-color: transparent;
}

.hero-banner-left-buttons a:nth-child(2):hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-banner-left-buttons a:hover {
    transform: scale(1.05);
}

.hero-banner-right-image {
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-banner-right-image img {
    width: 95%;
}

/* ==================about-us========= */

#about {
    width: 100%;
    padding: 40px 0;
}

.section-subtitle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-subtitle h2 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 5px 15px;
    width: fit-content;
    margin-bottom: 10px;
}

.section-title h3 {
    text-align: center;
    font-size: 2.7rem;
    color: var(--black);
    font-weight: 00;
    margin-bottom: 20px;
}

.section-title h3 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-details {
    text-align: center;
}

.section-details p {
    color: #555;
}

.about-section-button {
    text-align: center;
    margin-top: 40px;
}

.about-section-button a {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 1px solid #fff;
}

.driving-box-image {
    width: 100%;
}

.driving-box-image img {
    width: 100%;
}

/* ===============digital-grwoth======== */

#digital-growth {
    width: 100%;
    padding: 30px 0;
    background: #fff;
}

.digital-growth-box {
    padding: 10px 0;
}

.digital-growth-image {
    width: 100%;
}

.digital-growth-image img {
    width: 80%;
}

.digital-growth-content {
    padding: 20px 0;
}

.digital-growth-content h3 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
}

.digital-growth-content h5 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.stats-container {
    margin: 40px 0;
}

.stat-item {
    margin-bottom: 25px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-title {
    font-weight: 600;
    color: #343a40;
    font-size: 1.1rem;
}

.stat-percent {
    font-weight: 700;
    color: var(--primary-color);
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    position: relative;
    transition: width 1.5s ease-out;
    
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    animation: progressShine 2.5s infinite;
    
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 12, 163, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 42, 87, 0.3);
}

.cta-button a{
    color: #fff;
}

/* ======================services============ */

#services {
    width: 100%;
    padding: 40px 0;
}

.service-upper-wrapper {
    width: 100%;
    padding-top: 20px;
}

.service-box {
    padding: 10px 0;
}

.service-box-content h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}


.service-box-content h3 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
}

.service-box-content p {
    margin-top: 10px;
}

.service-section h2 {
    text-align: center !important;
    font-size: 2.6rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.service-section h2 span {
    color: var(--primary-color);
}

.service-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color), var(--accent-color), #EEF1F3) !important;
    border-radius: 2px;
}

.service-content-button {
    margin-top: 40px;
}

.all-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 1px solid #fff;
}

.service-box-image {
    width: 100%;
}

.service-box-image img {
    width: 100%;
}


/* Service Tabs Styling */
.service-below-wrapper {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.service-tab-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.service-tabs .tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-tabs .tabs li {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-tabs .tabs li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.service-tabs .tabs li.active,
.service-tabs .tabs li:hover {
    background-color: #f8f9fa;
    border-left-color: var(--primary-color);
}

.service-tabs .tabs li.active {
    font-weight: 600;
    color: var(--primary-color);
}

.service-tabs .tabs li .tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-tabs .tabs li.active .tab-icon svg,
.service-tabs .tabs li:hover .tab-icon svg {
    color: var(--primary-color) !important;
}

.service-tabs .tabs li.active .tab-icon svg path,
.service-tabs .tabs li:hover .tab-icon svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* Tab Content Styling */
.service-tab-content {
    height: 500px;
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: flex;
}

.content-left {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-right {
    flex: 1;
    position: relative;
}

.tab-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.tab-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    width: fit-content;
    background: var(--gradient);
}

.all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.all-btn svg {
    transition: transform 0.3s ease;
}

.all-btn:hover svg {
    transform: translateX(5px);
}

.service-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tab-content.active {
        flex-direction: column;
    }

    .content-left {
        padding: 30px;
    }

    .content-right {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }

    .tab-content h3 {
        font-size: 1.5rem;
    }
}


/* =================comprehensive======= */

#comprehensive {
    width: 100%;
    padding: 40px 0 0 0;
    background: #fff;
    position: relative;
}

.comprehensive-card-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comprehensive-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-number {
    font-weight: 700;
    font-size: 1.1rem;
}

.comprehensive-card-content h4 {
    color: #212529;
    font-size: 1.4rem;
}

.comprehensive-card-content p {
    color: #6c757d;
    line-height: 1.6;
}

.all-btn {
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.all-btn:hover {
    background-color: #3a6b8a !important;
    color: white !important;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.comprehensive-card-wrapper {
    padding: 200px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.center-graphic {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.center-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.number-arc {
    position: absolute;
    top: 50%;
}

.number {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    transform: translateY(-50%);
}

.number-1 {
    left: 60px;
    top: 77px;
}

.number-2 {
    left: 146px;
    top: -41px;
}

.number-3 {
    left: 285px;
    top: -94px;
}

.number-4 {
    left: 403px;
    top: -41px;
}

.number-5 {
    left: 486px;
    top: 77px;
}

.info-cards {
    position: absolute;
}

.comp-card {
    position: absolute;
    width: 240px;
    border-radius: 12px;
    background: #f4f4f4c0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;

}

.comp-card img {
    width: 40px;
    height: 40px;
}

.comp-card h4 {
    font-size: 1.1rem;
}

.comp-card p {
    font-size: 0.8rem !important; 
    line-height: normal !important;
    color: #555;
}

.card-1 {
    left: 56px;
    top: -168px;
}

.card-2 {
    left: 166px;
    top: -387px;
}

.card-3 {
    left: 506px;
    top: -480px;
}

.card-4 {
    left: 816px;
    top: -358px;
}

.card-5 {
    left: 925px;
    top: -185px;
}



.comprehensive-second {
    width: 100%;
    padding: 40px 0;
    background: #fff;
    display: none;

}

.comp-card-2 {
    margin: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.08);
    height: 100%;
    width: 100%;
}

.comp-card-2:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* border-color: var(--accent-color); */
    background-color: #0383CF;
    color: white;

}

.comp-card-2:hover p {
    color: white;
}

.comp-card-2 img {
    width: 60px;
    height: 60px;
}

.comp-card-2 h4 {
    font-size: 1.3rem;
}

.comp-card-2 p {
    font-size: 1rem;
    color: #555;
}

@media (max-width:970px) {
    .comprehensive-second {
        display: block;
    }

}

@media (max-width:760px) {
    .padd-b {
        padding-bottom: 30px;
    }

}

/* =======================technology================== */

#tech {
    padding: 40px 0;
    width: 100%;
}

.tech-box {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tech-box-content h5 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}

.tech-box-content p {
    font-size: 2rem;
    font-weight: 700;
}

.tech-box-slider {
    padding: 10px 0;
}

.tech-box-slider img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    aspect-ratio: 1 / 1;
}

.tech-box-slider img:hover {
    filter: grayscale(0%);
}

/* =================industries========= */

#industries {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.industries-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.industries-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.industries-description {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

.industries-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none !important;
}

.industries-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.industries-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.08);
}

.industries-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.industries-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.industries-card-icon img {
    width: 32px;
    height: 32px;
}

.industries-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.industries-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .industries-title {
        font-size: 30px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ================faqs========== */

#faqs {
    width: 100%;
    padding: 40px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--black);
    transition: var(--transition);
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
    color: var(--secondary-color);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer-content {
    padding-top: 10px;
    color: #555;
}

.faq-item.active .faq-question {
    background-color: rgba(10, 100, 238, 0.03);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.faq-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 100, 238, 0.3);
}

.faq-cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 100, 238, 0.4);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        font-size: 0.9rem;
    }
}

/* Decorative elements */
.faq-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.faq-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.faq-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    right: -150px;
}

.faq-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
}

/* ================breadcrumbs=========== */

#breadcrumbs {
    width: 100%;
    height: 300px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.breadcrumb-title {
    width: 100%;
    text-align: center;
    color: var(--white);
}

.breadcrumb-title h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb-title h1 span {
    color: var(--primary-color);
}

.breadcrumb-title p {
    font-size: 1.2rem;
    color: #fff;
}

.breadcrumb-title p a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb {
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 1.5rem 1rem;
    margin:0 auto;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #64748b;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #cbd5e1;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 0.25rem;
}

.breadcrumb-link:hover {
    color: #3b82f6;
    background-color: #f1f5f9;
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.breadcrumb-current {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
}


/* =================about-us-page========= */

/* ============driving excellence========= */

#driving-excellence {
    width: 100%;
    padding: 40px 0;
}

.driving-box {
    width: 100%;
    padding: 10px;
}

.driving-box-content h2 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 15px;
}

.driving-box-content p {
    padding: 5px 0;
    text-align: justify;
}

.driving-button {
    margin-top: 30px;
}

/* ==============why choose======== */

#why-choose {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.why-choose-box {
    width: 100%;
    padding: 10px;
}

.why-choose-content h4 {
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 50px;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-content p {
    padding: 5px 0;
    text-align: justify;
}

.why-choose-content h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.why-choose-button {
    margin-top: 30px;
}

.why-choose-image {
    width: 100%;
}

.why-choose-image img {
    width: 85%;
    height: auto;
    float: right;
}

/* ===================why=take=========== */

#why-take {
    padding: 40px 0;
    position: relative;
}

.why-take-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-take-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.why-take-title span {
    color: var(--primary-color);
}

.why-take-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.why-take-subtitle {
    font-size: 18px;
    color: #666;
    /* max-width: 700px; */
    margin: 20px auto 0;
    line-height: 1.6;
    padding: 0 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(216, 132, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
}

.feature-card:hover .feature-icon svg {
    fill: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    #why-take {
        padding: 60px 0;
    }
}

/* ===============service-banner========= */

#service-banner {
    width: 100%;
    height: 550px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-banner-wrapper {
    padding: 10px 65px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-banner-left,
.service-banner-right {
    width: 50%;
}

.service-banner-left-content {
    color: var(--white);
    width: 100%;
}

.service-banner-left-content h5 {
    font-size: 16px;
    background: var(--primary-color);
    width: fit-content;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.service-banner-left-content h1 {
    font-size: 2.7rem;
    line-height: 4rem;
    font-weight: 700;
    margin: 10px 0 20px 0;
}

.service-banner-left-content h1 span {
    color: #ffaa21;
}

.service-banner-left-content p {
    color: #fff;
}

.service-banner-buttons {
    margin-top: 20px;
}

.service-banner-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.service-banner-buttons a {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 1px solid #fff;
    transition: var(--transition);
}

.service-banner-buttons a:nth-child(2) {
    background-color: transparent;
}

.service-banner-buttons a:nth-child(2):hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-banner-buttons a:hover {
    transform: scale(1.05);
}

.service-banner-right-image {
    width: 100%;
    text-align: center;
}

.service-banner-right-image img {
    width: 75%;
    height: auto;
}

.service-banner-right #smo-img img {
    width: 90%;
}

/* ===================service-form-content========== */

#service-form-content {
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.service-form-box {
    height: 100%;
}

.service-side-img {
    width: 100%;
    height: auto;
    position: sticky;
    top: 90px;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.service-side-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;

}

.service-form-content h3 {
    font-size: 2.2rem;
    position: relative;
    color: #2c3e50;
}

.service-form-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.service-form-content p {
    padding: 10px 0 !important;
    line-height: 25px;
}

.content-image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.service-form-content h4 {
    color: #2c3e50;
    padding-bottom: 5px;
}


.service-form-content ol li b {
    color: #2c3e50 !important;
}

.service-form-content ol li {
    line-height: 30px;
}

.service-form-content ol li i {
    color: #007bff;
    padding-right: 10px;
}

.service-form-content img {
    width: 100%;
    height: 300px;
    margin: 20px 0;
}

.form-title h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-title p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Overlay Background */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.content-grid-title {
    padding-top: 30px;
}

.content-grid-title h4 {
    font-size: 2rem;
}

.process-step {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-size: 1.2rem;
    padding: 10px 0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-form {
    background: #fff;
    padding: 20px;
    width: 60%;
    border-radius: 15px;
    padding-top: 13px;
    text-align: center;
    float: right;
    margin-right: 100px;
}

.popup_form {
    background: #fff;
     padding: 0; 
    width: 80%;
    border-radius: 15px;
    padding-top: 13px;
    text-align: center;
    float: right;
    margin-right: 46px;
}


.service-form .form-title h4 {
    font-size: 1.7rem;
}

.service-form p {
    font-size: 0.8rem;
}

.service-form form {
    width: 100%;
}

.service-form form input, select, textarea {
    width: 100%;
    border-radius: 12px;
    padding: 10px 10px;
    border: 1px solid #ccc;
}

.service-form form textarea {
    resize: none;
}

.service-form form select option {
    font-family: 'Poppins';
    font-size: 1rem;
    padding: 10px;
}

.service-form form input::placeholder {
    font-family: 'Poppins';
    font-size: 0.9rem;
    color: #ccc;
}

.service-form-btn {
    background: var(--gradient);
    width: 100%;
    padding: 8px 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.service-form-btn:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .service-form {
        position: static;
        margin-bottom: 30px;
    }
}

.service-form-box-img {
    width: 100%;
    height: 100%;
}

.service-form-box-img img {
    width: 100%;
    height: 100%;
}


/* ===============service-cta========== */

#service-cta {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#service-cta h2 {
    font-weight: 700;
    color: #2c3e50;
}

#service-cta .btn {
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-buttons {
    display: flex;
    gap: 30px;
}

.service-buttons a i {
    color: #fff;
    font-size: 1.2rem;
    padding-right: 10px;
}

.service-buttons a {
    color: #fff;
    border-radius: 10px;
}

#service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#service-cta .btn-success {
    background-color: #07a942;
    border-color: #25D366;
}

.service-buttons a:nth-child(2) {
    background: var(--gradient);
}

#service-cta .lead {
    margin-right: 50px !important;
}

/* ==========service-new-sections====== */

#seo {
    background: #fff;
    padding: 30px 0 10px 0;
}

.inner-main-sec {
    width: 100%;
    padding: 20px 0;
}

.inner-services-heading {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
}

.inner-services-heading h2 span {
    color: var(--primary-color);
}

.inner-service-box {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.inner-service-box-content h5 {
    background: var(--primary-color);
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    margin-bottom: 10px;
}

.inner-service-box-content h3 {
    font-size: 1.7rem;
    padding: 5px 0;
}

.inner-service-box-content p {
    padding: 10px 0;
}

.inner-service-box-btn {
    margin-top: 40px;
}

.inner-service-box-content a {
    background: var(--gradient);
    padding: 12px 15px;
    border-radius: 15px;
    color: #fff;
    transition: var(--transition);
}

.inner-service-box-content a:hover {
    background: var(--gradient-hover);
}

.inner-service-box-content a i {
    padding-left: 10px;
}

.inner-service-box-image {
    width: 100%;
}

.inner-service-box-image img {
    width: 90%;
}

.inner-service-box-content .list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px 25px;
    width: 100%;
}

.inner-service-box-content .list .item {
    font-size: 16px;
}

.inner-service-box-content .list .item i {
    padding-right: 10px;
    color: var(--primary-color);
}


/* =================conatct-detials========= */

#contact-details {
    width: 100%;
    padding: 40px 0;
}

.contact-details-box {
    width: 90%;
    padding: 30px 20px;
    height: 100%;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.contact-details-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-details-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    background: rgba(199, 149, 11, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-details-box h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-details-box p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

#contact-form-map {
    padding: 80px 0;
    background: #fff;
}

.contact-form-container, .map-container {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 100%;
}

.contact-form-container h2, .map-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-form-subtitle {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Form Styling */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
    background: #fff;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #95a5a6;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #ffffff;
    padding: 0 5px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #000;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.submit-btn i {
    margin-left: 8px;
}

/* Map Styling */
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======Social Media Management Section======== */

#social-need-section {
    padding: 40px 0;
    width: 100%;
}

.social-need-title {
    text-align: center;
    padding: 10px 0 30px 0;
}

.social-need-title h2 {
    font-size: 2.1rem;
}

.social-need-title h2 span {
    color: var(--primary-color);
}

.reason-box {
    width: 100%;
    padding: 10px 15px;
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    background: #fff;
    margin-top: 20px;
    height: 455px;
    cursor: pointer;
}

.reason-box:hover .reason-box-content-icon {
    transform: scale(1.1) rotate(10deg);
}

.reason-box-content {
    text-align: center;
}

.reason-box-content-icon {
    text-align: center;
    font-size: 3.5rem;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.reason-box-content-detail h3 {
    font-size: 1.3rem;
    padding: 20px 0;
}

.reason-box-content-detail p {
    font-size: 14px;
}

/* ============works-digitally=========== */

#works-digitally {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.works-digitally-header {
    text-align: center;
    margin-bottom: 3rem;
}

.works-digitally-header h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.works-digitally-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.works-digitally-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.works-digitally-step {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.works-digitally-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.works-digitally-step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 57, 163, 0.1);
    line-height: 1;
}

.works-digitally-step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.works-digitally-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.works-digitally-step p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.works-digitally-step-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transition: var(--transition);
}

.works-digitally-step:hover .works-digitally-step-highlight {
    height: 6px;
    background: var(--gradient-hover);
}

@media (max-width: 768px) {
    .works-digitally-header h1 {
        font-size: 2rem;
    }

    .works-digitally-process {
        grid-template-columns: 1fr;
    }

    .works-digitally-step {
        padding: 1.5rem;
    }
}

/* ===========WD (web development)-tools========= */

.wd-tools-section {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}


.wd-tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wd-tools-header h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wd-tools-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.wd-tools-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wd-tools-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    gap: 2rem;
}

.wd-tools-slide {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wd-tools-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wd-tools-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.wd-tools-slide-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.wd-tools-slide:hover .wd-tools-slide-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.wd-tools-slide-name {
    font-weight: 600;
    color: var(--black);
    text-align: center;
    font-size: 0.9rem;
}

.wd-tools-slider::before,
.wd-tools-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.wd-tools-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-100) 0%, transparent 100%);
}

.wd-tools-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-100) 0%, transparent 100%);
}

/* Tooltip styles */
.wd-tools-slide {
    position: relative;
}

.wd-tools-slide::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 10;
}

.wd-tools-slide:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

@media (max-width: 768px) {
    .wd-tools-slide {
        width: 140px;
        height: 140px;
    }

    .wd-tools-slide-icon {
        width: 50px;
        height: 50px;
    }

    .wd-tools-header h2 {
        font-size: 1.8rem;
    }

    .wd-tools-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wd-tools-slide {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .wd-tools-slide-icon {
        width: 40px;
        height: 40px;
    }

    .wd-tools-slide-name {
        font-size: 0.8rem;
    }
    
    .read-more-btn{
        margin:0 auto !important;
    }
}

/* ================footer============ */

footer {
    background: var(--gradient);
    color: var(--white);
    padding: 40px 65px;
}

.footer-box {
    padding: 10px 0;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-box p {
    color: #fff;
    font-size: 16px !important;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: var(--primary-color);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-title h5 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-links ul {
    padding-left: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
    position: relative;
}

.footer-links ul li::before {
    content: '>';
    position: absolute;
    left: -15px;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-links ul li:hover::before {
    color: var(--primary-color);
    transform: translateX(-2px);
}

.footer-links ul li a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #fcb441;
}

.second-ftr-box {
    margin-left: 50px;
}

.ftr-copy {
    text-align: center;
    color: #fff;
}

/* ===========================media=========== */

@media (max-width: 1400px) {
    .center-graphic {
        width: 55%;
    }

    .card-1 {
        left: -14px;
        top: -168px;
    }

    .card-2 {
        left: 116px;
        top: -387px;
    }

    .card-3 {
        left: 456px;
        top: -491px;
    }

    .card-4 {
        left: 766px;
        top: -388px;
    }

    .card-5 {
        left: 885px;
        top: -185px;
    }
}

@media (max-width: 1200px) {
    #hero-banner {
        height: 600px;
    }

    .hero-banner-left-content h1 {
        font-size: 2.8rem;
        line-height: 3.9rem
    }

    .hero-banner-left-buttons {
        margin-top: 20px;
    }

    .read-more-btn {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .header-main-right-button a {
        padding: 10px 25px;
        font-size: 12px;
    }

    .header-main-mid .header-main-menu li>a {
        font-size: 15px;
        padding: 10px 5px;
    }

    .hero-banner-left-content h1 {
        font-size: 2.2rem;
        line-height: 3.3rem;
    }

    .hero-banner-left-content p {
        margin-top: 5px;
    }

    .hero-banner-left-form .form-group {
        flex: 1 1 50%;
    }

    .hero-banner-left-form .form-button {
        flex: 1 1 42%;
    }

    .section-title h3 {
        font-size: 2.1rem;
    }

    .service-box-content h3 {
        font-size: 2rem;
    }

    .service-tabs .tabs li {
        font-size: 15px;
    }

    .tab-content h3 {
        font-size: 1.2rem;
    }

    .center-graphic {
        width: 45%;
    }

    .card-1 {
        left: 6px;
        top: -148px;
    }

    .card-2 {
        left: 96px;
        top: -316px;
    }

    .card-3 {
        left: 363px;
        top: -382px;
    }

    .card-4 {
        left: 626px;
        top: -328px;
    }

    .card-5 {
        left: 697px;
        top: -170px;
    }

    .number {
        font-size: 2.1rem;
    }

    .number-1 {
        left: 42px;
        top: 36px;
    }

    .number-2 {
        left: 100px;
        top: -41px;
    }

    .number-3 {
        left: 197px;
        top: -74px;
    }

    .number-4 {
        left: 282px;
        top: -45px;
    }

    .number-5 {
        left: 346px;
        top: 37px;
    }

    .tech-box-slider img {
        width: 90px;
        height: 90px;
    }

    .industries-card {
        padding: 15px;
    }

    .industries-title {
        font-size: 29px;
    }

    .industries-card-text {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    header {
        position: relative;
        padding: 15px;
    }
    .header-main-mid .header-main-menu li>a {
        color: #000;
    }

    header.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 10px 15px;
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }

    .hamburger-btn {
        display: block;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .header-main-menus {
        display: none;
        position: fixed;
        top: 95px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .header-main-menus.active {
        display: block;
    }

    .header-main-menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .header-main-menu>li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
    }

    .header-main-mid .header-main-menu li.active {
        background: transparent;
        border-radius: 0;
    }

    .header-main-mid .header-main-menu li.active a {
        color: #000;
    }

    .header-main-menu>li>a {
        padding: 15px 20px;
        display: block;
    }

    /* Submenu styles */
    .submenu, .sub-submenu {
        display: none;
        background: rgba(0, 0, 0, 0.2);
        padding-left: 20px;
        width: 100%;
        position: static;
        box-shadow: none;
        transform: none;
    }

    /* Active submenus */
    .has-submenu.active>.submenu,
    .has-submenu.active>.sub-submenu {
        display: block;
    }

    /* Chevron icons */
    .has-submenu>a i {
        transition: transform 0.3s ease;
        float: right;
    }

    .has-submenu.active>a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .has-submenu.active>a i.fa-chevron-right {
        transform: rotate(90deg);
    }

    .header-main-menu li:hover>a {
        color: inherit !important;
    }

    .header-main-menu li:hover a:hover {
        color: #000 !important;
    }
    .header-main-left, .header-main-right {
    width: 40% !important;
}
}


@media (max-width: 768px) {
    
    .hero-banner-wrapper {
        flex-wrap: wrap;
        padding: 20px 65px;
    }

    header.sticky {
        display: none;
    }

    .hero-banner-left, .hero-banner-right {
        width: 100%;
    }

    .hero-banner-right {
        display: none;
    }

    #comprehensive {
        display: none;
    }

    .digital-growth-image {
        text-align: center;
    }

    .digital-growth-image img {
        width: 60%;
    }

    .service-tab-content {
        height: 600px;
    }

    #service-banner {
        height: auto;
    }

    .service-banner-wrapper {
        flex-wrap: wrap;
        padding: 40px 15px;
    }

    .service-banner-left, .service-banner-right {
        width: 100%;
    }

    .service-banner-right {
        display: none;
    }

    #service-banner-right {
        display: block;
        padding-top: 2rem;
    }

    .service-bann {
        height: 950px !important;
    }

    .service-banner-right .service-form-box {
        margin: 0 auto !important;
    }

    .driving-box-content h2 {
        font-size: 1.8rem !important;
    }

    .why-choose-content h2 {
        font-size: 1.7rem !important;
    }
    .manual-order{
        order: -1 !important;
    }
}

@media (max-width: 600px) {

    .breadcrumb-title h1 {
        font-size: 1.5rem;
    }

    .hero-banner-wrapper {
        padding: 20px 17px;
    }

    .hero-banner-left-content h1 {
        font-size: 2rem;
    }

    .hero-banner-left-form .btn {
        width: 80%;
    }

    .section-title h3 {
        font-size: 1.5rem;
    }

    .second-ftr-box {
        margin-left: 0;
    }

    header {
        padding: 25px 15px 15px 15px;
    }

    .header-main-right {
        width: 40%;
    }

    .header-main-mid {
        width: 0;
    }

    .header-main-left {
        width: 30%;
    }

    .header-logo-left {
        width: 100%;
    }

    .header-main-right-button a {
        font-size: 11px;
        padding: 10px 10px;
        font-weight: 700;
    }

    .service-banner-left-content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .service-form-content h3 {
        font-size: 1.8rem;
    }

    .service-form-content h3::after {
        left: 11%;
    }

    .ser-heading h2 {
        font-size: 1.7rem !important;
        line-height: 4rem;
    }

    .ser-content h2 {
        font-size: 1.8rem !important;
    }

    .best h2 {
        font-size: 1.5rem !important;
    }

    .letters .letter {
        height: 50px !important;
        width: 43px !important;
        text-align: center;
        line-height: normal !important;
        font-size: 35px !important;
    }

    .info-section h3 {
        text-align: center;
        font-size: 1.6rem !important;
    }

    .service-section h2 {
        font-size: 1.8rem !important;
    }

    .why-take-title {
        font-size: 23px !important;
    }

    .section-title-heading {
        font-size: 1.8rem !important;
    }

    .service-form {
        width: 100%;
        margin-right: 0;
    }

    .service-banner-buttons a {
        font-size: 13px;
    }

    .inner-services-heading {
        font-size: 1.5rem !important;
    }

    .inner-service-box-content h3 {
        font-size: 1.3rem !important;
        padding: 5px 0;
    }
}

@media (max-width:480px) {
    .service-banner-right .service-form-box {
        width: 100% !important;
    }
}

/* =======DIGITAL Section===== */

.best {
    background-color: #fff;
    padding: 40px 0;
}

.best h2 {
    text-align: center;
    font-size: 3rem;
    color: #000000;
    padding-bottom: 30px;
}

.letters {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.letter {
    font-size: 48px;
    font-weight: bold;
    margin: 0 10px;
    cursor: pointer;
    transition: color 0.3s;
    color: #4C4C4E;
}

.letter:hover {
    color: #4285f4;
}

.letters .letter {
    background-color: #f9f9f9;
    border-radius: 4px;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    font-weight: 700 !important;
    font-size: 60px;
    margin: 0 4px;
    color: #000;
    float: left;
    border-radius: 5px;
}

.letter.active {
    background-color: var(--primary-color);
    color: white;
}


.info-section {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.info-section.active {
    display: block;
}

.info-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #4c4c4e;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.info-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color), #F0974F, #EEF1F3);
    border-radius: 2px;
}

.info-section p {
    line-height: 25px;
    text-align: center;
}

.info-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
}

.info-box .info-boxes {
    width: 40%;
    text-align: center;
    background-color: #EEF1F3;
    padding: 1rem;
    margin: 0.5rem;
    font-size: 18px;
    color: #484848;
}

/* =========digital-marketing-industry-section======= */

.industries-we-cater {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.content-left {
    padding: 3rem 1rem;
}

.content-left h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.content-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.content-left p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}


.slider-right {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 350px;
}

.slider-group {
    min-width: 100%;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.slider-item {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-caption {
    transform: translateY(0);
}

.slider-item:hover .slider-image {
    transform: scale(1.05);
}

.slider-caption h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.slider-caption p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-nav button:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .slider-group {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .industries-we-cater {
        flex-direction: column;
        gap: 30px;
    }

    .content-left, .slider-right {
        width: 100%;
        flex: auto;
    }

    .content-left {
        text-align: center;
    }

    .content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-group {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .slider-item {
        height: 200px;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .breadcrumb-link span:not(.breadcrumb-icon) {
        display: none;
    }
    
    .breadcrumb-link .breadcrumb-icon {
        margin-right: 0;
    }
}