/* home section start */
.home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%),
        var(--bg-img) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 500px;
    padding: 0 clamp(15px, 3vw, 20px);
    color: #fff;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 138, 0, 0.2), rgba(229, 46, 113, 0.2));
    z-index: 1;
}

.home-section .max-width {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.home-content {
    margin-top: auto;
}

/* Home Text Styles */
.home-section .home-content .welcome-text {
    font-size: clamp(1.125rem, 2vw, 24px);
    text-align: left;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    color: #cccccc;
}

.home-section .home-content .main-title {
    font-size: clamp(2.5rem, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
    background: linear-gradient(to right, #ffffff, #ff8a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    position: relative;
    line-height: 1.1;
}

.home-section .home-content .main-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #ff8a00;
    overflow: hidden;
    animation: textReveal 1.5s ease forwards;
    animation-delay: 1s;
}

.home-section .home-content .tagline {
    font-size: clamp(1.5rem, 4vw, 36px);
    margin: 15px 0 clamp(20px, 3vw, 30px);
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    color: #dddddd;
    line-height: 1.2;
}

.home-section .home-content .tagline span {
    color: #ff8a00;
    font-weight: 600;
    position: relative;
}

.home-section .home-content .tagline span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ff8a00;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.home-section .home-content .tagline span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Button Styles */
.quote-button {
    display: inline-block;
    padding: clamp(12px, 2vw, 14px) clamp(25px, 4vw, 35px);
    font-size: clamp(1rem, 1.5vw, 18px);
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ff8a00;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.quote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    z-index: -1;
    transition: width 0.4s ease;
}

.quote-button:hover {
    color: #ffffff;
    border-color: transparent;
}

.quote-button:hover::before {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Services Section */
.service_body {
    background: #000000;
    color: #dddddd;
    display: flex;
    justify-content: center;
    padding: clamp(30px, 5vw, 40px) clamp(15px, 3vw, 20px);
    width: 100%;
    text-align: left;
}

.services-section {
    width: 100%;
    max-width: 1200px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    padding: 0 15px;
}

/* SERVICE CARD */
.service-card {
    position: relative;
    padding: clamp(20px, 3vw, 28px);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.7));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #ff8a00, #e52e71, transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 138, 0, 0.15);
}

/* TITLE */
.service-title {
    font-size: clamp(1.1rem, 2vw, 20px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.service-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin-top: 6px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
}

/* DESCRIPTION */
.service-desc {
    color: #bfbfbf;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* TAGS */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.25s ease;
}

.service-tag:hover {
    background: rgba(255, 178, 61, 0.1);
    transform: translateY(-2px);
}

/* BUTTON */
.view-details-btn {
    background: transparent;
    border: 1px solid rgba(255, 138, 0, 0.4);
    padding: 10px 16px;
    border-radius: 10px;
    color: #ff8a00;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-details-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 138, 0, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.view-details-btn:hover::before {
    transform: translateX(100%);
}

.view-details-btn:hover {
    background: rgba(255, 138, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
}

/* MOBILE*/
@media (max-width: 480px) {
    .view-details-btn {
        width: 100%;
        text-align: center;
    }
}

/* MODAL WRAPPER */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: clamp(15px, 3vw, 20px);
}

.modal.active {
    display: flex;
    opacity: 1;
}

/* MODAL BOX */
.modal-content {
    position: relative;
    width: 100%;
    max-width: min(600px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.85));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.02);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #ff8a00, #e52e71, #25D366);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Title */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: clamp(1.2rem, 3vw, 24px);
    font-weight: 600;
    color: #ffffff;
}

/* CLOSE BUTTON */
.close-btn {
    background: transparent;
    border: none;
    color: #aaaaaa;
    font-size: 22px;
    cursor: pointer;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* BODY TEXT */
.modal-body {
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 16px);
}

/* FEATURES */
.modal-features {
    margin-top: 20px;
}

.modal-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-icon {
    color: #ff8a00;
    font-size: 14px;
    margin-top: 3px;
}

/* CTA BUTTONS */
.modal-cta {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-contact-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    min-width: 160px;
}

/* Primary Button */
.primary-btn {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 46, 113, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: #fff;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/*======= Hero section end =========*/

/* FEATURES SECTION START */

.features {
    margin-top: 30px;
}

/* SLIDER WRAPPER */
.card-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    cursor: grab;
}

/* CONTAINER */
.card-container2 {
    display: flex;
    gap: 20px;
    padding: 10px 0 40px;
    transition: transform 0.5s ease;
    will-change: transform;
    margin: 0 10px;
}

.card-container2:active {
    cursor: grabbing;
}

/* CARD */
.card2 {
    position: relative;
    padding: 26px 22px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;

    flex: 0 0 calc((100% - 60px) / 4);
    /* FIXED */

    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.05);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.02);

    transition: all 0.4s ease;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* Gradient Glow Border */
.card2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, #ff8a00, #e52e71, #00c6ff);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: 0.4s;
}

/* TOP GLOW */
.card2::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.card2:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 138, 0, 0.12);
}

.card2:hover::before {
    opacity: 0.6;
}

.card2:hover::after {
    opacity: 1;
}

/* ICON */
.feaimg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: 0.4s ease;
    filter: brightness(0.95);
}

.card2:hover .feaimg {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 138, 0, 0.4));
}

/* TITLE */
.featitle {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

/* LINE */
.featitle::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    transition: 0.3s;
}

.card2:hover .featitle::after {
    width: 55px;
}

/* TEXT */
.card2 p {
    color: #bfbfbf;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

/* ANIMATION */
.card2:nth-child(2) {
    animation-delay: 0.1s;
}

.card2:nth-child(3) {
    animation-delay: 0.2s;
}

.card2:nth-child(4) {
    animation-delay: 0.3s;
}

.card2:nth-child(5) {
    animation-delay: 0.4s;
}

.card2:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SMOOTH SCROLL FEEL */
.card-container2 {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CENTER FOCUS EFFECT */
.card2 {
    opacity: 0.6;
    transform: scale(0.92);
    transition: all 0.5s ease;
}

.card2.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

/* SIDE CARDS SOFT */
.card2.near {
    opacity: 0.8;
    transform: scale(0.97);
}

/* SMOOTH DRAG */
.card-slider {
    cursor: grab;
}

.card-slider:active {
    cursor: grabbing;
}

/* =========================
   RESPONSIVE
========================= */

/* 3 cards */
@media (max-width: 1100px) {
    .card2 {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

/* 2 cards */
@media (max-width: 768px) {
    .card-container2 {
        padding: 10px 0 30px;
    }

    .card2 {
        flex: 0 0 calc((100% - 20px) / 2);
        padding: 22px 18px;
    }

    .feaimg {
        width: 52px;
        height: 52px;
    }
}

/* 1 card */
@media (max-width: 480px) {
    .card2 {
        flex: 0 0 100%;
        padding: 20px;
    }

    .featitle {
        font-size: 16px;
    }

    .card2 p {
        font-size: 13px;
    }
}

/* FEATURES SECTION END */

/* TESTIMONIAL SECTION START */
.home-testimonial {
    margin-top: 40px;
}

/* TESTIMONIAL SECTION END */

/* PROCESS SECTION START */
.process-section {
    display: block;
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 80px 0 100px;
    line-height: 1.5;
    isolation: isolate;
    position: relative;
}

.process-section .max-width {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 5;
}


.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}


.process-card {
    position: relative;
    padding: 32px 24px 28px;
    border-radius: 15px;
    background: #0c0c0c;
    border: 1px solid #222222;
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.8);
    transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.process-card:hover {
    transform: translateY(-6px);
    border-color: #ff8a00;
    box-shadow: 0 25px 40px -15px rgba(255, 138, 0, 0.3);
    background: #111111;
}


.process-number {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: #ff8a00;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    opacity: 0.9;
    transition: opacity 0.15s;
}

.process-card:hover .process-number {
    opacity: 1;
    color: #ff9e2c;
}

/* title */
.process-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* paragraph */
.process-card p {
    font-size: 0.98rem;
    color: #bbbbbb;
    line-height: 1.6;
    margin: 0;
    transition: color 0.2s;
}

.process-card:hover p {
    color: #dddddd;
}



/* remove line on smaller screens */
@media (max-width: 999px) {

    .process-container::before,
    .process-container::after {
        display: none;
    }
}

/* responsive touches */
@media (max-width: 600px) {
    .process-section .max-width {
        padding: 0 20px;
    }

    .process-card {
        padding: 28px 20px;
    }

    .process-number {
        font-size: 2.8rem;
    }

    .process-card h3 {
        font-size: 1.4rem;
    }
}

/* PROCESS SECTION END */


/* FAQS SECTION END */

.home-faqs {
    padding: 80px 0 100px;
}

/* FAQS SECTION END */


/* Portfolio SECTION Start */
.portfolio-slider-page{
      margin-bottom:  100px;
}
/* Portfolio SECTION END */