/* General Reset */


.main-container {
            padding: 50px 40px 0px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flexbox Row Setup */
.content-row {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px; /* Space between sections */
}

/* Image styling */
.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Text styling */
.text-content {
    flex: 1;
}

.title-orange {
    color: #e67e22; /* Specific Orange color from image */
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.button-container {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 17px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-orange { background-color: #d37a1a; }
.btn-green { background-color: #006400; }

.btn:hover { opacity: 0.8; }

/* Responsive: Mobile Friendly */
@media (max-width: 768px) {
    .content-row, .content-row.reverse {
        flex-direction: column; /* Mobile pe upar-neeche ho jayega */
        text-align: center;
    }

    .button-container {
        justify-content: center;
        flex-direction: column;
    }
}

.tashan-full-page {
    max-width: 1000px;

    margin: 0 auto;
}

/* Flex Layout for Top Part */
.intro-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.intro-flex.reverse { flex-direction: row-reverse; }

.text-block, .image-block { flex: 1; }

.image-block img {
    width: 100%;
    border-radius: 4px;
}

/* Orange Headings */
.orange-text {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 24px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

/* Buttons */
.buttons { display: flex; gap: 10px; }
.btn-o { background: #d37a1a; padding: 10px 15px; color: #fff; text-decoration: none; border-radius: 4px; font-weight: bold; }
.btn-g { background: #006400; padding: 10px 15px; color: #fff; text-decoration: none; border-radius: 4px; font-weight: bold; }

/* Border Boxes */
.single-border-box {
    border: 2px solid #ffffff;
    padding: 20px;
    margin-bottom: 20px;
}

/* List Dots */
.orange-dots { list-style: none; padding: 0; }
.orange-dots li {
    color: white;

    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.orange-dots li::before {
    content: "●";
    color: #e67e22;
    position: absolute;
    left: 0;
    font-size: 18px;
    top: -2px;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-flex, .intro-flex.reverse {
        flex-direction: column;
        text-align: center;
    }
    .buttons { justify-content: center; flex-direction: column; }
    .image-block { order: -1; }
}
/* ========================= */
/* LARGE LAPTOP (1200px) */
/* ========================= */

@media (max-width:1200px){

.main-container{
padding:40px 40px;
}

.content-row{
gap:30px;
}

.title-orange{
font-size:26px;
}

}


/* ========================= */
/* TABLET (992px) */
/* ========================= */

@media (max-width:992px){

.main-container{
padding:30px 30px;
}

.content-row{
flex-direction:column;
text-align:center;
}

.content-row.reverse{
flex-direction:column;
}

.image-content,
.text-content{
width:100%;
}

.button-container{
justify-content:center;
}

.intro-flex{
flex-direction:column;
text-align:center;
}

.intro-flex.reverse{
flex-direction:column;
}

.buttons{
justify-content:center;
}

}


/* ========================= */
/* MOBILE (768px) */
/* ========================= */

@media (max-width:768px){

.main-container{
padding:25px 20px;
}

.title-orange{
font-size:22px;
}

.description{
font-size:18px;
}

.btn{
padding:14px 20px;
font-size:13px;
}

.button-container{
flex-direction:column;
align-items:center;
}

.intro-flex{
gap:20px;
}

.orange-text{
font-size:20px;
}

p{
font-size:14px;
}

.single-border-box{
padding:15px;
}

}


/* ========================= */
/* SMALL MOBILE (480px) */
/* ========================= */

@media (max-width:480px){

.main-container{
padding:20px 15px;
}

.title-orange{
font-size:20px;
}

.description{
font-size:18px;
}

.btn{
width:100%;
max-width:260px;
text-align:center;
}

.button-container{
gap:10px;
}

.orange-text{
font-size:18px;
}

p{
font-size:13px;
line-height:1.5;
}

.orange-dots li{
font-size:13px;
}

}