body {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.brand {
    font-weight: 700;
    font-size: 34px;
    color: #ff6a2a;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 700;
    color: #505d7a;


}

.navbar-nav .nav-link:hover {
    color: #ff6a2a;
}


/* Mobile menu spacing */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 20px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 12px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background-image: url('https://wallpaperaccess.com/full/1630870.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 17, 0.616);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    /* upar content ke liye */
    color: #fff;
    padding-top: 90px;
    padding-bottom: 0;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero p {
    color: #d1d5db;
    font-size: 18px;
    max-width: 520px;
}

/* Buttons */
/* ============================= */
/*        COMMON BUTTON STYLE    */
/* ============================= */

.btn-orange,
.btn-outline-light {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ============================= */
/*         ORANGE BUTTON         */
/* ============================= */

.btn-orange {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Hover Effect */
.btn-orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
    background-color: #ff5722;
}

/* Click Effect */
.btn-orange:active {
    transform: scale(0.95);
}


/* ============================= */
/*      OUTLINE LIGHT BUTTON     */
/* ============================= */

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

/* Hover Effect */
.btn-outline-light:hover {
    background: #fff;
    color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Click Effect */
.btn-outline-light:active {
    transform: scale(0.95);
}


/* ============================= */
/*        SHINE EFFECT           */
/* ============================= */

.btn-orange::before,
.btn-outline-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-orange:hover::before,
.btn-outline-light:hover::before {
    left: 125%;
}

/* Canvas for dots */
canvas {
    position: absolute;
    /* hero ke andar hi */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* background pe */
}

.stats h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: popUp 0.8s ease-out forwards;
}


/* Image Card */
.profile-card {
    background: none;

    padding: 15px;
    max-width: 490px;
    margin-left: auto;
}

.profile-card img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

    .profile-card {
        margin: 40px auto 0;
    }
}

/* <!-- Client Success Stories --> */
.section-title span {
    color: #ff6b35;
    font-size: 50px;
}

.tag-btn {
    background: #eef1f5;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    border: none;
}

.tag-btn:hover {
    background: #ff6a2a;
}

.story-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    box-shadow: 10px 10px 15px rgba(15, 15, 15, 0.05);
}

.story-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    border-left: 7px solid #ff6b35;
    border-top: 7px solid #ff6b35;

    border-radius: 30px 30px 0 30px;
    pointer-events: none;
}

.profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.metric h4 {
    margin: 0;
    font-weight: 700;
}

.metric span {
    font-size: 13px;
    color: #6c757d;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev {
    left: 80px;
    /* card ke andar */
}

.carousel-control-next {
    right: 80px;
    /* card ke andar */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff6b35;
    border-radius: 50%;
    padding: 18px;

}

/* quiz card */

.quiz-card {
    width: 100%;
    max-width: 520px;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0px -11px 20px rgba(7, 7, 7, 0.08);
    background-color: #fff;
    border-right: 7px solid #ff6b35;
    border-bottom: 7px solid #ff6b35;
    cursor: pointer;



}

.form-check-input,
.form-check-label {
    cursor: pointer;
    text-align: left;
}

.btn-next {
    background-color: #ff6b35;
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
}

.btn-next:hover {
    background-color: rgb(4, 63, 14);
    color: white;
}

.progress {
    height: 6px;
    border-radius: 10px;

}

.progress-bar {
    background-color: #ff7f50;
}

/* experties card */

.section-padding {
    padding: 80px 0;
}

.section-title p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #555;
    font-size: 16px;
}

.expertise-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: 0.3s ease;
    border-top: 7px solid #ff6b35;
    border-bottom: 7px solid #ff6b35;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 22px;
    margin-bottom: 20px;
}

.expertise-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 15px;
    color: #555;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-top: 25px;
}

.stat-text {
    font-size: 13px;
    color: #777;
}

/* case reult */
.modal-content {
    background: wheat;
    border-radius: 18px;
    border: 3px solid #ff6b35;
}

/* grid layout */
.carousel-inners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0px;
    row-gap: -10px;
}

/* ============================= */
/*        IMAGE CONTAINER        */
/* ============================= */

.carousel-items {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin: auto;
    position: relative;
    overflow: hidden;

    /* Entry animation */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeSlideUp 0.9s ease forwards;
}

/* Entry Animation */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating subtle animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.carousel-items {
    animation: fadeSlideUp 0.9s ease forwards, floating 4s ease-in-out infinite;
}


/* ============================= */
/*           IMAGE STYLE         */
/* ============================= */

.carousel-items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid #ff6b35;

    box-shadow: 0 5px 18px rgba(255, 107, 53, .5);
    transition: all 0.4s ease;
}


/* Hover Premium Effect */
.carousel-items:hover img {
    transform: scale(1.06);
    box-shadow: 0 10px 35px rgba(255, 107, 53, .8);

}


/* Glow Pulse Effect */
@keyframes glowPulse {
    0% {
        box-shadow: 0 5px 18px rgba(255, 107, 53, .4);
    }

    50% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, .8);
    }

    100% {
        box-shadow: 0 5px 18px rgba(255, 107, 53, .4);
    }
}

.carousel-items img {
    animation: glowPulse 3s infinite ease-in-out;
}


/* ============================= */
/*        RESPONSIVE FIX         */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
    .carousel-items {
        max-width: 420px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .carousel-items {
        max-width: 95%;
        aspect-ratio: 1 / 1;
        padding: 20px;
    }
}


/* ============================= */
/*         HEADING STYLE         */
/* ============================= */

.gallery-heading {
    width: 100%;
    text-align: center;
    margin: 30px 0 15px;
}

.gallery-heading h4 {
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}