/* ================================
   PREMIUM ABOUT PAGE CSS (abt- prefix)
=================================== */

/* GLOBAL ABT CLASSES */
.abt-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-section-tag {
    display: inline-block;
    color: #F39C12;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 45px;
}

.abt-section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: #F39C12;
}

.abt-section-heading {
    font-size: 42px;
    color: #332009;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.abt-light-tag {
    color: #EDB44D;
}
.abt-light-tag::before {
    background: #EDB44D;
}
.abt-light-heading {
    color: #FFFFFF;
}

.abt-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.abt-btn-solid {
    background: linear-gradient(90deg, #754902, #CA7D00);
    color: #FFF;
    border: none;
    box-shadow: 0 8px 20px rgba(117, 73, 2, 0.2);
}
.abt-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(117, 73, 2, 0.4);
    color: #FFF;
}

.abt-btn-outline {
    background: transparent;
    border: 2px solid #CA7D00;
    color: #CA7D00;
}
.abt-btn-outline:hover {
    background: #CA7D00;
    color: #FFF;
}

.abt-btn-white {
    background: #FFF;
    color: #754902;
    border: none;
}
.abt-btn-white:hover {
    background: #F7ECD8;
}

/* ================================
   1. HERO SECTION
=================================== */
.abt-hero {
    position: relative;
    padding: 100px 0;
    background: #110a03;
    overflow: hidden;
}
.abt-hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(202,125,0,0.15) 0%, rgba(17,10,3,0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.abt-hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}
.abt-hero-text {
    flex: 1.1;
}
.abt-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(237, 180, 77, 0.1);
    border: 1px solid rgba(237, 180, 77, 0.3);
    color: #EDB44D;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}
.abt-subtitle i {
    margin-right: 8px;
}
.abt-title {
    font-size: 52px;
    color: #FFF;
    line-height: 1.25;
    margin-bottom: 25px;
}
.abt-title span {
    color: #F39C12;
}
.abt-description {
    font-size: 18px;
    color: #D3C5B5;
    line-height: 1.8;
    margin-bottom: 30px;
}
.abt-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.abt-hero-visual {
    flex: 0.9;
    position: relative;
}
.abt-visual-main {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.abt-visual-main img {
    width: 100%;
    border-radius: 12px;
    display: block;
}
.abt-experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #FFF;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #F39C12;
}
.abt-exp-number {
    font-size: 36px;
    font-weight: 800;
    color: #754902;
}
.abt-exp-text {
    font-size: 14px;
    color: #5B5B5B;
    font-weight: 600;
    line-height: 1.3;
}
/* ==================================
   WHO WE ARE PREMIUM SECTION
================================== */

.plwho-section{
    padding:100px 0;
    background:#FAF9F4;
    overflow:hidden;
}

.plwho-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:80px;
}

/* IMAGE SIDE */

.plwho-visual{
    flex:1;
}

.plwho-image-wrap{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    background-color: antiquewhite;
}

.plwho-main-img{
    width:100%;
    height:490px;
    object-fit:cover;
    border-radius:30px;
    transition:.7s ease;
    display:block;
}
.abt-text-normal{
    margin-bottom: 20px;
}
.plwho-image-wrap:hover .plwho-main-img{
    transform:scale(1.08);
}

.plwho-float-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:22px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    max-width:260px;
}

.plwho-float-box span{
    display:block;
    font-size:36px;
    font-weight:800;
    color:#754902;
    line-height:1;
    margin-bottom:8px;
}

.plwho-float-box p{
    font-size:14px;
    color:#5B5B5B;
    margin:0;
}

/* CONTENT SIDE */

.plwho-content{
    flex:1;
}

.plwho-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#EDB44D20;
    color:#754902;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.plwho-title{
    font-size:28px;
    line-height:1.2;
    color:#332009;
    margin-bottom:25px;
    font-weight:800;
}

.plwho-highlight {
    font-size: 17px;
    line-height: 1.5;
    color: #754902;
    font-weight: 600;
    margin-bottom: 20px;
}

.plwho-text {
    font-size: 15px;
    line-height: 1.6;
    color: #5B5B5B;
    margin-bottom: 20px;
}

/* FEATURE GRID */

.plwho-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.plwho-feature-card{
    background:#fff;
   padding: 12px 3px 9px 15px;
    border-radius:20px;
    transition:.4s;
    border:1px solid #eee;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.plwho-feature-card:hover{
    transform:translateY(-8px);
    border-color:#EDB44D;
    box-shadow:0 20px 40px rgba(117,73,2,.12);
}

.plwho-feature-card h4{
    font-size:16px;
    color:#332009;
    margin-bottom:8px;
}

.plwho-feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .plwho-container{
        flex-direction:column;
        gap:50px;
    }

    .plwho-title{
        font-size:40px;
    }

    .plwho-main-img{
        height:500px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .plwho-section{
        padding:70px 0;
    }

    .plwho-title{
        font-size:30px;
    }

    .plwho-highlight{
        font-size:14px;
    }

    .plwho-text{
        font-size:13px;
    }
    .abt-mv-card {
    background: #FDFBF7;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #F0E6D8;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    text-align: justify;
    justify-content: center;
    display: flex
;
    flex-direction: column;
    align-items: center;
}

    .plwho-main-img{
        height:380px;
    }

    .plwho-feature-grid{
        grid-template-columns:1fr;
    }

    .plwho-float-box{
        left:15px;
        right:15px;
        bottom:15px;
        max-width:none;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .plwho-title{
        font-size:18px;
    }

    .plwho-main-img{
        height:320px;
    }

    .plwho-feature-card{
        padding:20px;
    }

    .plwho-float-box span{
        font-size:28px;
    }
}
/* ================================
   3. MISSION & VISION
=================================== */
.abt-mission-vision {
    padding: 80px 0;
    background: #FFF;
}
.abt-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.abt-mv-card {
    background: #FDFBF7;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #F0E6D8;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.abt-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117, 73, 2, 0.1);
    border-color: #EDB44D;
}
.abt-mv-icon {
    width: 70px;
    height: 70px;
    background: #F39C12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #FFF;
    margin-bottom: 25px;
}
.abt-mv-card h3 {
    font-size: 26px;
    color: #332009;
    margin-bottom: 15px;
}
.abt-mv-card p {
    font-size: 16px;
    color: #5B5B5B;
    line-height: 1.8;
}

/* ================================
   4. CORE PHILOSOPHY
=================================== */
.abt-philosophy {
    padding: 100px 0;
    background: #1A120A;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%232d1b01" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}
.abt-phil-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.abt-phil-subtext {
    color: #D3C5B5;
    font-size: 18px;
    line-height: 1.8;
}
.abt-phil-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.abt-phil-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.abt-phil-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: #CA7D00;
}
.abt-phil-box i {
    font-size: 45px;
    color: #F39C12;
    margin-bottom: 20px;
}
.abt-phil-box h4 {
    font-size: 22px;
    color: #FFF;
    margin-bottom: 15px;
}
.abt-phil-box p {
    font-size: 15px;
    color: #A99C8D;
    line-height: 1.6;
}

/* ================================
   5. WHY CHOOSE US
=================================== */
.abt-why-trust {
    padding: 100px 0;
    background: #FFF;
}
.abt-why-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}
.abt-why-content {
    flex: 1.2;
}
.abt-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.abt-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FDFBF7;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #F0E6D8;
}
.abt-feat-icon {
    width: 40px;
    height: 40px;
    background: #754902;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
}
.abt-feat-item span {
    font-weight: 600;
    color: #332009;
}
.abt-why-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.abt-stat-box {
    background: #FDFBF7;
    border-left: 5px solid #F39C12;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.abt-stat-alt {
    background: #754902;
    border-left-color: #EDB44D;
    color: #FFF;
}
.abt-stat-box h3 {
    font-size: 40px;
    color: #CA7D00;
    margin-bottom: 5px;
}
.abt-stat-alt h3 {
    color: #EDB44D;
}
.abt-stat-box p {
    font-size: 16px;
    font-weight: 600;
    color: #5B5B5B;
}
.abt-stat-alt p {
    color: #FFF;
}

/* ================================
   6. MEET THE EXPERTS (TEAM)
=================================== */
.abt-team {
    padding: 100px 0;
    background: #FAF9F4;
}
.abt-team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.abt-team-header p {
    font-size: 18px;
    color: #5B5B5B;
    line-height: 1.7;
}
.abt-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.abt-team-card {
    background: #FFF;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}
.abt-team-card:hover {
    border-color: #F39C12;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(117, 73, 2, 0.15);
}
.abt-team-img {
    width: 100px;
    height: 100px;
    background: #F7ECD8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #CA7D00;
}
.abt-team-card h4 {
    font-size: 22px;
    color: #332009;
    margin-bottom: 10px;
}
.abt-team-card p {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* ================================
   7. CALL TO ACTION BANNER
=================================== */
.abt-cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
}
.abt-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(117,73,2,0.95), rgba(202,125,0,0.85));
}
.abt-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.abt-cta-content h2 {
    font-size: 36px;
    color: #FFF;
    font-family: 'Mangal', sans-serif;
    margin-bottom: 15px;
}
.abt-cta-content p {
    font-size: 20px;
    color: #FDFBF7;
    margin-bottom: 35px;
}
.abt-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================================
   RESPONSIVE QUERIES
=================================== */
@media (max-width: 1200px) {
    .abt-title { font-size: 42px; }
    .abt-story-images { height: 400px; }
    .abt-img-back { height: 320px; width: 80%; }
    .abt-img-front { height: 280px; width: 70%; }
}

@media (max-width: 1100px) {
    .abt-hero-wrapper, .abt-story-wrapper, .abt-why-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .abt-hero-actions { justify-content: center; }
    .abt-section-tag::before { display: none; }
    .abt-section-tag { padding-left: 0; }
    
    .abt-story-images { width: 100%; max-width: 600px; margin: 0 auto; height: 450px; }
    .abt-list-item { text-align: left; }
    
    .abt-mv-grid, .abt-features-grid, .abt-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-phil-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-why-stats {
        width: 100%;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .abt-title { font-size: 20px; }
    .abt-section-heading { font-size: 18px; }
    .abt-description {
    font-size: 11px;
    color: #D3C5B5;
    line-height: 1.8;
    margin-bottom: 30px;
}
.abt-phil-subtext {
    color: #D3C5B5;
    font-size: 14px;
    line-height: 1.8;
}
.abt-text-normal {
    font-size: 14px;
    margin-bottom: 16px;

}
.abt-team-header p {
    font-size: 13px;
    color: #5B5B5B;
    line-height: 1.7;
}
.abt-cta-content h2 {
    font-size: 28px;
    color: #FFF;
    font-family: 'Mangal', sans-serif;
    margin-bottom: 15px;
}
.abt-cta-content p {
    font-size: 16px;
    color: #FDFBF7;
    margin-bottom: 35px;
}
.abt-btn {
padding: 11px 20px;
    font-size: 12px;
    
}
    .abt-hero { padding: 60px 0; }
    .abt-story { padding: 60px 0; }
    .abt-mission-vision { padding: 60px 0; }
    .abt-philosophy { padding: 60px 0; }
    .abt-why-trust { padding: 60px 0; }
    .abt-team { padding: 60px 0; }
    
    .abt-mv-grid, .abt-features-grid, .abt-team-grid, .abt-phil-boxes {
        grid-template-columns: 1fr;
    }
    .abt-why-stats {
        flex-direction: column;
    }
    .abt-experience-badge {
        position: relative;
        bottom: 0; left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    .abt-story-images { height: 300px; }
    .abt-img-back { height: 250px; }
    .abt-img-front { height: 200px; border-width: 4px; }
    
    .abt-cta-btns {
        flex-direction: column;
    }
}

.about-proplegal {
  padding: 30px 15px;
  background: #f5f0e8;
}

.about-card {
  max-width: 1360px;
  margin: auto;
  background: #F39C12;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 35px 50px 35px 0;
}

/* ==========================
   LEFT IMAGE AREA
========================== */

.about-images {
  position: relative;
  width: 500px;
  min-width: 500px;
  height: 390px;
}

.main-image {
  position: relative;
  z-index: 1;
}

.main-image img {
  width: 390px;
  height: 390px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-left: -25px;
}

.side-images {
  position: absolute;
  right: 40px;
  top: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.side-images img {
  width: 145px;
  height: 145px;
  object-fit: cover;
  border-radius: 26px;
  background: #fff;
  border: 3px solid #F39C12;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ==========================
   CONTENT AREA
========================== */

.about-content {
  flex: 1;
}

/* Badge + Language Toggle */
.about-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(117, 73, 2, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

.lang-toggle:active {
  transform: scale(0.96);
}

/* Content */
.about-text p {
  color: #754902;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ==========================
   READ MORE LINK
========================== */

.read-more-link {
  margin-top: 20px;
}

.read-more-link a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.read-more-link a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateX(5px);
}

/* ==========================
   FEATURES
========================== */

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item i {
  color: #fff;
  font-size: 16px;
}

.feature-item span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================
   NEW FULL WIDTH SECTION (Below the card)
========================================= */

.about-fullwidth {
  max-width: 1360px;
  margin: 40px auto 0 auto;
  padding: 0 15px;
}

.about-fullwidth-inner {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 50px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.fullwidth-content h3 {
  font-size: 20px;
  color: #6a3f00;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 3px solid #F39C12;
  display: inline-block;
}

.fullwidth-content h3:first-child {
  margin-top: 0;
}

.fullwidth-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}

.fullwidth-content p:last-child {
  margin-bottom: 0;
}

.fullwidth-content strong {
  color: #6a3f00;
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 1200px) {
  .about-card {
    gap: 40px;
    padding-right: 30px;
  }

  .about-images {
    width: 420px;
    min-width: 420px;
    height: 330px;
  }

  .main-image img {
    width: 330px;
    height: 330px;
  }

  .side-images img {
    width: 125px;
    height: 125px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-fullwidth-inner {
    padding: 35px 30px;
  }

  .fullwidth-content p {
    font-size: 15px;
  }

  .fullwidth-content h3 {
    font-size: 18px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .about-card {
    flex-direction: column;
    gap: 40px;
    padding: 35px 25px;
  }

  .about-images {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    margin: auto;
  }

  .main-image img {
    margin-left: 0;
  }

  .about-content {
    width: 100%;
  }

  .about-badge {
    font-size: 16px;
  }

  .about-features {
    gap: 20px;
  }

  .about-badge-wrapper {
    gap: 12px;
  }

  .lang-toggle {
    font-size: 13px;
    padding: 6px 14px;
  }

  .read-more-link a {
    font-size: 15px;
    padding: 8px 20px;
  }

  .about-fullwidth {
    margin-top: 30px;
  }

  .about-fullwidth-inner {
    padding: 30px 25px;
    border-radius: 18px;
  }

  .fullwidth-content h3 {
    font-size: 18px;
    margin-top: 26px;
  }

  .fullwidth-content p {
    font-size: 15px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .about-proplegal {
    padding: 40px 12px;
  }

  .about-card {
    padding: 25px 18px;
    gap: 25px;
    border-radius: 18px;
  }

  .about-images {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 280px;
    margin: 0 auto;
  }

  .main-image {
    position: absolute;
    left: 0;
    top: 0;
  }

  .main-image img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-left: 0;
  }

  .side-images {
    position: absolute;
    right: 0;
    top: 20px;
    gap: 12px;
  }

  .side-images img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }

  .about-badge-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-badge {
    font-size: 14px;
    padding: 8px 14px;
    margin-bottom: 0;
  }

  .lang-toggle {
    font-size: 12px;
    padding: 5px 12px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .read-more-link {
    margin-top: 16px;
  }

  .read-more-link a {
    font-size: 14px;
    padding: 8px 18px;
  }

  .about-features {
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .feature-item i {
    font-size: 14px;
  }

  .feature-item span {
    font-size: 12px;
  }

  /* Full Width Section - Mobile */
  .about-fullwidth {
    margin-top: 25px;
    padding: 0 12px;
  }

  .about-fullwidth-inner {
    padding: 25px 18px;
    border-radius: 16px;
  }

  .fullwidth-content h3 {
    font-size: 17px;
    margin-top: 22px;
  }

  .fullwidth-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .about-card {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .about-images {
    max-width: 290px;
    height: 240px;
  }

  .main-image img {
    width: 200px;
    height: 200px;
  }

  .side-images {
    top: 15px;
  }

  .side-images img {
    width: 75px;
    height: 75px;
    border-radius: 14px;
    border-width: 2px;
  }

  .about-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .lang-toggle {
    font-size: 11px;
    padding: 4px 10px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .read-more-link a {
    font-size: 13px;
    padding: 6px 16px;
  }

  .feature-item span {
    font-size: 11px;
  }

  .about-fullwidth-inner {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .fullwidth-content h3 {
    font-size: 16px;
    margin-top: 18px;
  }

  .fullwidth-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}









.pl-partners-section{
    padding:80px 20px;
    background:#f8fafc;
}

.pl-container{
    max-width:1200px;
    margin:auto;
}

.pl-section-header{
    text-align:center;
    margin-bottom:50px;
}

.pl-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#e8f1ff;
    color:#0f4c81;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.pl-section-header h2{
    font-size:42px;
    color:#111827;
    margin-bottom:15px;
    font-weight:700;
}

.pl-section-header p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/* Top Partner Cards */

.pl-partner-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:70px;
}

.pl-partner-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.pl-partner-card:hover{
    transform:translateY(-8px);
}

.pl-partner-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
   background: linear-gradient(2deg, #754902, #CA7D00);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.pl-partner-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:8px;
}

.pl-partner-card span{
    color:#6b7280;
    font-size:15px;
}

/* Associate Heading */

.pl-associate-title{
    text-align:center;
    margin-bottom:35px;
}

.pl-associate-title h3{
    font-size:32px;
    color:#111827;
    position:relative;
    display:inline-block;
}

.pl-associate-title h3::after{
    content:"";
    width:60%;
    height:3px;
    background:#ca7d00;
    position:absolute;
    bottom:-10px;
    left:20%;
}

/* Associate Cards */

.pl-associate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.pl-associate-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    border-top: 5px solid #CA7D00;
}

.pl-associate-card:hover{
    transform:translateY(-8px);
}

.pl-associate-badge{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#eef5ff;
    color:#ca7d00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.pl-associate-card h4{
    font-size:22px;
    margin-bottom:8px;
    color:#111827;
}

.pl-associate-card p{
    font-weight:600;
    color: #4a4a4a;
    margin-bottom:10px;
}

.pl-associate-card span{
    color:#6b7280;
    line-height:1.6;
}

/* Responsive */

@media (max-width:991px){

    .pl-partner-grid,
    .pl-associate-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pl-section-header h2{
        font-size:34px;
    }
}

@media (max-width:576px){

    .pl-partner-grid,
    .pl-associate-grid{
        grid-template-columns:1fr;
    }

    .pl-section-header h2{
        font-size:28px;
    }

    .pl-associate-title h3{
        font-size:26px;
    }
}
