:root {
   --primary-color: #271bb1;
   --secondary-color: #271bb1;
   --text-dark: #1e293b;
   --text-muted: #64748b;
   --bg-light: #f8fafc;
   --white: #ffffff;
   --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero {
   margin-top: 80px;
   padding: 120px 0;
   background: linear-gradient(135deg, var(--primary-color) 0%, #271bb1 100%);
   position: relative;
   overflow: hidden;
}

.about-hero::before {
   content: '';
   position: absolute;
   top: -10%;
   right: -5%;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
   border-radius: 50%;
}

.about-hero h1 {
   font-size: 3.5rem;
   font-weight: 800;
   letter-spacing: -1px;
   margin-bottom: 1rem;
}

/* ====================== ABOUT SECTION ====================== */
.about-section {
   padding: 120px 0;
   background: var(--bg-light);
   position: relative;
}

.section-header .badge {
   font-size: 0.9rem;
   padding: 10px 20px;
   border-radius: 50px;
   font-weight: 600;
   background-color: rgba(11, 60, 93, 0.1) !important;
   color: var(--primary-color) !important;
   border: 1px solid rgba(11, 60, 93, 0.1);
}

.about-section h2 {
   font-size: 3rem;
   font-weight: 700;
   color: var(--text-dark);
   line-height: 1.2;
}

.about-content p {
   font-size: 1.1rem;
   line-height: 1.8;
   color: var(--text-muted);
}

.value-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   margin-bottom: 2rem;
   padding: 20px;
   background: var(--white);
   border-radius: 15px;
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
   transition: var(--transition-smooth);
   border: 1px solid transparent;
}

.value-item:hover {
   transform: translateY(-5px);
   border-color: var(--secondary-color);
   box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
   width: 50px;
   height: 50px;
   background: var(--bg-light);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--primary-color);
   flex-shrink: 0;
   transition: var(--transition-smooth);
}

.value-item:hover .value-icon {
   background: var(--primary-color);
   color: var(--white);
}

.about-image-wrapper {
   border-radius: 30px;
   overflow: hidden;
   box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
   position: relative;
}

.about-image-wrapper img {
   transition: transform 0.8s ease;
   width: 100%;
}

.about-image-wrapper:hover img {
   transform: scale(1.08);
}

.stats-card {
   position: absolute;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(10px);
   padding: 20px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   gap: 15px;
   border: 1px solid rgba(255, 255, 255, 0.3);
}

/* DOCUMENTS & CERTIFICATES */
.documents-section {
   padding: 100px 0;
   background: var(--white);
}

.doc-card {
   background: var(--bg-light);
   padding: 40px 30px;
   border-radius: 24px;
   text-align: center;
   transition: var(--transition-smooth);
   border: 1px solid #eef2f6;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.doc-card i {
   font-size: 3.5rem;
   color: #ef4444;
   /* PDF Red */
   margin-bottom: 20px;
   transition: var(--transition-smooth);
}

.doc-card h5 {
   font-weight: 700;
   margin-bottom: 15px;
   color: var(--text-dark);
}

.doc-card:hover {
   transform: translateY(-12px);
   background: var(--white);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   border-color: var(--secondary-color);
}

.doc-btn {
   display: inline-block;
   padding: 12px 28px;
   background: var(--primary-color);
   color: var(--white);
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   transition: var(--transition-smooth);
   margin-top: auto;
}

.doc-btn:hover {
   background: var(--secondary-color);
   color: var(--white);
   box-shadow: 0 4px 12px rgba(11, 60, 93, 0.3);
}

/* CTA SECTION */
.about-cta {
   padding: 100px 0;
   background: linear-gradient(rgba(11, 60, 93, 0.9), rgba(11, 60, 93, 0.9)), url('../../assets/img/Banner/Banner 8.jpeg');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   color: var(--white);
}

.about-cta h2 {
   font-size: 3rem;
   font-weight: 800;
   margin-bottom: 2rem;
}

.cta-btn {
   display: inline-block;
   padding: 18px 45px;
   background: var(--white);
   color: var(--primary-color);
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   font-size: 1.1rem;
   transition: var(--transition-smooth);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.cta-btn:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   color: var(--secondary-color);
}


/* AFFILIATE CARDS */
.affiliate-card {
   background: var(--white);
   padding: 30px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   gap: 20px;
   height: 100%;
   transition: var(--transition-smooth);
   border: 1px solid rgba(0, 0, 0, 0.05);
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.affiliate-card:hover {
   transform: translateY(-8px) scale(1.02);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   border-color: var(--secondary-color);
}

.affiliate-icon img {
   height: 60px;
   width: 60px;
   object-fit: cover;
   border-radius: 20px;
}

.affiliate-card:hover .affiliate-icon {
   transform: rotate(10deg);
}

.affiliate-content h5 {
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 5px;
   color: var(--text-dark);
   line-height: 1.4;
}

.affiliate-content p {
   font-size: 0.9rem;
   color: var(--text-muted);
   margin-bottom: 0;
}

/* Colorful Icon Variants */
.icon-1 {
   background: rgba(59, 130, 246, 0.1);
   color: #3b82f6;
}

.icon-2 {
   background: rgba(16, 185, 129, 0.1);
   color: #10b981;
}

.icon-3 {
   background: rgba(245, 158, 11, 0.1);
   color: #f59e0b;
}

.icon-4 {
   background: rgba(239, 68, 68, 0.1);
   color: #ef4444;
}

.icon-5 {
   background: rgba(139, 92, 246, 0.1);
   color: #8b5cf6;
}

.icon-6 {
   background: rgba(236, 72, 153, 0.1);
   color: #ec4899;
}

.icon-7 {
   background: rgba(6, 182, 212, 0.1);
   color: #06b6d4;
}

.icon-8 {
   background: rgba(249, 115, 22, 0.1);
   color: #f97316;
}

.icon-9 {
   background: rgba(132, 204, 22, 0.1);
   color: #84cc16;
}

.icon-10 {
   background: rgba(99, 102, 241, 0.1);
   color: #6366f1;
}

.icon-11 {
   background: rgba(217, 70, 239, 0.1);
   color: #d946ef;
}

.icon-12 {
   background: rgba(20, 184, 166, 0.1);
   color: #14b8a6;
}

/* Responsive */
@media (max-width: 991px) {
   .about-hero h1 {
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -1px;
      margin-bottom: 1rem;
   }

   .about-section h2 {
      font-size: 2.5rem;
   }

   .about-section {
      padding: 80px 0;
   }

   .about-hero {
      margin-top: 0;
      padding: 120px 0px 60px 0px;
   }
}


.mv-modern-section {
   background: #f5f7fb;
}

/* Card */
.mv-modern-card {
   position: relative;
   background: #eaeaea;
   padding: 40px 25px 70px;
   border-radius: 15px;
   text-align: center;
   box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
   transition: 0.4s;
}

.mv-modern-card:hover {
   transform: translateY(-10px);
}

/* Content */
.mv-content .icon {
   font-size: 30px;
   margin-bottom: 15px;
   display: inline-block;
}

.mv-content h4 {
   font-weight: 700;
   margin-bottom: 10px;
   letter-spacing: 1px;
}

.mv-content p {
   font-size: 14px;
   color: #555;
   margin-bottom: 15px;
}

/* Link */
.mv-link {
   font-size: 14px;
   text-decoration: none;
   font-weight: 500;
   transition: 0.3s;
}

.mv-link:hover {
   text-decoration: underline;
}

/* Bottom Shape */
.mv-bottom {
   position: absolute;
   bottom: -20px;
   left: 50%;
   transform: translateX(-50%);
   width: 120px;
   height: 60px;
   border-radius: 0 0 50px 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   color: #fff;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mission Color */
.mv-modern-card.mission {
   background: #f0f0f0;
}

.mv-modern-card.mission .icon {
   color: #e6a100;
}

.mv-modern-card.mission .mv-link {
   color: #e6a100;
}

.mv-modern-card.mission .mv-bottom {
   background: linear-gradient(135deg, #f7b733, #fc4a1a);
}

/* Vision Color */
.mv-modern-card.vision {
   background: #f0f0f0;
}

.mv-modern-card.vision .icon {
   color: #2f80ed;
}

.mv-modern-card.vision .mv-link {
   color: #2f80ed;
}

.mv-modern-card.vision .mv-bottom {
   background: linear-gradient(135deg, #56ccf2, #2f80ed);
}

/* Number */
.mv-bottom span {
   font-size: 18px;
   letter-spacing: 2px;
}