/* section-1  */
.about-hero {
    width: 100%;
    height: 65vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-overlay h1 {
    font-size: 60px;
    font-weight: 700;
    /* margin-bottom:15px; */
}

.about-overlay p {
    font-size: 20px;
    letter-spacing: 1px;
}

.about-content {
    padding: 100px 8%;
    background: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #c89b3c;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #a87e2f;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ===== SECTION-2 ===== */
.value-section {
    background: #a7cfd0;
    padding: 60px 20px;
    border-radius: 291px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.image-area {
    position: relative;
    flex: 1;
}

.image-area img {
    width: 70%;
    border: 8px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.img-main {
    transform: rotate(-5deg);
}

.img-sub {
    width: 65%;
    position: absolute;
    bottom: -40px;
    left: 40px;
    transform: rotate(8deg);
}

.content-area {
    flex: 1;
}

.subtitle {
    color: #f4b400;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: bold;
}

.content-area h2 {
    font-size: 48px;
    margin: 15px 0;
    line-height: 1.2;
}

.text {
    margin-bottom: 30px;
    color: #333;
    max-width: 500px;
}

.cards {
    display: flex;
    gap: 25px;
}

.card {
    background: #eaeaea;
    padding: 6px 20px;
    width: 240px;
    border-top: 4px solid #f4b400;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
}

.icon {
    font-size: 30px;
    background: #f4b400;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
}

.more-text {
    display: none;
}

.toggle-btn {
    color: #f4b400;
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
}

.toggle-btn:hover {
    text-decoration: underline;
}
.more-text {
  display: none;
}

.toggle-btn {
  color: orange;
  font-weight: 600;
  cursor: pointer;
  margin-left: 5px;
}

/* new add  */
.cards{
display:flex;
gap:25px;
align-items:flex-start;
}

.card{
background:#eaeaea;
padding:20px;
width:240px;
border-top:4px solid #f4b400;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
border-radius:30px;
height:auto;
}

.more-text{
display:none;
margin-top:8px;
}

.toggle-btn{
color:#f4b400;
cursor:pointer;
font-weight:600;
margin-left:5px;
}

/* section - 5 */
.next-section {
    background: linear-gradient(135deg, #dcecef, #f7fdff);
    padding: 80px 20px;
    text-align: center;
}

.next-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.next-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.next-section .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Cards Grid */
.next-section .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.next-section .card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.next-section .card:hover {
    transform: translateY(-10px);
}

/* Image */
.next-section .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.next-section .card h3 {
    margin: 18px 0 8px;
    font-size: 22px;
    font-weight: 600;
}

.next-section .card p {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Button */
.next-section .card button {
    margin-bottom: 25px;
    padding: 10px 28px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.next-section .card button:hover {
    background: #000;
    color: #fff;
}


/* section - 4  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.why-section {
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-header span {
    font-size: 16px;
    color: #ff9f00;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff9f00, #ffcc00);
    margin: 18px auto 0;
    border-radius: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9f00, #ffcc00);
    left: 0;
    top: 0;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
}

.why-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#ff9f00,#ffcc00);
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
margin-bottom:15px;
font-size:24px;
color:white;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.why-card:hover .why-icon{
transform:rotate(-10deg) scale(1.1);
}


/* section 3  */
.join-lric{
padding:70px 20px;
background:linear-gradient(180deg,#ffffff,#f5f7fb);
font-family:'Poppins',sans-serif;
}

.join-header{
text-align:center;
margin-bottom:70px;
}

.join-header h2{
font-size:48px;
font-weight:700;
color:#0f2b46;
}

.join-header span{
color:#f4b400;
}

.join-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 350px 1fr;
gap:50px;
align-items:center;
}

.join-column{
display:flex;
flex-direction:column;
gap:5px;
}

.join-item::before{
content:"";
position:absolute;
left:0;
top:0;
height:0;
width:4px;
background:linear-gradient(180deg,#f4b400,#ffcc33);
transition:0.4s;
}

.join-item:hover::before{
height:100%;
}

.join-icon{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#f4b400,#ffcc33);
color:white;
font-size:22px;
flex-shrink:0;
}

.join-item h3{
font-size:17px;
margin-bottom:6px;
color:#1c3b57;
}

.join-item p{
font-size:14px;
color:#666;
line-height:1.6;
}

.join-image{
text-align:center;
position:relative;
}

.join-image img{
width:100%;
animation:float 6s ease-in-out infinite;
}

.join-item{
flex-direction:column;
align-items:center;
text-align:center;
padding:22px;
display: flex;
}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-20px)}
100%{transform:translateY(0)}
} 
/* ================= TABLET ================= */

@media (max-width:1024px){

.join-grid{
grid-template-columns:1fr;
text-align:center;
gap:39px;
}

.join-image{
order:-1;
max-width:320px;
margin:auto;
}

.join-column{
align-items:center;
}

.join-item{
max-width:500px;
}

.join-header h2{
font-size:40px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.join-lric{
padding:80px 20px;
}

.join-header h2{
font-size:32px;
}

.join-icon{
margin-bottom:10px;
}

.join-image img{
width:85%;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.join-header h2{
font-size:26px;
}

.join-item h3{
font-size:16px;
}

.join-item p{
font-size:13px;
}

.join-image img{
width:80%;
}

}

/* section 3 end here  */

/* 1200px */
@media (max-width:1200px) {
    .content-area h2 {
        font-size: 40px;
    }
}


/* 992px - 1199px (Tablet Landscape) */
@media (max-width: 1199px) {
    .next-section .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px) {

    nav ul {
        gap: 15px;
    }

    .about-overlay h1 {
        font-size: 36px;
    }

    .about-overlay p {
        font-size: 16px;
    }

    .about-container {
        flex-direction: column;
    }

}

/* 900px */
@media (max-width:900px) {

    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-area {
        width: 100%;
    }

    .img-sub {
        position: relative;
        bottom: 0;
        left: 0;
        /* margin-top:20px; */
        width: 80%;
    }

    .cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-area img {
        width: 47%;
    }
     .next-section h2 {
        font-size: 30px;
    }

    .next-section .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

}

/* Below 600px (Mobile) */
@media (max-width: 600px) {
    .next-section {
        padding: 60px 15px;
    }

    .next-section h2 {
        font-size: 26px;
    }

    .next-section .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .next-section .card img {
        height: 200px;
    }
    .why-header h2 {
        font-size: 30px;
    }
    .why-section {
        padding: 30px 20px;
    }
}

/* 500px */
@media (max-width:500px) {

    .content-area h2 {
        font-size: 28px;
    }

    .text {
        font-size: 14px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

}

/* 320px */
@media (max-width:320px) {

    .content-area h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 12px;
    }

}
