.partners-section {
    padding: 60px 20px;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* overall section gap increased */
}

/* LEFT SIDE */
.partners-left {
    flex: 1;
    padding-left: 40px;   /* 👈 content ko right shift kiya */
}


.partners-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color:#1d3557;
}

.partners-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.partners-left a {
    display: inline-block;
    padding: 10px 0px;
    color: black;
    text-decoration: none;
    transition: 0.3s;
    margin-right:20px;


}

/* Arrow BEFORE text */
.partners-left a::before {
    content: "➜";
    font-size: 18px;      /* thoda bada */
    font-weight: 700;     /* bold/mota */
    margin-right: 5px;
    transition: 0.3s;
}

/* optional hover effect */
.partners-left a:hover::before {
    transform: translateX(4px);
}


.partners-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    background: transparent;   /* ensure no bg */
}

.partners-right img {
    width: 180px;
    height: 150px;
    object-fit: unset;   /* remove contain effect */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    display: block;
}







.dream-section{
    padding:60px 20px;
}

.dream-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.dream-left{
    flex:1;
    display:flex;
    flex-direction:row;   /* 👈 column hata diya */
    gap:15px;
    align-items:center;
}

.dream-left img{
    width:35%;   /* dono images equal space lenge */
    height:auto;
    border-radius:10px;
}

/* RIGHT CONTENT */
.dream-right{
    flex:1;
}

.dream-right h2{
    font-size:52px;
    margin-bottom:10px;
    color:#1d3557;
}

.dream-right p{
    color:#555;
    margin-bottom:20px;
}

/* PROGRESS BLOCK */
.progress-block{
    margin-bottom:20px;
}

.progress-block h4{
    margin-bottom:5px;
}

/* LINE BASE */
.progress-line{
    position:relative;
    height:3px;
    background:#ddd;
    border-radius:10px;
}

/* 90% text */
.progress-line span{
    position:absolute;
    right:0;
    top:-22px;
    font-size:12px;
}

/* YELLOW 90% */
.progress-line.yellow::after{
    content:"";
    position:absolute;
    height:100%;
    width:90%;
    background:#1d3557;
    border-radius:10px;
}

/* BLACK 90% */
.progress-line.black::after{
    content:"";
    position:absolute;
    height:100%;
    width:90%;
    background:#00aaff;
    border-radius:10px;
}




.career-section{
    padding:60px 20px;
    background:#0f172a; /* dark background */
    color:#fff;
}

.career-container{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

/* LEFT */
.career-left{
    flex:1;
}

.career-left h2{
    font-size:42px;
    margin-bottom:10px;
    color:#fff;
}

.career-left p{
    color:#cbd5e1;
    margin-bottom:20px;
    line-height:1.6;
}

.learn-more{
    text-decoration:none;
    color:#00aaff;
    font-weight:500;
    position:relative;
    padding-left:18px;  /* arrow ke liye space */
}

/* LEFT ARROW */
.learn-more::before{
    content:"➜";
    position:absolute;
    left:0;
    top:-3px;
    color:#00aaff;
    transition:0.3s;
}

/* hover effect */
.learn-more:hover::before{
    transform:translateX(-4px);
}

/* RIGHT */
.career-right{
    flex:1;
}

/* SOCIAL ROW (line just beside text) */
.social-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;

}

.social-top h4{
    margin:0;
    color:#fff;
    font-size: 25px;
}

.social-line{
    display:flex;
    align-items:center;
    gap:10px;
    flex:1;
    margin-left:15px;
}

.social-line span{
    flex:1;
    height:1px;
    background:#475569; /* soft line */
}

.icons i{
    margin-left:10px;
    font-size:18px;
    cursor:pointer;
    color:#00aaff;
    transition:0.3s;
}

.icons i:hover{
    color:#facc15;
}

/* CARDS */
.career-cards{
    display:flex;
    gap:15px;
}

.card{
    flex:1;
    padding:20px;
    text-align:center;
    border:1px solid #334155;
    border-radius:10px;
    background:#111827;
}

.card h3{
    color:#cbd5e1;
    font-size:14px;
}

.card h2{
    font-size:28px;
    margin-top:5px;
    color:#fff;
}




.jobs-modern{
    padding:70px 20px;
    background:#fff;
}

.jobs-title{
    text-align:center;
    font-size:34px;
    margin-bottom:40px;
    color:black;
}

/* GRID */
.jobs-grid{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ACCORDION CARD */
.job-card{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:18px;
    transition:0.3s;
    cursor:pointer;
    background:#fff;
}

.job-card:hover{
    border-color:#1d3557;
}

/* TOP ROW */
.job-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.job-top h3{
    font-size:18px;
    color:black;
}

/* BADGE */
.badge{
    background:#1d3557;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
}

/* DESCRIPTION */
.job-card p{
    font-size:18px;
    color:#555;
    line-height:1.6;
    margin:6px 0;
}

/* HIDDEN DETAILS STYLE (optional expand effect ready) */
.job-info{
    display:flex;
    flex-direction:column;
    gap:5px;
    font-size:12px;
    color:#333;
    margin-top:10px;
    border-top:1px dashed #ddd;
    padding-top:10px;
}

/* APPLY BUTTON */
.apply-btn{
    display:inline-block;
    margin-top:10px;
    color:#1d3557;
    font-weight:600;
    text-decoration:none;
}

.apply-btn::after{
    content:" →";
    transition:0.3s;
}

.apply-btn:hover::after{
    margin-left:5px;
}



/* =========================
   GLOBAL FIX
========================= */
*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

/* Force no horizontal scroll */
body{
    overflow-x:hidden;
}

/* =========================
   FLEX DEFAULT FIX
========================= */
.partners-container,
.dream-container,
.career-container{
    display:flex;
    flex-wrap:wrap;   /* IMPORTANT FIX */
    gap:40px;
}

/* =========================
   PARTNERS FIX
========================= */
.partners-left,
.partners-right{
    flex:1 1 300px;
}

.partners-right{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.partners-right img{
    width:140px;
    height:auto;
}

/* =========================
   DREAM FIX
========================= */
.dream-left{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.dream-left img{
    width:48%;
}

/* =========================
   CAREER FIX
========================= */
.career-left,
.career-right{
    flex:1 1 300px;
}

.career-cards{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.card{
    flex:1 1 120px;
}

/* SOCIAL FIX */
.social-top{
    flex-wrap:wrap;
    gap:10px;
}

/* =========================
   JOBS FIX
========================= */
.jobs-grid{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.job-card{
    width:100%;
}

/* =========================
   MOBILE PERFECT (FINAL FIX)
========================= */
@media (max-width: 768px){

    .partners-container,
    .dream-container,
    .career-container{
        flex-direction:column;
        text-align:center;
    }

    .partners-left{
        padding-left:0;
    }

    .partners-right{
        justify-content:center;
    }

    .dream-left img{
        width:100%;
    }

    .career-cards{
        flex-direction:column;
    }

    .job-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .apply-btn{
        width:100%;
        text-align:center;
    }
}

/* =========================
   SMALL MOBILE FIX
========================= */
@media (max-width: 480px){

    .partners-right img{
        width:100px;
    }

    .career-left h2{
        font-size:24px;
    }

    .dream-right h2{
        font-size:26px;
    }
}

/* VIEW BUTTON */
.view-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    background:#1d3557;
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.view-btn:hover{
    background:#00aaff;
    transform:translateY(-4px);
}


/* REQUIREMENT SECTION */
.requirement-section{
    padding:80px 20px;
    background:#0f172a;
}

/* BOX */
.requirement-box{
    max-width:1100px;
    margin:auto;
    text-align:center;

    background:linear-gradient(315deg, #1d3557, #457b9d);
    padding:60px 30px;

    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* HEADING */
.requirement-box h2{
    font-size:42px;
    color:#fff;
    margin-bottom:15px;
    font-weight:700;
}

/* PARAGRAPH */
.requirement-box p{
    font-size:16px;
    color:#e2e8f0;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

/* BUTTON */
.requirement-btn{
    display:inline-block;
    padding:14px 35px;

    background:#fff;
    color:#1d3557;

    text-decoration:none;
    border-radius:50px;

    font-weight:600;
    transition:0.3s;
}

/* HOVER */
.requirement-btn:hover{
    background:#f1f5f9;
    transform:translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:768px){

    .requirement-box{
        padding:45px 20px;
    }

    .requirement-box h2{
        font-size:30px;
    }

    .requirement-box p{
        font-size:14px;
    }

}