/* =============================================
   RESET & BASE
   ============================================= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jaldi", sans-serif;
    overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
.logo {
    width: 90px;
    height: 90px;
}

a {
    color: inherit;
    text-decoration: none;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 30px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav ul {
    display: flex;
    gap: 45px;
    align-items: center;
    list-style-type: none;
}

.nav ul li {
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}

.nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0090FF;
    transition: width 0.25s ease;
}

.nav ul li:hover {
    color: #0090FF;
}

.nav ul li:hover::after {
    width: 100%;
}

.nav ul li:active {
    color: #006ec0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #121420;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-sec {
    display: flex;
    gap: 30px;
    padding: 20px 50px 40px;
    align-items: center;
}

.hero-right {
    position: relative;
    flex-shrink: 0;
}

.hero-right img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.hero-right img:hover {
    transform: scale(1.02);
}

.hero-badge-one {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    top: 28px;
    right: 23px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: slideInRight 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-badge-one:hover,
.hero-badge-two:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 144, 255, 0.15);
    border-color: #0090FF;
}

.hero-badge-one span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D5EDFF;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.hero-badge-one:hover span {
    background-color: #0090FF;
}

.hero-badge-one i {
    margin-top: 5px;
    font-size: 25px;
    color: #0090FF;
    transition: color 0.3s ease;
}

.hero-badge-one:hover i {
    color: white;
}

.hero-badge-two {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    bottom: 37px;
    left: 23px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: slideInLeft 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-badge-two span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D5EDFF;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.hero-badge-two:hover span {
    background-color: #0090FF;
}

.hero-badge-two i {
    margin-top: 5px;
    font-size: 25px;
    color: #0090FF;
    transition: color 0.3s ease;
}

.hero-badge-two:hover i {
    color: white;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-left {
    padding: 10px;
    flex: 1;
}

.hero-left h1 {
    font-weight: bold;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.18;
}

.hero-left h1 span {
    color: #0090FF;
}

.hero-left p {
    font-size: clamp(16px, 1.6vw, 24px);
    line-height: 1.31;
    margin-top: 8px;
    max-width: 540px;
}

.hero-btn {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-btn-one {
    background-color: #D4AF37;
    padding: 14px 30px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-btn-one:hover {
    background-color: #b89428;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.hero-btn-one:active {
    background-color: #967820;
    transform: scale(0.98);
    box-shadow: none;
}

.hero-btn-two {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    gap: 5px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    color: #121420;
    transition: color 0.25s ease, gap 0.2s ease, background-color 0.25s ease;
}

.hero-btn-two i {
    margin-top: 4px;
}

.hero-btn-two:hover {
    color: #0090FF;
    background-color: #D5EDFF;
    gap: 10px;
}

.hero-btn-two:active {
    color: #006ec0;
    background-color: #cce7ff;
}

/* Stats */
.stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-data {
    text-align: center;
}

.stats-data h1 {
    color: #0090FF;
    font-size: clamp(28px, 3vw, 40px);
}

.stats-data p {
    font-weight: bold;
    font-size: clamp(14px, 1.2vw, 20px);
}

/* =============================================
   SHARED SECTION UTILITIES
   ============================================= */
.services {
    padding: 80px 0px 20px;
}

.badge {
    display: flex;
    justify-content: center;
}

.badge span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 149px;
    height: 40px;
    background-color: #D5EDFF;
    border-radius: 25px;
    font-size: 17px;
    color: #0065B3;
    padding: 4px 16px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.badge span:hover {
    background-color: #0090FF;
    color: white;
    border-color: #0065B3;
}

.services h1 {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 3px;
}

.service-small-desc {
    max-width: 590px;
    text-align: center;
    margin: 0 auto;
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.31;
    padding: 0 16px;
}

/* =============================================
   SERVICES TABS
   ============================================= */
.services-tab {
    display: flex;
    justify-content: space-evenly;
    gap: 3px;
    padding: 10px 30px 0;
    margin-top: 30px;
    flex-wrap: wrap;
}

.services-tab p {
    max-width: 140px;
    border-bottom: 5px solid transparent;
    font-weight: bold;
    font-size: clamp(14px, 1.3vw, 20px);
    padding: 19px 8px;
    line-height: 1.1;
    cursor: pointer;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.services-tab p:hover {
    color: #0090FF;
    border-bottom-color: #0090FF;
}

.services-tab p:active {
    color: #006ec0;
}

/* Service detail */
.srvice-detail {
    background: url(./assets/home/services-img.png) center/cover no-repeat;
    padding: 60px 5%;
    height: auto;
    min-height: 320px;
    display: flex;
    align-items: flex-start;
}

.service-inner {
    background-color: #FFFFFFBF;
    padding: 43px;
    padding-bottom: 83px;
    position: relative;
    overflow: hidden;
    /* max-width: 600px; */
    border-radius: 8px;
    transition: background-color 0.4s ease;
}

.service-inner:hover {
    background-color: #ffffff;
}

.service-inner-content {
    max-width: 90%;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-badge span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D5EDFF;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.service-inner:hover .service-badge span {
    background-color: #0090FF;
}

.service-badge i {
    margin-top: 5px;
    font-size: 25px;
    color: #0090FF;
    transition: color 0.3s ease;
}

.service-inner:hover .service-badge i {
    color: white;
}

.services-desc {
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1.45;
}

.services-right-circle {
    width: 293px;
    height: 293px;
    background-color: #D4AF37;
    border-radius: 50%;
    position: absolute;
    right: -139px;
    top: 108%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.services-right-circle:hover {
    background-color: #b89428;
}

.services-right-circle:active {
    background-color: #967820;
}

.services-right-circle span {
    position: absolute;
    top: 36px;
    left: 76px;
}

.services-right-circle span i {
    font-size: 50px;
    color: white;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-inner:hover .services-right-circle span i {
    transform: rotate(-45deg);
}

.service-inner:hover .services-right-circle:hover span i {
    transform: rotate(0deg);
}

/* =============================================
   PROCESS CARDS
   ============================================= */
.process-step {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 37px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: default;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background: transparent;
}

.process-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 144, 255, 0.1);
    border-color: transparent;
}

.process-card .number {
    font-weight: bold;
    color: #0090FF;
    font-size: clamp(36px, 3.5vw, 50px);
    border-bottom: 3px solid #0090FF;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    width: 60px;
    padding: 0 5px;
    transition: color 0.4s ease;
}

.process-card .number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0090FF;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-card:hover .number {
    color: white;
    border-bottom-color: transparent;
}

.process-card:hover .number::before {
    transform: scaleX(1);
}

.process-card .heading {
    font-weight: bold;
    font-size: clamp(18px, 1.6vw, 25px);
}

.process-card .desc {
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1.4;
    width: 100%;
}

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    column-gap: 30px;
    row-gap: 24px;
}

.industries-card {
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1.5px solid transparent;
}

.industries-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 144, 255, 0.18);
    border-color: #0090FF;
}

.industries-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 144, 255, 0.25);
}

.industries-card span {
    width: 56px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D5EDFF;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.industries-card:hover span {
    background-color: #0090FF;
    transform: rotate(5deg);
}

.industries-card span i {
    margin-top: 5px;
    font-size: 22px;
    color: #0090FF;
    transition: color 0.3s ease;
}

.industries-card:hover span i {
    color: white;
}

.industries-card-desc .heading {
    font-weight: bold;
    font-size: clamp(16px, 1.4vw, 22px);
}

.industries-card-desc .para {
    font-size: clamp(14px, 1.1vw, 18px);
    width: 100%;
    line-height: 1.35;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial {
    padding: 80px 0px 30px;
    background-color: #115A92;
}

.testimonial h1 {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 3px;
    color: white;
}

.testimonial-small-desc {
    max-width: 590px;
    text-align: center;
    margin: 0 auto;
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.5;
    color: white;
    padding: 0 16px;
}

.test-badge {
    display: flex;
    justify-content: center;
}

.test-badge span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 149px;
    height: 40px;
    background-color: #2E76AF;
    border-radius: 25px;
    font-size: 15px;
    color: white;
    padding: 4px 16px;
    margin-bottom: 8px;
}

.test-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 35px auto;
    padding: 0 20px;
}

.test-btn-left {
    background-color: white;
    border: 0.6px solid #D4AF37;
    min-width: 50px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.test-btn-left:hover {
    background-color: #fdf4d8;
    transform: scale(1.05);
}

.test-btn-left:active {
    background-color: #f5e9a8;
    transform: scale(0.97);
}

.test-btn-left i {
    font-size: 22px;
    color: #D4AF37;
}

.test-btn-right {
    background-color: #D4AF37;
    border: 0.6px solid #D4AF37;
    min-width: 50px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.test-btn-right:hover {
    background-color: #b89428;
    transform: scale(1.05);
}

.test-btn-right:active {
    background-color: #967820;
    transform: scale(0.97);
}

.test-btn-right i {
    font-size: 22px;
    color: white;
}

.test-content {
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    transition: transform 0.4s ease, background-color 0.4s ease, border-radius 0.4s ease, padding 0.4s ease;
}

.test-container:hover .test-content {
    background-color: rgba(255, 255, 255, 0.05);
    /* Slight highlight */
    border-radius: 20px;
    transform: scale(1.02);
}

.test-content p {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.4;
    color: white;
    font-weight: normal;
}

.stars i {
    font-size: 14px;
    color: #FABD3B;
    display: inline-block;
    transition: transform 0.3s ease;
}

.test-container:hover .stars i {
    transform: scale(1.2) rotate(15deg);
}

.test-container:hover .stars i:nth-child(even) {
    transform: scale(1.2) rotate(-15deg);
}

.test-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.test-container:hover .test-img {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.test-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-user-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.test-user-detail p {
    color: white;
    font-size: 14px;
}

.test-content span {
    position: absolute;
    top: 0px;
    left: 0px;
    transition: transform 0.4s ease;
}

.test-content span i {
    font-size: 30px;
    color: #D4AF37;
    display: inline-block;
}

.test-container:hover .test-content span {
    transform: scale(1.2) translateY(-5px) translateX(-5px);
}

.indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-bottom: 20px;
}

.indicator p {
    width: 15px;
    height: 15px;
    background-color: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.indicator p:hover {
    background-color: #D4AF37;
    transform: scale(1.2);
}

/* =============================================
   CTA
   ============================================= */
.cta {
    padding: 80px 40px;
}

.cta-content {
    border-radius: 50px;
    background: linear-gradient(90deg, #0090FF 0%, #0D61F3 100%);
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-content:hover {
    box-shadow: 0 15px 35px rgba(0, 144, 255, 0.3);
    transform: translateY(-5px);
}

.cta-content h1 {
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.1;
    color: #FFFFFF;
}

.cta-content p {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.3;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    color: white;
    padding: 0 16px;
}

.cta-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn-one {
    background-color: #D4AF37;
    padding: 14px 30px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta-btn-one:hover {
    background-color: #b89428;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.cta-btn-one:active {
    background-color: #967820;
    transform: scale(0.98);
    box-shadow: none;
}

.cta-btn-two {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    gap: 5px;
    font-size: 16px;
    font-family: inherit;
    color: white;
    cursor: pointer;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.cta-btn-two:hover {
    gap: 10px;
    opacity: 0.85;
}

.cta-btn-two:active {
    opacity: 0.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    display: flex;
    padding: 50px;
    background-color: #121420;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 220px;
}

.footer-left h3 {
    color: white;
    text-align: center;
    line-height: 1.2;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons span {
    width: 40px;
    height: 40px;
    background-color: #373B47;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.social-icons span:hover {
    background-color: #0090FF;
    transform: scale(1.1);
}

.social-icons span:active {
    background-color: #006ec0;
    transform: scale(0.98);
}

.social-icons span i {
    color: white;
    font-size: 18px;
    margin-top: 3px;
}

.footer-middle {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    color: white;
}

.footer-middle p {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-middle p:hover {
    color: #0090FF;
}

.footer-middle p:active {
    color: #006ec0;
}

.footer-right p {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-right-input {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-right-input input {
    padding: 13px 11px;
    border: 0.88px solid #767676;
    color: #ccc;
    background-color: transparent;
    min-width: 185px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease;
    outline: none;
}

.footer-right-input input:focus {
    border-color: #0090FF;
}

.footer-btn {
    padding: 13px 23px;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, border-color 0.25s ease;
}

.footer-btn:hover {
    background-color: #0090FF;
    color: white;
    transform: scale(1.05);
}

.footer-btn:active {
    background-color: #006ec0;
    transform: scale(0.98);
}

.footer-bottom {
    background-color: #141824;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
}

/* =============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .hero-sec {
        padding: 20px 30px 40px;
        gap: 20px;
    }

    .hero-right img {
        width: 420px;
    }

    .process-step {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .industries-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .cta {
        padding: 60px 30px;
    }

    .footer {
        padding: 40px 30px;
    }
}

/* =============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================= */
@media (max-width: 768px) {

    /* Navbar */
    .nav {
        padding: 8px 20px;
        flex-wrap: wrap;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 10px 0 16px;
        border-top: 1px solid #eee;
        margin-top: 8px;
    }

    .nav ul.open {
        display: flex;
    }

    .nav ul li {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        font-size: 17px;
    }

    .nav ul li::after {
        display: none;
    }

    /* Hero */
    .hero-sec {
        flex-direction: column;
        padding: 20px 20px 40px;
        gap: 30px;
    }

    .hero-left {
        padding: 0;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 17px;
    }

    .hero-right {
        width: 100%;
    }

    .hero-right img {
        width: 100%;
        height: auto;
    }

    .hero-badge-one {
        top: 14px;
        right: 10px;
        padding: 7px;
        font-size: 12px;
    }

    .hero-badge-one span,
    .hero-badge-two span {
        width: 36px;
        height: 36px;
    }

    .hero-badge-one i,
    .hero-badge-two i {
        font-size: 18px;
    }

    .hero-badge-two {
        bottom: 20px;
        left: 10px;
        padding: 7px;
        font-size: 12px;
    }

    .hero-btn-one {
        padding: 10px 29px;
    }

    .stats {
        gap: 30px;
        justify-content: center;
    }

    .services {
        padding: 32px 0px 20px;
    }

    /* Services tabs */
    .services-tab {
        gap: 6px;
        padding: 10px 16px 0;
        justify-content: flex-start;
    }

    .services-tab p {
        font-size: 14px;
        padding: 10px 4px;
    }

    /* Service detail */
    .srvice-detail {
        padding: 30px 20px;
        min-height: 260px;
    }

    .service-inner {
        padding: 24px;
        padding-bottom: 70px;
    }

    .services-right-circle {
        width: 270px;
        height: 259px;
    }

    .services-right-circle span {
        top: 34px;
        left: 68px;
    }

    .services-right-circle span i {
        font-size: 40px;
    }

    /* Process */
    .process-step {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .process-card .desc {
        width: 100%;
    }

    /* Industries */
    .industries-container {
        grid-template-columns: 1fr;
        padding: 20px;
        row-gap: 16px;
    }

    /* Testimonial */
    .testimonial {
        padding: 51px 0px 14px;
    }

    .test-container {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        position: relative;
    }

    .test-btn-left {
        position: absolute;
        top: 99%;
        left: 10px;
        min-width: 42px;
        height: 38px;
    }

    .test-btn-right {
        position: absolute;
        top: 99%;
        right: 10px;
        min-width: 42px;
        height: 38px;
    }

    .test-btn-left i,
    .test-btn-right i {
        font-size: 17px;
    }

    .indicator {
        padding-top: 43px;
    }

    .indicator p {
        width: 13px;
        height: 13px;
    }

    /* .test-btn-left,
    .test-btn-right {
        align-self: flex-end;
        order: 1;
    } */

    .test-content {
        padding: 20px 10px;
        order: 0;
    }

    .test-content span {
        top: -13px;
        left: -7px;
    }

    .test-content span i {
        font-size: 27px;
    }

    /* CTA */
    .cta {
        padding: 40px 16px;
    }

    .cta-content {
        border-radius: 24px;
        padding: 36px 16px;
        gap: 20px;
    }

    .cta-content h1 {
        font-size: 26px;
    }

    .cta-btn {
        flex-direction: column;
        gap: 16px;
    }

    .cta-btn-one {
        padding: 8px 31px;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        padding: 32px 20px;
        gap: 30px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-left h3 {
        text-align: center;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-middle {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer-right-input {
        flex-direction: column;
    }

    .footer-right-input input {
        width: 100%;
        padding: 10px 11px;
    }

    .footer-middle p {
        font-size: 15px;
    }

    .footer-btn {
        padding: 7px 17px;
    }
}

/* =============================================
   RESPONSIVE — Small phones (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    /* .hero-badge-one,
    .hero-badge-two {
        display: none;
    } */

    .badge span {
        font-size: 14px;
        height: 34px;
    }

    .hero-btn-one {
        padding: 8px 27px;
    }

    .services h1 {
        font-size: 24px;
    }

    .cta-content {
        border-radius: 16px;
    }
}
