
body {
    font-family: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
        :root {
            --primary: #ff7a00;
            --primary-rgb: 255, 122, 0;
            --secondary: #ffffff;
            --dark-accent: #1f2937;
            --page-bg: #ffffff;
            --text-main: #1f2937;
            --text-muted: #4b5563;
            --card-bg: rgba(31, 41, 55, 0.03);
            --card-border: rgba(31, 41, 55, 0.08);
            --glass-blur: 16px;
            --font-main: 'Inter', sans-serif;
        }

    
       

        /* Typography helpers */
        .gradient-text {
            background: linear-gradient(135deg, #1f2937 30%, #ff7a00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
     

        .section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;

    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 12px;

    border: 1px solid var(--primary);
    border-radius: 99px;
       background: linear-gradient(135deg, rgba(253, 123, 65, 0.11), rgba(253, 123, 65, 0.06))
}
        /* Premium Buttons */
        .btn-custom {
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
            box-shadow: 0 4px 20px rgba(255, 122, 0, 0.25);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
            color: #fff;
        }
        .btn-outline-custom {
            background: rgba(0,0,0,0.02);
            color: var(--dark-accent);
            border: 1px solid rgba(0,0,0,0.15);
            backdrop-filter: blur(5px);
        }
        .btn-outline-custom:hover {
            background: var(--dark-accent);
            color: #fff;
            transform: translateY(-3px);
        }


        h4 {
    margin-bottom: 0px; /* 5px ya 10px bhi rakh sakte ho */
}
        .btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    min-height: 54px;
    min-width: 220px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary-custom {
    background: #ff7300;
    border: 2px solid #ff7300;
    color: #fff !important;
}


/* FAQ Accordion Heading */
.accordion-button {
    font-size: 1.05rem !important;   /* 28px */
    font-weight: 700 !important;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}
/* Job Description & Requirements Heading */
#open-positions h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

/* Why Join Steep Rise Heading */
#why-join h2,
.display-12 {
    font-size: 1.8rem !important;
    font-weight: 400;

}
.btn-primary-custom:hover {
    background: #e56700;
    border-color: #e56700;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline-custom {
    background: transparent;
    border: 2px solid #ff7300;
    color: #ff7300 !important;
}

.btn-outline-custom:hover {
    background: #ff7300;
    color: #fff !important;
    border-color: #ff7300;
    transform: translateY(-2px);
}

/* 
        .sr-chatbot-launcher-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-chatbot-launcher-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

        /* Hero Section Component */
        .hero-section {
              padding: 0px 0 0px;
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
          
            background: radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
        }
        .particle-layer {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .floating-icon {
            position: absolute;
            color: rgba(255, 122, 0, 0.2);
            font-size: 3.5rem;
            filter: blur(0.5px);
            animation: float 8s ease-in-out infinite alternate;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-25px) rotate(15deg); }
        }



        /* Glassmorphic Value & Benefit Cards */
        .glass-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            border-radius: 24px;
            padding: 0.5rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 122, 0, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .card-icon-box {
            width: 60px; height: 60px;
            border-radius: 16px;
            background: rgba(255, 122, 0, 0.1);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.75rem; margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        .glass-card:hover .card-icon-box {
            background: var(--primary);
            color: #fff;
            transform: scale(1.05);
        }

        /* Gallery Component (Life at SteepRise) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 280px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .gallery-item.wide { grid-column: span 2; }
        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .gallery-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.2));
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 1.5rem; opacity: 0;
            transition: opacity 0.4s ease;
        }
        .gallery-overlay h5 { color: var(--dark-accent) !important; }
        .gallery-overlay p { color: var(--text-muted) !important; }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item:hover .gallery-overlay { opacity: 1; }

        /* Horizontal Timeline Steps */
        .timeline-container {
            position: relative;
            display: flex; justify-content: space-between;
            padding: 0rem 0;
        }
        .timeline-line {
            position: absolute; top: 55px; left: 5%; right: 5%;
            height: 2px; background: rgba(0,0,0,0.06); z-index: 1;
        }


        .career-info .shadow-sm{
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: #fff !important;
}
        /* FAQ Card */

.faq-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
}

.faq-card .accordion-item {
    border: none im
}



.faq-card .accordion-button {
    background: #fff;
    color: #212529;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
}

.faq-card .accordion-button:not(.collapsed) {
    background: #fff;
    color: #212529;
    box-shadow: none;
}

.faq-card .accordion-button:focus {
    box-shadow: none;
}

.faq-card .accordion-body {
    background: #fff;
    color: #6c757d;
    line-height: 1.8;
     padding-top:0 !important;
    padding-right:24px;
    padding-bottom:20px;
    padding-left:24px;
}

/* .faq-card .accordion-item + .accordion-item {
    border-top: 1px solid #ececec;
} */

/* Rounded corners */
.faq-card .accordion-item:first-child .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.faq-card .accordion-item:last-child .accordion-button.collapsed {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.faq-card .accordion-item:last-child .accordion-collapse.show .accordion-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}
   
        .timeline-progress {
            position: absolute; top: 55px; left: 5%; width: 0%;
            height: 2px; background: var(--primary); z-index: 2;
            transition: width 2s ease;
        }
        .timeline-step {
            position: relative; z-index: 3; text-align: center; width: 18%;
        }
        .timeline-icon-wrap {
            width: 54px; height: 54px; border-radius: 50%;
            background: #f9fafb; border: 2px solid rgba(0,0,0,0.06);
            color: var(--text-muted); display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem; font-weight: 700;
            transition: all 0.4s ease;
        }
        .timeline-step:hover .timeline-icon-wrap {
            border-color: var(--primary); color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 15px rgba(255,122,0,0.2);
        }
        /* Career Job Title */
#open-positions h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

        /* Apply Now Section */
#apply-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#apply-form p {
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Submit Button */
#apply-form .btn-warning {
    width: auto !important;
    min-width: 220px;
    padding: 12px 35px !important;
    font-size: 16px;
    display: inline-block;
}

/* Button Center */
#apply-form .col-12.mt-3 {
    text-align: center;
}
        /* Open Positions Filters & Cards */
        .job-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .job-card:hover {
            border-color: rgba(255, 122, 0, 0.2);
            box-shadow: 0 10px 25px rgba(0,0,0,0.04);
        }
        .badge-tech {
            background: rgba(0,0,0,0.04);
            color: var(--text-muted); font-weight: 500;
            padding: 0.4rem 0.8rem; border-radius: 8px; margin-right: 0.5rem; margin-top: 0.5rem;
            display: inline-block; font-size: 0.8rem;
        }

        /* Modern Custom Accordion */
        .custom-accordion .accordion-item {
            background: #ffffff;
            border: 1px solid var(--card-border);
            margin-bottom: 1rem; border-radius: 14px !important;
            overflow: hidden;
        }

        .custom-accordion{
    margin-top: 0 !important;
}

/* ==========================================
   Hiring Timeline Mobile Fix
========================================== */
@media (max-width: 768px) {

    .timeline-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: relative;
        padding-left: 45px;
    }

    .timeline-line,
    .timeline-progress {
        width: 3px !important;
        height: 100% !important;
        left: 18px;
        top: 0;
        transform: none;
    }

    .timeline-step {
        width: 100% !important;
        text-align: left !important;
        position: relative;
    }

    .timeline-icon-wrap {
        position: absolute;
        left: -38px;
        top: 0;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .timeline-step h5 {
        font-size: 18px;
        margin-top: 0;
    }

    .timeline-step p {
        font-size: 14px;
        margin-bottom: 0;
    
    }


.career-info .border{
    border:1px solid rgba(0,0,0,.08)!important;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    background:#fff;
}

.career-info h4{
    color:#FD7B41;
}

.career-info ul li{
    margin-bottom:10px;
    color:#555;
    line-height:1.7;
}


.job-card {
    border-top: 3px solid #ff7a00; /* Orange line */
    
    padding-top: 20px;
}
}

@media (max-width:768px){

    #open-positions .d-flex{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
    }

    /* Heading container */
    #open-positions .d-flex > div{
        width:100% !important;
        flex:0 0 100% !important;
        max-width:100% !important;
    }

    /* Heading */
    #open-positions h3{
        width:100% !important;
        display:block !important;
        font-size:28px;
        line-height:1.3;
        margin-bottom:10px;
        white-space:normal;
        word-break:keep-all;
        overflow-wrap:break-word;
    }

    /* Apply button */
    #open-positions .btn{
        width:100%;
        margin-top:12px;
    }
}


.career-info .border {
    border: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    background: #fff;
}
        .custom-accordion .accordion-button {
            background: transparent; color: var(--text-main); font-weight: 600; padding: 1.5rem;
            box-shadow: none;
        }
        .custom-accordion .accordion-button:not(.collapsed) {
            color: var(--primary); background: rgba(255,122,0,0.02);
        }
        .custom-accordion .accordion-button::after {
            filter: brightness(0.2);
        }
        .custom-accordion .accordion-body {
            background: transparent; color: var(--text-muted); 
            padding: 0 1.5rem 1.5rem;
        }

        /* Inputs configuration */
        .form-control, .form-select {
            background-color: #f9fafb !important;
            border: 1px solid #e5e7eb !important;
            color: var(--text-main) !important;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.1) !important;
        }
        .heading {
    /* font-size: 15px !important; */
    font-weight: 400 !important;
   font-size: 1.8rem !important;
}
.paragraph{
    font-size: 15px;
}
    /* Remove blue border and shadow */
.accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff !important;
    color: #212529 !important;
    box-shadow: none !important;
}

/* .accordion-item {
    border: 1px solid #e5e7eb !important;
}

.accordion-collapse {
    border-top: none !important;
} */
.custom-accordion{
    margin-top: 15px;
}

/* ==========================================
   Career Section Mobile Responsive
========================================== */

/* Mobile Fix */
@media (max-width:768px){

    #open-positions{
        overflow:hidden;
    }

    #open-positions .container{
        width:100%;
        max-width:100%;
        padding-left:15px !important;
        padding-right:15px !important;
        margin:0 auto;
    }

    #open-positions .row{
        margin-left:0 !important;
        margin-right:0 !important;
    }

    #open-positions .col-12{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    #open-positions .border{
        width:100%;
        margin:0;
        box-sizing:border-box;
    }
}

       .timeline-step h5 {
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

