@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --primary: #0069d9;
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(220, 68%, 54%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(220, 48%, 28%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(220, 100%, 99%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Inter", sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .890rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

:root {
    --primary-color: #1F97DA;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --android-primary: #2563eb;
    --android-dark: #0f1923;
    --android-light: #f8f9fa;
    --android-green: #3ddc84;
    --android-dark-green: #2da866;
    --android-light-green: #d4f7e7;
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #818cf8;
    --light-color: #f3f4f6;
    --dark-color: #1f2937;
    --timeline-width: 4px;
    --dot-size: 20px;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: .890rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    height: auto;
    /* background: linear-gradient(90deg, #163872 50%, #091130) */
    /* background: #f4f4f4; */

    overflow-y: scroll;
}

h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #505050;
}

ul {
    list-style: none;

}

a {
    text-decoration: none;
}


/*=============== HEADER ===============*/
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
    background-color: var(--body-color);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
/* Active link styles */
.nav__link.active,
.dropdown__button.active,
.dropdown__link.active {
    color: var(--primary) !important;
    font-weight: 600;
    position: relative;
}

/* .nav__link.active:not(.dropdown__button)::after,
.dropdown__button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
} */

/* For dropdown items */
.dropdown__item .dropdown__button.active {
    /* background-color: #f3f4f6; */
    border-radius: 4px;
}

.dropdown__link.active {
    /* background-color: #f3f4f6; */
    border-left: 3px solid var(--primary);
    padding-left: 13px !important;
}

.nav {
    height: auto;

}

ol,
ul {
    padding-left: 1rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-contact {
    margin-left: 1rem;
}

/* Center the logo and toggle button */
/* Logo wrapper */
.nav__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    /* Allow it to take available space */
    /* text-align: center; */
}

.nav__logo img {
    height: 60px;
    margin-top: -35px;
    margin-right: 22px;
}

/* Contact section */
.nav-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
    font-size: 1.25rem;
    color: var(--title-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu {
        background-color: var(--body-color);
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh);
        overflow: auto;
        padding-block: 1.5rem 4rem;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0.5rem;
    }

    .nav__menu::-webkit-scrollbar-thumb {
        background-color: hsl(220, 12%, 70%);
    }

    .nav__data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

.nav__link {
    letter-spacing: 1px;
    font-size: 15px;
    /* font-weight: 500 !important; */
    /* color: #000000 !important; */
    font-weight: bold;
    color: #333;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.nav__link:hover {
    color: var(--primary) !important;
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
    display: grid;
}

.dropdown__list {
    padding-left: -1rem;
}

.dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s;
}

.dropdown__content {
    /* row-gap: 1.75rem; */
}

.dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
    margin-bottom: -2rem;
}

.dropdown__container .dropdown__content .webhosting {
    margin-bottom: 40rem;
}

.dropdown__group:first-child {
    margin-top: 1.25rem;
}

.dropdown__group:last-child {
    margin-bottom: 1.25rem;
}

.dropdown__icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.dropdown__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.dropdown__list {
    row-gap: 0.25rem;
}

.dropdown__link {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: color 0.3s;
}

.dropdown__link:hover {
    color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
}

/* Icon Styling */
.dropdown__title i {
    background-color: #e0e7ff;
    /* Light background */
    color: var(--primary);
    /* Icon color */
    padding: 8px;
    /* Adjusted padding */
    border-radius: 8px;
    /* Softer rounded corners */
    font-size: 16px;
    /* Better readability */
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    /* Space between icon & text */
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.dropdown__title i:hover {
    background-color: var(--primary);
    /* Darker on hover */
    color: #ffffff;
    transform: scale(1.1);
    /* Slight zoom effect */
}

/* Mobile Styles */

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
    .dropdown__group {
        padding-left: 1.5rem;
    }
}

/* For large devices */
@media screen and (min-width: 1118px) {

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: center;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        display: flex;
        column-gap: 1.2rem;
        height: 100%;
    }

    .nav li {
        display: flex;
    }

    .nav__link {
        padding: 0;
    }

    .nav__link:hover {
        background-color: initial;
    }

    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
        pointer-events: none;
    }

    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        background-color: var(--body-color);
        box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 4.1rem;
        max-width: 1154px;
        /* margin-inline: auto; */
        padding: 0px 4rem;
        padding-bottom: 25px;
    }

    .dropdown__group {
        padding: 1rem 0;
        align-content: baseline;
        /* row-gap: 1.25rem; */
    }

    .dropdown__list li::before {
        content: "\2794";
        margin-right: 6px;
        font-size: 12px;
        color: var(--primary);
        display: inline-block;
    }

    .dropdown__group:first-child,
    .dropdown__group:last-child {
        margin: 0;
    }

    .dropdown__list {
        row-gap: 0.75rem;
    }

    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }

    .dropdown__icon i {
        font-size: 2rem;
    }

    .dropdown__title {
        font-size: var(--normal-font-size);
    }

    .dropdown__link {
       
     font-size: 15px;
            
    }

    .dropdown__link:hover {
        color: var(--first-color);
    }

    .dropdown__item {
        cursor: pointer;
    }

    .dropdown__item:hover .dropdown__arrow {
        transform: rotate(180deg);
    }

    .dropdown__item:hover>.dropdown__container {
        top: 85%;
        opacity: 1;
        pointer-events: initial;
        cursor: initial;
    }
}
.btn-1 {
    background-color: var(--primary);
    color: white;
    /* padding: 6px  10px !important; */
    height: 35px;
    /* width: 112px; */
    padding: 0 10px;
    margin-top: 5px;
    border: 1px solid var(--primary);
    border-radius: 20px;
}
.btn-1:hover {
    background-color: white;
    color: var(--primary);
}
.btn-2 {
    background-color: white;
    color: var(--primary);
    /* padding: 6px  10px !important; */
    height: 37px;
    /* width: 112px; */
    padding: 0 10px;
    margin-top: 5px;
    border: 1px solid var(--primary);
    border-radius: 9px;
}

.btn-2:hover {
    background-color: var(--primary);
        color: white;
}
.twobuttons {
    display: flex;
    /* Use flexbox for alignment */
    justify-content: space-between !important;
    /* Center the buttons */
    gap: 10px;
    /* Space between buttons */
    margin: 30px 0px;
    /* Margin around the container */
}

/* client section */

.no-outline-btn {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
}

.no-outline-btn:after {
    content: '\f061';
    font-weight: 700;
    font-size: 14px;
    font-family: Font Awesome\ 6 Free;
    color: var(--primary);
    margin-left: 7px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    vertical-align: middle
}

.no-outline-btn:hover {
    color: var(--primary)
}

.no-outline-btn:hover:after {
    color: var(--primary)
}

.client-header1 {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0px 0px;
    background: #080B39;
}

.clientheader-subheading {
    font-size: 1.8em;
    color: #e0a503;
    margin: 0px 70px 0px 0px;
    font-weight: bold;
    text-align: center;
    float: right;
}

.clientheader-heading {
    color: white;
    margin: 0px 0px 0px 70px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 20px;
    /* Space between columns */
    padding: 30px;
    width: 100%;
    height: auto;
    background: #080B39;
    /*background: linear-gradient(90deg, #163872 50%, #091130);*/
}

.grid-item {
    /* background-color: #4CAF50; */
    color: white;
    text-align: center;
    border-radius: 5px;

}

.column-1 {
    display: grid;
    /* Nested grid */
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns in the nested grid */
}

.nested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 600px;
    height: 500px;
    padding: 10px;
    position: relative;
}

.nested-grid::-webkit-scrollbar {
    display: none;
    /* Hide the scrollbar for WebKit browsers (e.g., Chrome, Safari) */
}

.nested-grid {
    scrollbar-width: none;
    /* Hide the scrollbar in Firefox */
}


.nested-grid {
    max-height: 600px;
    /* Set a fixed height for the nested grid */
    overflow-x: hidden;
    /* Hide default scrolling */
    position: relative;
    /* Required for the sliding effect */
}

.nested-item {
    background-color: #ffff;

    border-radius: 5px;
    width: 11rem;
    height: 5rem;
    margin: 10px 0;
    /* Space between nested items */
    display: flex;
    /* Use flexbox for centering */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Add box shadow */

}

/*.nested-item img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*  border-radius: 5px;*/
/*}*/

.nested-item img {
    /* width: 100%; */
    /* height: auto; */
    width: 150px;
    margin: 8px;
    height: 50px;
    object-fit: cover;
    display: block;
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateY(100%);
        /* Start off-screen */
    }

    100% {
        transform: translateY(-100%);
        /* End off-screen */
    }
}


/* contact form */

::selection {
    color: #fff;
    background: #0D6EFD;
}

.client-header {
    padding: 20px;
    background: #080b39;
}

.bottom-btn {
    flex: 1;
    text-align: center;
    padding: 5px !important;
    font-size: 16px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-header h3 {
    font-size: 1.8em;
    color: #fff;
    margin: 0;
    font-weight: bold;

}

.client-header span {
    color: #e74c3c;
}

.client-header p {
    font-size: 1em;
    color: #555;
    margin-left: 4rem;
}

.section-1 {
    background: #080b39;
    box-sizing: border-box;
}

.area {
    width: 100%;
    height: auto;
    padding: 0 !important;
    background: #080b39;
    box-sizing: border-box;
}

.grid-item {
    color: white;
    text-align: center;

    border-radius: 5px;
    border: none !important;
}

.nested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    padding: 10px;
    position: relative;
    overflow-y: auto;
}

.nested-grid::-webkit-scrollbar {
    display: none;
}

.nested-grid {
    scrollbar-width: none;
    max-height: 600px;
    overflow-x: hidden;
    position: relative;
}

.nested-item {
    background-color: #ffff;

    border-radius: 5px;
    width: 10rem;
    height: 6rem;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nested-item img {
    width: 150px;

    height: 50px;
    object-fit: cover;
    display: block;
}

.trusted-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
    padding: 10px;
    border-radius: 5px;
    margin-left: 5rem;
}

.trusted-title i {
    font-size: 35px;
}

.customer-count {
    color: #e74c3c;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nested-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        width: auto;
    }
}

@media (max-width: 768px) {
    .nested-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        width: auto;
        height: auto;
        min-height: 4rem;
    }

    .nested-item img {
        width: 100%;
        max-width: 150px;
        height: auto;
        max-height: 40px;
    }

    .client-header h3,
    .client-header p {
        margin-left: 1rem;
    }
}

@media (max-width: 600px) {
    .nested-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .nested-item {
        padding: 5px;
    }

    .nested-item img {
        max-width: 100px;
        max-height: 35px;
    }
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.area {
    position: relative;
}

.grid-item {
    position: relative;
    z-index: 1;
}


.dropdown__title {
    font-family: 'Inter', sans-serif;
}

.dropdown__list {
    font-family: 'Inter', sans-serif;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    padding: 0 0px;
    margin: 20px 0;
}

.carousel-wrapper {
    overflow: hidden;
}

.portfolio-slide {
    background: #f0f5fa;
    padding: 0px 30px !important;
    padding-bottom: 0px !important;
}



.slider-wrapper {
    position: relative;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
    background: #404040;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

.project-grid {
    position: relative;
    margin: 5px 0;
    overflow: hidden;
}

.project-grid-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-grid-overlay {
    position: absolute;
    top: 60%;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(41, 28, 28, 0.466);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-grid:hover .project-grid-overlay {
    opacity: 1;
}

.project-grid:hover .project-grid-img img {
    transform: scale(1.1);
}

.project-grid-content {
    text-align: center;
}

.project-grid-content h4 {
    margin-bottom: 10px;
}

.project-grid-content h4 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.project-grid-content a {
    color: #ffffff;
    text-decoration: none;
}

.md .nav-tabs {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.md .nav-tabs .nav-item {
    margin: 20px 0;
}

.md .nav-tabs .nav-link {
    padding: 5px 40px;
    margin: 0 5px;
    font-size: 16px;
    color: var(--primary);
    border: none;
    transition: color 0.3s ease;
    padding-bottom: 3px !important;
    height: fit-content !important;
}

.md .nav-tabs .nav-link.active,
.md .nav-tabs .nav-link:hover {
color: #43495E;
    /* background-color: var(--accent-color) !important; */
    font-weight: 800;
    border-bottom: 2px solid var(--primary);


}

@media screen and (max-width: 767px) {
    .md .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .md .nav-tabs .nav-item {
        flex-shrink: 0;
    }

    .md .nav-tabs .nav-link {
        padding: 5px 10px;
        white-space: nowrap;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.project-grid-style3 {
    position: relative;
    margin-bottom: 10px
}

.project-grid-style3 .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1)
}

.project-grid-style3 .inner-box .project-image {
    position: relative
}

.project-grid-style3 .inner-box .project-image:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4))
}

.project-grid-style3 .inner-box:hover .project-image:before {
    opacity: 0
}

.project-grid-style3 .inner-box .project-image img {
    position: relative;
    width: 100%;
    display: block
}

.project-grid-style3 .inner-box .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    color: #ffffff;
    visibility: hidden;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%)
}

.project-grid-style3 .inner-box .overlay:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(134, 188, 66, 0.95)
}

.project-grid-style3 .inner-box:hover .overlay:before {
    opacity: 1;
    visibility: visible
}

.project-grid-style3 .inner-box .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 20px
}

.project-grid-style3 .inner-box .overlay-inner .description {
    position: relative;
    display: table-cell;
    vertical-align: middle
}

.project-grid-style3 .inner-box .text {
    position: relative;
    color: #ffffff;
    margin-bottom: 20px
}

.project-grid-style3 .inner-box .read-more {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    padding-right: 22px
}

.project-grid-style3 .inner-box .read-more .fa {
    position: relative;
    margin-right: 4px
}

.project-grid-style3 .inner-box:hover .overlay {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%)
}

.project-grid-style3 .inner-box .project-desc {
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease
}

.project-grid-style3 .inner-box:hover .project-desc {
    background-color: #f9f8fc
}

.project-grid-style3 .inner-box .project-desc .category {
    color: #86bc42;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease
}

.project-grid-style3 .inner-box:hover .project-desc .category {
    color: #232323
}

.project-grid-style3 .inner-box .project-desc .category:after {
    content: "";
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    width: 20%;
    display: block;
    margin-top: 10px;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease
}

.project-grid-style3 .inner-box:hover .project-desc .category:after {
    width: 100%;
    background: #86bc42
}

.project-grid-style3 .inner-box .project-desc a {
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    line-height: 24px
}

.project-grid-style3 .inner-box .project-desc a:hover {
    color: #86bc42
}

@media screen and (max-width: 767px) {
    .project-grid-style3 .inner-box .overlay-inner {
        padding: 15px
    }

    .project-grid-style3 .inner-box .text {
        margin-bottom: 15px
    }
}

/* Add this to your existing CSS */
@media screen and (max-width: 767px) {
    .md .nav-tabs {
        flex-direction: column;
        overflow-x: visible;
        width: 100%;
    }

    .md .nav-tabs .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .md .nav-tabs .nav-link {
        padding: 8px 15px;
        margin: 0;
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    /* Remove the horizontal scrolling behavior */
    .md .nav-tabs {
        flex-wrap: wrap;
        -webkit-overflow-scrolling: auto;
    }

    /* Ensure the hr doesn't appear on mobile */
    .md .nav-tabs hr {
        display: none;
    }
}

/* Ensure the tab content is properly sized on mobile */
@media screen and (max-width: 576px) {
    .tab-content {
        width: 100%;
    }

    .portfolio-slide {
        padding: 0px 15px !important;
    }
}

/* Reset for small devices */
@media screen and (max-width: 767px) {

    /* Force full width slides */
    .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
    }

    /* Ensure the carousel item takes full width */
    .carousel-item {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Fix container width */
    .portfolio-slide {
        padding: 0 !important;
    }

    /* Ensure swiper container is full width */
    .swiper,
    .swiper-wrapper,
    .swiper-container {
        width: 100% !important;
    }

    /* Reset any transforms that might be causing issues */
    .swiper-wrapper {
        transform: translate3d(0, 0, 0) !important;
    }

    /* Ensure proper slide visibility */
    .swiper-slide-active {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Additional fixes for very small screens */
@media screen and (max-width: 480px) {
    .project-grid {
        margin: 0;
        width: 100%;
    }

    .project-grid-img {
        width: 100%;
    }

    /* Ensure container has no extra padding */
    .container-fluid,
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-in-out;
}

/* Headings */
.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

/* Paragraph */
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #fff;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Button Styles */
.hero-content .btn {
    display: inline-block;
    background: #fff;
    color: #fff;
    padding: 7px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    
}

.hero-content .btn:hover {
   
    transform: translateY(-3px);
    
}

.hero-content .btn.secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* .hero-content .btn.secondary:hover {
    background: #ff6600;
    color: #fff;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-content .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content .container {
    max-width: 1200px
}

#footer {
    display: block;
    position: relative;
    background-color: #001f29;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Archivo", sans-serif;
}

#footer .footer-content {
    padding: 60px 0 40px 0;
}

.widget {
    margin-bottom: 30px;
    position: relative;
}

.widget:after,
.widget:before {
    clear: both;
    content: " ";
    display: table;
}

.list {
    clear: both;
    display: block;
    position: relative;
}

.text {
    color: #a8c5d5;
    font-size: 16px;
    line-height: 1.65em;
    font-weight: 400;
    margin: 0 0;
}

#footer .widget .widget-title,
#footer .widget h3 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}

#footer .widget ul li i {
    color: #a8c5d5;
    padding-right: 5px;
}

#footer .widget ul li a {
    font-size: 16px;
    color: #a8c5d5;
}

.footer-next a {
    color: #a8c5d5;

}

.container {
    max-width: 1200px;
}

/* Header Styles */
.seo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.seo-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.seo-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.seo-brand-text {
    color: var(--secondary-color);
}

.seo-nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--primary-color) !important;
    position: relative;
}

.seo-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.seo-nav-link:hover:after {
    width: 70%;
}

.seo-contact-btn {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
}

.seo-contact-btn:hover {
    background-color: var(--primary-color);
}

.seo-contact-btn:after {
    display: none;
}

/* Hero Section */
.seo-hero-section {
    padding: 180px 0 100px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.seo-hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.seo-hero-content {
    position: relative;
    z-index: 1;
}

.seo-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #00346b !important;
    z-index: 2;
    position: relative;
}

.seo-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.seo-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.seo-hero-feature {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
}

.seo-hero-feature i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.seo-hero-buttons {
    display: flex;
    gap: 15px;
}

.seo-primary-btn,
.seo-secondary-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.seo-primary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.seo-primary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.seo-secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.seo-secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.seo-hero-image {
    position: relative;
    z-index: 1;
}

.seo-hero-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Introduction Section */
.seo-intro-section {
    background-color: white;
    padding: 60px 0;
}

.seo-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;

}

.seo-intro-content p {
    margin-bottom: 1.5rem;
    color: black !important;
}

/* Section Headers */
.seo-section-header {
    margin-bottom: 50px;
}

.seo-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00346b;
    margin-bottom: 15px;

}



.seo-title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

.seo-section-subtitle {
    font-size: 1.1rem;
    color: black !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Section */
.seo-benefits-section {
    background-color: #f9f9f9;
}

.seo-benefits-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.seo-benefits-list {
    margin-top: 20px;
}

.seo-benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.seo-benefit-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.seo-benefit-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.seo-benefit-content p {
    margin-bottom: 0;
    color: black !important;
}

/* Services Section */
.seo-services-section {
    background-color: white;
}

.seo-service-card {
    background-color: white;

    padding: 20px 30px;
    margin-bottom: 40px !important;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.seo-service-card:hover {
    transform: translateY(-10px);
}

.seo-service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seo-service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.seo-service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.seo-service-description {
    color: black !important;
}

/* On-Page SEO Section */
.seo-onpage-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.seo-onpage-content {
    padding: 30px;
}

.seo-onpage-factors {
    margin-top: 30px;
}

.seo-onpage-factor {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.seo-onpage-factor i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.seo-onpage-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Off-Page SEO Section */
.seo-offpage-section {
    background-color: white;
    padding: 80px 0;
}

.seo-offpage-content {
    padding: 30px;
}

.seo-offpage-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.seo-offpage-service {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.seo-offpage-service i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.seo-offpage-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Why Choose Us Section */
.seo-whychoose-section {
    background-color: #f9f9f9;
}

.seo-whychoose-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.seo-whychoose-card:hover {
    transform: translateY(-10px);
}

.seo-whychoose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seo-whychoose-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.seo-whychoose-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.seo-whychoose-description {
    color: black !important;
}

.seo-cta-section {
    background: linear-gradient(to right, rgba(0, 89, 255, 0.8), rgba(136, 0, 255, 0.8)),
        url('../images/2380.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
    /* Ensure text remains readable */
}

.seo-cta-container {
    padding: 20px;
    border-radius: 10px;
}

.seo-cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.seo-cta-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.seo-cta-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.seo-cta-button:hover {
    background-color: white;
    color: var(--primary-color);
}

.seo-promotion {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

:root {
    --sm-primary: #2c3e50;
    --sm-accent: #e74c3c;
    --sm-light: #ecf0f1;
    --sm-dark: #2c3e50;
    --sm-highlight: #27ae60;
}


.sm-hero {
    background: linear-gradient(135deg, var(--sm-primary) 0%, var(--sm-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

.sm-section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--sm-dark);
}

.sm-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sm-accent);
}

.sm-feature-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.sm-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sm-feature-icon {
    font-size: 2.5rem;
    color: var(--sm-accent);
    margin-bottom: 20px;
}

.sm-btn-primary {
    background-color: var(--sm-accent);
    border-color: var(--sm-accent);
    padding: 10px 25px;
    font-weight: 600;
}

.sm-btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.sm-platforms-section {
    background-color: var(--sm-light);
    padding: 80px 0;
}

.sm-platform-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.sm-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sm-platform-icon {
    font-size: 2.5rem;
    color: var(--sm-accent);
    margin-bottom: 20px;
}

.sm-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sm-benefit-icon {
    color: var(--sm-accent);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.sm-testimonial-section {
    background-color: var(--sm-primary);
    color: white;
    padding: 80px 0;
}

.sm-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.sm-cta-section {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sm-process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.sm-process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--sm-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .sm-hero {
        padding: 60px 0;
    }

    .sm-section-title {
        font-size: 1.8rem;
    }

    .sm-process-step {
        padding-left: 60px;
    }

    .sm-process-number {
        width: 50px;
        height: 50px;
    }
}

.icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* Service Banner Section */
.service-banner {
    position: relative;
    background: url('../images/services/web-development.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    z-index: 1;
    /* Ensures content is above the overlay */
}

/* Overlay using ::before */
.service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    /* Places it behind content */
}


/* Flexbox Layout */
.service-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-banner {
    width: 100%;

}

.service-banner-left,
.service-banner-right {
    width: 100%;
}

textarea.form-control,
input.form-control {
    width: 100%;
}

/* Left Side: Title & Breadcrumb */
.service-banner-left {
    margin: auto;
}

.field-inner {
    width: 100%;
    overflow-x: auto;
}

/* Make sure the reCAPTCHA doesn't overflow */
.g-recaptcha {
    max-width: 100%;
}

.service-banner-left h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-banner-left h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-banner-left h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 320px) {

    textarea.form-control,
    input.form-control {
        width: 90%;
    }

    .rc-anchor-light.rc-anchor-normal,
    .rc-anchor-light.rc-anchor-compact {
        border: 1px solid #d3d3d3;
        width: 90% !important;
    }
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    /* Use rem for scalability */
    transition: all 0.3s;
    background: #f8fafc;
}

@media (max-width: 576px) {
    .form-control {
        padding: 10px 12px 10px 36px;
        font-size: 0.95rem;
    }
}

.service-breadcrumb {
    font-size: 1rem;
    max-width: 400px;
}
.service-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.service-breadcrumb span {
    color: #fff;
}

/* Right Side: Contact Form */
.service-banner-right {
    background: rgb(255 255 255 / 25%);
    padding: 20px;
    border-radius: 10px;
}

.service-contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}

.service-input,
.service-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.service-textarea {
    height: 100px;
}

.service-btn {
    width: 100%;
    padding: 12px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.service-btn:hover {
    background: #e6b800;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .service-banner-left,
    .service-banner-right {
        max-width: 100%;
    }

    .service-banner-right {
        margin-top: 20px;
    }
}

/* Counter Section */
.service-counter-section {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
}

/* Counter Box */
.counter-box {
    padding: 20px;
}

.counter-box h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffcc00;
}

.counter-box p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    color: #fff;
}

/* -----------------------------
E-COMMERCE SECTION STYLES

------------------------------ */

/* Modern Section Styling */
.ecommerce-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ecommerce-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-img {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 2px solid white;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}



.highlight {
    /* position: relative; */
    display: inline-block;
    z-index: 1;
}



.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-card {
    background: white;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.cta-button {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.arrow-icon {
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.cta-button:hover .arrow-icon {
    animation: arrowBounce 0.6s infinite alternate;
}

@keyframes arrowBounce {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(4px);
    }
}

/* Alternative animation styles (uncomment to use) */
/*
    .cta-button:hover .arrow-icon {
        animation: arrowFly 0.4s forwards;
    }
    
    @keyframes arrowFly {
        0% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(6px);
            opacity: 0.8;
        }
        51% {
            transform: translateX(-6px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    */
/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-img {
        margin-top: 3rem;
        transform: none;
    }

    .hero-img:hover {
        transform: none;
    }
}

/* Scroll animations */
[data-aos] {
    transition: all 0.8s ease;
}

.aos-fade {
    opacity: 0;
    transform: translateY(20px);
}

.aos-fade.aos-animate {
    opacity: 1;
    transform: translateY(0);
}


.accomplishments-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.section-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.accomplishment-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
}

.accomplishment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    z-index: 0;
}

.experience-card {
    border-top: 4px solid #3498db;
}

.client-card {
    border-top: 4px solid #2ecc71;
}

.global-card {
    border-top: 4px solid #9b59b6;
}

.accomplishment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.experience-card .card-badge {
    background: #3498db;
}

.client-card .card-badge {
    background: #2ecc71;
}

.global-card .card-badge {
    background: #9b59b6;
}

.card-icon-bg {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.card-shape {
    width: 100%;
    height: 100%;
    fill: rgba(52, 152, 219, 0.1);
    transition: all 0.4s ease;
}

.client-card .card-shape {
    fill: rgba(46, 204, 113, 0.1);
}

.global-card .card-shape {
    fill: rgba(155, 89, 182, 0.1);
}

.card-icon-bg i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.client-card .card-icon-bg i {
    color: #2ecc71;
}

.global-card .card-icon-bg i {
    color: #9b59b6;
}

.accomplishment-card:hover .card-shape {
    transform: rotate(15deg) scale(1.1);
}

.accomplishment-card:hover .card-icon-bg i {
    transform: translate(-50%, -50%) scale(1.1);
}

.accomplishment-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.accomplishment-card-text {
    color: #7f8c8d;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Adjust the gap as needed */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    opacity: 0.7;
    margin-top: 2px;
}

.stat-divider {
    height: 30px;
    width: 1px;
    background-color: #ddd;
    margin: 0 15px;
    /* Horizontal margin */
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.footer-cta:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-dark);
    transform: translateX(4px);
}

.footer-cta svg {
    transition: transform 0.3s ease;
}

.footer-cta:hover svg {
    transform: translateX(3px);
}

/* Card-specific colors */
.experience-card .stat-value {
    background: linear-gradient(to right, #3498db, #2980b9);
    -webkit-background-clip: text;
    background-clip: text;
}

.client-card .stat-value {
    background: linear-gradient(to right, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    background-clip: text;
}

.global-card .stat-value {
    background: linear-gradient(to right, #9b59b6, #8e44ad);
    -webkit-background-clip: text;
    background-clip: text;
}

.experience-card .footer-cta {
    color: #3498db;
}

.client-card .footer-cta {
    color: #2ecc71;
}

.global-card .footer-cta {
    color: #9b59b6;
}

.experience-card .footer-cta:hover {
    background: rgba(52, 152, 219, 0.05);
}

.client-card .footer-cta:hover {
    background: rgba(46, 204, 113, 0.05);
}

.global-card .footer-cta:hover {
    background: rgba(155, 89, 182, 0.05);
}



.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #505050;
    position: relative;
    padding-bottom: 15px;
}



.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.digital-marketing .card-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.content-dev .card-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.graphic-design .card-icon {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.ppc-seo .card-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.service-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

.card-link:hover i {
    transform: translateX(3px);
}

.highlight-box {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    border-radius: 12px;
    padding: 3rem !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.highlight-box2 {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.highlight-box2::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #0b4de524 !important;
    border-radius: 50%;
}

.highlight-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.highlight-title2 {
    color: var(--dark);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: var(--primary-dark);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .accomplishment-card {
        padding: 2rem;
    }
}

/* eCommerce Highlights Section */
.ecommerce-highlights {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    perspective: 1000px;
}

.service-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover .service-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-item:hover .service-content::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.service-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Background Elements */
.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 992px) {
    .services-row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .service-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .services-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* why choose section for ecommerce */
.why-choose-us {
    padding: 3rem 0;
    background-color: #f9fafc;
    position: relative;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
} */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* .section-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
} */

.why-choose-us .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    z-index: 0;
}


.why-choose-us .bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -70px;
}

.why-choose-us .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-choose-us .benefits-grid .benefit-item {
    box-shadow: none;
}

.why-choose-us .benefit-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.why-choose-us .benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #d1e5ff;
    color: #2563eb;
}

.why-choose-us .benefit-icon svg {
    width: 50px;
    height: 50px;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {


    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}


.ecommerce-benefits {
    padding: 3rem 0;
    background: #f8fafc;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}


.benefits-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.benefits-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 1rem;
    transform: rotate(-5deg) translateY(20px);
    opacity: 0.1;
    z-index: 1;
}

.benefit-item {
    background: transparent;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 0.75rem;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.benefit-icon svg {
    width: 24px;
    height: 50px;
}

.benefit-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

.mobile-badge {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
}

.badge-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefits-image {
        order: -1;
        margin-bottom: 3rem;
        min-height: auto;
    }

    .benefits-content {
        width: 100%;
    }

    .left-content,
    .right-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .benefits-header h2 {
        font-size: 2rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .mobile-badge {
        flex-direction: column;
        text-align: center;
    }

    .badge-icon {
        margin-bottom: 1rem;
    }
}






/* Base Styles */
.mobile-commerce-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-content {
    flex: 1;
}

/* Text Content Styles */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lead2 {
    font-size: 1.125rem;
    width: 800px;
    margin: 0 auto;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lead3 {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature p {
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Floating Devices Styles */
.floating-devices {
    position: relative;
    width: 100%;
    min-height: 500px;
    flex: 1;
}

.phone-device {
    position: relative;
    /* width: 280px;
    height: 560px; */
    margin: 0 auto;
    background: #111827;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transform-style: preserve-3d;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: white;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-screen {
    position: absolute;
    width: 160px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.5s ease-out;
}

.app-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-1 {
    top: 10%;
    left: -10%;
    animation: float-1 8s ease-in-out infinite;
}

.floating-2 {
    top: 30%;
    right: -5%;
    animation: float-2 10s ease-in-out infinite;
}

.floating-3 {
    bottom: 10%;
    left: 0%;
    animation: float-3 9s ease-in-out infinite;
}

.ui-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
}

/* Animations */
@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-25px) rotate(-3deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(15px) rotate(2deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .text-content {
        text-align: center;
    }

    .features-grid {
        justify-content: center;
    }

    .floating-devices {
        min-height: 400px;
        margin-top: 3rem;
    }

    .phone-device {
        width: 240px;
        height: 480px;
    }

    .app-screen {
        width: 120px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .floating-1 {
        left: -5%;
    }

    .floating-2 {
        right: -5%;
    }

    .floating-3 {
        left: 5%;
    }

    .ui-element {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Section Styling */
.web-design-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.section-header .sub-text {
    font-size: 18px;
    color: #666;
}

/* Text Content Styling */
.web-design-content {
    max-width: 550px;
}

.web-design-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #9BC517;
    font-weight: bold;
}

/* Call-to-Action Button */
.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Image Styling */
.web-design-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .web-design-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .web-design-image img {
        max-width: 100%;
    }
}

/* ===== Why Us Section Styles ===== */
.why-us-section {
    background-color: #fff;
    /* Light gray background */
    padding: 80px 0;
}





.title-line {
    width: 60px;
    height: 4px;
    background-color: #ff6600;
    /* Accent color */
    margin: 10px auto 0;
}

/* ===== Grid Layout ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== Card Styling ===== */
.why-us-card {
    background-color: #fff;
    /* White background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===== Number Circle ===== */
.why-us-card .count {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background-color: #ff6600;
    /* Orange accent */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ===== Card Text Styling ===== */
.why-us-card h4 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    padding-left: 10px;
}

.why-us-card h4 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 700;
}

.why-us-card h4 a:hover {
    color: #cc5500;
}

.why-us-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .why-us-card {
        padding: 25px;
    }

    .why-us-card .count {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-badge {
    background-color: #e0e7ff;
    color: #4f46e5 !important;
}

.img-decoration {
    position: relative;
}

.img-decoration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e0e7ff;
    border-radius: 12px;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover .img-decoration::before {
    transform: translate(-8px, 8px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* web design services */



.design-types-section {
    background-color: #f9fafb;
}

.design-tabs-container {
    border-bottom: 1px solid #ddd;
}

.design-tab {
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 0.75rem 1.3rem;
    font-weight: 500;
    background-color: transparent;
    border: none;
    text-align: center;
}

.design-tab:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.design-tab.active {
    color: white;
    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.design-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.design-content.active {
    display: block;
}

.design-img-container {
    position: relative;
}

.design-img-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 12px;
    z-index: -1;
    transform: translate(8px, 8px);
}

.design-img {
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.design-img:hover {
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .design-tabs-container {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        padding-bottom: 10px;
    }

    .design-tab {
        display: inline-block;
        flex: 0 0 auto;
        margin-right: 8px;
    }
}

/* website-features section */

.website-features-section {
    background: linear-gradient(135deg, #1f2937 0%, #3730a3 100%);
    position: relative;
    overflow: hidden;
}

.website-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.website-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.website-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #4f46e5;
    transition: all 0.3s ease;
}

.website-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.website-feature-card:hover::before {
    width: 8px;
}

.website-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.website-feature-card:hover .website-feature-icon {
    background: #4f46e5;
    transform: rotate(5deg) scale(1.1);
}


/* Unique Features Section */
.uniquefeature {
    padding: 100px 0;
    background-color: white;
}

.uniquefeature-title {
    text-align: center;
    margin-bottom: 60px;
}

.uniquefeature-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.uniquefeature-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

.uniquefeature-title p {
    max-width: 700px;
    margin: 0 auto;
}

.uniquefeature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.uniquefeature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.uniquefeature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.uniquefeature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
}

.uniquefeature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

/* Web Design Partner Section */
.us {
    padding: 100px 0;
    background-color: #f8fafc;
}

.us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.us-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    max-width: 600px;
    text-align: center;
}

.us-text p {
    margin-bottom: 15px;
}

.us-text ul {
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.us-text ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.us-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
}

.us-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    z-index: 1;
    mix-blend-mode: multiply;
}

.us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.us-image:hover img {
    transform: scale(1.05);
}

.us-text h4 {
    font-size: 20px;
    font-weight: 500;
}

/* Ecommerce Accomplishments Section */
.ecommerce-accomplishments {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header .subtitle {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.accomplishment-features {
    display: grid;
    gap: 30px;
}

.feature-card {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 20px;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

.ecommerce-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.ecommerce-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ecommerce-image:hover img {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: #404040;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid var(--accent);
    text-align: center;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent);
}

/* Background Elements */
.bg-shape-1 {
    position: absolute;
    top: 50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

.bg-shape-2 {
    position: absolute;
    bottom: 50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .ecommerce-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.web-development-company-section {
    padding: 80px 0;
    background-color: var(--body-color);
}

.web-development-company-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.web-development-company-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.web-development-company-section-header p {
    font-size: var(--normal-font-size);
    max-width: 800px;
    margin: 0 auto;
}

.web-development-company-section-header b {
    color: var(--primary);
    font-weight: var(--font-semi-bold);
}

/* Service Feature Blocks */
.web-development-company-service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.web-development-company-service-feature.reverse {
    flex-direction: row-reverse;
}

.web-development-company-service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.web-development-company-service-content {
    flex: 1;
    padding: 40px;
}

.web-development-company-service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--title-color);
}

.web-development-company-service-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.web-development-company-service-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    transition: 0.3s;
}

.web-development-company-service-content a:hover {
    color: var(--primary-dark);
}

.web-development-company-blog-underline {
    border-bottom: 1px dashed var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .web-development-company-service-feature {
        flex-direction: column;
    }

    .web-development-company-service-feature.reverse {
        flex-direction: column;
    }

    .web-development-company-service-image {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .web-development-company-section {
        padding: 60px 0;
    }

    .web-development-company-section-header h2 {
        font-size: 2rem;
    }

    .web-development-company-service-content {
        padding: 30px 20px;
    }
}

/* Animation */
@keyframes web-development-company-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.web-development-company-service-feature {
    animation: web-development-company-fadeIn 0.6s ease-out forwards;
}

.web-development-company-service-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.web-development-company-service-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.web-development-company-service-feature:nth-child(4) {
    animation-delay: 0.6s;
}

.web-development-company-service-feature:nth-child(5) {
    animation-delay: 0.8s;
}

.web-development-company-service-feature:nth-child(6) {
    animation-delay: 1s;
}

/* Business Growth Section */
.business-growth-section {
    padding: 80px 0;
    background-color: var(--light);
}

.business-growth-header {
    text-align: center;
    margin-bottom: 60px;
}

.business-growth-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: var(--font-semi-bold);
}

.business-growth-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.business-growth-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Content Layout */
.business-growth-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.business-growth-visuals {
    flex: 1;
    min-width: 300px;
}

.business-growth-visual-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.business-growth-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.business-growth-visual-image {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s ease-in-out;
}

.business-growth-visual-card:hover .business-growth-visual-image {
    transform: scale(1.05);
}

.business-growth-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 93, 158, 0.1), rgba(46, 93, 158, 0.3));
}

/* Right Side Content */
.business-growth-points {
    flex: 1;
    min-width: 300px;
    background: var(--first-color-lighten);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Benefit Items */
.business-growth-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: var(--body-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
}

.business-growth-benefit-item:hover {
    transform: translateX(10px);
}

.business-growth-benefit-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.business-growth-benefit-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.business-growth-benefit-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Section */
.business-growth-cta-container {
    text-align: center;
    padding: 40px;
    background-color: var(--primary-dark);
    border-radius: 10px;
    color: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.business-growth-cta-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: var(--font-semi-bold);
}

.business-growth-cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    transition: 0.3s ease-in-out;
    margin-bottom: 15px;
}

.business-growth-cta-button:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.business-growth-cta-button i {
    margin-right: 10px;
}

.business-growth-cta-subtext {
    font-size: var(--small-font-size);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .business-growth-title {
        font-size: 2rem;
    }

    .business-growth-content {
        flex-direction: column;
    }

    .business-growth-visuals,
    .business-growth-points {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .business-growth-section {
        padding: 60px 0;
    }

    .business-growth-title {
        font-size: 1.8rem;
    }

    .business-growth-benefit-item {
        flex-direction: column;
    }

    .business-growth-benefit-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .business-growth-title {
        font-size: 1.6rem;
    }

    .business-growth-cta-container {
        padding: 30px 20px;
    }

    .business-growth-cta-title {
        font-size: 1.3rem;
    }
}

.testimonial-section {
    position: relative;
}

.testimonial-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #fff;
}

.testimonial-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.testimonial-section.light-style .image-layer {
    display: none;
}

.testimonial-block {
    position: relative;
    display: block;
    text-align: center;
}

.testimonial-block .inner-box {
    position: relative;
    display: block;
}

.testimonial-block .content {
    position: relative;
    display: block;
}

.testimonial-block .content .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

.testimonial-block .content .icon-box {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100px;
    height: 100px;
    border: 5px solid #ffffff;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    background: #ff6000;
    line-height: 90px;
    border-radius: 50%;
    box-shadow: 0px 7px 10px 0px rgba(255, 96, 0, 0.3);
    z-index: 1;
}

.light-style .testimonial-block .content .icon-box {
    background: #ffffff;
    color: #000e22;
    border: none;
    line-height: 100px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1);
}

.testimonial-block .content .image img {
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonial-block .content .info {
    position: relative;
    margin-bottom: 10px;
}

.testimonial-block .content .info h4 {
    position: relative;
    color: #ff6000 !important;

    margin-bottom: 5px;
}

.testimonial-block .content .info h3 {
    position: relative;
    color: #ff6000 !important;

    margin-bottom: 5px;
}

.testimonial-block .designation {
    color: #1791d8 !important;
}

.testimonial-block .text {
    color: #616161 !important;
    font-size: 15px !important;
    font-weight: normal !important;
    line-height: 24px !important;
}

.testimonial-block .content .info .designation {
    position: relative;
    color: #ff6000;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding-left: 40px;
    display: inline-block;
}

.testimonial-block .content .info .designation:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 35px;
    border-bottom: 2px solid #1791d8 !important;
}

.testimonial-block .content .text {
    position: relative;
    color: #05232d;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.45em;
    font-family: "Gilroy-Bold", sans-serif;
}

.light-style .testimonial-block .content .info h4,
.light-style .testimonial-block .content .info .designation,
.light-style .testimonial-block .content .text {
    color: #ffffff;
}

.light-style .testimonial-block .content .text {
    text-transform: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    width: 95%;
    display: block;
    margin: auto;
}

.light-style .testimonial-block .content .info .designation:before {
    border-color: #ffffff;
}

.testimonial-section .owl-theme .owl-dots {
    display: none;
}

.testimonial-section .owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
}

.testimonial-section .owl-theme .owl-nav .owl-next,
.testimonial-section .owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 46px;
    font-size: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    margin-left: 10px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.testimonial-section .owl-theme .owl-nav .owl-next:hover,
.testimonial-section .owl-theme .owl-nav .owl-prev:hover {
    background: #ff6000;
    border-color: #ff6000;
    color: #ffffff;
}

.testimonial-section.light-style .owl-theme .owl-nav .owl-next:hover,
.testimonial-section.light-style .owl-theme .owl-nav .owl-prev:hover {
    background: #387c0d;
    border-color: #387c0d;
    color: #ffffff;
}

#test-height {
    padding-top: 20px;
    /* height: 580px; */
    height: 620px;
    background: white;
    margin-bottom: 50px;
}

.three-title1 {
    font-size: 55px;
    letter-spacing: 0px;
    margin-top: 39px;
    color: #333;
    margin-bottom: 30px;
}

.google-review-btn {
    padding: 15px 10px;
    font-size: 16px !important;
    color: #fff;
    font-weight: 700;
    background: #ef8d06;
    border-radius: 8px;
    border: 2px solid #ef8d06;
}

.google-review-btn:hover,
.google-review-btn:focus {
    color: white;
}

.owl-carousel .owl-nav.disabled {
    /* display: block !important; */
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #000 !important;
}

.testimonial-carousel .owl-nav .owl-next {
    top: 0;
    left: 8%;
    background: none !important;
    position: absolute;
    outline: none;
    border: none;
    font-size: 30px !important;
}

.testimonial-carousel .owl-nav .owl-prev {
    top: 0;
    left: 1%;
    background: none !important;
    position: absolute;
    outline: none;
    border: none;
    font-size: 30px !important;
}

.testimonial-carousel .owl-nav .owl-prev span {
    color: #333 !important;
}

.testimonial-carousel .owl-nav .owl-next span {
    color: #333 !important;
}

.testimonial-block .content .info p {
    border-radius: 100%;
    margin: 20px auto;
    text-align: center;
    width: 100px;
    color: #3db408;
    height: 100px;
    line-height: 90px;
    font-size: 28px;
    border: 2px solid #bcb8b83d;
}

.testimonial-block .content .info .client-logo {
    border-radius: 100%;
    margin: 20px auto;
    width: 100px;
    height: 100px;
    border: 2px solid #bcb8b83d;
}

/* Additional styles for the testimonial cards */
.tesimonial-div {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    height: 100%;
}

.logo-division {
    gap: 10px;
}

.logo-division img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.googleicon {
    width: 24px;
    height: 24px;
}

.justify-content-space-between {
    justify-content: space-between;
}

.checked {
    color: #FFBF00;
}


.read-more-state {
    display: none;
}

.read-more-target {
    display: none;
}

.read-more-state:checked~.read-more-wrap .read-more-target {
    display: block;
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    color: #1791d8;
    font-size: 0.9em;
    line-height: 2;
    border-radius: .25em;
}

.starrating {
    margin: 0px 10px;
}

.read-more-trigger:after {
    content: 'Read more';
}

.read-more-state:checked~.read-more-trigger:after {
    content: 'Read less';
}

.hidden {
    display: none;
}

.testimonial-section a {
    text-decoration: none;
    color: black;
}

.testimonial-section a::before {
    content: "➜";
    /* Unicode arrow (you can change it) */
    margin-right: 8px;
    /* Space between arrow and text */
    font-size: 1.2em;
    /* Adjust size if needed */
}


.google-head {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.google-company {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff6000;
}

.prr-10 {
    padding-right: 10px;
}

 .logo-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .logo-box {
    width: 250px;
     /* Adjust as needed */
     height: 124px;
     /* Adjust as needed */
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 15px;
     background: white;
     /* Optional: if you want a background */
     border-radius: 8px;
     /* Optional: if you want rounded corners */
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     /* Optional: if you want shadow */
 }

 .logo-img {
     max-width: 100%;
     max-height: 100%;
     width: auto;
     height: auto;
     object-fit: contain;
 }



/* Dropdown Styling */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-weight: bold;
    color: #333;
}

/* Custom Dropdown Arrow */
.dropdown__arrow {
    margin-left: 8px;
    transition: transform 0.3s ease-in-out;
    font-size: 18px;
}

.nav-item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

.nav-link {
    padding: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 87%;
    left: 0;
    width: 200px;
    background: var(--body-color);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    display: none;
    border: none;
    transform: translateY(-10px);
    /* Changed from 15px to -10px */
    transition: all 0.3s ease;
    /* Simplified transition */
    z-index: 100;
    overflow: hidden;
    /* pointer-events: none; */
    /* Prevents hover issues */
    /* padding: 10px 0; */
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* Dropdown Links */
.dropdown-title {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    display: block;
    color: #007bff;
}

.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.dropdown-link:hover {
    /* background: #007bff; */
    color: #007bff;
}



.dropdown-toggle::after {
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* Dropdown content wrapper */
.dropdown-content {
    padding: 0.5rem 0;
}

/* Dropdown list styling */
.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Dropdown link styling */
.dropdown-link {
    display: block;
    width: 100%;
    /* Ensures full width */
    padding: 0.75rem 1.5rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
    /* Prevents text wrapping */
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

/* Hover effects - FIXED DROPDOWN APPEARANCE */
.nav-item.dropdown:hover .nav-link.dropdown-toggle {
    color: var(--priamry);
}

.nav-item.dropdown:hover .dropdown__arrow {
    transform: rotate(180deg);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    /* Re-enables pointer events */
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 1.75rem;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Add a subtle animation for each dropdown item */
.dropdown-list li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for list items */
.dropdown-list li:nth-child(1) {
    transition-delay: 0.05s;
}

.dropdown-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.dropdown-list li:nth-child(3) {
    transition-delay: 0.15s;
}

.dropdown-list li:nth-child(4) {
    transition-delay: 0.2s;
}

.dropdown-list li:nth-child(5) {
    transition-delay: 0.25s;
}

/* Add a subtle border between dropdown items */
.dropdown-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Optional: Add a decorative element to the dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.04);
}

/* Optional: Add a subtle background pattern */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(#6366f1 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    opacity: 0.03;
    pointer-events: none;
}




/* .portfolio-title a {
    color: #4f46e5;
} */
/* ============================
Portfolio Section Page
============================= */
.portfolio-section {
    padding: 50px 0;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 500px;
    /* Increased height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

/* Portfolio Header */
.portfolio-header {
    background: #fff;
    color: #43495E;
    padding: 15px;
    font-weight: bold;
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.portfolio-header a{
    color: #43495E;
}
/* Website Title */
.portfolio-title {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Category Tag */
.portfolio-tag {
    background: #f0f0f0;
    color: #0069d9;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Image Wrapper - Controls Scrolling */
.portfolio-image-wrapper {
    height: 400px;
    /* Restricts visible area */
    overflow: hidden;
    position: relative;
}

/* Portfolio Image */
.portfolio-image-wrapper img {
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 6s ease-in-out;
}

/* Scroll Effect on Hover */
.portfolio-card:hover .portfolio-image-wrapper img {
    transform: translateY(-50%);
    /* Moves image up to reveal the full screenshot */
}

.portfolio-footer {
    font-size: 16px;
    margin: 10px 0;
}

.footer-row {
    margin-bottom: 10px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.footer-link i {
    margin-right: 8px;
}

.portfolio-footer i {
    font-size: 18px;
    color: #0069d9;
}

.portfolio-footer span {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .portfolio-footer {
        padding: 20px;
        font-size: 14px;
    }
}

.more-portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-bulb {
    font-size: 3rem;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 2px var(--bulb-off);
    transition: all 0.3s ease;
    display: inline-block;
}

.process-card:hover .process-bulb {
    color: var(--bulb-on);
    -webkit-text-stroke: 2px var(--bulb-on);
    filter: drop-shadow(0 0 8px var(--bulb-glow));
    animation: bulbSwitchOn 0.5s ease;
}

@keyframes bulbSwitchOn {
    0% {
        color: transparent;
        -webkit-text-stroke: 2px var(--bulb-off);
        filter: none;
    }

    50% {
        color: transparent;
        -webkit-text-stroke: 2px var(--bulb-on);
        filter: drop-shadow(0 0 12px var(--bulb-glow));
    }

    100% {
        color: var(--bulb-on);
        -webkit-text-stroke: 2px var(--bulb-on);
        filter: drop-shadow(0 0 8px var(--bulb-glow));
    }
}

.process-step {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-card h4 {
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .process-row {
        gap: 20px;
    }

    .process-card {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .process-card {
        max-width: 100%;
    }

    .process-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .process-title {
        font-size: 2rem;
    }

    .process-bulb {
        font-size: 2.5rem;
    }
}

/* ===========================
Portfolio Logo desgin page css
================================ */
/* Client Logo Card */
/* Individual Logo Card */
.client-logo-card {
    background: #fff;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Logo Image Wrapper */
.client-logo-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
    height: 100%;
}

/* Logo Image - FIXED THE 640% ISSUE */
.client-logo-image-wrapper img {
    max-width: 100%;
    /* Changed from 640% to prevent overflow */
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
 

    transition: all 0.3s ease;
}

/* Hover Effect */
.client-logo-card:hover img {
    transform: scale(1.1);
}

.more-portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Sidebar */
/* Portfolio Sidebar Styles */
.portfolio-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #f0f0f0;
}

.portfolio-sidebar h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
    font-weight: 700;
    position: relative;
}

.portfolio-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0069d9;
}

.portfolio-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-tags li {
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-tags li a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: #f9f9f9;
    color: #555;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.portfolio-tags li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #0069d9;
    transition: all 0.3s ease;
}

.portfolio-tags li a:hover {
    background: #f0efff;
    color: #0069d9;
    border-left-color: #0069d9;
    transform: translateX(5px);
}

.portfolio-tags li a:hover::before {
    color: #4DAAF8;
    transform: translateY(-50%) translateX(3px);
}

/* Active State */
.portfolio-tags li.active a {
    background: #0069d9;
    color: white;
    /* border-left-color: #4DAAF8; */
}

.portfolio-tags li.active a::before {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* 
==================================
portfolio logo design page css end 
======================================== */

/* --------------------
index page css gopi
-------------------- */
/* What We Do Section */
.home-whatwedo-section {
    padding: 80px 0;
    background: url('../images/services/web-application-2.jpg') center / cover;
    position: relative;
    overflow: hidden;
}

.home-whatwedo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
}

.home-whatwedo-header {
    margin-bottom: 60px;
    text-align: center;
}

.home-whatwedo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.home-whatwedo-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.home-whatwedo-carousel {
    position: relative;
    padding: 20px;
}

/* Ensure all service cards have the same height */
.home-whatwedo-card {
    display: flex;
    flex-direction: column;
    height: 550px;
}

.home-whatwedo-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}



/* Link should stay at the bottom */
.home-whatwedo-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.home-whatwedo-icon-bg {
    position: absolute;
    top: -9px;
    right: -3px;
    opacity: 0.1;
    z-index: 1;
}

.home-whatwedo-icon-bg img {
    width: 120px;
    height: auto;
}

.home-whatwedo-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    min-height: 50px;
}

.home-whatwedo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.home-whatwedo-icon img {
    width: 100%;
    height: auto;
}

.home-whatwedo-desc {
    position: relative;
    z-index: 2;
}

.home-whatwedo-desc p {
    color: #4a5568;
    line-height: 1.7;
}

.home-whatwedo-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.home-whatwedo-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.home-whatwedo-link:hover {
    color: var(--primary);
}

.home-whatwedo-link:hover i {
    transform: translateX(5px);
}

/* Owl Carousel Navigation */
.home-whatwedo-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.home-whatwedo-prev,
.home-whatwedo-next {
    background: white !important;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1.2rem !important;
    color: #4f46e5 !important;
}

.home-whatwedo-prev:hover,
.home-whatwedo-next:hover {
    background: #4f46e5 !important;
    color: white !important;
}

.home-whatwedo-prev {
    left: -25px;
    position: absolute;
    top: 50%;
}

.home-whatwedo-next {
    right: -25px;
    top: 50%;
    position: absolute;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home-whatwedo-section {
        padding: 70px 0;
    }

    .home-whatwedo-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .home-whatwedo-inner {
        padding: 25px;
    }

    .home-whatwedo-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .home-whatwedo-section {
        padding: 60px 0;
    }

    .home-whatwedo-header {
        margin-bottom: 40px;
    }

    .home-whatwedo-title {
        font-size: 2rem;
    }

    .home-whatwedo-prev {
        left: -15px;
    }

    .home-whatwedo-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .home-whatwedo-section {
        padding: 50px 0;
    }

    .home-whatwedo-title {
        font-size: 1.8rem;
    }

    .home-whatwedo-subtitle {
        font-size: 1rem;
    }

    .home-whatwedo-inner {
        padding: 20px;
    }

    .home-whatwedo-icon {
        width: 50px;
        height: 50px;
    }
}

.home-whatwedo-icon-bg,
.home-whatwedo-icon {
    font-size: 40px;
    /* Adjust icon size */
    color: #4f46e5;
    /* Adjust icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: #f4f4f4;
    /* Light grey background */
    margin: 0 auto 15px;
    /* Center align */
}

/* Base Styles */
.homedigital-marketing-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    position: relative;
}

/* Header Styles */
.homedigital-marketing-header {
    margin-bottom: 60px;
}

.homedigital-marketing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    /*padding: 0 0px 0 16px;*/
    margin-bottom: 15px;
    position: relative;
}


.homedigital-marketing-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Row Layout */
.homedigital-marketing-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

.homedigital-marketing-reverse {
    flex-direction: row-reverse;
}

/* Content Styles */
.homedigital-marketing-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.homedigital-marketing-service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.homedigital-marketing-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Image Styles */
.homedigital-marketing-img-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.homedigital-marketing-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.homedigital-marketing-img:hover {
    transform: scale(1.02);
}

.homedigital-marketing-img-mobile {
    display: none;
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* Button Styles */
.homedigital-marketing-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 8px 19px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.homedigital-marketing-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.homedigital-marketing-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.homedigital-marketing-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .homedigital-marketing-title {
        font-size: 2.2rem;
    }

    .homedigital-marketing-service-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .homedigital-marketing-section {
        padding: 60px 0;
    }

    .homedigital-marketing-row {
        margin: 40px 0;
    }

    .homedigital-marketing-img {
        display: none;
    }

    .homedigital-marketing-img-mobile {
        display: none;
    }
}

@media (max-width: 576px) {
    .homedigital-marketing-title {
        font-size: 2rem;
    }

    .homedigital-marketing-subtitle {
        font-size: 1rem;
    }

    .homedigital-marketing-service-title {
        font-size: 1.4rem;
    }

    .homedigital-marketing-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Blog Section - Static Version */
.home-blog {
    padding: 20px 0;
    background-color: #fff;
}


.home-blog__header {
    text-align: center;
    margin-bottom: 48px;
}



.home-blog__subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}


.home-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.home-blog__card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-blog__image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-blog__image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.home-blog__category {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.home-blog__content {
    padding: 24px;
}

.home-blog__date {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.home-blog__post-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.home-blog__excerpt {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.home-blog__read-more {
    display: inline-flex;
    align-items: center;
    color: #0069d9;
    font-weight: 500;
}

.home-blog__read-more::after {
    content: '→';
    margin-left: 8px;
}

/* ---------------
index page css end
------------------- */
/* -------------------------
android page designs css
--------------------------- */
.android-benefits-container {
    background-color: var(--android-light);
    padding: 80px 0;
}

.android-benefits-title {
    color: var(--android-dark);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.android-benefits-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--android-primary);
}

.android-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* border-left: 4px solid var(--android-primary); */
    transition: transform 0.3s;
}

.android-benefit-card:hover {
    transform: translateY(-5px);
}

.android-benefit-icon {
    color: var(--android-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.android-benefit-heading {
    color: var(--android-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.android-benefit-text {
    color: #555;
    line-height: 1.6;
}

.android-highlight {
    color: var(--android-primary);
    font-weight: 600;
}

.android-dev-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.android-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/free-vector/gradient-network-connection-background_23-2148881320.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.android-float-phone {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.2;
    z-index: 0;
}

.android-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.android-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.android-text-content {
    flex: 1;
    min-width: 300px;
}

.android-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.android-heading span {
    color: #3498db;
    font-weight: 800;
}

.android-highlight-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3498db;
    margin-bottom: 2rem;
}

.android-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.android-description strong {
    color: #3498db;
}

.android-image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.android-feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .android-heading {
        font-size: 2rem;
    }

    .android-float-phone {
        width: 200px;
        right: -50px;
    }
}


/* ----------------- */

.droid-showcase-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--android-light-green) 100%);
}

.droid-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./images/android/androidbg.svg");
    opacity: 0.6;
    z-index: 0;
}

.droid-mascot-float {
    position: absolute;
    width: 180px;
    top: 10%;
    right: 5%;
    animation: float-rotate 8s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.droid-icon-small {
    position: absolute;
    width: 40px;
    opacity: 0.7;
    z-index: 1;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.droid-icon-1 {
    top: 20%;
    left: 10%;
    animation: float-small 7s ease-in-out infinite;
}

.droid-icon-2 {
    bottom: 15%;
    left: 15%;
    animation: float-small 9s ease-in-out infinite 1s;
}

.droid-icon-3 {
    top: 15%;
    right: 25%;
    animation: float-small 8s ease-in-out infinite 2s;
}

@keyframes float-rotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-small {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.content-container {
    position: relative;
    z-index: 2;
}

.droid-dev-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.droid-dev-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--android-green);
    border-radius: 2px;
}

.droid-dev-title span {
    display: block;
    font-size: 1.5rem;
    color: var(--android-dark-green);
    font-weight: 500;
    margin-top: 0.5rem;
}

.droid-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--android-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.15);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.droid-info-card:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--android-light-green);
    border-radius: 50%;
    opacity: 0.5;
}

.droid-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.droid-description strong {
    color: var(--android-dark-green);
    font-weight: 600;
}

.droid-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.droid-feature-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: rotateY(0deg);
    border: 5px solid white;
}

.droid-image-wrapper:hover .droid-feature-image {
    transform: rotateY(5deg) translateY(-10px);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
}

.droid-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.2) 0%, rgba(61, 220, 132, 0) 50%);
    border-radius: 16px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .droid-mascot-float {
        width: 120px;
        top: 5%;
        right: 5%;
    }

    .droid-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .droid-showcase-section {
        padding: 4rem 0;
    }

    .droid-mascot-float {
        display: none;
    }

    .droid-icon-small {
        display: none;
    }
}

/* -------------------- */
.android-process {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
}



.process-step {
    margin-bottom: 20px;
}

.process-step h3 {

    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;

}

.process-step p {
    font-size: 16px;
    color: #555;
}

.process-image {
    max-width: 100%;
    width: 90%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;


    will-change: transform;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);

}



/* 3D Hover Effect */
.process-image:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

/* -------------------- */
.android-features {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.feature-tag {
    background-color: #d1e5ff;
    color: #2563eb;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.feature-tag:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    color: #fff;
}

/* ---------------- */
.project-discussion {
    /* background: linear-gradient(135deg, #007bff, #0056b3); */
    color: #fff;
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-discussion h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-discussion p {
    font-size: 18px;
    margin-bottom: 25px;
}

.project-discussion .btn {
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 5px;
    background: #ffcc00;
    color: #333;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: none;
}

.project-discussion .btn:hover {
    background: #ffaa00;
    color: #222;
    transform: scale(1.05);
}

/* ---------------------------
portfolio section borhcure design 
--------------------------- */
.portfolio-section {
    padding: 50px 0;
}

/* Client Logo Card  */
.brochure-designs-card {
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    height: 200px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



/* Hover Effect */
.brochure-designs-card:hover img {
    transform: scale(1.1);
}

.more-portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Sidebar */
/* Portfolio Sidebar Styles */
.portfolio-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #f0f0f0;
}

.portfolio-sidebar h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
    font-weight: 700;
    position: relative;
}

.portfolio-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0069d9;
}

.portfolio-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-tags li {
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-tags li a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: #f9f9f9;
    color: #555;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.portfolio-tags li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #0069d9;
    transition: all 0.3s ease;
}

.portfolio-tags li a:hover {
    background: #f0efff;
    color: #0069d9;
    border-left-color: #0069d9;
    transform: translateX(5px);
}

.portfolio-tags li a:hover::before {
    color: #4DAAF8;
    transform: translateY(-50%) translateX(3px);
}



.portfolio-tags li.active a::before {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* ---------------------------
portfolio section borhcure design 
--------------------------- */

/* ------------------
contact section css
-------------------- */
#messages {
    color: red;
}

.mobile-info {
    font-family: "Noto Sans Indic Siyaq Numbers", sans-serif;
}

.floating-bar {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128C7E);
}

.floating-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.floating-bar a {
    color: white;
    text-decoration: none;
}

.call-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-btn.phone {
    background-color: #004aad;
    display: flex;
    justify-content: center;
    align-items: center !important;
}

.bottom-btn.email i {
    font-size: 35px !important;
    animation: blink 1s infinite;
    padding-right: 10px !important;
}

.bottom-btn {
    background-color: #3db35d;
    display: flex;
    justify-content: center;
    align-items: center !important;
    text-align: center !important;

}

.bottom-btn {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.indicator i {
    animation: pulseAnimation 1.5s infinite;
    /* The pulse animation will run infinitely */
}

/* Define the pulse effect */
@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        /* Normal size */
        color: #4CAF50;
        /* Initial color */
    }

    50% {
        transform: scale(1.2);
        /* Grow the icon */
        color: #FF6347;
        /* Change color at halfway */
    }

    100% {
        transform: scale(1);
        /* Return to normal size */
        color: #4CAF50;
        /* Return to initial color */
    }
}

.online-indicator {
    width: 14px;
    height: 14px;
    background: rgb(4, 255, 46);
    border-radius: 50%;
    animation: blink 1s infinite;

    margin-right: 5px;
}

.online-status {
    display: flex;

    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px;

}

.online-status span {
    color: white;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

/* Contact Section Styling */
.contact-section {
    padding: 80px 0;
    background: #f9fafc;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
}


.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
        /* Ensure it doesn’t exceed parent width */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
        /* Hide any overflow */
        box-sizing: border-box;
        /* Include padding/border in width */
}

.form-header h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #475569;
    font-size: 14px;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: #fff;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 40px;
    color: #94a3b8;
}

select.form-control {
    appearance: none;
    padding-right: 40px;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #94a3b8;
    pointer-events: none;
}

.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 14px;
    color: #475569;
}

.checkbox-item label i {
    margin-right: 8px;
    color: #4f46e5;
}

.checkbox-item input[type="checkbox"]:checked+label {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4f46e5;
    font-weight: 500;
}

.recaptcha-container {
    margin: 20px 0;
}

.submit-container {
    margin-top: 10px;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.info-header h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 15px 0;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h4 {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section p,
.contact-method,
.email-addresses {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.contact-method {
    margin-bottom: 10px;
}

.contact-method span {
    font-weight: 500;
    color: #475569;
}

.mobile-numbers,
.email-addresses {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* a {
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s;
} */

a:hover {
    color: #4338ca;
    text-decoration: underline;
}

.map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        min-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* Dual Map Styling */
.dual-map-container {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 20px;
    margin-bottom: 30px;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 10px;
}

.map-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.map-header h4 {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.map-wrapper {
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .dual-map-container {
        grid-template-columns: 1fr;
    }
}

/* ------------------
contact section css End 
-------------------- */
/* --------------------------------------------------
custom cms website devolopment page design start
------------------------------------------------- */
/* Modern CMS Development Section */
.cms-development-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cms-development-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9IiNmOGY5ZmYiLz48cGF0aCBkPSJNMCAzMEg2ME0zMCAwdjYwIiBzdHJva2U9IiNlZGVlZjIiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-center h2 span {
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-header-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.section-tagline {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.cms-content-wrapper {
    position: relative;
    z-index: 2;
}

.cms-intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.why-choose-cms {
    margin: 60px 0;
}

.why-choose-cms h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.why-choose-cms h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.cms-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cms-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.cms-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cms-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cms-benefit-card:hover::before {
    opacity: 1;
}

.cms-benefit-icon {
    font-size: 2.5rem;
    color: #4a6bff;
    margin-bottom: 20px;
}

.cms-benefit-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.cms-benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
}

.cms-comparison {
    margin-top: 60px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.comparison-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.comparison-col h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.comparison-col h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.comparison-col ul {
    list-style: none;
    padding-left: 0;
}

.comparison-col li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.comparison-col li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4a6bff;
}

.comparison-col.traditional li::before {
    color: #8a4fff;
}

/* CMS Section Styling */
.cms-types {
    position: relative;
    background: url('images/services/web-1.jpg') no-repeat center center/cover;
    padding: 50px 0;
    text-align: center;
}

/* Overlay Effect */
.cms-types::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
}

/* Content Styling */
.cms-types .container {
    position: relative;
    z-index: 2;
    /* Keeps content above overlay */
}

/* Heading Styling */
.cms-types h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Paragraph Styling */
.cms-types p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.modern-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}


.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.intro-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.intro-image:hover .featured-image {
    transform: scale(1.03);
}

.wordpress-servicesfeatures-section {
    margin-bottom: 4rem;
}

.wordpress-servicesfeatures-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.wordpress-servicesfeatures-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #21759b;
}

.wordpress-servicesfeatures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Exactly 2 columns */
    gap: 2rem;
}

.wordpress-servicesfeature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}


.wordpress-servicesfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wordpress-servicesfeature-icon {
    width: 60px;
    height: 60px;
    background: #f0f7fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wordpress-servicesfeature-icon svg {
    width: 30px;
    height: 30px;
    fill: #21759b;
}

.wordpress-servicesfeature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.wordpress-servicesfeature-desc {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.ecommerce-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 3rem;
}

.ecommerce-content {
    flex: 1;
}

.ecommerce-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.ecommerce-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ecommerce-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.ecommerce-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.ecommerce-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 12px;
    height: 12px;
    background: #21759b;
    border-radius: 50%;
}

.admin-features {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.admin-features h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.admin-features p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.ecommerce-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ecommerce-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {

    .intro-content,
    .ecommerce-section {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .ecommerce-section {
        padding: 2rem;
    }
}

/* Background and Overlay */
.call-to-two1 {
    position: relative;
    background: url('images/services/web-7.jpg') center/cover no-repeat;
    /* Add your image */
    padding: 50px 0;
    color: white;
    overflow: hidden;
}

/* Adding a dark overlay effect for better contrast */
.call-to-two1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgb(51 0 198 / 55%), rgb(0 207 221 / 60%));
    /* Adjust opacity for readability */
    z-index: 1;
}

/* Ensure child elements appear above the overlay */
.call-to-two1>* {
    position: relative;
    z-index: 2;
}


/* Typography */
.call-to-two1 h2,
.call-to-two1 h3 {
    font-weight: 700;
}

.call-to-two1 p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Image */
.feature-img1 img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-img1 img:hover {
    transform: scale(1.05);
}

/* Timeline Container */
.main-timeline33 {
    position: relative;
    padding: 20px 0;
}

/* Timeline Line */
.main-timeline33::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: #072a58;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline3 {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

/* Left Side */
.timeline3:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right Side */
.timeline3:nth-child(even) {
    left: 50%;
}

/* Timeline Content Box */
.timeline3-content1 {
    display: block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(5px);
}

.timeline3-content1:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Connector Circle */
.timeline3::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #ff9800;
    border-radius: 50%;
    border: 3px solid white;
}

/* Left Circle */
.timeline3:nth-child(odd)::after {
    right: -10px;
}

/* Right Circle */
.timeline3:nth-child(even)::after {
    left: -10px;
}

/* Title Styling */
.timeline3 h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ff9800;
}

/* Responsive: Stack on Small Screens */
@media (max-width: 768px) {
    .main-timeline33::before {
        left: 20px;
    }

    .timeline3 {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
    }

    .timeline3::after {
        left: 10px !important;
    }
}

/* --------------------------------------------------
custom cms website devolopment page design End
------------------------------------------------- */

.domain-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.domain-image2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}



/* ===================================
ui ux development page design  css
====================================== */
/* UI/UX Design Section */
.uiuxdesign-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: justify;
    background-color: #f8f9fa;
}

.uiuxdesign-container {
    max-width: 1200px;
    margin: 0 auto;
}

.uiuxdesign-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.uiuxdesign-image {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .uiuxdesign-title {
        padding-bottom: 10px;
        font-size: 24px;
    }

    .uiuxdesign-image {
        padding-bottom: 20px;
    }
}

.uiuxdesign-text {
    position: relative;
    font-size: 16px;
    color: #333;
}

.uiuxdesign-icon {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
    display: inline-block;
}

.ui-ux-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services/web-application-3.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.section-container {
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.uiuxdesignaccent-shape {
    position: absolute;
    top: 22%;
    right: 0;
    width: 50%;
    height: 244px;
    background-color: #4a6bff;
    transform: skewY(15deg);
    z-index: 1;
}

.uiuxdesignfeatures-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: center;
}

.uiuxdesignfeature-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.uiuxdesignfeature-card:hover {
    box-shadow: rgb(255 255 255 / 18%) 0px 54px 55px,
        rgb(255 255 255 / 45%) 0px -12px 30px, rgb(255 255 255 / 12%) 0px 4px 6px,
        rgb(255 255 255 / 9%) 0px 12px 13px, rgb(255 255 255 / 4%) 0px -3px 5px;
}

.uiuxdesignimage-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uiuxdesignimage-container img {
    max-width: 100%;
    height: auto;
}

.uiuxdesignfeature-card p {
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.uiuxdesigncontent-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.uiuxdesigncontent-box h2 {
    color: #4a6bff;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.uiuxdesigncontent-box p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.uiuxdesigncta-container {
    display: flex;
    justify-content: flex-start;
}

.uiuxdesigncta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4a6bff, #6a4aff);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.4);
}

.uiuxdesigncta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 107, 255, 0.6);
    color: white;
}

@media (max-width: 1024px) {
    .section-container {
        flex-direction: column;
    }

    .uiuxdesigncontent-box {
        margin-bottom: 2rem;
    }

    .uiuxdesignfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ui-ux-section {
        padding: 4rem 1.5rem;
    }

    .uiuxdesigncontent-box {
        padding: 2rem;
    }

    .uiuxdesigncontent-box h2 {
        font-size: 1.75rem;
    }

    .uiuxdesignaccent-shape {
        width: 40%;
    }
}

@media (max-width: 640px) {
    .uiuxdesignfeatures-grid {
        grid-template-columns: 1fr;
    }
}

/* Background and padding */
.clientsbg-img {
    background-color: #0c3c57;
    padding: 30px 0;
}

/* Carousel item container */
.clients-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* Add space around images */
}

/* Uniform image styling */
.clients-carousel img {
    width: 120px;
    /* Set a fixed width */
    height: 120px;
    /* Set a fixed height */
    object-fit: contain;
    /* Ensure images fit without distortion */
    display: block;
}

/* Hover effect */
.clients-carousel img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Remove grayscale on hover */
    opacity: 1;
}

/* Responsive: Adjust image size on smaller screens */
@media (max-width: 768px) {
    .clients-carousel img {
        width: 80px;
        height: 80px;
    }
}

/* ===================================
ui ux development page design  css End
====================================== */


/* ========================================
web application development page design 
============================================ */
.clearfix p {
    line-height: 1.8;
    font-size: 16px;
}

.easy-web-application {
    background: #f5f5f5;
    padding: 50px 0;
}

.customizee {
    padding: 80px 0;
    background-color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.customizee h2 {
    /* font-size: 2.8rem; */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.customizee h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.web-app-benefit {
    margin-bottom: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.web-app-benefit-content {
    padding: 40px;
}

.web-app-benefit .icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a6bff;
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
}

.web-app-benefit h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.web-app-benefit p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.web-app-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.web-app-benefit:hover .web-app-benefit-img img {
    transform: scale(1.05);
}

.e-commerce-section {
    margin-top: 60px;
}

.e-deve {
    background: white;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.e-deve h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.e-deve h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a6bff, #8a4fff);
}

.e-deve p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.e-deve ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.e-deve li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.e-deve li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #4a6bff;
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .customizee h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .web-app-benefit-content {
        padding: 30px;
    }

    .web-app-benefit-img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .customizee {
        padding: 60px 0;
    }

    .customizee h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .web-app-benefit-content {
        padding: 25px;
    }

    .e-deve {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .customizee h2 {
        font-size: 2rem;
    }

    .web-app-benefit h4 {
        font-size: 1.3rem;
    }

    .web-app-benefit p,
    .e-deve p {
        font-size: 1rem;
    }
}

/* Section Styling */
.process-timeline-section {
    background: linear-gradient(135deg, #f8f9fa, #e3eaf1);
    padding: 50px 0;
    text-align: center;
}

/* Timeline Row (Flexbox for Horizontal Layout) */
.timeline-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Timeline Item */
.timeline-item {
    flex: 1;
    min-width: 150px;
    /* Ensures equal width for items */
    max-width: 250px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Hover Animation */
.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.timeline-icon {
    width: 60px;
    height: 60px;
    background: #4f46e5;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    transition: background 0.3s ease-in-out;
}

/* Hover Effect for Icons */
.timeline-item:hover .timeline-icon {
    background: #ff7f50;
}

/* Title and Description */
.timeline-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.timeline-item p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
    .timeline-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timeline-item {
        flex-basis: 45%;
        /* Two in a row on tablets */
    }
}

@media (max-width: 600px) {
    .timeline-item {
        flex-basis: 100%;
        /* Stack items in single column for mobile */
    }
}

/* ========================================
web application development page design  End
============================================ */

/* ========================================
webdesign for association trust page css
========================================== */
a {
    text-decoration: none !important;
}

.client-header {
    padding: 20px;
    background: #080b39;
}

.bottom-btn {
    flex: 1;
    text-align: center;
    padding: 5px !important;
    font-size: 16px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-header h3 {
    font-size: 1.8em;
    color: #fff;
    margin: 0;
    font-weight: bold;

}

.client-header span {
    color: #e74c3c;
}

.client-header p {
    font-size: 1em;
    color: #555;
    margin-left: 4rem;
}

.section-1 {
    background: #080b39;
    box-sizing: border-box;
}

.area {
    width: 100%;
    height: auto;
    padding: 0 !important;
    background: #080b39;
    box-sizing: border-box;
}

.grid-item {
    color: white;
    text-align: center;

    border-radius: 5px;
    border: none !important;
}

.nested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    padding: 10px;
    position: relative;
    overflow-y: auto;
}

.nested-grid::-webkit-scrollbar {
    display: none;
}

.nested-grid {
    scrollbar-width: none;
    max-height: 600px;
    overflow-x: hidden;
    position: relative;
}

.nested-item {
    background-color: #ffff;

    border-radius: 5px;
    width: 10rem;
    height: 6rem;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nested-item img {
    width: 150px;

    height: 50px;
    object-fit: cover;
    display: block;
}

.trusted-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
    padding: 10px;
    border-radius: 5px;
    margin-left: 5rem;
}

.trusted-title i {
    font-size: 35px;
}

.customer-count {
    color: #e74c3c;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nested-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        width: auto;
    }
}

@media (max-width: 768px) {
    .nested-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        width: auto;
        height: auto;
        min-height: 4rem;
    }

    .nested-item img {
        width: 100%;
        max-width: 150px;
        height: auto;
        max-height: 40px;
    }

    .client-header h3,
    .client-header p {
        margin-left: 1rem;
    }
}

@media (max-width: 600px) {
    .nested-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .nested-item {
        padding: 5px;
    }

    .nested-item img {
        max-width: 100px;
        max-height: 35px;
    }
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.area {
    position: relative;
}

.grid-item {
    position: relative;
    z-index: 1;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-icon {
    width: 50px;
    height: 50px;
    background: #2599dc1e;
    border-radius: 50%;
    border: 1px solid #e4e5e98a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.counter-icon i {
    font-size: 22px;
    color: #2a3855;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.counter-card {
    flex: 1 1 calc(50% - 20px);
    /* 2 per row on small screens */
    max-width: calc(50% - 20px);

    border-radius: 15px;

    text-align: center;

    transition: transform 0.3s ease;
    margin-bottom: 25px;
}


.counter-title {
    font-size: 18px;
    color: #2a3855;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .counter-card {
        flex: 1 1 calc(25% - 20px);
        /* 4 per row on large screens */
        max-width: calc(25% - 20px);
        padding: 30px;
        
    }
}

.cta1-section {
    background-color: white;
    /* background: url('') no-repeat center center/cover; */
    padding: 30px 0px;
    color: #fff;
    position: relative;
}

.cta1-section .container {
    position: relative;
    z-index: 2;
    /* To place content above the overlay */
}

.text-content {
    text-align: left;
}

.cta1-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta1-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: rgb(85, 85, 85);
}

.cta1-btn {
    background: #00DEBE;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta1-btn:hover {
    background: #c9302c;
    text-decoration: none;
}

.gif1-content {
    text-align: center;
}

.cta1-gif {
    width: 100%;
    border-radius: 10px;
}

.special-benefits-section {
    padding: 50px 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('./images/general/export2.jpg') no-repeat center center;
    background-size: cover;
    /* height:100vh; */
}



.image-card img {
    width: 100%;
    height: 680px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    align-items: flex-start !important;

    transition: box-shadow 0.3s, transform 0.3s;
}

@media(max-width:576px) {
    .benefit-card {
        height: auto;
    }

    .image-card {
        height: auto;
        margin-bottom: 20px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

@media(min-width:577px) {
    .benefit-card {
        height: 220px;
    }


}

.b-card img {
    width: 50px;
    height: 50px;
    margin: 10px;
}

.b-card h4 {
    line-height: 30px !important;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Responsive Styling */
@media (max-width: 992px) {
    .benefits-image {
        margin-bottom: 20px;
        height: 300px;
    }
}

@media (max-width: 769px) {
    .benefit-card {
        padding: 15px;
    }

}

.swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Swiper Slide */
.swiper-slide {
    height:
        auto !important;

    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 10px;
}

@media(max-width:1100px) {
    .swiper-slide {
        height:
            auto !important;
    }
}

/* Image inside slide */
.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Content inside slide */
.content {
    padding: 15px;

}

.content h3 {
    color: #005548;
    padding-top: 10px;
    font-size: 16px;
}

.content p {
    color: rgb(82, 82, 82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
}


/* Make Cards Full Width on Small Screens */
@media (max-width: 576px) {
    .swiper-slide {
        width: 100% !important;
        height: auto;
    }

    .content h3 {
        font-size: 14px;
    }



    .content p {
        font-size: 12px;
        padding: 0px 15px;
        color: #dfdfdf;
    }
}

/* Swiper Navigation Buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
    color: white !important;
    /* Make arrows smaller */
}

/* Button size adjustments */
.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    /* Smaller button */
    height: 30px;
    /* Smaller button */
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Positioning */
.swiper-button-prev {
    left: 0px;
}

.swiper-button-next {
    right: 0px;
}

/* Responsive tweaks */
@media (max-width: 768px) {

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px !important;
        /* Even smaller arrows on mobile */
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 25px;
        height: 25px;
    }
}




.nursing-card {
    height: auto;
    /* Fixed height for neat alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.nursing-card:hover {
    transform: translateY(-5px);
}

.nursing-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nursing-box img {
    width: 100%;
    border-radius: 10px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blinker 1s infinite;
    color: #d9534f !important;
    /* Red color for attention */
    font-weight: bold;
    background-color: #d4f3ee;
}

.service-text {
    font-size: 16px;
    color: #555;
    text-align: center;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    45% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.animated-call-icon {
    display: inline-block;
    animation: ring 1s infinite ease-in-out;
}

.contact-info {
    margin-top: 15px;
}

.contact-info a {
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
}

.project-item {
    border: 2px solid gray !important;
}

.recent-project-list .project-item .image-box img {
    bottom: -370px;
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: top 11s;
    -moz-transition: top 11s;
    -ms-transition: top 11s;
    -o-transition: top 11s;
    transition: bottom 11s;
}

.text_box_web {
    background-color: #333;
    padding: 10px 0px;

}

.text_box_web h4 a {

    color: white !important;
}

.text_box_web h6,
.text_box_web h6 a {
    font-size: 17px !important;
}

.bg-light {
    background-color: #dfdfdf !important;
}

.text-orange {
    color: #FF6600 !important;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.faq-image {
    height: auto !important;
}


.faq-image img,
.faq-image1 img {
    width: 100%;
    height: 100%;
}

@media(max-width:576px) {
    .faq-image {
        flex: 1;
        height: 300px !important;
    }
}

.hidden {
    display: none;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.process-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.process-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.process-box:hover {
    transform: translateY(-10px);
}

.process-box i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.process-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-box p {
    font-size: 16px;
    color: #555;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Adjust this as needed */
    margin: auto;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #007bff; */
    color: white;
    font-size: 24px;
    margin: 10px;
    /* Keep margin for spacing */
    padding: 0;
    /* Remove padding */
}

.icon-box i {
    font-size: 26px;
    /* Ensures all icons are the same size */
    text-align: center;
    padding: 20px;
}


.choose-section-title {
    font-size: 17px;
}

.choose-strong {
    color: #EF8D06;
}

.choose-section-title::before {
    content: "•";
    /* Unicode for a bullet point */
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}




.card-header {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 1rem !important;
}

.location-badge {
    background-color: #eaeef1;
    color: #0d6efd;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

:root {
    --primary-color: #0069D9;
    --secondary-color: #4f46e5;
    --light-color: #f9fafb;
    --dark-color: #1e293b;
    --accent-color: #c7d2fe;
}

.industries-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.industriescard-title {
    color: #212529;
}

.features-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.features-section {
    background-image: url('images/background.jpg');
    /* Replace with your image path */
    background-size: cover;
    /* Ensures the image covers the entire section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    padding: 50px 0;
    /* Adds padding for spacing */
}

.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.3;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.3;
    z-index: 0;
}


.section-title h2 {
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

/*.section-title h2::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 0;*/
/*    width: 50%;*/
/*    height: 3px;*/
/*    background-color: var(--primary-color);*/
/*}*/

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    font-size: 17px;
}

.feature-title .check-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 21px;
}

.feature-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/*@media (max-width: 768px) {*/
/*    .feature-card {*/
/*        margin-bottom: 1.5rem;*/
/*    }*/
/*}*/
/*.trichy-why-choose img{*/
/*    height:220px;*/
/*    object-fit:cover;*/
/*    width:100%;*/
/*}*/
.target-locations-section {
    position: relative;
    background-color: #f8f9fa;
    color: #212529;
    padding: 80px 0;
    overflow: hidden;
}

/* This is where you'll add your background image */
.target-locations-section {
    background-image: url('images/thirunelveli/Nanguneri2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.target-locations-section .container {
    z-index: 2;
}



.section-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.location-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    width: 100% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.location-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.location-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.location-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/*@media (max-width: 768px) {*/
/*  .section-title {*/
/*    font-size: 2rem;*/
/*  }*/

/*  .location-card {*/
/*    margin-bottom: 20px;*/
/*  }*/
/*}*/



.process-section {
    background-image: url('images/thirunelveli/Nanguneri2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    width: 3px;
    background: #dee2e6;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.process-step.right {
    justify-content: flex-end;
}

.step-content {
    display: flex;
    align-items: center;
    max-width: 400px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
    left: -75px;
    z-index: 1;
}

.right .step-circle {
    left: auto;
    right: -75px;
}


.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-right: 20px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h4 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.process-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step.left,
    .process-step.right {
        align-items: center;
    }
}

.process-step {
    flex-direction: column;
    align-items: flex-start;
}

.process-step.right {
    justify-content: flex-start;
}

.step-content {
    margin-left: 40px;
}

.step-circle {
    left: -50px;
}

.right .step-circle {
    left: -50px;
    right: auto;
}


.process-section {
    background-image: url('./images/general/Nanguneri2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    width: 3px;
    background: #dee2e6;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.process-step.right {
    justify-content: flex-end;
}

.step-content {
    display: flex;
    align-items: center;
    max-width: 400px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
    left: -75px;
    z-index: 1;
}

.right .step-circle {
    left: auto;
    right: -75px;
}

.process-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    min-width: 320px;
    /* gap: 10px; */
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-right: 20px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h4 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.process-content p {
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step.right {
        justify-content: flex-start;
    }

    .step-content {
        margin-left: 40px;
    }

    .step-circle {
        left: -50px;
    }

    .right .step-circle {
        left: -50px;
        right: auto;
    }
}

.trichy-contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Light background instead of an image */
    color: #333;
}

.trichy-contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.trichy-contact-description {
    font-size: 18px;
    margin-bottom: 20px;
}



.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}


.section-description {
    font-size: 1.4rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    z-index: 1;
    position: relative;
}

.technologies-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.tech-card {
    background: white;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Makes all cards equal height */
}


.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #007bff;
    color: white;
}

.tech-card:hover .tech-icon {
    color: white;
}

.tech-card:hover .tech-description {
    color: white;
}

.tech-icon {
    font-size: 50px !important;
    color: #007bff;
    margin-bottom: 15px;
    transition: 0.3s;
}

.tech-title {
    font-size: 20px;
    font-weight: bold;
}

.tech-description {
    font-size: 16px;
    color: #555;
}

.btn-primary {
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
}

.thirunelvi-list li {

    font-size: 1.2rem;
    color: #34495e;


    line-height: 1.6;
    z-index: 1;
    position: relative;

}

.section-description {

    margin: 0 auto 1rem;

}

.trichycontact-image img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.trichy-contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.trichy-contact-info li {
    font-size: 18px;
    margin-bottom: 10px;
}

.trichy-contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 425px) {
    .process-card {

        min-width: 234px;
        /* gap: 10px; */
    }
}

.portfolio-tabs {
    margin: 30px 0;
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 25px;
    margin: 0 5px;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #2a2a2a;
    background-color: transparent;
    border-bottom: 3px solid #007bff;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #007bff;
}



/* ========================================
webdesign for association trust page End
========================================== */


.faq-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    font-weight: 700;
}



.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    width: 900px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background-color: #fff;
    color: #212529;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f1f8ff;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    color: #6c757d;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #6c757d;
}

.accordion-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) .accordion-number {
    background-color: #0d6efd;
    color: white;
}

.sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.inner_portfolio_title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.8rem;
}

.portfolio-description {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.portfolio-items {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.portfolio-items span {
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 500;
}

/* ====================================
website maintainace apge design css
========================================= */
.website-maintenance {
    padding: 5rem 0;
    background-color: #f9fbfd;
}


.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.maintenance-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.maintenance-image:hover .feature-image {
    transform: scale(1.03);
}

.maintenance-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-header {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e6f0fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    width: 30px;
    height: 30px;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: #e6f0fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-text h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.reasons-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reasons-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.reasons-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2c83eb;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.reason-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-number {
    width: 40px;
    height: 40px;
    background: #2c83eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}


@media (max-width: 992px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .website-maintenance {
        padding: 3rem 0;
    }

    .reasons-section {
        padding: 2rem;
    }
}

/* CMS Section Styling */
.cms-types {
    position: relative;
    background: url('images/services/web-1.jpg') no-repeat center center/cover;
    padding: 50px 0;
    text-align: center;
}

/* Overlay Effect */
.cms-types::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
}

/* Content Styling */
.cms-types .container {
    position: relative;
    z-index: 2;
    /* Keeps content above overlay */
}

/* Heading Styling */
.cms-types h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Paragraph Styling */
.cms-types p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.webmaintenance-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.webmaintenance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.webmaintenance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.webmaintenance-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.webmaintenance-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2c83eb;
}

.webmaintenance-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.webmaintenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.webmaintenance-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.webmaintenance-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webmaintenance-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.webmaintenance-icon {
    width: 40px;
    height: 40px;
    background: #e6f0fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.webmaintenance-icon svg {
    width: 20px;
    height: 20px;
    fill: #2c83eb;
}

.webmaintenance-feature p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
}

.webmaintenance-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.webmaintenance-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.webmaintenance-image:hover .webmaintenance-img {
    transform: scale(1.05);
}

.webmaintenance-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.webmaintenance-overlay p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .webmaintenance-content {
        grid-template-columns: 1fr;
    }

    .webmaintenance-image {
        height: 400px;
    }

    .webmaintenance-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .webmaintenance-section {
        padding: 3rem 0;
    }

    .webmaintenance-feature {
        padding: 1rem;
    }

    .webmaintenance-icon {
        width: 36px;
        height: 36px;
    }

    .webmaintenance-icon svg {
        width: 18px;
        height: 18px;
    }
}


/* =============================
  website redesign  page css
  ================================= */

/* Website Redesign Section Styles */
.redesign-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.redesign-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



.redesign-section .content-grid {
    margin-top: 50px;
}

.redesign-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.redesign-section .section-subheader {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

.redesign-section .card-container {
    height: 100%;
}

.redesign-section .problem-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redesign-section .problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.redesign-section .card-icon {
    font-size: 2rem;
    color: #4a6bff;
    margin-bottom: 20px;
    background: #d7f8d7d4;
    border-radius: 50%;
}

.redesign-section .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.redesign-section .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .redesign-section .section-title1 {
        font-size: 2.2rem;
    }

    .redesign-section .section-subheader {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .redesign-section {
        padding: 60px 0;
    }

    .redesign-section .section-title1 {
        font-size: 2rem;
    }

    .redesign-section .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .redesign-section .section-title1 {
        font-size: 1.8rem;
    }

    .redesign-section .section-subheader {
        font-size: 1.4rem;
    }

    .redesign-section .problem-card {
        padding: 20px;
    }
}

/* Old website effects section */
.effects {
    background-color: #fff;
    padding: 50px 0;
}

.effects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.effect-item {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.effect-number {
    font-size: 36px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
}

.effect-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.effect-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: auto;
}

.effect-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.effect-image:hover img {
    transform: scale(1.1);
}

/* Redesign Benefits section */
.redesignbenefits {
    background-color: #fff;
    padding: 50px 0;
}

.redesignbenefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.redesignbenefits-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.redesignbenefits-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.redesignbenefits-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.redesignbenefits-icon i {
    color: #4f46e5;
    font-size: 30px;
    font-style: normal;
}

.redesignbenefits-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Why choose us section */
.why-us {
    background-color: #f8f9fa;
}

.why-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.why-us-content {
    flex: 1 1 500px;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-us-points {
    margin-top: 30px;
}

.why-us-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.why-us-point i {
    color: #4f46e5;
    font-size: 20px;
    margin-top: 3px;
    font-style: normal;
}

.why-us-point h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.why-us-image {
    flex: 1 1 400px;
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Industries section */
.industries {
    background-color: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.industry-card:hover {
    color: white;
    transform: translateY(-10px);
}

.industry-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #4f46e5;
    transition: color 0.3s;
    font-style: normal;
}

.industry-card:hover i {
    color: white;
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ==============================
   brand identity page css
   ============================ */
.branding-hero-section {
    background: linear-gradient(135deg, var(--primary-blue), #19191a69);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.branding-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/smm.avif') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}

.branding-hero-content {
    position: relative;
    z-index: 1;
}

.branding-cta-button {
    background-color: var(--accent-orange);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.branding-service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.branding-service-card:hover {
    transform: translateY(-10px);
}

.branding-service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.branding-logo-type-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.branding-logo-type-card .top-img {

    height: 150px !important;
}

.branding-logo-type-card img {
    height: 100% !important;
    width: 100% !important;
}

.branding-testimonial-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.branding-testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.branding-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary);
    font-size: 2rem;
}

.branding-section-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

.branding-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.branding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

/* .section-header h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
} */



.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.branding-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    margin-bottom: 30px;
}

.branding-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.branding-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.branding-card p {
    color: #666;
    margin-bottom: 20px;
}

.branding-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.branding-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.branding-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.highlight-box {
    /* background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); */
    color: white;
    padding: 30px;
    border-radius: 10px;

}

.highlight-box h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 30px;
    color: white;
}

@media (max-width: 768px) {
    .branding-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .branding-card {
        padding: 20px;
    }
}

.email-section {
    padding: 60px 0;
}

.email-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a4365;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Email Hosting Card */
.email-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 0;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
}

.email-image {
    flex: 1;
    min-width: 300px;
    background: url('../images/email-hosting.jpg') center/cover;
}

.email-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.email-heading {
    font-size: 1.8rem;
    color: #3182ce;
    margin-bottom: 20px;
    font-weight: 600;
}

.email-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
}

.email-highlight {
    background-color: #ebf8ff;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #3182ce;
}

.email-highlight-text {
    margin-bottom: 0;
    color: #2c5282;
    font-weight: 500;
}

/* Enhanced List Styles */
.email-features {
    margin: 25px 0;
    list-style: none;
}

.email-features li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.email-features li:hover {
    color: #2c5282;
    transform: translateX(5px);
}

.email-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.email-features li:nth-child(1)::before {
    content: '\f233';
    /* server icon */
}

.email-features li:nth-child(2)::before {
    content: '\f017';
    /* clock icon */
}

.email-features li:nth-child(3)::before {
    content: '\f1cd';
    /* support icon */
}

.email-features li:nth-child(4)::before {
    content: '\f0ec';
    /* migration icon */
}

.email-cta {
    text-align: center;
    margin-top: 30px;
}

.email-btn {
    display: inline-block;
    background: #3182ce;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11);
}

.email-btn:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .email-title {
        font-size: 2rem;
    }

    .email-content {
        padding: 30px;
    }

    .email-heading {
        font-size: 1.5rem;
    }

    .email-text {
        font-size: 1rem;
    }

    .email-features li {
        font-size: 1rem;
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .email-section {
        padding: 40px 0;
    }

    .email-title {
        font-size: 1.7rem;
    }

    .email-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .email-image {
        min-height: 200px;
        min-width: 100%;
    }

    .email-features li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}




/* Who We Are Section Styling */
.about-who-we-are {
    position: relative;
    overflow: hidden;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
}






.section-description {
    font-size: 18px;
    line-height: 1.6;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 40px; */
    align-items: center;
}

.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    /* height: 500px; */
}

.img-cover {
    width: 100%;
    height: 655px;

    border-radius: 10px;

    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .img-cover {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #4f46e5;
    line-height: 1;
}

.experience-badge .label {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* .highlight-box {
    height: 100%;
} */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .feature-item {
        flex-direction: column;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* Base styles */
.process-wrapper {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Title and intro text */
.homedigital-marketing-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #2d3748;
        max-width: 800px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}



.process-text {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Process container */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Process box */
.process-box {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



.process-box:hover::before {
    width: 100%;
    opacity: 0.05;
}

/* Process icon */
.process-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    /* Ensures the container centers content */
}

.process-icon-wrapper i {
    font-size: 20px;
    color: #4361ee;
    margin-top: 10px;
    display: flex;
    align-items: center;
    /* Centers icon vertically */
    justify-content: center;
    /* Centers icon horizontally */
    transition: all 0.3s ease;
    width: 100%;
    /* Ensures full width for flex alignment */
    height: 100%;
    /* Ensures full height for flex alignment */
}

.process-box:hover .process-icon-wrapper {
    background: #4361ee;
    transform: scale(1.1);
}



.process-box:hover .process-icon-wrapper i {
    color: white;
}

/* Step label */
.process-step-label {
    display: inline-block;
    padding: 5px 15px;
    background: #e6eeff;
    color: #4361ee;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-box:hover .process-step-label {
    background: #4361ee;
    color: white;
}

/* Headings and text */
.process-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-box p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .homedigital-marketing-title {
        font-size: 2rem;
    }

    .process-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .process-container {
        grid-template-columns: 1fr;
    }
}

/* Mission & Vision Section Styling */
.mission-vision-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f9faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}







.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission {
    border-bottom: 4px solid #4f46e5;
}

.vision {
    border-bottom: 4px solid #8b5cf6;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission .card-icon {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.vision .card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mv-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg,
            rgba(79, 70, 229, 0.3) 0%,
            rgba(79, 70, 229, 0.2) 50%,
            rgba(79, 70, 229, 0.1) 100%);
}

.mission .wave-decoration {
    background: linear-gradient(90deg,
            rgba(79, 70, 229, 0.3) 0%,
            rgba(79, 70, 229, 0.2) 50%,
            rgba(79, 70, 229, 0.1) 100%);
}

.vision .wave-decoration {
    background: linear-gradient(90deg,
            rgba(139, 92, 246, 0.3) 0%,
            rgba(139, 92, 246, 0.2) 50%,
            rgba(139, 92, 246, 0.1) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .mv-cards {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 40px 30px;
    }
}


/* Main section styling */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(120deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.05) 0%, rgba(103, 58, 183, 0) 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.why-us-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Header styling */
.homedigital-marketing-title {
    font-size: 2.1rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}


.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;

    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Service items grid */
.why-us-column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
    justify-content: center;
}

/* .col-lg-8 {
    width: 100%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.col-lg-4 {
    width: 33.333%;
    padding: 0 15px;
} */

/* Service item styling - hexagonal approach */
.reason-card {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    background: transparent;
    padding: 40px 25px;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: -1;
    transition: all 0.4s ease;
}

.reason-card:hover::before {
    background: linear-gradient(135deg, #673AB7 0%, #2196F3 100%);
    transform: scale(1.05);
}

.service-content-wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.service-icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

/* .service-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(103, 58, 183, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
} */

.reason-card:hover .service-icon-container::before {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 28px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    position: relative;
    transition: all 0.4s ease;
}

.reason-card:hover .service-icon {
    /* color: #fff; */
    transform: scale(1.2);
}

.service-text-container {
    flex: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    transition: all 0.4s ease;
}

.reason-card:hover .service-title {
    color: #fff;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: all 0.4s ease;
}

.reason-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.image-wrapper2 img {
    height: 760px !important;
}

.email-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-hosting-intro {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.web-hosting-intro-content {
    max-width: 900px;
    margin: 0 auto;
}



.web-hosting-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.web-hosting-type-image img {
    height: 100%;
}

.shared-server img {
    height: 500px;
    object-fit: cover;
}

.deticated-server img {
    height: 400px;
    object-fit: cover;
}

.vpshosting img {
    height: 500px;
    object-fit: cover;
}

.costomizedhosting img {
    height: 400px;
    object-fit: cover;

}

@media (max-width:1024px) {
    .dropdown-toggle {

        padding: 1.25rem 1.5rem !important;

    }

    .dropdown__title {

        justify-content: flex-start;
        text-align: center;
        margin-top: 39px;
    }

    .nav__logo img {
        height: 60px;
        margin-top: 1px;
        margin-right: 2px;
    }
}



#portfolio-section {
    scroll-margin-top: 80px !important;
}

.webhostingbanner {

    position: relative;
    background: url('../images/general/hostingbanner.jpg') center/cover no-repeat !important;
    color: #fff;
    padding: 60px 0;
    z-index: 1;

}

.logodesign {
    background: url('../images/general/logodesign.jpg') center/cover no-repeat !important;
}

.procuredesign {
    background: url('../images/general/procuredesign.jpg') center/cover no-repeat !important;
}
.clientbanner {
    background: url('../images/general/clientsbanner.avif') center/cover no-repeat !important;
}
.woocommerce-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 5px;
}

/* Call to Action Section Styles */
.cta-ecommerce-developer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-ecommerce-developer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-ecommerce-developer::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-divider {
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.cta-content-block {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.cta-point {
    display: flex;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-point:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cta-point-number {
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    min-width: 40px;
}

.cta-point-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-point-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: #e67e22;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cta-ecommerce-developer {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-point {
        flex-direction: column;
        padding: 20px;
    }

    .cta-point-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Simple Ecommerce Developer Section */
.developer-strengths {
    background: #f8f9fa;
    padding: 60px 0;
}



.section-intro {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.strengths-container {
    max-width: 900px;
    margin: 0 auto;
}

.strength-point {
    margin-bottom: 1.8rem;
}

.strength-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.strength-description {
    color: #6c757d;
    line-height: 1.6;
}

.considerations {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.considerations-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.considerations-list {
    columns: 2;
    column-gap: 30px;
    padding-left: 20px;
    border: 1px solid #ddd;
    padding: 20px;
}

.considerations-list li {
    color: #495057;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .considerations-list {
        columns: 1;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* Minimal Ecommerce Functionality Section */
.ecommerce-features {
    padding: 70px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0px;
}

.section-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #4d4d4d;
    line-height: 1.7;
}

.feature-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-text {
    color: #4d4d4d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.priority-guide {
    margin: 40px 0;
}

.priority-step {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.feature-checklist {
    columns: 2;
    column-gap: 40px;
    margin: 40px 0;
}

.checklist-item {
    color: #4d4d4d;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    break-inside: avoid;
}

.checklist-item:before {
    content: "✓";
    color: #2563eb;
    position: absolute;
    left: 0;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* .cta-button {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
} */

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-checklist {
        columns: 1;
    }

    .priority-step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 10px;
    }
}

.brudcrummp-active {
    color: #ffcc00 !important;
    font-weight: bold;
}

.logo-division img {
    width: 50px !important;
    /* Adjust size as needed */
    height: 50px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 50%;
    /* Optional for rounded logos */
}

.review-company {
    margin-left: 10px;
    /* Adds spacing between image and text */
    font-size: 15px;
    font-weight: 600;
}

.dropdown-toggle.active {
    color: var(--primary);
}

.dropdown-toggle:hover {
    color: var(--primary);
}

.nav-item:hover {
    color: var(--primary);
}

.dropdown-link.active {

    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 1.75rem;
    border-left: 3px solid var(--primary);
}
@media (max-width:375px) {
.contact-form-wrapper {
        flex: 1;
        min-width: 100%;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 20px;
        border: 1px solid #e2e8f0;
    }
}
@media (max-width:320px) {
    .contact-form-wrapper {
        flex: 1;
         max-width: 100%;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 10px;
        border: 1px solid #e2e8f0;
    }
        .checkbox-item {
           
            width: 88%;
        }
                select.form-control {
                    appearance: none;
                   
                    width: 90%;
                }
}
.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically (if needed) */
}
.wearein{
    font-size: 30px;
    color: #fff;
}
.floating-icons {
    position: fixed;
    right: 20px;
    /* Distance from the right */
    top: 30%;
    /* Distance from the bottom */
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Space between icons */
    z-index: 1000;
}

.floating-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: pulse 1.5s infinite;
}

/* Call Icon Styling */
.floating-icons .floating-call {
    background-color: #007bff;
    /* Blue color for call */
}

/* Hover Effects */
.floating-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Pulse effect for Call icon */
.floating-call {
    animation: pulse-call 1.5s infinite;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    /* Distance from the right */
    bottom: 80px;
    /* Distance from the bottom, adjusted for floating icons */
    width: 45px;
    height: 45px;
    background-color: #ff5e14;
    /* Attractive orange */
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

/* Hover Effect */
.scroll-to-top:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Show button when scrolling */
.scroll-to-top.show {
    display: flex;
    animation: fadeIn 0.5s;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page-section {
    padding: 60px 0;
    background-color: #f9fafc;
    font-family: 'Segoe UI', sans-serif;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sub-heading {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.landing-page-content {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-column {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
}

.highlight-box {
    background-color: #f8f9fa;
   
    padding: 20px;
    border-radius: 0 4px 4px 0;
}

.cta-box {
    background-color: #3498db;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .landing-page-content {
        flex-direction: column;
    }

    .main-heading {
        font-size: 2rem;
    }
}

.expertise-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-heading {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    line-height: 1.3;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebf5fb;
    border-radius: 50%;
    padding: 10px;
}

.expertise-icon svg {
    width: 24px;
    height: 24px;
}

.expertise-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

@media (max-width: 768px) {
    .expertise-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .expertise-block {
        flex-direction: column;
        padding: 20px;
    }

    .expertise-icon {
        margin-bottom: 15px;
    }
}

.landing-definition-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    line-height: 1.3;
}

.definition-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.image-column {
    flex: 1;
}
.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    position: relative;
    overflow: hidden;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* Adjust width as needed */
}

.image-item {
    position: absolute;
    width: 60%;
    /* Adjust size */
    height: auto;
    max-height: 100vh;
    /* Full-length effect */
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.center {
    z-index: 3;
    transform: scale(1);
}

.left {
    z-index: 2;
    transform: translateX(-50%) scale(0.85);
    opacity: 0.8;
}

.right {
    z-index: 2;
    transform: translateX(50%) scale(0.85);
    opacity: 0.8;
}
.feature-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #7f8c8d;
}

.content-column {
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap:1px !important;
}

.feature-item {
    display: flex;
    gap: 5px;
    margin-bottom: 1px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #ebf5fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #3498db;
}

.feature-text p {
    margin: 0;
    color: #34495e;
    line-height: 1.6;
}

.cta-box {
    background-color: #3498db;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .definition-content {
        flex-direction: column;
    }

    .image-column,
    .content-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.7rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.landing-image img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.topic-filter {
    height: 150px;
    /* Fixed height for the content */
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding-right: 10px;
    /* Add some padding to avoid overlap with scrollbar */
}

/* Optional: Style the scrollbar */
.topic-filter::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

.topic-filter::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Color of the track */
    border-radius: 10px;
    /* Rounded corners */
}

.topic-filter::-webkit-scrollbar-thumb {
    background: #2E89DD;
    /* Color of the scrollbar */
    border-radius: 10px;
    /* Rounded corners */
}

.topic-filter::-webkit-scrollbar-thumb:hover {
    background: #2E89DD;
    /* Color of the scrollbar on hover */
}
.wesitefunction img{
height: 480px;
width: 100%;
object-fit: cover;
}

.interorbuilder img{
    height: 600px !important;
    width: 100%;
    margin-left: 5px;
    object-fit: cover;
}
.locationspecific img{
    height: 500px !important;
    width: 100%;
    object-fit: cover;
}
.constructionwhy-choose img{
    height: 500px !important;
    object-fit: cover;
}
.google-review img{
    width: 52px;
    margin-right: 10px;
}
/* counter section  */
.counter-section {
    padding: 40px 0;

}

.counter-card {
    border-radius: 15px;
    padding: 30px;
    text-align: center;

    transition: transform 0.3s ease;
    margin-bottom: 25px;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: #2A3855;
    border-radius: 50%;
    border: 1px solid #e4e5e98a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

a {
    text-decoration: none !important;
}

.counter-icon i {
    font-size: 22px;
    color: #ffffff;
}


.no-outline-btn {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
}

.no-outline-btn:after {
    content: '\f061';
    font-weight: 700;
    font-size: 14px;
    font-family: Font Awesome\ 6 Free;
    color: var(--primary);
    margin-left: 7px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    vertical-align: middle
}

.no-outline-btn:hover {
    color: var(--primary)
}

.no-outline-btn:hover:after {
    color: var(--primary)
}

.counter-title {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.number {
    font-size: 26px;
    font-weight: 500;
    color: #585858 !important;
    margin-bottom: 0;
}

.about-content {
    padding: 20px;
}



.about-content p {
    color: #454649;
    line-height: 1.8;
}

.ecommerce-wesite img{
    width: 100%;
   height: 320px;
    object-fit: cover;
    margin-top: 10px;
}
.frequently img{
    height:930px;
    width:100%;
    object-fit: cover;

}
.android-image img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
/* .mobileapplast img{
    height: 500px;
    width: 100%;
    object-fit: cover;
} */
.responsivepage img{
   max-height: 470px;
    object-fit: cover;
}



/*new added by 16.10*/
@media (min-width: 1118px) and (max-width: 1329px) {
    .nav__logo img {
    height: 60px;
    margin-top: -20px;
    margin-right: 22px;
}

.nav__list {
    display: flex;
    column-gap: 1.2rem;
    height: 50%;
}

.nav {
    height: calc(var(--header-height) + 2.5rem);
    display: flex;
    justify-content: center;
}
}

.about-content {
    padding: 20px;
    max-height: 500px; /* Desktop */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Tablet */
@media (max-width: 992px) {
    .about-content {
        max-height: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-content {
        max-height: 400px;
    }
}

/* Scrollbar styling */
.about-content::-webkit-scrollbar {
    width: 6px;
}

.about-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.about-content::-webkit-scrollbar-thumb {
    background: #2E89DD;
    border-radius: 10px;
}

.about-content::-webkit-scrollbar-thumb:hover {
    background: #1a6bb8;
}

.google-reviews-badge {
   padding: 0px 0 15px 40px;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC04;
}

.g-green {
    color: #34A853;
}

.google-reviews-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reviews-text {
    font-size: 18px;
    color: #5f6368;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars i {
    font-size: 16px;
    color: #FBBC04;
}
.portfolio-h2{
    font-size:2rem;
    margin:0 0 15px 0;
}
@media (max-width: 991px) {
  .center-counter {
    padding: 0 87px;
  }
}
